tags:

views:

21

answers:

1

hi,

I have an object file and am trying to disassemble it. When i use:

objdump -d example.o

i get an assembly in code in the file format of elf64-x86-64

i am trying to disassemble this into ARM, how do i go about doing this?

Thanks,

Steve

A: 

Install the ELDK and use arm-linux-objdump. You're trying to disassemble ARM instructions using a program that only knows x86.

Jonathan