Re: Feature Request
Jonas Maebe <[email protected]>
| Newsgroups | gmane.comp.gdb.devel |
|---|---|
| Message-ID | <[email protected]> |
On 12 Nov 2013, at 18:02, Mark Manning wrote: > So, I would like to request a feature that will allow GDB to simply > single step opcodes anywhere within the process space owned by the > application being debugged even if there is no debug symbols > associated with it. It already does that. Just use "si" (or "stepi") rather than "step" or "next". It can be useful to have "display/i $pc" active when doing so, so you can see what's the next instruction to be executed. Jonas