From: Reid Spencer Date: Fri, 12 Nov 2004 00:18:35 +0000 (+0000) Subject: Document the new llvm-ranlib command. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=37d813db7aacb4d58395e3dfd6f6cd48519bdbe0;p=oota-llvm.git Document the new llvm-ranlib command. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17687 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/CommandGuide/llvm-ranlib.pod b/docs/CommandGuide/llvm-ranlib.pod new file mode 100644 index 00000000000..e7ed4689db0 --- /dev/null +++ b/docs/CommandGuide/llvm-ranlib.pod @@ -0,0 +1,52 @@ +=pod + +=head1 NAME + +llvm-ranlib - Generate index for LLVM archive + +=head1 SYNOPSIS + +B [--version] [--help] + +=head1 DESCRIPTION + +The B command is similar to the common Unix utility, C. It +adds or updates the symbol table in an LLVM archive file. Note that using the +B modifier F is usually more efficient than running B +which is only provided only for completness and compatibility. Unlike other +implementations of C, B indexes LLVM bytecode files, not +native object modules. You can list the contents of the symbol table with the +C command. + +=head1 OPTIONS + +=over + +=item F + +Specifies the archive-file to which the symbol table is added or updated. + +=item F<--version> + +Print the version of B and exit without building a symbol table. + +=item F<--help> + +Print usage help for B and exit without building a symbol table. + +=back + +=head1 EXIT STATUS + +If B succeeds, it will exit with 0. If an error occurs, a non-zero +exit code will be returned. + +=head1 SEE ALSO + +L,L + +=head1 AUTHORS + +Maintained by the LLVM Team (L). + +=cut