문제

How can I tell objdump to emit assembly in Intel Syntax rather than the default AT&T syntax?

도움이 되었습니까?

해결책

What you're looking for is -M intel. Use it as follows.

objdump -M intel -d program_name

다른 팁

If you want Intel mnemonic codes as well (instead of AT&T mnemonic codes), you can use:

objdump -M intel intel-mnemonic -D <program's-object-file>

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top