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 構文ではなく、Intel 構文でアセンブリを出力するように指示するにはどうすればよいですか?
objdump
あなたが探しているのは-M intel. 次のように使用します。
-M intel
objdump -M intel -d program_name
(AT&T ニーモニック コードの代わりに) Intel ニーモニック コードも必要な場合は、次を使用できます。
objdump -M intel intel-mnemonic -D <program's-object-file>