summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/docs/CommandGuide/llvm-readobj.rst
diff options
context:
space:
mode:
authorpatrick <patrick@openbsd.org>2020-08-03 15:06:44 +0000
committerpatrick <patrick@openbsd.org>2020-08-03 15:06:44 +0000
commitb64793999546ed8adebaeebd9d8345d18db8927d (patch)
tree4357c27b561d73b0e089727c6ed659f2ceff5f47 /gnu/llvm/docs/CommandGuide/llvm-readobj.rst
parentAdd support for UTF-8 DISPLAY-HINTs with octet length. For now only (diff)
downloadwireguard-openbsd-b64793999546ed8adebaeebd9d8345d18db8927d.tar.xz
wireguard-openbsd-b64793999546ed8adebaeebd9d8345d18db8927d.zip
Remove LLVM 8.0.1 files.
Diffstat (limited to 'gnu/llvm/docs/CommandGuide/llvm-readobj.rst')
-rw-r--r--gnu/llvm/docs/CommandGuide/llvm-readobj.rst90
1 files changed, 0 insertions, 90 deletions
diff --git a/gnu/llvm/docs/CommandGuide/llvm-readobj.rst b/gnu/llvm/docs/CommandGuide/llvm-readobj.rst
deleted file mode 100644
index 417fcd05c8a..00000000000
--- a/gnu/llvm/docs/CommandGuide/llvm-readobj.rst
+++ /dev/null
@@ -1,90 +0,0 @@
-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:: -expand-relocs
-
- When used with ``-relocations``, display each relocation in an expanded
- multi-line format.
-
-.. 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).
-
-.. option:: -program-headers
-
- Display the ELF program headers (only for ELF object files).
-
-.. option:: -elf-section-groups, -g
-
- Display section groups (only for ELF object files).
-
-EXIT STATUS
------------
-
-:program:`llvm-readobj` returns 0.