GDB pretty printers for Qt5

2019-04-07 04:04发布

Where I can find gdb pretty printers for qt5?

I could find only for qt4 on kde developer site. Maybe somebody knows whether pretty printers for new version of Qt exist and where I can find them.

I know that it's possible to use latest version of QtCreator, but I need just plain python scripts for GDB.

标签: c++ python qt gdb qt5
3条回答
劳资没心,怎么记你
2楼-- · 2019-04-07 04:20

for reference, the following supports qt5 objects (inspite of its name), and appears to be periodically updated

https://cgit.kde.org/kdevelop.git/tree/debuggers/gdb/printers

查看更多
唯我独甜
3楼-- · 2019-04-07 04:20

As far as I know pretty printers are located here: http://gcc.gnu.org/svn/gcc/trunk/libstdc++-v3/python/

Also, GDB binaries with Python enabled can be found here. http://origin.releases.qt-project.org/gdb/

查看更多
Lonely孤独者°
4楼-- · 2019-04-07 04:28

The pretty printers listed on https://techbase.kde.org/Development/Tutorials/Debugging/Debugging_with_GDB are only partially compatible with Qt 5. Some types (such a QByteArray) are not handled correctly.

Alex Merry has worked on Qt 5 pretty printers and tried to push these into the Qt5 Base packages (unfortunately it did not made it). For convenience, I have made his printers available at https://github.com/Lekensteyn/qt5printers

查看更多
登录 后发表回答