2018-11-11 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / doc / cppopts.texi
blobaf5ee08225f5d00ceae956a2de0475434c599559
1 @c Copyright (C) 1999-2018 Free Software Foundation, Inc.
2 @c This is part of the CPP and GCC manuals.
3 @c For copying conditions, see the file gcc.texi.
5 @c ---------------------------------------------------------------------
6 @c Options affecting the preprocessor
7 @c ---------------------------------------------------------------------
9 @c If this file is included with the flag ``cppmanual'' set, it is
10 @c formatted for inclusion in the CPP manual; otherwise the main GCC manual.
12 @item -D @var{name}
13 @opindex D
14 Predefine @var{name} as a macro, with definition @code{1}.
16 @item -D @var{name}=@var{definition}
17 The contents of @var{definition} are tokenized and processed as if
18 they appeared during translation phase three in a @samp{#define}
19 directive.  In particular, the definition is truncated by
20 embedded newline characters.
22 If you are invoking the preprocessor from a shell or shell-like
23 program you may need to use the shell's quoting syntax to protect
24 characters such as spaces that have a meaning in the shell syntax.
26 If you wish to define a function-like macro on the command line, write
27 its argument list with surrounding parentheses before the equals sign
28 (if any).  Parentheses are meaningful to most shells, so you should
29 quote the option.  With @command{sh} and @command{csh},
30 @option{-D'@var{name}(@var{args@dots{}})=@var{definition}'} works.
32 @option{-D} and @option{-U} options are processed in the order they
33 are given on the command line.  All @option{-imacros @var{file}} and
34 @option{-include @var{file}} options are processed after all
35 @option{-D} and @option{-U} options.
37 @item -U @var{name}
38 @opindex U
39 Cancel any previous definition of @var{name}, either built in or
40 provided with a @option{-D} option.
42 @item -include @var{file}
43 @opindex include
44 Process @var{file} as if @code{#include "file"} appeared as the first
45 line of the primary source file.  However, the first directory searched
46 for @var{file} is the preprocessor's working directory @emph{instead of}
47 the directory containing the main source file.  If not found there, it
48 is searched for in the remainder of the @code{#include "@dots{}"} search
49 chain as normal.
51 If multiple @option{-include} options are given, the files are included
52 in the order they appear on the command line.
54 @item -imacros @var{file}
55 @opindex imacros
56 Exactly like @option{-include}, except that any output produced by
57 scanning @var{file} is thrown away.  Macros it defines remain defined.
58 This allows you to acquire all the macros from a header without also
59 processing its declarations.
61 All files specified by @option{-imacros} are processed before all files
62 specified by @option{-include}.
64 @item -undef
65 @opindex undef
66 Do not predefine any system-specific or GCC-specific macros.  The
67 standard predefined macros remain defined.
68 @ifset cppmanual
69 @xref{Standard Predefined Macros}.
70 @end ifset
72 @item -pthread
73 @opindex pthread
74 Define additional macros required for using the POSIX threads library.
75 You should use this option consistently for both compilation and linking.
76 This option is supported on GNU/Linux targets, most other Unix derivatives,
77 and also on x86 Cygwin and MinGW targets.
79 @item -M
80 @opindex M
81 @cindex @command{make}
82 @cindex dependencies, @command{make}
83 Instead of outputting the result of preprocessing, output a rule
84 suitable for @command{make} describing the dependencies of the main
85 source file.  The preprocessor outputs one @command{make} rule containing
86 the object file name for that source file, a colon, and the names of all
87 the included files, including those coming from @option{-include} or
88 @option{-imacros} command-line options.
90 Unless specified explicitly (with @option{-MT} or @option{-MQ}), the
91 object file name consists of the name of the source file with any
92 suffix replaced with object file suffix and with any leading directory
93 parts removed.  If there are many included files then the rule is
94 split into several lines using @samp{\}-newline.  The rule has no
95 commands.
97 This option does not suppress the preprocessor's debug output, such as
98 @option{-dM}.  To avoid mixing such debug output with the dependency
99 rules you should explicitly specify the dependency output file with
100 @option{-MF}, or use an environment variable like
101 @env{DEPENDENCIES_OUTPUT} (@pxref{Environment Variables}).  Debug output
102 is still sent to the regular output stream as normal.
104 Passing @option{-M} to the driver implies @option{-E}, and suppresses
105 warnings with an implicit @option{-w}.
107 @item -MM
108 @opindex MM
109 Like @option{-M} but do not mention header files that are found in
110 system header directories, nor header files that are included,
111 directly or indirectly, from such a header.
113 This implies that the choice of angle brackets or double quotes in an
114 @samp{#include} directive does not in itself determine whether that
115 header appears in @option{-MM} dependency output.
117 @anchor{dashMF}
118 @item -MF @var{file}
119 @opindex MF
120 When used with @option{-M} or @option{-MM}, specifies a
121 file to write the dependencies to.  If no @option{-MF} switch is given
122 the preprocessor sends the rules to the same place it would send
123 preprocessed output.
125 When used with the driver options @option{-MD} or @option{-MMD},
126 @option{-MF} overrides the default dependency output file.
128 If @var{file} is @file{-}, then the dependencies are written to @file{stdout}.
130 @item -MG
131 @opindex MG
132 In conjunction with an option such as @option{-M} requesting
133 dependency generation, @option{-MG} assumes missing header files are
134 generated files and adds them to the dependency list without raising
135 an error.  The dependency filename is taken directly from the
136 @code{#include} directive without prepending any path.  @option{-MG}
137 also suppresses preprocessed output, as a missing header file renders
138 this useless.
140 This feature is used in automatic updating of makefiles.
142 @item -MP
143 @opindex MP
144 This option instructs CPP to add a phony target for each dependency
145 other than the main file, causing each to depend on nothing.  These
146 dummy rules work around errors @command{make} gives if you remove header
147 files without updating the @file{Makefile} to match.
149 This is typical output:
151 @smallexample
152 test.o: test.c test.h
154 test.h:
155 @end smallexample
157 @item -MT @var{target}
158 @opindex MT
160 Change the target of the rule emitted by dependency generation.  By
161 default CPP takes the name of the main input file, deletes any
162 directory components and any file suffix such as @samp{.c}, and
163 appends the platform's usual object suffix.  The result is the target.
165 An @option{-MT} option sets the target to be exactly the string you
166 specify.  If you want multiple targets, you can specify them as a single
167 argument to @option{-MT}, or use multiple @option{-MT} options.
169 For example, @option{@w{-MT '$(objpfx)foo.o'}} might give
171 @smallexample
172 $(objpfx)foo.o: foo.c
173 @end smallexample
175 @item -MQ @var{target}
176 @opindex MQ
178 Same as @option{-MT}, but it quotes any characters which are special to
179 Make.  @option{@w{-MQ '$(objpfx)foo.o'}} gives
181 @smallexample
182 $$(objpfx)foo.o: foo.c
183 @end smallexample
185 The default target is automatically quoted, as if it were given with
186 @option{-MQ}.
188 @item -MD
189 @opindex MD
190 @option{-MD} is equivalent to @option{-M -MF @var{file}}, except that
191 @option{-E} is not implied.  The driver determines @var{file} based on
192 whether an @option{-o} option is given.  If it is, the driver uses its
193 argument but with a suffix of @file{.d}, otherwise it takes the name
194 of the input file, removes any directory components and suffix, and
195 applies a @file{.d} suffix.
197 If @option{-MD} is used in conjunction with @option{-E}, any
198 @option{-o} switch is understood to specify the dependency output file
199 (@pxref{dashMF,,-MF}), but if used without @option{-E}, each @option{-o}
200 is understood to specify a target object file.
202 Since @option{-E} is not implied, @option{-MD} can be used to generate
203 a dependency output file as a side effect of the compilation process.
205 @item -MMD
206 @opindex MMD
207 Like @option{-MD} except mention only user header files, not system
208 header files.
210 @item -fpreprocessed
211 @opindex fpreprocessed
212 Indicate to the preprocessor that the input file has already been
213 preprocessed.  This suppresses things like macro expansion, trigraph
214 conversion, escaped newline splicing, and processing of most directives.
215 The preprocessor still recognizes and removes comments, so that you can
216 pass a file preprocessed with @option{-C} to the compiler without
217 problems.  In this mode the integrated preprocessor is little more than
218 a tokenizer for the front ends.
220 @option{-fpreprocessed} is implicit if the input file has one of the
221 extensions @samp{.i}, @samp{.ii} or @samp{.mi}.  These are the
222 extensions that GCC uses for preprocessed files created by
223 @option{-save-temps}.
225 @item -fdirectives-only
226 @opindex fdirectives-only
227 When preprocessing, handle directives, but do not expand macros.
229 The option's behavior depends on the @option{-E} and @option{-fpreprocessed}
230 options.
232 With @option{-E}, preprocessing is limited to the handling of directives
233 such as @code{#define}, @code{#ifdef}, and @code{#error}.  Other
234 preprocessor operations, such as macro expansion and trigraph
235 conversion are not performed.  In addition, the @option{-dD} option is
236 implicitly enabled.
238 With @option{-fpreprocessed}, predefinition of command line and most
239 builtin macros is disabled.  Macros such as @code{__LINE__}, which are
240 contextually dependent, are handled normally.  This enables compilation of
241 files previously preprocessed with @code{-E -fdirectives-only}.
243 With both @option{-E} and @option{-fpreprocessed}, the rules for
244 @option{-fpreprocessed} take precedence.  This enables full preprocessing of
245 files previously preprocessed with @code{-E -fdirectives-only}.
247 @item -fdollars-in-identifiers
248 @opindex fdollars-in-identifiers
249 @anchor{fdollars-in-identifiers}
250 Accept @samp{$} in identifiers.
251 @ifset cppmanual
252 @xref{Identifier characters}.
253 @end ifset
255 @item -fextended-identifiers
256 @opindex fextended-identifiers
257 Accept universal character names in identifiers.  This option is
258 enabled by default for C99 (and later C standard versions) and C++.
260 @item -fno-canonical-system-headers
261 @opindex fno-canonical-system-headers
262 When preprocessing, do not shorten system header paths with canonicalization.
264 @item -ftabstop=@var{width}
265 @opindex ftabstop
266 Set the distance between tab stops.  This helps the preprocessor report
267 correct column numbers in warnings or errors, even if tabs appear on the
268 line.  If the value is less than 1 or greater than 100, the option is
269 ignored.  The default is 8.
271 @item -ftrack-macro-expansion@r{[}=@var{level}@r{]}
272 @opindex ftrack-macro-expansion
273 Track locations of tokens across macro expansions. This allows the
274 compiler to emit diagnostic about the current macro expansion stack
275 when a compilation error occurs in a macro expansion. Using this
276 option makes the preprocessor and the compiler consume more
277 memory. The @var{level} parameter can be used to choose the level of
278 precision of token location tracking thus decreasing the memory
279 consumption if necessary. Value @samp{0} of @var{level} de-activates
280 this option. Value @samp{1} tracks tokens locations in a
281 degraded mode for the sake of minimal memory overhead. In this mode
282 all tokens resulting from the expansion of an argument of a
283 function-like macro have the same location. Value @samp{2} tracks
284 tokens locations completely. This value is the most memory hungry.
285 When this option is given no argument, the default parameter value is
286 @samp{2}.
288 Note that @code{-ftrack-macro-expansion=2} is activated by default.
290 @item -fmacro-prefix-map=@var{old}=@var{new}
291 @opindex fmacro-prefix-map
292 When preprocessing files residing in directory @file{@var{old}},
293 expand the @code{__FILE__} and @code{__BASE_FILE__} macros as if the
294 files resided in directory @file{@var{new}} instead.  This can be used
295 to change an absolute path to a relative path by using @file{.} for
296 @var{new} which can result in more reproducible builds that are
297 location independent.  This option also affects
298 @code{__builtin_FILE()} during compilation.  See also
299 @option{-ffile-prefix-map}.
301 @item -fexec-charset=@var{charset}
302 @opindex fexec-charset
303 @cindex character set, execution
304 Set the execution character set, used for string and character
305 constants.  The default is UTF-8.  @var{charset} can be any encoding
306 supported by the system's @code{iconv} library routine.
308 @item -fwide-exec-charset=@var{charset}
309 @opindex fwide-exec-charset
310 @cindex character set, wide execution
311 Set the wide execution character set, used for wide string and
312 character constants.  The default is UTF-32 or UTF-16, whichever
313 corresponds to the width of @code{wchar_t}.  As with
314 @option{-fexec-charset}, @var{charset} can be any encoding supported
315 by the system's @code{iconv} library routine; however, you will have
316 problems with encodings that do not fit exactly in @code{wchar_t}.
318 @item -finput-charset=@var{charset}
319 @opindex finput-charset
320 @cindex character set, input
321 Set the input character set, used for translation from the character
322 set of the input file to the source character set used by GCC@.  If the
323 locale does not specify, or GCC cannot get this information from the
324 locale, the default is UTF-8.  This can be overridden by either the locale
325 or this command-line option.  Currently the command-line option takes
326 precedence if there's a conflict.  @var{charset} can be any encoding
327 supported by the system's @code{iconv} library routine.
329 @ifclear cppmanual
330 @item -fpch-deps
331 @opindex fpch-deps
332 When using precompiled headers (@pxref{Precompiled Headers}), this flag
333 causes the dependency-output flags to also list the files from the
334 precompiled header's dependencies.  If not specified, only the
335 precompiled header are listed and not the files that were used to
336 create it, because those files are not consulted when a precompiled
337 header is used.
339 @item -fpch-preprocess
340 @opindex fpch-preprocess
341 This option allows use of a precompiled header (@pxref{Precompiled
342 Headers}) together with @option{-E}.  It inserts a special @code{#pragma},
343 @code{#pragma GCC pch_preprocess "@var{filename}"} in the output to mark
344 the place where the precompiled header was found, and its @var{filename}.
345 When @option{-fpreprocessed} is in use, GCC recognizes this @code{#pragma}
346 and loads the PCH@.
348 This option is off by default, because the resulting preprocessed output
349 is only really suitable as input to GCC@.  It is switched on by
350 @option{-save-temps}.
352 You should not write this @code{#pragma} in your own code, but it is
353 safe to edit the filename if the PCH file is available in a different
354 location.  The filename may be absolute or it may be relative to GCC's
355 current directory.
356 @end ifclear
358 @item -fworking-directory
359 @opindex fworking-directory
360 @opindex fno-working-directory
361 Enable generation of linemarkers in the preprocessor output that
362 let the compiler know the current working directory at the time of
363 preprocessing.  When this option is enabled, the preprocessor
364 emits, after the initial linemarker, a second linemarker with the
365 current working directory followed by two slashes.  GCC uses this
366 directory, when it's present in the preprocessed input, as the
367 directory emitted as the current working directory in some debugging
368 information formats.  This option is implicitly enabled if debugging
369 information is enabled, but this can be inhibited with the negated
370 form @option{-fno-working-directory}.  If the @option{-P} flag is
371 present in the command line, this option has no effect, since no
372 @code{#line} directives are emitted whatsoever.
374 @item -A @var{predicate}=@var{answer}
375 @opindex A
376 Make an assertion with the predicate @var{predicate} and answer
377 @var{answer}.  This form is preferred to the older form @option{-A
378 @var{predicate}(@var{answer})}, which is still supported, because
379 it does not use shell special characters.
380 @ifset cppmanual
381 @xref{Obsolete Features}.
382 @end ifset
384 @item -A -@var{predicate}=@var{answer}
385 Cancel an assertion with the predicate @var{predicate} and answer
386 @var{answer}.
388 @item -C
389 @opindex C
390 Do not discard comments.  All comments are passed through to the output
391 file, except for comments in processed directives, which are deleted
392 along with the directive.
394 You should be prepared for side effects when using @option{-C}; it
395 causes the preprocessor to treat comments as tokens in their own right.
396 For example, comments appearing at the start of what would be a
397 directive line have the effect of turning that line into an ordinary
398 source line, since the first token on the line is no longer a @samp{#}.
400 @item -CC
401 @opindex CC
402 Do not discard comments, including during macro expansion.  This is
403 like @option{-C}, except that comments contained within macros are
404 also passed through to the output file where the macro is expanded.
406 In addition to the side effects of the @option{-C} option, the
407 @option{-CC} option causes all C++-style comments inside a macro
408 to be converted to C-style comments.  This is to prevent later use
409 of that macro from inadvertently commenting out the remainder of
410 the source line.
412 The @option{-CC} option is generally used to support lint comments.
414 @item -P
415 @opindex P
416 Inhibit generation of linemarkers in the output from the preprocessor.
417 This might be useful when running the preprocessor on something that is
418 not C code, and will be sent to a program which might be confused by the
419 linemarkers.
420 @ifset cppmanual
421 @xref{Preprocessor Output}.
422 @end ifset
424 @cindex traditional C language
425 @cindex C language, traditional
426 @item -traditional
427 @itemx -traditional-cpp
428 @opindex traditional-cpp
429 @opindex traditional
431 Try to imitate the behavior of pre-standard C preprocessors, as
432 opposed to ISO C preprocessors.
433 @ifset cppmanual
434 @xref{Traditional Mode}.
435 @end ifset
436 @ifclear cppmanual
437 See the GNU CPP manual for details.
438 @end ifclear
440 Note that GCC does not otherwise attempt to emulate a pre-standard 
441 C compiler, and these options are only supported with the @option{-E} 
442 switch, or when invoking CPP explicitly.
444 @item -trigraphs
445 @opindex trigraphs
446 Support ISO C trigraphs.
447 These are three-character sequences, all starting with @samp{??}, that
448 are defined by ISO C to stand for single characters.  For example,
449 @samp{??/} stands for @samp{\}, so @samp{'??/n'} is a character
450 constant for a newline.
451 @ifset cppmanual
452 @xref{Initial processing}.
453 @end ifset
455 @ifclear cppmanual
456 The nine trigraphs and their replacements are
458 @smallexample
459 Trigraph:       ??(  ??)  ??<  ??>  ??=  ??/  ??'  ??!  ??-
460 Replacement:      [    ]    @{    @}    #    \    ^    |    ~
461 @end smallexample
462 @end ifclear
464 By default, GCC ignores trigraphs, but in
465 standard-conforming modes it converts them.  See the @option{-std} and
466 @option{-ansi} options.
468 @item -remap
469 @opindex remap
470 Enable special code to work around file systems which only permit very
471 short file names, such as MS-DOS@.
473 @item -H
474 @opindex H
475 Print the name of each header file used, in addition to other normal
476 activities.  Each name is indented to show how deep in the
477 @samp{#include} stack it is.  Precompiled header files are also
478 printed, even if they are found to be invalid; an invalid precompiled
479 header file is printed with @samp{...x} and a valid one with @samp{...!} .
481 @item -d@var{letters}
482 @opindex d
483 Says to make debugging dumps during compilation as specified by
484 @var{letters}.  The flags documented here are those relevant to the
485 preprocessor.  Other @var{letters} are interpreted
486 by the compiler proper, or reserved for future versions of GCC, and so
487 are silently ignored.  If you specify @var{letters} whose behavior
488 conflicts, the result is undefined.
489 @ifclear cppmanual
490 @xref{Developer Options}, for more information.
491 @end ifclear
493 @table @gcctabopt
494 @item -dM
495 @opindex dM
496 Instead of the normal output, generate a list of @samp{#define}
497 directives for all the macros defined during the execution of the
498 preprocessor, including predefined macros.  This gives you a way of
499 finding out what is predefined in your version of the preprocessor.
500 Assuming you have no file @file{foo.h}, the command
502 @smallexample
503 touch foo.h; cpp -dM foo.h
504 @end smallexample
506 @noindent
507 shows all the predefined macros.
509 @ifclear cppmanual
510 If you use @option{-dM} without the @option{-E} option, @option{-dM} is
511 interpreted as a synonym for @option{-fdump-rtl-mach}.
512 @xref{Developer Options, , ,gcc}.
513 @end ifclear
515 @item -dD
516 @opindex dD
517 Like @option{-dM} except in two respects: it does @emph{not} include the
518 predefined macros, and it outputs @emph{both} the @samp{#define}
519 directives and the result of preprocessing.  Both kinds of output go to
520 the standard output file.
522 @item -dN
523 @opindex dN
524 Like @option{-dD}, but emit only the macro names, not their expansions.
526 @item -dI
527 @opindex dI
528 Output @samp{#include} directives in addition to the result of
529 preprocessing.
531 @item -dU
532 @opindex dU
533 Like @option{-dD} except that only macros that are expanded, or whose
534 definedness is tested in preprocessor directives, are output; the
535 output is delayed until the use or test of the macro; and
536 @samp{#undef} directives are also output for macros tested but
537 undefined at the time.
538 @end table
540 @item -fdebug-cpp
541 @opindex fdebug-cpp
542 This option is only useful for debugging GCC.  When used from CPP or with
543 @option{-E}, it dumps debugging information about location maps.  Every
544 token in the output is preceded by the dump of the map its location
545 belongs to.
547 When used from GCC without @option{-E}, this option has no effect.