How to show all stuff inside an executable using gdb?

Posted by Mask on Stack Overflow See other posts from Stack Overflow or by Mask
Published on 2010-03-31T19:04:40Z Indexed on 2010/03/31 19:13 UTC
Read the original article Hit count: 421

Filed under:
|
gdb a.exe
(gdb) disassemble main
Dump of assembler code for function main:
0x004012d0 <main+0>:    push   %ebp
0x004012d1 <main+1>:    mov    %esp,%ebp
...

The above can only be used to show a specific part inside the executable,how to dump all functions?

© Stack Overflow or respective owner

Related posts about gdb

Related posts about disassembling