Can you use the standard GDB debugger with Qt executables?

c++, cross-platform, gdb, qt

Solution

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.

Problem

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

Original source