[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / docs / CommandGuide / llvm-libtool-darwin.rst
blobccdf464301ed79dc1d9fdd697a740b443b5aa86a
1 llvm-libtool-darwin - LLVM tool for creating libraries for Darwin
2 =================================================================
4 .. program:: llvm-libtool-darwin
6 SYNOPSIS
7 --------
9 :program:`llvm-libtool-darwin` [*options*] *<input files>*
11 DESCRIPTION
12 -----------
14 :program:`llvm-libtool-darwin` is a tool for creating static and dynamic
15 libraries for Darwin.
17 For most scenarios, it works as a drop-in replacement for cctools'
18 :program:`libtool`.
20 OPTIONS
21 --------
22 :program:`llvm-libtool-darwin` supports the following options:
24 .. option:: -arch_only <architecture>
26   Build a static library only for the specified `<architecture>` and ignore all
27   other architectures in the files.
29 .. option:: -color
31   Use colors in output.
33 .. option:: -D
35   Use zero for timestamps and UIDs/GIDs. This is set by default.
37 .. option:: -filelist <listfile[,dirname]>
39   Read input file names from `<listfile>`. File names are specified in `<listfile>`
40   one per line, separated only by newlines. Whitespace on a line is assumed
41   to be part of the filename. If the directory name, `dirname`, is also
42   specified then it is prepended to each file name in the `<listfile>`.
44 .. option:: -h, -help
46   Show help and usage for this command.
48 .. option:: -help-list
50   Show help and usage for this command without grouping the options
51   into categories.
53 .. option:: -l <x>
55   Searches for the library libx.a in the library search path. If the string `<x>`
56   ends with '.o', then the library 'x' is searched for without prepending 'lib'
57   or appending '.a'. If the library is found, it is added to the list of input
58   files. Otherwise, an error is raised.
60 .. option:: -L <dir>
62   Adds `<dir>` to the list of directories in which to search for libraries. The
63   directories are searched in the order in which they are specified with
64   :option:`-L` and before the default search path. The default search path
65   includes directories `/lib`, `/usr/lib` and `/usr/local/lib`.
67 .. option:: -no_warning_for_no_symbols
69    Do not warn about files that have no symbols.
71 .. option:: -o <filename>
73   Specify the output file name. Must be specified exactly once.
75 .. option:: -static
77   Produces a static library from the input files.
79 .. option:: -U
81   Use actual timestamps and UIDs/GIDs.
83 .. option:: -V
85   Display the version of this program and perform any operation specified.
87 .. option:: -version
89   Display the version of this program and exit immediately.
91 EXIT STATUS
92 -----------
94 :program:`llvm-libtool-darwin` exits with a non-zero exit code if there is an error.
95 Otherwise, it exits with code 0.
97 BUGS
98 ----
100 To report bugs, please visit <https://bugs.llvm.org/>.
102 SEE ALSO
103 --------
105 :manpage:`llvm-ar(1)`