Jump to content

objdump

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Iulian.serbanoiu (talk | contribs) at 07:07, 16 February 2012 (Added 'See also' section with binutils). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.


objdump is a program for displaying various information about object files. For instance, it can be used as a disassembler to view executable in assembly form. It is part of the GNU Binutils for fine-grained control over executable and other binary data.

For example, to completely disassemble a binary:

objdump -Dslx file

objdump uses the BFD library to read the contents of object files. readelf, also included in the binutils package, is similar to objdump but it can only read ELF files and it does not use the BFD library.

See also

GNU Binutils