Top "Objdump" questions

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

How can I tell, with something like objdump, if an object file has been built with -fPIC?

How can I tell, with something like objdump, if an object file has been built with -fPIC?

gcc shared-libraries objdump fpic
How to disassemble, modify and then reassemble a Linux executable?

Is there anyway this can be done? I've used objdump but that doesn't produce assembly output that will be accepted …

linux x86 disassembly objdump
The difference between mov and movl instruction in X86? and I meet some trouble when reading assembly

Recently, I read some books about computer science. I wrote some C code, and disassembled them, using gcc and objdump. …

gcc assembly x86 att objdump
How do I find out which functions of a shared object are used by a program or an other library?

How do I find out which functions of a shared object are used by a program or an other library? …

c linux shared-libraries elf objdump
How do I send objdump result to a file?

I want to run objdump on an execuatble file in windows XP, and want to observe the details. However, I …

c++ c windows objdump
How do I disassemble raw MIPS code?

Similarly to How do I disassemble raw x86 code?, but then for the MIPS architecture: how do I disassemble raw …

linux assembly mips objdump
virtual and physical addresses of sections in elf files

How does objdump compute the physical address (LMA) of elf sections? As far as I can tell, elf section headers …

linker elf objdump
Can I give objdump an address and have it disassemble the containing function?

I'm finding it really annoying to have to disassemble large swathes of library code just to get enough context to …

c debugging disassembly objdump
objdump to extract contents of text segment to a binary format

How do we use objdump to output to a binary file? This is definitely not the right way to do …

linux objdump
readelf vs. objdump: why are both needed

I need to learn about the ELF file layout for a project I am working on and I noticed the …

linux elf objdump readelf