Emacs and intel debugger
A coworke i开发者_Python百科ntegrated the gdb into my emacs, so that i can single step through my code and it gets shown where i am in the emacs window. How do i do that with idb?
Unfortunately i cannot remember what we did then, so a walkthrough would be appreciated.
cheers
From this link or this one, you should be able to do:
M-x gdb
You'll be prompted Run gdb (like this):
and you enter:
idb -gdb -fullname yourprogram.exe
As far as how to use the debugger, check out the current gdb manual and the idb command reference.
The gdb manual does have a sample session (a walkthrough if you will).
精彩评论