How to disassemble one single function using objdump?

后端 未结 7 1065
囚心锁ツ
囚心锁ツ 2020-11-29 17:59

I\'ve got a binary installed on my system, and would like to look at the disassembly of a given function. Preferrably using objdump, but other solutions would b

7条回答
  •  北海茫月
    2020-11-29 19:00

    To simplify the usage of awk for parsing objdump's output relative to other answers:

    objdump -d filename | sed '/:/,/^$/!d'
    

提交回复
热议问题