vote up 9 vote down star
7

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?

flag

67% accept rate

4 Answers

vote up 3 vote down check

(~/.gdb/ptrace)

break ptrace
commands 1
    return
   continue
end

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

link|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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

link|flag
vote up 1 vote down

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|flag
Wow! This might be even better than the "-tui" flag. – Thomas Padron-McCarthy Jan 10 at 19:51
sounds like a emacs version of cgdb (vim troll) – Johan Jan 24 at 18:24

Your Answer

Get an OpenID
or

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