Is there is any way to switch to assembly when debugging a C or C++ program in gdb ? (Given that all source files and their corresponding assembly files are available)
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
There is a way to disassemble a function or a certain section of code, is that what you are after? The command to do so would be Is this what you are referring to?
|
|||
|
|
|
|
|||
|
|
|
In the new gdb version 7.0, the |
||||
|
|
|
Using the disas command will probably do what you want. According to the internal help, the disas command does the following:
|
|||
|
|
|
That question was also asked in cgdb's googlegroup https://groups.google.com/forum/?hl=de&fromgroups=#!topic/cgdb-users/E-jZCJiBAQQ No answer yet on why layout asm doesnt work though Edit: They posted recently and told that its a feature that isnt implemented yet. (check the link above) |
||||
|
|