As a developer, how do you use gdb to track down bugs within your code? What techniques tricks do you use to make your life easier?
|
1
|
|||||
|
|
|
Some hints:
|
||||
|
|
|
In general you find something that isn't how it should be, and work backwards until you understand why. The most obvious is the most useful: Setting a breakpoint on a function or line number and walking through the code line by line. Another handy tip is to have show functions for all your structures/objects even if they are never used in your program, because you can run these functions from within gdb:
Watchpoints can be really handy too, but may slow down your program a lot. These break the flow when the value of a variable or address changes.:
|
||||
|
|
|
You can also use Geany. |
||
|
|
|
|
I do a lot of parallel-program dev, so I've found that using a simple wrapper in python/ruby that allows me to have gdb attached to all processes on all nodes and communicating back to me is extraordinarily helpful (I haven't found a better way if anyone knows of one, not to hijack the thread, though...) I'm not sure how experienced the OP is, so: The GDB docs are pretty nice and all encompassing. The first chapter is a good introduction to all the basics. http://www.gnu.org/software/gdb/documentation/ Although not gdb, they are related: I've personally found that breaking complex lines down to aid in determining which statements are erroring helps. Also, Valgrind (http://valgrind.org/) is really nice/usefull for tackling buffer-overflows and the like (I haven't had luck with gdb for doing this. |
||
|
|
|
|
One particularly useful feature of gdb is its ability to inspect the final state of a program that's crashed. To inspect a crash dump (or core file, as it's more commonly called), start gdb as follows: gdb <program-name> <core-file> For example: gdb a.out core Upon running this command on a core file, gdb will tell you how the program terminated and display where in the program the error occurred:
In the example above, you can see that the program terminated with a segmentation fault while trying to assign a value to a pointer. By typing backtrace (or bt or where) at gdb's prompt, you can view the program's complete backtrace:
At this point, you know that |
|||
|
|
|
|
Use ddd, a visual front-end for gdb. It lets you do things easily with a few mouse clicks and visualise how the code works, plus in the debugger console you have an intercative gdb. |
|||
|
|
|
|
Basic but very useful - Use the text gui with the option -tui. |
||
|
|
