osx - Can gnu utils on Mac such as gobjdump parser Linux ELF binary? -
So basically I have some ELF binaries that are compiled on Linux 32 bit.
And I want to analyze it on my Mac 64 bit.
I am trying to use gnu utils like However, when I tried to pulsate Elf Binaries using GoGdspump, I found this error: Is it possible to analyze 32-bit Linux ALF binary compiled Macs on their gnu utils Use? How to do this if possible? Yes, to specify the object code format, reference: gobjdump and
greadelf installed by homebro.
- target = bfdname option. Maybe you want the option
elf32-i386 .
gobjdump -x --target = elf32-i386 hello
man gobjdump
Comments
Post a Comment