How to debug with stripped binary?

I stripped the binary file in my program, how can I debug it?
I tried gdb, but it not worked.
What tool should I use?

Well, stripping means to remove the debug symbols (as well as other things), so you won’t get any source references when debugging.

But under this restriction gdb or any other generic debugger should work. Delve might work as well, but I’m not sure about which restrictions it has on stripped binaries.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.