What tool to use to view an object file?
You can use objdump
. See man objdump. For example -d
option for disassemble (there are a lot of options):
objdump -d a.o
Another useful programs are included in binutils.
You can use objdump
. See man objdump. For example -d
option for disassemble (there are a lot of options):
objdump -d a.o
Another useful programs are included in binutils.