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?
|
7
|
|
|
|
|
|
(~/.gdb/ptrace)
also check out http://reverse.put.as/2008/11/19/gdbinit-version-70/ |
||
|
|
|
|
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
|
||
|
|
|
|
extending Johan's answer: for CPython use the "gdbinit" file supplied in its source distribution. it has that and lots more. |
||
|
|
|
|
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 |
||||
|
