diff options
author | Nico Rieck <nico.rieck@gmail.com> | 2013-04-11 00:05:57 +0000 |
---|---|---|
committer | Nico Rieck <nico.rieck@gmail.com> | 2013-04-11 00:05:57 +0000 |
commit | 5143243484f38158a8ac7a687b35575c85cf28ac (patch) | |
tree | 2197a78ce2d7815e124ac31c7481ffd08a9798af /llvm/docs/CommandGuide/llvm-readobj.rst | |
parent | 99a67ed76ee0141975c9c163b4ccaec6923dc46c (diff) | |
download | bcm5719-llvm-5143243484f38158a8ac7a687b35575c85cf28ac.tar.gz bcm5719-llvm-5143243484f38158a8ac7a687b35575c85cf28ac.zip |
Add man page for llvm-readobj
llvm-svn: 179244
Diffstat (limited to 'llvm/docs/CommandGuide/llvm-readobj.rst')
-rw-r--r-- | llvm/docs/CommandGuide/llvm-readobj.rst | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/llvm/docs/CommandGuide/llvm-readobj.rst b/llvm/docs/CommandGuide/llvm-readobj.rst new file mode 100644 index 00000000000..3ede21d5461 --- /dev/null +++ b/llvm/docs/CommandGuide/llvm-readobj.rst @@ -0,0 +1,77 @@ +llvm-readobj - LLVM Object Reader +================================= + +SYNOPSIS +-------- + +:program:`llvm-readobj` [*options*] [*input...*] + +DESCRIPTION +----------- + +The :program:`llvm-readobj` tool displays low-level format-specific information +about one or more object files. The tool and its output is primarily designed +for use in FileCheck-based tests. + +OPTIONS +------- + +If ``input`` is "``-``" or omitted, :program:`llvm-readobj` reads from standard +input. Otherwise, it will read from the specified ``filenames``. + +.. option:: -help + + Print a summary of command line options. + +.. option:: -version + + Display the version of this program + +.. option:: -file-headers, -h + + Display file headers. + +.. option:: -sections, -s + + Display all sections. + +.. option:: -section-data, -sd + + When used with ``-sections``, display section data for each section shown. + +.. option:: -section-relocations, -sr + + When used with ``-sections``, display relocations for each section shown. + +.. option:: -section-symbols, -st + + When used with ``-sections``, display symbols for each section shown. + +.. option:: -relocations, -r + + Display the relocation entries in the file. + +.. option:: -symbols, -t + + Display the symbol table. + +.. option:: -dyn-symbols + + Display the dynamic symbol table (only for ELF object files). + +.. option:: -unwind, -u + + Display unwind information. + +.. option:: -dynamic-table + + Display the ELF .dynamic section table (only for ELF object files). + +.. option:: -needed-libs + + Display the needed libraries (only for ELF object files). + +EXIT STATUS +----------- + +:program:`llvm-readobj` returns 0. |