up vote 12 down vote favorite
10
share [g+] share [fb]

Which is your favorite macro/trick in gdb? Have you written any good macros for improving language integration? What's your best way of making the debugging experience inside gdb less painful?

link|improve this question

feedback

closed as not constructive by casperOne Nov 27 '11 at 17:34

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

5 Answers

up vote 4 down vote accepted

(~/.gdb/ptrace)

break ptrace
commands 1
    return
   continue
end

also check out http://reverse.put.as/2008/11/19/gdbinit-version-70/

link|improve this answer
feedback

One of my favorite tricks is a macro to make it easier to debug Python (CPython to be fair) applications:

 define pyp
   if PyObject_Repr ($arg0)
     print PyString_AsString(PyObject_Repr($arg0))
   end
 end
link|improve this answer
feedback

I use gdbtui all the time. It provides a curses-interface so you can actually see the code you're debugging. When you use the command list, it will show the code in the upper part of the terminal, and you can scroll up and down. It also shows breakpoints and the current line, and follows you when you step through the program.

Start it with gdbtui or gdb -tui. You can also switch between TUI and normal gdb by pressing Ctrl+X, Ctrl+A.

But be careful with stdout and stderr. If the debugged program prints something while you are in TUI mode, it will mess up the interface. Either redirect the output when you start the program, or press Ctrl+L to redraw the interface if it is already messed up.

link|improve this answer
feedback

extending Johan's answer: for CPython use the "gdbinit" file supplied in its source distribution. it has that and lots more.

link|improve this answer
feedback

Emacs has great support for GDB. To get into gdb-mode, type "M-x gdb".

I like to split the window in two, with my source code in one window, and gdb in the other. Emacs will mark your place in the source code as you step through. In the source code window, you can type "C-x spacebar" to set a breakpoint.

There's a nice introductory tutorial online at http://tedlab.mit.edu/~dr/gdbintro.html

link|improve this answer
1  
Wow! This might be even better than the "-tui" flag. – Thomas Padron-McCarthy Jan 10 '09 at 19:51
sounds like a emacs version of cgdb (vim troll) – Johan Jan 24 '09 at 18:24
feedback

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