Display information about an ELF binary
readelf [-a|--all]
[-h|--file-header]
[-l|--program-headers|--segments]
[-S|--section-headers|--sections]
[-g|--section-groups]
[-e|--headers]
[-s|--syms|--symbols]
[-n|--notes]
[-r|--relocs]
[-u|--unwind]
[-d|--dynamic]
[-V|--version-info]
[-A|--arch-specific]
[-D|--use-dynamic]
[-x number|--hex-dump=number]
[-w[liaprmfFsoR]|
--debug-dump[=option]]
[-I|-histogram]
[-v|--version]
[-W|--wide]
[-H|--help]
elffile...
The long and short forms of options, shown here as alternatives, are
equivalent. At least one option besides -v or -H
must be given.
- -a or --all
- Equivalent to specifying --file-header,
--program-headers, --sections,
--symbols, --relocs, --dynamic,
--notes and --version-info.
- -h or --file-header
- Displays the information contained in the ELF header at the start of
the file.
- -l or --program-headers or --segments
- Displays the information contained in the file's segment headers, if
it has any.
- -S or --sections or --section-headers
- Displays the information contained in the file's section headers, if
it has any.
- -g or --section-groups
- Displays the information contained in the file's section groups, if it
has any.
- -s or --symbols or --syms
- Displays the entries in symbol table section of the file, if it has
one.
- -e or --headers
- Display all the headers in the file. Equivalent to
-h -l -S.
- -n or --notes
- Displays the contents of the NOTE segments and/or
sections, if any.
- -r or --relocs
- Displays the contents of the file's relocation section, if it has one.
- -u or --unwind
- Displays the contents of the file's unwind section, if it has
one. Only the unwind sections for IA64 ELF files are currently
supported.
- -d or --dynamic
- Displays the contents of the file's dynamic section, if it has one.
- -V or --version-info
- Displays the contents of the version sections in the file, it they
exist.
- -A or --arch-specific
- Displays architecture-specific information in the file, if there is
any.
- -D or --use-dynamic
- When displaying symbols, this option makes readelf use the
symbol table in the file's dynamic section, rather than the one in the
symbols section.
- -x number or --hex-dump=number
- Displays the contents of the indicated section as a hexadecimal dump.
- -w[liaprmfFsoR] or --debug-dump[option]
- Where option is one of =line, =info,
=abbrev, =pubnames, =aranges,
=macro, =frames, =frames-interp,
=str, =loc, or =Ranges. Displays the
contents of the debug sections in the file, if any are present. If one
of the optional letters or words follows the switch then only data
found in those specific sections will be dumped.
- -I or --histogram
- Display a histogram of bucket list lengths when displaying the
contents of the symbol tables.
- -v or --version
- Display the version number of readelf.
- -W or --wide
- Don't break output lines to fit into 80 columns. By default
readelf breaks section header and segment listing lines for
64-bit ELF files, so that they fit into 80 columns. This option causes
readelf to print each section header and each segment on
a single line, which is far more readable on terminals wider than 80
columns.
- -H or --help
- Display the command line options understood by readelf.
readelf displays information about one or more ELF format
object files. The options control what particular information to
display.
elffile... are the object files to be examined. 32-bit
and 64-bit ELF files are supported, as are archives containing ELF
files.
This program performs a similar function to objdump but it
goes into more detail and it exists independently of the bfd library,
so if there is a bug in bfd then readelf will not be
affected.
GNU
objdump