Can you post your most tricky and useful commands while you run a debugger like gdb or dbx.
closed as not constructive by Bill the Lizard♦ Sep 24 '12 at 13:01
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
|||||||
|
|
Start gdb with a textual user interface
|
||||
|
Starting in gdb 7.0, there is reversible debugging, so your new favourite command are:
|
||||
|
|
|
Instead of launching GDB with "-tui" param you can also switch to text mode after a while using by typing "wh". |
|||||||||
|
|
|
||||
|
|
For example the macros defined in stl-views.gdb |
||||
|
|
|
scripting gdb is a good trick, other than that I like set scheduler locking on / off to prevent the running of other threads when you are stepping in one. |
||||
|
Using the -command= option while firing up gdb. Same as -x . This command file can contain gdb commands [few breakpoints, few options etc]. Useful in case a particular exe needs to be put through successive debug runs using gdb. |
||||
|
|
|
To debug STL, add content to .gdbinit, follow these instructions: |
||||
|
|
|
Instead of starting gdb with the option -tui to see a child process that contains a screen that highlights where the executing line of code is in your program, jump in and out of this feature with C-x o and C-x a. This is useful if you're using the feature and what to temporarily not use it so you can use the up-arrow to get a previous command. |
||||
|
|
|
||||
|
|
|
This can be useful, I am sure it could be improved though, help welcome:
|
||||
|
|