Replies: 2 comments 4 replies
-
So, edb is specifically a reverse engineering debugger, it is not meant to be used as a "normal" debugger. Because of this, it is operating on the assumption that you DON'T have the source code and are trying to understand someone else's program by looking at the disassembly. |
Beta Was this translation helpful? Give feedback.
0 replies
-
@deetl If you want to see both source and assembly, you may want to try Seer. It likely doesn't have all the disassembly features that edb provides, though. @eteran sorry for suggesting another debugger on your page :^) |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Sorry for the stupid question, I'm sure I'm missing something completely trivial.
I have a small C program compiled with gcc -g. When I load it in gdb, I see the source code and assembly code, all good. But when I open the same binary in edb, I get the assembly code but don't see the C code. But everything runs cleanly.
What am I missing? I'm sure I'm missing something completely trivial.
Beta Was this translation helpful? Give feedback.
All reactions