I am debugging a Linux program to which I have no symbols. The binary is stripped. No big deal, I can handle that. However, how can I skip a call inside the debugger when I reach a particular piece of code?
What I am asking is not this: Use gdb to debug assembly, how to skip a call
I am interested if I have a:
call 0x12345678
...
to jump to the ...
straight without executing the call
.
How can I do that?