blob: afeefa9b1a9d7d55d0cc677b8ac29f75d512bad1 [file] [log] [blame]
Reid Spencer28e8e422004-11-21 18:20:16 +00001=pod
2
3=head1 NAME
4
5llvm-ld - LLVM linker
6
7=head1 SYNOPSIS
8
9B<llvm-ld> <options> <files>
10
11=head1 DESCRIPTION
12
Reid Spencer8645f262007-02-09 04:12:51 +000013The B<llvm-ld> tool takes a set of LLVM bytecode files and links them
14together into a single LLVM bytecode file. The output bytecode file can be
15another bytecode file or an executable bytecode program. Using additional
16options, B<llvm-ld> is able to produce native code executables.
17
18The B<llvm-ld> tool is the main linker for LLVM. It is used to link together
19the output of LLVM front-end compilers and run "link time" optimizations (mostly
20the inter-procedural kind).
21
22The B<llvm-ld> tools attemps to mimic the interface provided by the default
23system linker so that it can act as a I<drop-in> replacement.
24
25=head2 Search Order
26
27When looking for objects specified on the command line, B<llvm-ld> will search
28for the object first in the current directory and then in the directory
29specified by the B<LLVM_LIB_SEARCH_PATH> environment variable. If it cannot
30find the object, it fails.
31
32When looking for a library specified with the B<-l> option, B<llvm-ld> first
33attempts to load a file with that name from the current directory. If that
34fails, it looks for libI<library>.bc, libI<library>.a, or libI<library>.I<shared
35library extension>, in that order, in each directory added to the library search
36path with the B<-L> option. These directories are searched in the order they
37are specified. If the library cannot be located, then B<llvm-ld> looks in the
38directory specified by the B<LLVM_LIB_SEARCH_PATH> environment variable. If it
39does not find a library there, it fails.
40
41The I<shared library extension> may be I<.so>, I<.dyld>, I<.dll>, or something
42different, depending upon the system.
43
44The B<-L> option is global. It does not matter where it is specified in the
45list of command line arguments; the directory is simply added to the search path
46and is applied to all libraries, preceding or succeeding, in the command line.
47
48=head2 Link order
49
50All object and bytecode files are linked first in the order they were
51specified on the command line. All library files are linked next.
52Some libraries may not be linked into the object program; see below.
53
54=head2 Library Linkage
55
56Object files and static bytecode objects are always linked into the output
57file. Library archives (.a files) load only the objects within the archive
58that define symbols needed by the output file. Hence, libraries should be
59listed after the object files and libraries which need them; otherwise, the
60library may not be linked in, and the dependent library will not have its
61undefined symbols defined.
62
63=head2 Native code generation
64
65The B<llvm-ld> program has limited support for native code generation, when
66using the B<-native> or B<-native-cbe> options. Native code generation is
67perfomed by converting the linked bytecode into native assembly (.s) or C code
68and running the system compiler (typically gcc) on the result.
Reid Spencer28e8e422004-11-21 18:20:16 +000069
70=head1 OPTIONS
71
Reid Spencer8645f262007-02-09 04:12:51 +000072=head2 General Options
73
74=item B<-help>
75
76Print a summary of command line options.
77
78=item B<-v>
79
80Specifies verbose mode. In this mode the linker will print additional
81information about the actions it takes, programs it executes, etc.
82
83=item B<-stats>
84
85Print statistics.
86
87=item B<-time-passes>
88
89Record the amount of time needed for each pass and print it to standard
90error.
91
Reid Spencer28e8e422004-11-21 18:20:16 +000092=head2 Input/Output Options
93
94=over
95
96=item B<-o> F<filename>
97
98This overrides the default output file and specifies the name of the file that
99should be generated by the linker. By default, B<llvm-ld> generates a file named
100F<a.out> for compatibility with B<ld>. The output will be written to
101F<filename>.
102
103=item B<-l>F<name>
104
105This option specifies the F<name> of a library to search when resolving symbols
106for the program. Only the base name should be specified as F<name>, without a
107F<lib> prefix or any suffix.
108
109=item B<-L>F<Path>
110
111This option tells B<llvm-ld> to look in F<Path> to find any library subsequently
112specified with the B<-l> option. The paths will be searched in the order in
113which they are specified on the command line. If the library is still not found,
114a small set of system specific directories will also be searched. Note that
115libraries specified with the B<-l> option that occur I<before> any B<-L> options
116will not search the paths given by the B<-L> options following it.
117
118=item B<-link-as-library>
119
120Link the bytecode files together as a library, not an executable. In this mode,
121undefined symbols will be permitted.
122
123=item B<-r>
124
125An alias for -link-as-library.
126
127=item B<-march=>C<target>
128
129Specifies the kind of machine for which code or assembly should be generated.
130
131=item B<-native>
132
Reid Spencer8645f262007-02-09 04:12:51 +0000133Generate a native machine code executable.
134
135When generating native executables, B<llvm-ld> first checks for a bytecode
136version of the library and links it in, if necessary. If the library is
137missing, B<llvm-ld> skips it. Then, B<llvm-ld> links in the same
138libraries as native code.
139
140In this way, B<llvm-ld> should be able to link in optimized bytecode
141subsets of common libraries and then link in any part of the library that
142hasn't been converted to bytecode.
Reid Spencer28e8e422004-11-21 18:20:16 +0000143
144=item B<-native-cbe>
145
Reid Spencer8645f262007-02-09 04:12:51 +0000146Generate a native machine code executable with the LLVM C backend.
147
148This option is identical to the B<-native> option, but uses the
149C backend to generate code for the program instead of an LLVM native
150code generator.
Reid Spencer28e8e422004-11-21 18:20:16 +0000151
152=item B<-disable-compression>
153
154Do not compress bytecode files.
155
156=back
157
158=head2 Optimization Options
159
160=over
161
162=item B<-O0>
163
164An alias for the -O1 option.
165
166=item B<-O1>
167
168Optimize for linking speed, not execution speed. The optimizer will attempt to
169reduce the size of the linked program to reduce I/O but will not otherwise
170perform any link-time optimizations.
171
172=item B<-O2>
173
174Perform only the minimal or required set of scalar optimizations.
175
176=item B<-03>
177
178An alias for the -O2 option.
179
180=item B<-04>
181
182Perform the standard link time inter-procedural optimizations. This will
183attempt to optimize the program taking the entire program into consideration.
184
185=item B<-O5>
186
187Perform aggressive link time optimizations. This is the same as -O4 but works
188more aggressively to optimize the program.
189
190=item B<-disable-inlining>
191
192Do not run the inlining pass. Functions will not be inlined into other
193functions.
194
195=item B<-disable-opt>
196
197Completely disable optimization. The various B<-On> options will be ignored and
198no link time optimization passes will be run.
199
200=item B<-disable-internalize>
201
202Do not mark all symbols as internal.
203
Reid Spencer8645f262007-02-09 04:12:51 +0000204=item B<-verify-each>
Reid Spencer28e8e422004-11-21 18:20:16 +0000205
206Run the verification pass after each of the passes to verify intermediate
207results.
208
Reid Spencer8645f262007-02-09 04:12:51 +0000209=item B<-strip-all>
210
211Strip all debug and symbol information from the executable to make it smaller.
212
213=item B<-strip-debug>
214
215Strip all debug information from the executable to make it smaller.
216
Reid Spencer28e8e422004-11-21 18:20:16 +0000217=item B<-s>
218
Reid Spencer8645f262007-02-09 04:12:51 +0000219An alias for B<-strip-all>.
220
221=item B<-S>
222
223An alias for B<-strip-debug>.
Reid Spencer28e8e422004-11-21 18:20:16 +0000224
225=item B<-export-dynamic>
226
Reid Spencer8645f262007-02-09 04:12:51 +0000227An alias for B<-disable-internalize>
Reid Spencer28e8e422004-11-21 18:20:16 +0000228
229=item B<-load> F<module>
230
231Load an optimization module, F<module>, which is expected to be a dynamic
232library that provides the function name C<RunOptimizations>. This function will
233be passed the PassManager, and the optimization level (values 0-5 based on the
234B<-On> option). This function may add passes to the PassManager that should be
235run. This feature allows the optimization passes of B<llvm-ld> to be extended.
236
Reid Spencerfa8dab42005-12-21 05:13:06 +0000237=item B<-post-link-opt>F<Path>
238
239Run post-link optimization program. After linking is completed a bytecode file
240will be generated. It will be passed to the program specified by F<Path> as the
241first argument. The second argument to the program will be the name of a
242temporary file into which the program should place its optimized output. For
243example, the "no-op optimization" would be a simple shell script:
244
245=over
246
247#!/bin/bash
248cp $1 $2
249
250=back
251
Reid Spencer28e8e422004-11-21 18:20:16 +0000252=back
253
Reid Spencerf8d3e4a2004-11-29 03:43:29 +0000254
Reid Spencer28e8e422004-11-21 18:20:16 +0000255=head1 EXIT STATUS
256
257If B<llvm-ld> succeeds, it will exit with 0 return code. If an error occurs,
258it will exit with a non-zero return code.
259
Reid Spencerf8d3e4a2004-11-29 03:43:29 +0000260=head1 ENVIRONMENT
261
262The C<LLVM_LIB_SEARCH_PATH> environment variable is used to find bytecode
263libraries. Any paths specified in this variable will be searched after the C<-L>
264options.
265
Reid Spencer28e8e422004-11-21 18:20:16 +0000266=head1 SEE ALSO
267
Reid Spencer8645f262007-02-09 04:12:51 +0000268L<llvm-link|llvm-link>
Reid Spencer28e8e422004-11-21 18:20:16 +0000269
270=head1 AUTHORS
271
Reid Spencercd143fc2006-03-14 05:42:07 +0000272Maintained by the LLVM Team (L<http://llvm.org>).
Reid Spencer28e8e422004-11-21 18:20:16 +0000273
274=cut