blob: b99eb8f7a724dda409dbc2c766ae3764f1be4992 [file] [log] [blame]
Daniel Dunbardbec0332009-04-29 01:00:32 +00001=pod
2
3=head1 NAME
4
Douglas Gregor51c7a782010-09-24 17:26:14 +00005clang - the Clang C, C++, and Objective-C compiler
Daniel Dunbardbec0332009-04-29 01:00:32 +00006
7=head1 SYNOPSIS
8
Chris Lattnerb5f6e802009-05-06 02:47:51 +00009B<clang> [B<-c>|B<-S>|B<-E>] B<-std=>I<standard> B<-g>
10 [B<-O0>|B<-O1>|B<-O2>|B<-Os>|B<-O3>|B<-O4>]
11 B<-W>I<warnings...> B<-pedantic>
12 B<-I>I<dir...> B<-L>I<dir...>
13 B<-D>I<macro[=defn]>
14 B<-f>I<feature-option...>
15 B<-m>I<machine-option...>
16 B<-o> I<output-file>
Daniel Dunbar3f16c952010-09-14 23:12:40 +000017 B<-stdlib=>I<library>
Chris Lattnerb5f6e802009-05-06 02:47:51 +000018 I<input-filenames>
Daniel Dunbardbec0332009-04-29 01:00:32 +000019
20=head1 DESCRIPTION
21
Douglas Gregor51c7a782010-09-24 17:26:14 +000022B<clang> is a C, C++, and Objective-C compiler which encompasses preprocessing,
Chris Lattnerb5f6e802009-05-06 02:47:51 +000023parsing, optimization, code generation, assembly, and linking. Depending on
24which high-level mode setting is passed, Clang will stop before doing a full
25link. While Clang is highly integrated, it is important to understand the
26stages of compilation, to understand how to invoke it. These stages are:
Daniel Dunbardbec0332009-04-29 01:00:32 +000027
28=over
29
Chris Lattnerb5f6e802009-05-06 02:47:51 +000030=item B<Driver>
Daniel Dunbardbec0332009-04-29 01:00:32 +000031
Chris Lattnerb5f6e802009-05-06 02:47:51 +000032The B<clang> executable is actually a small driver which controls the overall
33execution of other tools such as the compiler, assembler and linker. Typically
34you do not need to interact with the driver, but you transparently use it to run
35the other tools.
Daniel Dunbardbec0332009-04-29 01:00:32 +000036
Chris Lattnerb5f6e802009-05-06 02:47:51 +000037=item B<Preprocessing>
Daniel Dunbardbec0332009-04-29 01:00:32 +000038
Chris Lattnerb5f6e802009-05-06 02:47:51 +000039This stage handles tokenization of the input source file, macro expansion,
40#include expansion and handling of other preprocessor directives. The output of
Douglas Gregor51c7a782010-09-24 17:26:14 +000041this stage is typically called a ".i" (for C), ".ii" (for C++), ".mi" (for
42Objective-C) , or ".mii" (for Objective-C++) file.
Chris Lattnerb5f6e802009-05-06 02:47:51 +000043
44=item B<Parsing and Semantic Analysis>
45
46This stage parses the input file, translating preprocessor tokens into a parse
47tree. Once in the form of a parser tree, it applies semantic analysis to compute
48types for expressions as well and determine whether the code is well formed. This
49stage is responsible for generating most of the compiler warnings as well as
50parse errors. The output of this stage is an "Abstract Syntax Tree" (AST).
51
52=item B<Code Generation and Optimization>
53
Chris Lattner482c6822009-05-11 22:45:37 +000054This stage translates an AST into low-level intermediate code (known as "LLVM
Daniel Dunbar073190d2010-05-21 00:28:14 +000055IR") and ultimately to machine code. This phase is responsible for optimizing
56the generated code and handling target-specfic code generation. The output of
57this stage is typically called a ".s" file or "assembly" file.
58
59Clang also supports the use of an integrated assembler, in which the code
60generator produces object files directly. This avoids the overhead of generating
61the ".s" file and of calling the target assembler.
Chris Lattnerb5f6e802009-05-06 02:47:51 +000062
Chris Lattner9b081c62009-05-06 17:22:08 +000063=item B<Assembler>
Chris Lattnerb5f6e802009-05-06 02:47:51 +000064
65This stage runs the target assembler to translate the output of the compiler
66into a target object file. The output of this stage is typically called a ".o"
Chris Lattner482c6822009-05-11 22:45:37 +000067file or "object" file.
Chris Lattnerb5f6e802009-05-06 02:47:51 +000068
Chris Lattner9b081c62009-05-06 17:22:08 +000069=item B<Linker>
Chris Lattnerb5f6e802009-05-06 02:47:51 +000070
71This stage runs the target linker to merge multiple object files into an
72executable or dynamic library. The output of this stage is typically called an
73"a.out", ".dylib" or ".so" file.
74
75=back
76
77The Clang compiler supports a large number of options to control each of these
Chris Lattner482c6822009-05-11 22:45:37 +000078stages. In addition to compilation of code, Clang also supports other tools:
Chris Lattner9b081c62009-05-06 17:22:08 +000079
80B<Clang Static Analyzer>
81
82The Clang Static Analyzer is a tool that scans source code to try to find bugs
Douglas Gregor77809812010-10-08 21:03:07 +000083through code analysis. This tool uses many parts of Clang and is built into the
Chris Lattner9b081c62009-05-06 17:22:08 +000084same driver.
85
Chris Lattnerb5f6e802009-05-06 02:47:51 +000086
87=head1 OPTIONS
88
Chris Lattnerb5f6e802009-05-06 02:47:51 +000089=head2 Stage Selection Options
90
91=over
Daniel Dunbardbec0332009-04-29 01:00:32 +000092
Daniel Dunbardbec0332009-04-29 01:00:32 +000093=item B<-E>
94
Chris Lattner9b081c62009-05-06 17:22:08 +000095Run the preprocessor stage.
Daniel Dunbardbec0332009-04-29 01:00:32 +000096
Chris Lattner9b081c62009-05-06 17:22:08 +000097=item B<-fsyntax-only>
Chris Lattnerb5f6e802009-05-06 02:47:51 +000098
Chris Lattner9b081c62009-05-06 17:22:08 +000099Run the preprocessor, parser and type checking stages.
Chris Lattnerb5f6e802009-05-06 02:47:51 +0000100
Chris Lattner9b081c62009-05-06 17:22:08 +0000101=item B<-S>
Chris Lattnerb5f6e802009-05-06 02:47:51 +0000102
Daniel Dunbar94f497b2009-05-18 21:34:46 +0000103Run the previous stages as well as LLVM generation and optimization stages and
104target-specific code generation, producing an assembly file.
Chris Lattnerb5f6e802009-05-06 02:47:51 +0000105
Chris Lattner9b081c62009-05-06 17:22:08 +0000106=item B<-c>
107
108Run all of the above, plus the assembler, generating a target ".o" object file.
109
110=item B<no stage selection option>
111
112If no stage selection option is specified, all stages above are run, and the
113linker is run to combine the results into an executable or shared library.
114
115=item B<--analyze>
116
117Run the Clang Static Analyzer.
Chris Lattnerb5f6e802009-05-06 02:47:51 +0000118
119=back
120
121
122
Chris Lattner04005dd2009-05-12 00:01:32 +0000123=head2 Language Selection and Mode Options
124
125=over
126
127=item B<-x> I<language>
128
129Treat subsequent input files as having type I<language>.
130
131=item B<-std>=I<language>
132
133Specify the language standard to compile for.
134
Daniel Dunbar3f16c952010-09-14 23:12:40 +0000135=item B<-stdlib>=I<language>
136
137Specify the C++ standard library to use; supported options are libstdc++ and
138libc++.
139
Chris Lattner04005dd2009-05-12 00:01:32 +0000140=item B<-ansi>
141
142Same as B<-std=c89>.
143
144=item B<-ObjC++>
145
Daniel Dunbar94f497b2009-05-18 21:34:46 +0000146Treat source input files as Objective-C++ inputs.
Chris Lattner04005dd2009-05-12 00:01:32 +0000147
148=item B<-ObjC>
149
Daniel Dunbar94f497b2009-05-18 21:34:46 +0000150Treat source input files as Objective-C inputs.
Chris Lattner04005dd2009-05-12 00:01:32 +0000151
152=item B<-trigraphs>
153
154Enable trigraphs.
155
156=item B<-ffreestanding>
157
158Indicate that the file should be compiled for a freestanding, not a hosted,
159environment.
160
161=item B<-fno-builtin>
162
163Disable special handling and optimizations of builtin functions like strlen and
164malloc.
165
166=item B<-fmath-errno>
167
168Indicate that math functions should be treated as updating errno.
169
170=item B<-fpascal-strings>
171
172Enable support for Pascal-style strings with "\pfoo".
173
174=item B<-fms-extensions>
175
176Enable support for Microsoft extensions.
177
Dawn Perchik400b6072010-09-02 23:59:25 +0000178=item B<-fborland-extensions>
179
180Enable support for Borland extensions.
181
Chris Lattner04005dd2009-05-12 00:01:32 +0000182=item B<-fwritable-strings>
183
184Make all string literals default to writable. This disables uniquing of
185strings and other optimizations.
186
187=item B<-flax-vector-conversions>
188
189Allow loose type checking rules for implicit vector conversions.
190
191=item B<-fblocks>
192
193Enable the "Blocks" language feature.
194
Chris Lattner04005dd2009-05-12 00:01:32 +0000195=item B<-fobjc-gc-only>
196
197Indicate that Objective-C code should be compiled in GC-only mode, which only
198works when Objective-C Garbage Collection is enabled.
199
200=item B<-fobjc-gc>
201
202Indicate that Objective-C code should be compiled in hybrid-GC mode, which works
203with both GC and non-GC mode.
204
Daniel Dunbardea63132010-09-20 18:19:55 +0000205=item B<-fobjc-abi-version>=I<version>
206
207Select the Objective-C ABI version to use. Available versions are 1 (legacy
208"fragile" ABI), 2 (non-fragile ABI 1), and 3 (non-fragile ABI 2).
209
210=item B<-fobjc-nonfragile-abi-version>=I<version>
211
212Select the Objective-C non-fragile ABI version to use by default. This will only
213be used as the Objective-C ABI when the non-fragile ABI is enabled (either via
214-fobjc-nonfragile-abi, or because it is the platform default).
215
216=item B<-fobjc-nonfragile-abi>
217
218Enable use of the Objective-C non-fragile ABI. On platforms for which this is
219the default ABI, it can be disabled with B<-fno-objc-nonfragile-abi>.
220
Chris Lattner04005dd2009-05-12 00:01:32 +0000221=back
222
223
224
225=head2 Target Selection Options
226
Daniel Dunbar94f497b2009-05-18 21:34:46 +0000227Clang fully supports cross compilation as an inherent part of its design.
Chris Lattner04005dd2009-05-12 00:01:32 +0000228Depending on how your version of Clang is configured, it may have support for
Daniel Dunbar94f497b2009-05-18 21:34:46 +0000229a number of cross compilers, or may only support a native target.
Chris Lattner04005dd2009-05-12 00:01:32 +0000230
231=over
232
Chris Lattner04005dd2009-05-12 00:01:32 +0000233=item B<-arch> I<architecture>
234
235Specify the architecture to build for.
236
237=item B<-mmacosx-version-min>=I<version>
238
239When building for Mac OS/X, specify the minimum version supported by your
240application.
241
242=item B<-miphoneos-version-min>
243
244When building for iPhone OS, specify the minimum version supported by your
245application.
246
247
248=item B<-march>=I<cpu>
249
250Specify that Clang should generate code for a specific processor family member
251and later. For example, if you specify -march=i486, the compiler is allowed to
252generate instructions that are valid on i486 and later processors, but which
253may not exist on earlier ones.
254
255=back
256
257
258=head2 Code Generation Options
259
260=over
261
262=item B<-O0> B<-O1> B<-O2> B<-Os> B<-O3> B<-O4>
263
264Specify which optimization level to use. B<-O0> means "no optimization": this
Daniel Dunbar94f497b2009-05-18 21:34:46 +0000265level compiles the fastest and generates the most debuggable code. B<-O2> is a
266moderate level of optimization which enables most optimizations. B<-Os> is like
267B<-O2> with extra optimizations to reduce code size. B<-O3> is like B<-O2>,
268except that it enables optimizations that take longer to perform or that may
269generate larger code (in an attempt to make the program run faster). On
270supported platforms, B<-O4> enables link-time optimization; object files are
271stored in the LLVM bitcode file format and whole program optimization is done at
272link time. B<-O1> is somewhere between B<-O0> and B<-O2>.
Chris Lattner04005dd2009-05-12 00:01:32 +0000273
274=item B<-g>
275
276Generate debug information. Note that Clang debug information works best at
277B<-O0>. At higher optimization levels, only line number information is
278currently available.
279
280=item B<-fexceptions>
281
282Enable generation of unwind information, this allows exceptions to be thrown
283through Clang compiled stack frames. This is on by default in x86-64.
284
285=item B<-ftrapv>
286
287Generate code to catch integer overflow errors. Signed integer overflow is
288undefined in C, with this flag, extra code is generated to detect this and abort
289when it happens.
290
291
292=item B<-fvisibility>
293
294This flag sets the default visibility level.
295
296=item B<-fcommon>
297
298This flag specifies that variables without initializers get common linkage. It
299can be disabled with B<-fno-common>.
300
Daniel Dunbar94f497b2009-05-18 21:34:46 +0000301=item B<-flto> B<-emit-llvm>
302
303Generate output files in LLVM formats, suitable for link time optimization. When
304used with B<-S> this generates LLVM intermediate language assembly files,
305otherwise this generates LLVM bitcode format object files (which may be passed
306to the linker depending on the stage selection options).
307
Chris Lattner04005dd2009-05-12 00:01:32 +0000308=cut
309
310##=item B<-fnext-runtime> B<-fobjc-nonfragile-abi> B<-fgnu-runtime>
311##These options specify which Objective-C runtime the code generator should
312##target. FIXME: we don't want people poking these generally.
313
314=pod
315
316=back
317
318
Chris Lattner9b081c62009-05-06 17:22:08 +0000319=head2 Driver Options
Chris Lattnerb5f6e802009-05-06 02:47:51 +0000320
321=over
322
Chris Lattner9b081c62009-05-06 17:22:08 +0000323=item B<-###>
Chris Lattnerb5f6e802009-05-06 02:47:51 +0000324
Chris Lattner9b081c62009-05-06 17:22:08 +0000325Print the commands to run for this compilation.
326
327=item B<--help>
328
329Display available options.
330
Daniel Dunbardbec0332009-04-29 01:00:32 +0000331=item B<-Qunused-arguments>
332
333Don't emit warning for unused driver arguments.
334
Daniel Dunbardbec0332009-04-29 01:00:32 +0000335=item B<-Wa,>I<args>
336
337Pass the comma separated arguments in I<args> to the assembler.
338
339=item B<-Wl,>I<args>
340
341Pass the comma separated arguments in I<args> to the linker.
342
343=item B<-Wp,>I<args>
344
345Pass the comma separated arguments in I<args> to the preprocessor.
346
347=item B<-Xanalyzer> I<arg>
348
349Pass I<arg> to the static analyzer.
350
351=item B<-Xassembler> I<arg>
352
353Pass I<arg> to the assembler.
354
355=item B<-Xclang> I<arg>
356
Daniel Dunbar073190d2010-05-21 00:28:14 +0000357Pass I<arg> to the clang compiler frontend.
Daniel Dunbardbec0332009-04-29 01:00:32 +0000358
359=item B<-Xlinker> I<arg>
360
361Pass I<arg> to the linker.
362
Daniel Dunbar073190d2010-05-21 00:28:14 +0000363=item B<-mllvm> I<arg>
364
365Pass I<arg> to the LLVM backend.
366
Daniel Dunbardbec0332009-04-29 01:00:32 +0000367=item B<-Xpreprocessor> I<arg>
368
369Pass I<arg> to the preprocessor.
370
Daniel Dunbar073190d2010-05-21 00:28:14 +0000371=item B<-o> I<file>
Daniel Dunbardbec0332009-04-29 01:00:32 +0000372
373Write output to I<file>.
374
Daniel Dunbardbec0332009-04-29 01:00:32 +0000375=item B<-print-file-name>=I<file>
376
377Print the full library path of I<file>.
378
379=item B<-print-libgcc-file-name>
380
381Print the library path for "libgcc.a".
382
383=item B<-print-prog-name>=I<name>
384
385Print the full program path of I<name>.
386
387=item B<-print-search-dirs>
388
389Print the paths used for finding libraries and programs.
390
391=item B<-save-temps>
392
393Save intermediate compilation results.
394
Daniel Dunbar073190d2010-05-21 00:28:14 +0000395=item B<-integrated-as> B<-no-integrated-as>
396
397Used to enable and disable, respectively, the use of the integrated
398assembler. Whether the integrated assembler is on by default is target
399dependent.
400
Daniel Dunbardbec0332009-04-29 01:00:32 +0000401=item B<-time>
402
403Time individual commands.
404
Chris Lattner482c6822009-05-11 22:45:37 +0000405=item B<-ftime-report>
406
407Print timing summary of each stage of compilation.
408
Daniel Dunbardbec0332009-04-29 01:00:32 +0000409=item B<-v>
410
411Show commands to run and use verbose output.
412
Chris Lattner482c6822009-05-11 22:45:37 +0000413=back
Daniel Dunbardbec0332009-04-29 01:00:32 +0000414
Chris Lattner482c6822009-05-11 22:45:37 +0000415
Chris Lattner482c6822009-05-11 22:45:37 +0000416=head2 Diagnostics Options
417
418=over
419
Daniel Dunbar0a2329a2009-09-13 02:21:55 +0000420=item B<-fshow-column>
Chris Lattner04005dd2009-05-12 00:01:32 +0000421B<-fshow-source-location>
422B<-fcaret-diagnostics>
423B<-fdiagnostics-fixit-info>
Douglas Gregor4786c152010-08-19 20:24:43 +0000424B<-fdiagnostics-parseable-fixits>
Chris Lattner04005dd2009-05-12 00:01:32 +0000425B<-fdiagnostics-print-source-range-info>
426B<-fprint-source-range-info>
427B<-fdiagnostics-show-option>
428B<-fmessage-length>
Chris Lattner482c6822009-05-11 22:45:37 +0000429
Chris Lattner04005dd2009-05-12 00:01:32 +0000430These options control how Clang prints out information about diagnostics (errors
431and warnings). Please see the Clang User's Manual for more information.
Chris Lattner482c6822009-05-11 22:45:37 +0000432
433=back
Chris Lattner9b081c62009-05-06 17:22:08 +0000434
435
436=head2 Preprocessor Options
437
438=over
439
Chris Lattner06ab0442009-05-12 00:47:40 +0000440=item B<-D>I<macroname=value>
Chris Lattner482c6822009-05-11 22:45:37 +0000441
Chris Lattner06ab0442009-05-12 00:47:40 +0000442Adds an implicit #define into the predefines buffer which is read before the
443source file is preprocessed.
Chris Lattner482c6822009-05-11 22:45:37 +0000444
Chris Lattner06ab0442009-05-12 00:47:40 +0000445=item B<-U>I<macroname>
Chris Lattner482c6822009-05-11 22:45:37 +0000446
Chris Lattner06ab0442009-05-12 00:47:40 +0000447Adds an implicit #undef into the predefines buffer which is read before the
448source file is preprocessed.
Chris Lattner482c6822009-05-11 22:45:37 +0000449
Chris Lattner06ab0442009-05-12 00:47:40 +0000450=item B<-include> I<filename>
Chris Lattner482c6822009-05-11 22:45:37 +0000451
Chris Lattner06ab0442009-05-12 00:47:40 +0000452Adds an implicit #include into the predefines buffer which is read before the
453source file is preprocessed.
Chris Lattner482c6822009-05-11 22:45:37 +0000454
Chris Lattner06ab0442009-05-12 00:47:40 +0000455=item B<-I>I<directory>
Chris Lattner482c6822009-05-11 22:45:37 +0000456
Chris Lattner06ab0442009-05-12 00:47:40 +0000457Add the specified directory to the search path for include files.
458
459=item B<-F>I<directory>
460
461Add the specified directory to the search path for framework include files.
462
463=item B<-nostdinc>
464
465Do not search the standard system directories for include files.
466
Rafael Espindola4c8e6112009-10-27 00:29:40 +0000467=item B<-nobuiltininc>
468
469Do not search clang's builtin directory for include files.
470
Chris Lattner06ab0442009-05-12 00:47:40 +0000471=cut
472
473## TODO, but do we really want people using this stuff?
Daniel Dunbar0a2329a2009-09-13 02:21:55 +0000474#=item B<-idirafter>I<directory>
475#=item B<-iquote>I<directory>
476#=item B<-isystem>I<directory>
477#=item B<-iprefix>I<directory>
478#=item B<-iwithprefix>I<directory>
479#=item B<-iwithprefixbefore>I<directory>
480#=item B<-isysroot>
481
Chris Lattner06ab0442009-05-12 00:47:40 +0000482=pod
Chris Lattner482c6822009-05-11 22:45:37 +0000483
484
Chris Lattner9b081c62009-05-06 17:22:08 +0000485=back
486
487
488
Chris Lattner06ab0442009-05-12 00:47:40 +0000489=cut
Chris Lattner9b081c62009-05-06 17:22:08 +0000490
Chris Lattner06ab0442009-05-12 00:47:40 +0000491### TODO someday.
Daniel Dunbar0a2329a2009-09-13 02:21:55 +0000492#=head2 Warning Control Options
493#=over
494#=back
495#=head2 Code Generation and Optimization Options
496#=over
497#=back
498#=head2 Assembler Options
499#=over
500#=back
501#=head2 Linker Options
502#=over
503#=back
504#=head2 Static Analyzer Options
505#=over
506#=back
Chris Lattner482c6822009-05-11 22:45:37 +0000507
Chris Lattner06ab0442009-05-12 00:47:40 +0000508=pod
Chris Lattner482c6822009-05-11 22:45:37 +0000509
510
Daniel Dunbardbec0332009-04-29 01:00:32 +0000511=head1 ENVIRONMENT
512
Daniel Dunbare58c9432009-05-06 19:18:09 +0000513=over
514
515=item B<TMPDIR>, B<TEMP>, B<TMP>
516
517These environment variables are checked, in order, for the location to
518write temporary files used during the compilation process.
519
520=item B<CPATH>
521
522If this environment variable is present, it is treated as a delimited
523list of paths to be added to the default system include path list. The
524delimiter is the platform dependent delimitor, as used in the I<PATH>
525environment variable.
526
527Empty components in the environment variable are ignored.
528
529=item B<C_INCLUDE_PATH>, B<OBJC_INCLUDE_PATH>, B<CPLUS_INCLUDE_PATH>,
530B<OBJCPLUS_INCLUDE_PATH>
531
532These environment variables specify additional paths, as for CPATH,
533which are only used when processing the appropriate language.
534
Chris Lattner482c6822009-05-11 22:45:37 +0000535=item B<MACOSX_DEPLOYMENT_TARGET>
Daniel Dunbare58c9432009-05-06 19:18:09 +0000536
537If -mmacosx-version-min is unspecified, the default deployment target
Chris Lattner482c6822009-05-11 22:45:37 +0000538is read from this environment variable. This option only affects darwin
539targets.
Daniel Dunbare58c9432009-05-06 19:18:09 +0000540
541=back
Daniel Dunbardbec0332009-04-29 01:00:32 +0000542
543=head1 BUGS
544
Chris Lattner9b081c62009-05-06 17:22:08 +0000545To report bugs, please visit L<http://llvm.org/bugs/>. Most bug reports should
Daniel Dunbare58c9432009-05-06 19:18:09 +0000546include preprocessed source files (use the B<-E> option) and the full output of
547the compiler, along with information to reproduce.
Daniel Dunbardbec0332009-04-29 01:00:32 +0000548
549=head1 SEE ALSO
550
Chris Lattner482c6822009-05-11 22:45:37 +0000551 as(1), ld(1)
Daniel Dunbardbec0332009-04-29 01:00:32 +0000552
553=head1 AUTHOR
554
555Maintained by the Clang / LLVM Team (L<http://clang.llvm.org>).
556
557=cut