Objdump
From Wikipedia, the free encyclopedia
objdump (part of the GNU Binutils) 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.
Similar utilities are Borland TDUMP, Microsoft DUMPBIN, and (also included in the binutils package), readelf.
readelf can only read ELF files and it does not use the BFD library.
See also
External links
- – Linux User Commands Manual
- – Linux User Commands Manual
- Binutils-Objdump - Perl interface to objdump
This article is issued from Wikipedia. The text is available under the Creative Commons Attribution/Share Alike; additional terms may apply for the media files.