Top "Objdump" questions

objdump is a program for displaying various information about object files.

Extract detailed symbol information (struct members) from elf file compiled with ARM-GCC

I’m using ARM-GCC 4.7.4 to compile Code for a Cortex-M4. For our Debug tool I need knowledge about names, types …

debugging gcc arm elf objdump
Can objdump un-mangle names of C++ template functions?

I have a C++ object file that contains instantiations of some C++ template functions. The object file in question instantiates …

c++ gcc name-mangling objdump
Linux Mach-O Disassembler

Are there any Linux programs that can disassemble an OSX universal x86/x86_64 fat Mach-O binary like objdump? GNU binutils' …

linux disassembly mach-o objdump
objdump and ARM vs Thumb

I'm trying to disassemble an object built for ARM with gcc. Unfortunately, objdump is trying to guess whether the code …

assembly arm objdump binutils thumb
What is the .data.rel.ro used for?

I am using objdump to analyze a shared object's memory usage. Along with the .data and .rodata sections I see …

gcc objdump
Why does register_tm_clones and deregister_tm_clones reference an address past the .bss section? Where is this memory allocated?

register_tm_clones and deregister_tm_clones are referencing memory addresses past the end of my RW sections. How is …

c memory-management objdump readelf
What is register %eiz?

In the following assembly code that I dumped out using objdump: lea 0x0(%esi,%eiz,1),%esi What is register %eiz? …

assembly x86 gnu-assembler objdump
Objdump ARM aarch64 code?

I have an elf arm aarch64 binary and i want to disassemble it .text section using objdump.My machine is …

arm objdump arm64
Difference between nm and objdump

Looking at the manuals, objdump and nm have overlapping features. When would you use each one? What was the original …

binutils objdump nm
Flags in objdump output of object file

There is this output of objdump on some object file: $ objdump -h main.o main.o: file format elf32-i386 …

linux elf objdump