-
Hello,
This is my launch.json file:
Does anybody know, how I could make the debugger process instructions on "c++ level"? I don't know assembly and the code is long, so I don't think I will be able to debug the code in assembly. And if I put it into visual studio community (where I could debug it in c++ instructions), it doesn't even do the bug (segfault), like it does when compiling it with GCC. I found something similar in this thread #251, but my debugger shows assembly instructions right away, so I thought I would ask, maybe I made some silly mistake or something. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Remove |
Beta Was this translation helpful? Give feedback.
Remove
"stopOnEntry": true
. This instructs the debugger to stop in early startup code, way before the main() is called.