Need some debugging tips for Qt
I have used GDB for debugging C programs.
What's the best way to debug a Qt program? I think i need to compile my application using the -g option for debugging.
Should i use gdb or a graphical tool like kdbg, ddd? There are also IDEs like QDevelop and KDevelop, so which one to use.
Re: Need some debugging tips for Qt
Re: Need some debugging tips for Qt
These are the basic things which i already know. I want to know which tool/IDE is the best for debugging.
Re: Need some debugging tips for Qt
Use the one tool that you use for development - KDevelop, Visual Studio, Eclipse, Qt Creator... Alternatively use kgdb or directly gdb itself (which is often the best choice). The frontend doesn't really matter. What matters is your knowledge about debugging and using the backend tool properly.
Re: Need some debugging tips for Qt
ya, i also felt the same after creating this thread.
I am using QDevelop for now as i have used it before too. Along with that i can now use gprof too :)