Bug 379244 - Qt pretty printing does not work with GDB
Summary: Qt pretty printing does not work with GDB
Status: RESOLVED FIXED
Alias: None
Product: kdevelop
Classification: Applications
Component: CPP Debugger (show other bugs)
Version: git master
Platform: Other Linux
: NOR normal
Target Milestone: ---
Assignee: kdevelop-bugs-null
URL:
Keywords: regression
Depends on:
Blocks:
 
Reported: 2017-04-26 10:41 UTC by Eugene Shalygin
Modified: 2017-04-27 07:26 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In: 5.2.0
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Eugene Shalygin 2017-04-26 10:41:17 UTC
Pretty printing does not work, probably because 	c4dabb9d8c093e47e419ac9154623b36b9ba181a disabled printers installation.
Comment 1 Eugene Shalygin 2017-04-26 13:24:22 UTC
Installing those files fixed the problem for me.
Comment 2 Kevin Funk 2017-04-27 07:11:48 UTC
Do you have a patch? Care to contribute via Phabricator?

See: https://www.kdevelop.org/contribute-kdevelop
Comment 3 Eugene Shalygin 2017-04-27 07:17:55 UTC
Oh, I don't think these two line changes worth a Phabrikator review:

diff --git a/debuggers/gdb/CMakeLists.txt b/debuggers/gdb/CMakeLists.txt
index 977354be9b..f330cd5137 100644
--- a/debuggers/gdb/CMakeLists.txt
+++ b/debuggers/gdb/CMakeLists.txt
@@ -1,5 +1,7 @@
 project(gdb)
 
+add_subdirectory(printers)
+
 find_package(OktetaGui)
 set_package_properties(OktetaGui PROPERTIES
     PURPOSE "Required for building MemoryViewer Widget."
diff --git a/debuggers/gdb/printers/CMakeLists.txt b/debuggers/gdb/printers/CMakeLists.txt
index 4a6e16122a..5a9ec11675 100644
--- a/debuggers/gdb/printers/CMakeLists.txt
+++ b/debuggers/gdb/printers/CMakeLists.txt
@@ -1,4 +1,4 @@
-add_subdirectory(tests)
+#add_subdirectory(tests)
 
 install( FILES helper.py qt.py kde.py gdbinit
     DESTINATION ${KDE_INSTALL_DATADIR}/kdevgdb/printers )
Comment 4 Kevin Funk 2017-04-27 07:25:14 UTC
Git commit 12e590611af041516fccb82e02a9e150311b1b3b by Kevin Funk.
Committed on 27/04/2017 at 07:24.
Pushed by kfunk into branch 'master'.

gdb: Fixup: install GDB printers again

Accidentally disabled in c4dabb9d8c093e47e419ac9154623b36b9ba181a

Thanks Eugene for the patch!
FIXED-IN: 5.2.0

M  +1    -0    debuggers/gdb/CMakeLists.txt
M  +0    -2    debuggers/gdb/printers/CMakeLists.txt

https://commits.kde.org/kdevelop/12e590611af041516fccb82e02a9e150311b1b3b
Comment 5 Eugene Shalygin 2017-04-27 07:26:40 UTC
Thanks!