5 llvm-ranlib - Generate index for LLVM archive
9 B<llvm-ranlib> [--version] [-help] <archive-file>
13 The B<llvm-ranlib> command is similar to the common Unix utility, C<ranlib>. It
14 adds or updates the symbol table in an LLVM archive file. Note that using the
15 B<llvm-ar> modifier F<s> is usually more efficient than running B<llvm-ranlib>
16 which is only provided only for completness and compatibility. Unlike other
17 implementations of C<ranlib>, B<llvm-ranlib> indexes LLVM bitcode files, not
18 native object modules. You can list the contents of the symbol table with the
19 C<llvm-nm -s> command.
27 Specifies the archive-file to which the symbol table is added or updated.
31 Print the version of B<llvm-ranlib> and exit without building a symbol table.
35 Print usage help for B<llvm-ranlib> and exit without building a symbol table.
41 If B<llvm-ranlib> succeeds, it will exit with 0. If an error occurs, a non-zero
42 exit code will be returned.
46 L<llvm-ar|llvm-ar>, ranlib(1)
50 Maintained by the LLVM Team (L<http://llvm.org>).