vote up 4 vote down star
7

I decided to find out how our C/C+ *nix practitioners use the gdb debugger.

Here is what I typically use:

  1. b - break filename.c:line #, function, filename.cpp:function, className::Member
  2. n, c, s -- next continue step
  3. gdb program name => set breakpoints ==> run [parameter list] (I do this to set break points before the program starts)
  4. l - to list the surrounding source code.
  5. attach processID 6 break [location]
  6. gdb programName corefile.core (to examine why app crashed)
  7. I also sometimes set breakpoint at exit function (break exit) to examine program stacks
  8. info b to examine all the breakpoints
  9. clear [breakpoints list ]

How do you use it?

flag
It was helpful. Why not make it a community wiki at least? – anon Jun 9 at 8:43
I agree.. let's reopen it. – Sasha Jun 9 at 13:30

9 Answers

vote up 3 vote down check

Most useful gdb commands in my opinion (aside from all already listed):

  • info threads - information about threads
  • thread N - switch to thread N
  • catch throw - break on any thrown exception. Useful when you caught the bug only after the stack unwound.
  • printf,print - examine any and all expressions, printf accepts C-style formatting specifiers

Finally, if debugging over a slow link, the text UI might be of use. To use it, start gdb with the --tui command-line switch.

link|flag
vote up 0 vote down

Some time ago I found cgdb:

http://cgdb.sourceforge.net/

This is a curses (color console) based frontend for gdb that made my life a lot happier when I was restricted to debugging in a console window.

link|flag
vote up 0 vote down

i use the gdb -tui switch for a great 'text user interface' (a kind of gui in text mode). It supports multiple windows and is generally much more friendly than using the 'list' command (since it shows the source in a sep window)

link|flag
that is, i use tui mode when im not using gdb from within emacs (which is what i usually do :) – banister Aug 13 at 1:54
vote up 1 vote down

Type Ctrl-X Ctrl-A to open a simple window with source preview.

link|flag
vote up 5 vote down

Besides things that have already been posted i also use:

  • a .gdbinit file for STL containers
  • signal SIGNAL noprint nostop for some custom signals that are of no real interest when debugging
  • C-Casts to dereference pointers
  • catchpoints (catch throw, catch catch)
  • condition for conditional break- and watchpoints
  • rarely gdbserver for remote debugging
  • gdb program coredump, for those embarassing segfaults ;)

PS: One reason i personally love gdb btw. is that it supports tab-completion for nearly everything (gdb commands, symbols in the symbol table, functions, memberfunctions etc.). This is a fairly good productivity boost in my opinion.

link|flag
vote up 5 vote down

Scripting is a nice GDB feature.

  1. First you set a breakpoint, like: b someFunction\n.
  2. Then you run command: commands\n. GDB will ask for commands for that breakpoint.
  3. Common scenario is to print some value and then continue, so you will enter: p someVar\n continue\n.
  4. To end the script press: Ctrl-D

After running program you will see your script executed occasionally when the breakpoint occurs.

link|flag
2  
For even better gdb with better scripting support, see PythonGdb - gdb scritable in python – ASk Jun 10 at 12:21
vote up 1 vote down

There are also a couple of uses that are not directly connected with debugging. For example it can be used for C expression evaluation:

(gdb) printf "%lu\n", (unsigned long)(-3L)
4294967293
link|flag
vote up 3 vote down

gdb is not my speciality, but here is what i use:

  • bt list a stack
  • up, down moving in a stack
  • until continue until a line with greater number than current is reached -- for exiting loops
  • watch [expr] break the program when expr changes

... but mostly i use ddd as a frontend to gdb

link|flag
I use ddd too :)... any tips for ddd are welcome and encouraged...thanks – Sasha Jun 8 at 19:21
vote up 1 vote down

See the user guide at http://sources.redhat.com/gdb/current/onlinedocs/gdb_toc.html.

link|flag
and specific tips from the user-guide would you recommend? thanks – Sasha Jun 8 at 19:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.