Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我如何知道objdump以英特尔语法而不是默认的 AT&T 语法发出程序集?
objdump
您正在寻找的是-M intel. 如下使用它。
-M intel
objdump -M intel -d program_name
如果您还想要 Intel 助记符(而不是 AT&T 助记符),您可以使用:
objdump -M intel intel-mnemonic -D <program's-object-file>