diff options
author | dim <dim@FreeBSD.org> | 2013-12-22 00:04:03 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2013-12-22 00:04:03 +0000 |
commit | 8cf58e3ee36bd550746fca361a894e2727485200 (patch) | |
tree | 2ba0398b4c42ad4f55561327538044fd2c925a8b /docs/CommandGuide/llvm-ranlib.rst | |
parent | aa45f148926e3461a1fd8b10c990f0a51a908cc9 (diff) | |
download | FreeBSD-src-8cf58e3ee36bd550746fca361a894e2727485200.zip FreeBSD-src-8cf58e3ee36bd550746fca361a894e2727485200.tar.gz |
Vendor import of llvm release_34 branch r197841 (effectively, 3.4 RC3):
https://llvm.org/svn/llvm-project/llvm/branches/release_34@197841
Diffstat (limited to 'docs/CommandGuide/llvm-ranlib.rst')
-rw-r--r-- | docs/CommandGuide/llvm-ranlib.rst | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/docs/CommandGuide/llvm-ranlib.rst b/docs/CommandGuide/llvm-ranlib.rst deleted file mode 100644 index 6658818..0000000 --- a/docs/CommandGuide/llvm-ranlib.rst +++ /dev/null @@ -1,61 +0,0 @@ -llvm-ranlib - Generate index for LLVM archive -============================================= - - -SYNOPSIS --------- - - -**llvm-ranlib** [--version] [-help] <archive-file> - - -DESCRIPTION ------------ - - -The **llvm-ranlib** command is similar to the common Unix utility, ``ranlib``. It -adds or updates the symbol table in an LLVM archive file. Note that using the -**llvm-ar** modifier *s* is usually more efficient than running **llvm-ranlib** -which is only provided only for completness and compatibility. Unlike other -implementations of ``ranlib``, **llvm-ranlib** indexes LLVM bitcode files, not -native object modules. You can list the contents of the symbol table with the -``llvm-nm -s`` command. - - -OPTIONS -------- - - - -*archive-file* - - Specifies the archive-file to which the symbol table is added or updated. - - - -*--version* - - Print the version of **llvm-ranlib** and exit without building a symbol table. - - - -*-help* - - Print usage help for **llvm-ranlib** and exit without building a symbol table. - - - - -EXIT STATUS ------------ - - -If **llvm-ranlib** succeeds, it will exit with 0. If an error occurs, a non-zero -exit code will be returned. - - -SEE ALSO --------- - - -llvm-ar|llvm-ar, ranlib(1) |