Top "Objdump" questions

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

How can I examine contents of a data section of an ELF file on Linux?

I've been using objdump to look at assembly code in Linux ELF binaries. Sometimes there is an indirect jump through …

linux elf objdump object-code
Using objdump for ARM architecture: Disassembling to ARM

I have an object file and am trying to disassemble it. When I use: objdump -d example.o I get …

linux arm disassembly objdump
How to disassemble one single function using objdump?

I've got a binary installed on my system, and would like to look at the disassembly of a given function. …

elf debug-symbols disassembly objdump dwarf
Disassembling A Flat Binary File Using objdump

Can I disassemble a flat binary file using objdump? I'm familiar with disassembling a structured binary executable such as an …

reverse-engineering disassembly objdump
How to use/install GNU binutils (objdump)

I need to use the objdump and readelf commands in my application that runs on windows. I know I can …

windows cygwin gnu binutils objdump
How does objdump manage to display source code with the -S option?

Is there a reference to the source file in the binary? I tried running strings on the binary and couldn't …

c linux gcc disassembly objdump
What does each column of objdump's Symbol table mean?

SYMBOL TABLE: 0000000000000000 w *UND* 0000000000000000 __gmon_start__ I've man objdump but there's no such info. Anyone know what the 5 columns mean?

objdump
How can objdump emit intel syntax

How can I tell objdump to emit assembly in Intel Syntax rather than the default AT&T syntax?

linux assembly x86-64 objdump
Tool to analyze size of ELF sections and symbol

I need a way to analyze output file of my GCC compiler for ARM. I am compiling for bare metal …

c parsing gcc cross-compiling objdump
How I can find function in shared object files using objdump and bash functions in linux?

I've got a folder in linux, which is contained several shared object files (*.so). How I can find function in …

c linux bash shared-libraries objdump