blob: 7a616667dd40a59f606574d660b62fcf7c7208bf [file] [log] [blame]
Andrew Wilkins6238c6f2015-06-30 02:52:38 +00001clang - the Clang C, C++, and Objective-C compiler
2==================================================
3
4SYNOPSIS
5--------
6
7:program:`clang` [*options*] *filename ...*
8
9DESCRIPTION
10-----------
11
12:program:`clang` is a C, C++, and Objective-C compiler which encompasses
13preprocessing, parsing, optimization, code generation, assembly, and linking.
14Depending on which high-level mode setting is passed, Clang will stop before
15doing a full link. While Clang is highly integrated, it is important to
16understand the stages of compilation, to understand how to invoke it. These
17stages are:
18
19Driver
20 The clang executable is actually a small driver which controls the overall
21 execution of other tools such as the compiler, assembler and linker.
22 Typically you do not need to interact with the driver, but you
23 transparently use it to run the other tools.
24
25Preprocessing
26 This stage handles tokenization of the input source file, macro expansion,
27 #include expansion and handling of other preprocessor directives. The
28 output of this stage is typically called a ".i" (for C), ".ii" (for C++),
29 ".mi" (for Objective-C), or ".mii" (for Objective-C++) file.
30
31Parsing and Semantic Analysis
32 This stage parses the input file, translating preprocessor tokens into a
33 parse tree. Once in the form of a parse tree, it applies semantic
34 analysis to compute types for expressions as well and determine whether
35 the code is well formed. This stage is responsible for generating most of
36 the compiler warnings as well as parse errors. The output of this stage is
37 an "Abstract Syntax Tree" (AST).
38
39Code Generation and Optimization
40 This stage translates an AST into low-level intermediate code (known as
41 "LLVM IR") and ultimately to machine code. This phase is responsible for
42 optimizing the generated code and handling target-specific code generation.
43 The output of this stage is typically called a ".s" file or "assembly" file.
44
45 Clang also supports the use of an integrated assembler, in which the code
46 generator produces object files directly. This avoids the overhead of
47 generating the ".s" file and of calling the target assembler.
48
49Assembler
50 This stage runs the target assembler to translate the output of the
51 compiler into a target object file. The output of this stage is typically
52 called a ".o" file or "object" file.
53
54Linker
55 This stage runs the target linker to merge multiple object files into an
56 executable or dynamic library. The output of this stage is typically called
57 an "a.out", ".dylib" or ".so" file.
58
59:program:`Clang Static Analyzer`
60
61The Clang Static Analyzer is a tool that scans source code to try to find bugs
62through code analysis. This tool uses many parts of Clang and is built into
63the same driver. Please see <http://clang-analyzer.llvm.org> for more details
64on how to use the static analyzer.
65
66OPTIONS
67-------
68
69Stage Selection Options
70~~~~~~~~~~~~~~~~~~~~~~~
71
72.. option:: -E
73
74 Run the preprocessor stage.
75
76.. option:: -fsyntax-only
77
78 Run the preprocessor, parser and type checking stages.
79
80.. option:: -S
81
82 Run the previous stages as well as LLVM generation and optimization stages
83 and target-specific code generation, producing an assembly file.
84
85.. option:: -c
86
87 Run all of the above, plus the assembler, generating a target ".o" object file.
88
89.. option:: no stage selection option
90
91 If no stage selection option is specified, all stages above are run, and the
92 linker is run to combine the results into an executable or shared library.
93
94Language Selection and Mode Options
95~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
96
97.. option:: -x <language>
98
99 Treat subsequent input files as having type language.
100
101.. option:: -std=<language>
102
103 Specify the language standard to compile for.
104
105.. option:: -stdlib=<library>
106
107 Specify the C++ standard library to use; supported options are libstdc++ and
Jonas Hahnfeld79e00932016-09-14 05:52:21 +0000108 libc++. If not specified, platform default will be used.
109
110.. option:: -rtlib=<library>
111
112 Specify the compiler runtime library to use; supported options are libgcc and
113 compiler-rt. If not specified, platform default will be used.
Andrew Wilkins6238c6f2015-06-30 02:52:38 +0000114
115.. option:: -ansi
116
117 Same as -std=c89.
118
119.. option:: -ObjC, -ObjC++
120
121 Treat source input files as Objective-C and Object-C++ inputs respectively.
122
123.. option:: -trigraphs
124
125 Enable trigraphs.
126
127.. option:: -ffreestanding
128
129 Indicate that the file should be compiled for a freestanding, not a hosted,
130 environment.
131
132.. option:: -fno-builtin
133
134 Disable special handling and optimizations of builtin functions like
135 :c:func:`strlen` and :c:func:`malloc`.
136
137.. option:: -fmath-errno
138
139 Indicate that math functions should be treated as updating :c:data:`errno`.
140
141.. option:: -fpascal-strings
142
143 Enable support for Pascal-style strings with "\\pfoo".
144
145.. option:: -fms-extensions
146
147 Enable support for Microsoft extensions.
148
149.. option:: -fmsc-version=
150
151 Set _MSC_VER. Defaults to 1300 on Windows. Not set otherwise.
152
153.. option:: -fborland-extensions
154
155 Enable support for Borland extensions.
156
157.. option:: -fwritable-strings
158
159 Make all string literals default to writable. This disables uniquing of
160 strings and other optimizations.
161
162.. option:: -flax-vector-conversions
163
164 Allow loose type checking rules for implicit vector conversions.
165
166.. option:: -fblocks
167
168 Enable the "Blocks" language feature.
169
170.. option:: -fobjc-gc-only
171
172 Indicate that Objective-C code should be compiled in GC-only mode, which only
173 works when Objective-C Garbage Collection is enabled.
174
175.. option:: -fobjc-gc
176
177 Indicate that Objective-C code should be compiled in hybrid-GC mode, which
178 works with both GC and non-GC mode.
179
180.. option:: -fobjc-abi-version=version
181
182 Select the Objective-C ABI version to use. Available versions are 1 (legacy
183 "fragile" ABI), 2 (non-fragile ABI 1), and 3 (non-fragile ABI 2).
184
185.. option:: -fobjc-nonfragile-abi-version=<version>
186
187 Select the Objective-C non-fragile ABI version to use by default. This will
188 only be used as the Objective-C ABI when the non-fragile ABI is enabled
189 (either via :option:`-fobjc-nonfragile-abi`, or because it is the platform
190 default).
191
Adrian Prantl6e7300b2016-07-11 17:03:13 +0000192.. option:: -fobjc-nonfragile-abi, -fno-objc-nonfragile-abi
Andrew Wilkins6238c6f2015-06-30 02:52:38 +0000193
194 Enable use of the Objective-C non-fragile ABI. On platforms for which this is
195 the default ABI, it can be disabled with :option:`-fno-objc-nonfragile-abi`.
196
197Target Selection Options
198~~~~~~~~~~~~~~~~~~~~~~~~
199
200Clang fully supports cross compilation as an inherent part of its design.
201Depending on how your version of Clang is configured, it may have support for a
202number of cross compilers, or may only support a native target.
203
204.. option:: -arch <architecture>
205
206 Specify the architecture to build for.
207
208.. option:: -mmacosx-version-min=<version>
209
210 When building for Mac OS X, specify the minimum version supported by your
211 application.
212
213.. option:: -miphoneos-version-min
214
215 When building for iPhone OS, specify the minimum version supported by your
216 application.
217
218.. option:: -march=<cpu>
219
220 Specify that Clang should generate code for a specific processor family
221 member and later. For example, if you specify -march=i486, the compiler is
222 allowed to generate instructions that are valid on i486 and later processors,
223 but which may not exist on earlier ones.
224
225
226Code Generation Options
227~~~~~~~~~~~~~~~~~~~~~~~
228
229.. option:: -O0, -O1, -O2, -O3, -Ofast, -Os, -Oz, -O, -O4
230
231 Specify which optimization level to use:
232
233 :option:`-O0` Means "no optimization": this level compiles the fastest and
234 generates the most debuggable code.
235
236 :option:`-O1` Somewhere between :option:`-O0` and :option:`-O2`.
237
238 :option:`-O2` Moderate level of optimization which enables most
239 optimizations.
240
241 :option:`-O3` Like :option:`-O2`, except that it enables optimizations that
242 take longer to perform or that may generate larger code (in an attempt to
243 make the program run faster).
244
245 :option:`-Ofast` Enables all the optimizations from :option:`-O3` along
246 with other aggressive optimizations that may violate strict compliance with
247 language standards.
248
249 :option:`-Os` Like :option:`-O2` with extra optimizations to reduce code
250 size.
251
252 :option:`-Oz` Like :option:`-Os` (and thus :option:`-O2`), but reduces code
253 size further.
254
255 :option:`-O` Equivalent to :option:`-O2`.
256
257 :option:`-O4` and higher
258
259 Currently equivalent to :option:`-O3`
260
Adrian Prantl59a6e242016-07-11 17:03:16 +0000261.. option:: -g, -gline-tables-only, -gmodules
Andrew Wilkins6238c6f2015-06-30 02:52:38 +0000262
Adrian Prantl59a6e242016-07-11 17:03:16 +0000263 Control debug information output. Note that Clang debug information works
264 best at :option:`-O0`. When more than one option starting with `-g` is
265 specified, the last one wins:
Andrew Wilkins6238c6f2015-06-30 02:52:38 +0000266
Adrian Prantl59a6e242016-07-11 17:03:16 +0000267 :option:`-g` Generate debug information.
Adrian Prantl6b21ab22015-08-27 19:46:20 +0000268
Adrian Prantl59a6e242016-07-11 17:03:16 +0000269 :option:`-gline-tables-only` Generate only line table debug information. This
270 allows for symbolicated backtraces with inlining information, but does not
271 include any information about variables, their locations or types.
Adrian Prantla7f56ab2015-12-22 22:37:22 +0000272
Adrian Prantl59a6e242016-07-11 17:03:16 +0000273 :option:`-gmodules` Generate debug information that contains external
274 references to types defined in Clang modules or precompiled headers instead
275 of emitting redundant debug type information into every object file. This
276 option transparently switches the Clang module format to object file
277 containers that hold the Clang module together with the debug information.
278 When compiling a program that uses Clang modules or precompiled headers,
279 this option produces complete debug information with faster compile
280 times and much smaller object files.
281
282 This option should not be used when building static libraries for
283 distribution to other machines because the debug info will contain
284 references to the module cache on the machine the object files in the
285 library were built on.
286
Andrew Wilkins6238c6f2015-06-30 02:52:38 +0000287.. option:: -fstandalone-debug -fno-standalone-debug
288
289 Clang supports a number of optimizations to reduce the size of debug
290 information in the binary. They work based on the assumption that the
291 debug type information can be spread out over multiple compilation units.
292 For instance, Clang will not emit type definitions for types that are not
293 needed by a module and could be replaced with a forward declaration.
294 Further, Clang will only emit type info for a dynamic C++ class in the
295 module that contains the vtable for the class.
296
297 The :option:`-fstandalone-debug` option turns off these optimizations.
298 This is useful when working with 3rd-party libraries that don't come with
299 debug information. This is the default on Darwin. Note that Clang will
300 never emit type information for types that are not referenced at all by the
301 program.
302
303.. option:: -fexceptions
304
305 Enable generation of unwind information. This allows exceptions to be thrown
306 through Clang compiled stack frames. This is on by default in x86-64.
307
308.. option:: -ftrapv
309
310 Generate code to catch integer overflow errors. Signed integer overflow is
311 undefined in C. With this flag, extra code is generated to detect this and
312 abort when it happens.
313
314.. option:: -fvisibility
315
316 This flag sets the default visibility level.
317
Adrian Prantl6e7300b2016-07-11 17:03:13 +0000318.. option:: -fcommon, -fno-common
Andrew Wilkins6238c6f2015-06-30 02:52:38 +0000319
320 This flag specifies that variables without initializers get common linkage.
321 It can be disabled with :option:`-fno-common`.
322
323.. option:: -ftls-model=<model>
324
325 Set the default thread-local storage (TLS) model to use for thread-local
326 variables. Valid values are: "global-dynamic", "local-dynamic",
327 "initial-exec" and "local-exec". The default is "global-dynamic". The default
328 model can be overridden with the tls_model attribute. The compiler will try
329 to choose a more efficient model if possible.
330
Aaron Ballman9bd12f4b2016-09-22 12:15:18 +0000331.. option:: -flto, -flto=full, -flto=thin, -emit-llvm
Andrew Wilkins6238c6f2015-06-30 02:52:38 +0000332
333 Generate output files in LLVM formats, suitable for link time optimization.
334 When used with :option:`-S` this generates LLVM intermediate language
335 assembly files, otherwise this generates LLVM bitcode format object files
336 (which may be passed to the linker depending on the stage selection options).
337
Teresa Johnson9e052662016-09-22 13:41:10 +0000338 The default for :option:`-flto` is "full", in which the
Teresa Johnson8de63462016-09-21 16:57:03 +0000339 LLVM bitcode is suitable for monolithic Link Time Optimization (LTO), where
340 the linker merges all such modules into a single combined module for
Teresa Johnson14142bf2016-09-22 13:58:33 +0000341 optimization. With "thin", :doc:`ThinLTO <../ThinLTO>`
Teresa Johnson8de63462016-09-21 16:57:03 +0000342 compilation is invoked instead.
343
Andrew Wilkins6238c6f2015-06-30 02:52:38 +0000344Driver Options
345~~~~~~~~~~~~~~
346
347.. option:: -###
348
349 Print (but do not run) the commands to run for this compilation.
350
351.. option:: --help
352
353 Display available options.
354
355.. option:: -Qunused-arguments
356
357 Do not emit any warnings for unused driver arguments.
358
359.. option:: -Wa,<args>
360
361 Pass the comma separated arguments in args to the assembler.
362
363.. option:: -Wl,<args>
364
365 Pass the comma separated arguments in args to the linker.
366
367.. option:: -Wp,<args>
368
369 Pass the comma separated arguments in args to the preprocessor.
370
371.. option:: -Xanalyzer <arg>
372
373 Pass arg to the static analyzer.
374
375.. option:: -Xassembler <arg>
376
377 Pass arg to the assembler.
378
379.. option:: -Xlinker <arg>
380
381 Pass arg to the linker.
382
383.. option:: -Xpreprocessor <arg>
384
385 Pass arg to the preprocessor.
386
387.. option:: -o <file>
388
389 Write output to file.
390
391.. option:: -print-file-name=<file>
392
393 Print the full library path of file.
394
395.. option:: -print-libgcc-file-name
396
397 Print the library path for "libgcc.a".
398
399.. option:: -print-prog-name=<name>
400
401 Print the full program path of name.
402
403.. option:: -print-search-dirs
404
405 Print the paths used for finding libraries and programs.
406
407.. option:: -save-temps
408
409 Save intermediate compilation results.
410
411.. option:: -integrated-as, -no-integrated-as
412
413 Used to enable and disable, respectively, the use of the integrated
414 assembler. Whether the integrated assembler is on by default is target
415 dependent.
416
417.. option:: -time
418
419 Time individual commands.
420
421.. option:: -ftime-report
422
423 Print timing summary of each stage of compilation.
424
425.. option:: -v
426
427 Show commands to run and use verbose output.
428
429
430Diagnostics Options
431~~~~~~~~~~~~~~~~~~~
432
433.. option:: -fshow-column, -fshow-source-location, -fcaret-diagnostics, -fdiagnostics-fixit-info, -fdiagnostics-parseable-fixits, -fdiagnostics-print-source-range-info, -fprint-source-range-info, -fdiagnostics-show-option, -fmessage-length
434
435 These options control how Clang prints out information about diagnostics
436 (errors and warnings). Please see the Clang User's Manual for more information.
437
438Preprocessor Options
439~~~~~~~~~~~~~~~~~~~~
440
441.. option:: -D<macroname>=<value>
442
443 Adds an implicit #define into the predefines buffer which is read before the
444 source file is preprocessed.
445
446.. option:: -U<macroname>
447
448 Adds an implicit #undef into the predefines buffer which is read before the
449 source file is preprocessed.
450
451.. option:: -include <filename>
452
453 Adds an implicit #include into the predefines buffer which is read before the
454 source file is preprocessed.
455
456.. option:: -I<directory>
457
458 Add the specified directory to the search path for include files.
459
460.. option:: -F<directory>
461
462 Add the specified directory to the search path for framework include files.
463
464.. option:: -nostdinc
465
466 Do not search the standard system directories or compiler builtin directories
467 for include files.
468
469.. option:: -nostdlibinc
470
471 Do not search the standard system directories for include files, but do
472 search compiler builtin include directories.
473
474.. option:: -nobuiltininc
475
476 Do not search clang's builtin directory for include files.
477
478
479ENVIRONMENT
480-----------
481
482.. envvar:: TMPDIR, TEMP, TMP
483
484 These environment variables are checked, in order, for the location to write
485 temporary files used during the compilation process.
486
487.. envvar:: CPATH
488
489 If this environment variable is present, it is treated as a delimited list of
490 paths to be added to the default system include path list. The delimiter is
491 the platform dependent delimiter, as used in the PATH environment variable.
492
493 Empty components in the environment variable are ignored.
494
495.. envvar:: C_INCLUDE_PATH, OBJC_INCLUDE_PATH, CPLUS_INCLUDE_PATH, OBJCPLUS_INCLUDE_PATH
496
497 These environment variables specify additional paths, as for :envvar:`CPATH`, which are
498 only used when processing the appropriate language.
499
500.. envvar:: MACOSX_DEPLOYMENT_TARGET
501
502 If :option:`-mmacosx-version-min` is unspecified, the default deployment
503 target is read from this environment variable. This option only affects
504 Darwin targets.
505
506BUGS
507----
508
509To report bugs, please visit <http://llvm.org/bugs/>. Most bug reports should
510include preprocessed source files (use the :option:`-E` option) and the full
511output of the compiler, along with information to reproduce.
512
513SEE ALSO
514--------
515
516:manpage:`as(1)`, :manpage:`ld(1)`
517