您可以将标准 GDB 调试器与 Qt 可执行文件一起使用吗?

2022-01-20 00:00:00 qt cross-platform gdb c++

我刚开始使用 Qt,我想调试我的 Qt 应用程序.我可以将标准 GDB 调试器与 Qt 可执行文件一起使用吗?

I just started using Qt and I wanted to debug my Qt application. Can I use the standard GDB debugger with Qt executables?

推荐答案

是的,你可以.您可能还想使用 Qt Creator 中的 gdb 集成,它做得更好在运行时检查数据比单独使用 gdb.

Yes you can. You might also want to use the gdb integration in Qt Creator, which does a much better job of inspecting data at run time than gdb alone.

相关文章