Search Results

2
votes

Using gdb in emacs v23

Here's a wild guess: Emacs's gud-mode requires that gdb gets run with annotations turned on so that it can properly parse the output. I've been bit by this when rewriting the default line e …
3
votes

How do I show what fields a struct has in gdb?

You can use the gdb command "ptype" to print out the definition of a struct or class. …