Recommendations to others considering GDB (GNU Debugger):
- It's one of the best debuggers available. Very powerful and handy.
- It's available for wide range of platforms and architectures.
- Do spend some time with it initially, its worth every penny.
- If you are not comfortable with non-gui interface try ugdb/gdbtui etc Review collected by and hosted on G2.com.
What problems is GDB (GNU Debugger) solving and how is that benefiting you?
Day to day programming bugs, crashes, NULL pointers related errors. I also use GDB to print variables (instead of adding prints and recompiling) and inspect the stack. I also enjoy tracking a unknown code with backtrace, the call stack dump helps me to understand the code flow faster. Review collected by and hosted on G2.com.