Is there a way to set the behavior of GDB's next instruction to be similar to LLDB's' next '? #12550
Unanswered
WittonBell
asked this question in
Q&A
Replies: 0 comments 1 reply
-
I believe this is more practical on the cpptools discussion, since we don't control the debugger with this extension. @sean-mcmanus Do you have any guidance or insight here? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When we use the GDB debugger in VS/VSCode, 'step over' skips other function calls on the same line as the previous call to this function,for example:
When use lldb debugger or VC debugger, it can return at line foo(f()), and can be executed
step in
to enterfoo
function. This behavior is very useful for debugging multiple function calls on the same line. for example:Is there a way to change the behavior of GDB to be similar to LLDB through a certain configuration?
Beta Was this translation helpful? Give feedback.
All reactions