1CPP(1) GNU CPP(1)
2
3
4
6 cpp - The C Preprocessor
7
9 cpp [-Dmacro[=defn]...] [-Umacro]
10 [-Idir...] [-iquotedir...]
11 [-M|-MM] [-MG] [-MF filename]
12 [-MP] [-MQ target...]
13 [-MT target...]
14 infile [[-o] outfile]
15
16 Only the most useful options are given above; see below for a more
17 complete list of preprocessor-specific options. In addition, cpp
18 accepts most gcc driver options, which are not listed here. Refer to
19 the GCC documentation for details.
20
22 The C preprocessor, often known as cpp, is a macro processor that is
23 used automatically by the C compiler to transform your program before
24 compilation. It is called a macro processor because it allows you to
25 define macros, which are brief abbreviations for longer constructs.
26
27 The C preprocessor is intended to be used only with C, C++, and
28 Objective-C source code. In the past, it has been abused as a general
29 text processor. It will choke on input which does not obey C's lexical
30 rules. For example, apostrophes will be interpreted as the beginning
31 of character constants, and cause errors. Also, you cannot rely on it
32 preserving characteristics of the input which are not significant to
33 C-family languages. If a Makefile is preprocessed, all the hard tabs
34 will be removed, and the Makefile will not work.
35
36 Having said that, you can often get away with using cpp on things which
37 are not C. Other Algol-ish programming languages are often safe (Ada,
38 etc.) So is assembly, with caution. -traditional-cpp mode preserves
39 more white space, and is otherwise more permissive. Many of the
40 problems can be avoided by writing C or C++ style comments instead of
41 native language comments, and keeping macros simple.
42
43 Wherever possible, you should use a preprocessor geared to the language
44 you are writing in. Modern versions of the GNU assembler have macro
45 facilities. Most high level programming languages have their own
46 conditional compilation and inclusion mechanism. If all else fails,
47 try a true general text processor, such as GNU M4.
48
49 C preprocessors vary in some details. This manual discusses the GNU C
50 preprocessor, which provides a small superset of the features of ISO
51 Standard C. In its default mode, the GNU C preprocessor does not do a
52 few things required by the standard. These are features which are
53 rarely, if ever, used, and may cause surprising changes to the meaning
54 of a program which does not expect them. To get strict ISO Standard C,
55 you should use the -std=c90, -std=c99, -std=c11 or -std=c17 options,
56 depending on which version of the standard you want. To get all the
57 mandatory diagnostics, you must also use -pedantic.
58
59 This manual describes the behavior of the ISO preprocessor. To
60 minimize gratuitous differences, where the ISO preprocessor's behavior
61 does not conflict with traditional semantics, the traditional
62 preprocessor should behave the same way. The various differences that
63 do exist are detailed in the section Traditional Mode.
64
65 For clarity, unless noted otherwise, references to CPP in this manual
66 refer to GNU CPP.
67
69 The cpp command expects two file names as arguments, infile and
70 outfile. The preprocessor reads infile together with any other files
71 it specifies with #include. All the output generated by the combined
72 input files is written in outfile.
73
74 Either infile or outfile may be -, which as infile means to read from
75 standard input and as outfile means to write to standard output. If
76 either file is omitted, it means the same as if - had been specified
77 for that file. You can also use the -o outfile option to specify the
78 output file.
79
80 Unless otherwise noted, or the option ends in =, all options which take
81 an argument may have that argument appear either immediately after the
82 option, or with a space between option and argument: -Ifoo and -I foo
83 have the same effect.
84
85 Many options have multi-letter names; therefore multiple single-letter
86 options may not be grouped: -dM is very different from -d -M.
87
88 -D name
89 Predefine name as a macro, with definition 1.
90
91 -D name=definition
92 The contents of definition are tokenized and processed as if they
93 appeared during translation phase three in a #define directive. In
94 particular, the definition is truncated by embedded newline
95 characters.
96
97 If you are invoking the preprocessor from a shell or shell-like
98 program you may need to use the shell's quoting syntax to protect
99 characters such as spaces that have a meaning in the shell syntax.
100
101 If you wish to define a function-like macro on the command line,
102 write its argument list with surrounding parentheses before the
103 equals sign (if any). Parentheses are meaningful to most shells,
104 so you should quote the option. With sh and csh,
105 -D'name(args...)=definition' works.
106
107 -D and -U options are processed in the order they are given on the
108 command line. All -imacros file and -include file options are
109 processed after all -D and -U options.
110
111 -U name
112 Cancel any previous definition of name, either built in or provided
113 with a -D option.
114
115 -include file
116 Process file as if "#include "file"" appeared as the first line of
117 the primary source file. However, the first directory searched for
118 file is the preprocessor's working directory instead of the
119 directory containing the main source file. If not found there, it
120 is searched for in the remainder of the "#include "..."" search
121 chain as normal.
122
123 If multiple -include options are given, the files are included in
124 the order they appear on the command line.
125
126 -imacros file
127 Exactly like -include, except that any output produced by scanning
128 file is thrown away. Macros it defines remain defined. This
129 allows you to acquire all the macros from a header without also
130 processing its declarations.
131
132 All files specified by -imacros are processed before all files
133 specified by -include.
134
135 -undef
136 Do not predefine any system-specific or GCC-specific macros. The
137 standard predefined macros remain defined.
138
139 -pthread
140 Define additional macros required for using the POSIX threads
141 library. You should use this option consistently for both
142 compilation and linking. This option is supported on GNU/Linux
143 targets, most other Unix derivatives, and also on x86 Cygwin and
144 MinGW targets.
145
146 -M Instead of outputting the result of preprocessing, output a rule
147 suitable for make describing the dependencies of the main source
148 file. The preprocessor outputs one make rule containing the object
149 file name for that source file, a colon, and the names of all the
150 included files, including those coming from -include or -imacros
151 command-line options.
152
153 Unless specified explicitly (with -MT or -MQ), the object file name
154 consists of the name of the source file with any suffix replaced
155 with object file suffix and with any leading directory parts
156 removed. If there are many included files then the rule is split
157 into several lines using \-newline. The rule has no commands.
158
159 This option does not suppress the preprocessor's debug output, such
160 as -dM. To avoid mixing such debug output with the dependency
161 rules you should explicitly specify the dependency output file with
162 -MF, or use an environment variable like DEPENDENCIES_OUTPUT.
163 Debug output is still sent to the regular output stream as normal.
164
165 Passing -M to the driver implies -E, and suppresses warnings with
166 an implicit -w.
167
168 -MM Like -M but do not mention header files that are found in system
169 header directories, nor header files that are included, directly or
170 indirectly, from such a header.
171
172 This implies that the choice of angle brackets or double quotes in
173 an #include directive does not in itself determine whether that
174 header appears in -MM dependency output.
175
176 -MF file
177 When used with -M or -MM, specifies a file to write the
178 dependencies to. If no -MF switch is given the preprocessor sends
179 the rules to the same place it would send preprocessed output.
180
181 When used with the driver options -MD or -MMD, -MF overrides the
182 default dependency output file.
183
184 If file is -, then the dependencies are written to stdout.
185
186 -MG In conjunction with an option such as -M requesting dependency
187 generation, -MG assumes missing header files are generated files
188 and adds them to the dependency list without raising an error. The
189 dependency filename is taken directly from the "#include" directive
190 without prepending any path. -MG also suppresses preprocessed
191 output, as a missing header file renders this useless.
192
193 This feature is used in automatic updating of makefiles.
194
195 -Mno-modules
196 Disable dependency generation for compiled module interfaces.
197
198 -MP This option instructs CPP to add a phony target for each dependency
199 other than the main file, causing each to depend on nothing. These
200 dummy rules work around errors make gives if you remove header
201 files without updating the Makefile to match.
202
203 This is typical output:
204
205 test.o: test.c test.h
206
207 test.h:
208
209 -MT target
210 Change the target of the rule emitted by dependency generation. By
211 default CPP takes the name of the main input file, deletes any
212 directory components and any file suffix such as .c, and appends
213 the platform's usual object suffix. The result is the target.
214
215 An -MT option sets the target to be exactly the string you specify.
216 If you want multiple targets, you can specify them as a single
217 argument to -MT, or use multiple -MT options.
218
219 For example, -MT '$(objpfx)foo.o' might give
220
221 $(objpfx)foo.o: foo.c
222
223 -MQ target
224 Same as -MT, but it quotes any characters which are special to
225 Make. -MQ '$(objpfx)foo.o' gives
226
227 $$(objpfx)foo.o: foo.c
228
229 The default target is automatically quoted, as if it were given
230 with -MQ.
231
232 -MD -MD is equivalent to -M -MF file, except that -E is not implied.
233 The driver determines file based on whether an -o option is given.
234 If it is, the driver uses its argument but with a suffix of .d,
235 otherwise it takes the name of the input file, removes any
236 directory components and suffix, and applies a .d suffix.
237
238 If -MD is used in conjunction with -E, any -o switch is understood
239 to specify the dependency output file, but if used without -E, each
240 -o is understood to specify a target object file.
241
242 Since -E is not implied, -MD can be used to generate a dependency
243 output file as a side effect of the compilation process.
244
245 -MMD
246 Like -MD except mention only user header files, not system header
247 files.
248
249 -fpreprocessed
250 Indicate to the preprocessor that the input file has already been
251 preprocessed. This suppresses things like macro expansion,
252 trigraph conversion, escaped newline splicing, and processing of
253 most directives. The preprocessor still recognizes and removes
254 comments, so that you can pass a file preprocessed with -C to the
255 compiler without problems. In this mode the integrated
256 preprocessor is little more than a tokenizer for the front ends.
257
258 -fpreprocessed is implicit if the input file has one of the
259 extensions .i, .ii or .mi. These are the extensions that GCC uses
260 for preprocessed files created by -save-temps.
261
262 -fdirectives-only
263 When preprocessing, handle directives, but do not expand macros.
264
265 The option's behavior depends on the -E and -fpreprocessed options.
266
267 With -E, preprocessing is limited to the handling of directives
268 such as "#define", "#ifdef", and "#error". Other preprocessor
269 operations, such as macro expansion and trigraph conversion are not
270 performed. In addition, the -dD option is implicitly enabled.
271
272 With -fpreprocessed, predefinition of command line and most builtin
273 macros is disabled. Macros such as "__LINE__", which are
274 contextually dependent, are handled normally. This enables
275 compilation of files previously preprocessed with "-E
276 -fdirectives-only".
277
278 With both -E and -fpreprocessed, the rules for -fpreprocessed take
279 precedence. This enables full preprocessing of files previously
280 preprocessed with "-E -fdirectives-only".
281
282 -fdollars-in-identifiers
283 Accept $ in identifiers.
284
285 -fextended-identifiers
286 Accept universal character names and extended characters in
287 identifiers. This option is enabled by default for C99 (and later
288 C standard versions) and C++.
289
290 -fno-canonical-system-headers
291 When preprocessing, do not shorten system header paths with
292 canonicalization.
293
294 -fmax-include-depth=depth
295 Set the maximum depth of the nested #include. The default is 200.
296
297 -ftabstop=width
298 Set the distance between tab stops. This helps the preprocessor
299 report correct column numbers in warnings or errors, even if tabs
300 appear on the line. If the value is less than 1 or greater than
301 100, the option is ignored. The default is 8.
302
303 -ftrack-macro-expansion[=level]
304 Track locations of tokens across macro expansions. This allows the
305 compiler to emit diagnostic about the current macro expansion stack
306 when a compilation error occurs in a macro expansion. Using this
307 option makes the preprocessor and the compiler consume more memory.
308 The level parameter can be used to choose the level of precision of
309 token location tracking thus decreasing the memory consumption if
310 necessary. Value 0 of level de-activates this option. Value 1
311 tracks tokens locations in a degraded mode for the sake of minimal
312 memory overhead. In this mode all tokens resulting from the
313 expansion of an argument of a function-like macro have the same
314 location. Value 2 tracks tokens locations completely. This value is
315 the most memory hungry. When this option is given no argument, the
316 default parameter value is 2.
317
318 Note that "-ftrack-macro-expansion=2" is activated by default.
319
320 -fmacro-prefix-map=old=new
321 When preprocessing files residing in directory old, expand the
322 "__FILE__" and "__BASE_FILE__" macros as if the files resided in
323 directory new instead. This can be used to change an absolute path
324 to a relative path by using . for new which can result in more
325 reproducible builds that are location independent. This option
326 also affects "__builtin_FILE()" during compilation. See also
327 -ffile-prefix-map and -fcanon-prefix-map.
328
329 -fexec-charset=charset
330 Set the execution character set, used for string and character
331 constants. The default is UTF-8. charset can be any encoding
332 supported by the system's "iconv" library routine.
333
334 -fwide-exec-charset=charset
335 Set the wide execution character set, used for wide string and
336 character constants. The default is one of UTF-32BE, UTF-32LE,
337 UTF-16BE, or UTF-16LE, whichever corresponds to the width of
338 "wchar_t" and the big-endian or little-endian byte order being used
339 for code generation. As with -fexec-charset, charset can be any
340 encoding supported by the system's "iconv" library routine;
341 however, you will have problems with encodings that do not fit
342 exactly in "wchar_t".
343
344 -finput-charset=charset
345 Set the input character set, used for translation from the
346 character set of the input file to the source character set used by
347 GCC. If the locale does not specify, or GCC cannot get this
348 information from the locale, the default is UTF-8. This can be
349 overridden by either the locale or this command-line option.
350 Currently the command-line option takes precedence if there's a
351 conflict. charset can be any encoding supported by the system's
352 "iconv" library routine.
353
354 -fworking-directory
355 Enable generation of linemarkers in the preprocessor output that
356 let the compiler know the current working directory at the time of
357 preprocessing. When this option is enabled, the preprocessor
358 emits, after the initial linemarker, a second linemarker with the
359 current working directory followed by two slashes. GCC uses this
360 directory, when it's present in the preprocessed input, as the
361 directory emitted as the current working directory in some
362 debugging information formats. This option is implicitly enabled
363 if debugging information is enabled, but this can be inhibited with
364 the negated form -fno-working-directory. If the -P flag is present
365 in the command line, this option has no effect, since no "#line"
366 directives are emitted whatsoever.
367
368 -A predicate=answer
369 Make an assertion with the predicate predicate and answer answer.
370 This form is preferred to the older form -A predicate(answer),
371 which is still supported, because it does not use shell special
372 characters.
373
374 -A -predicate=answer
375 Cancel an assertion with the predicate predicate and answer answer.
376
377 -C Do not discard comments. All comments are passed through to the
378 output file, except for comments in processed directives, which are
379 deleted along with the directive.
380
381 You should be prepared for side effects when using -C; it causes
382 the preprocessor to treat comments as tokens in their own right.
383 For example, comments appearing at the start of what would be a
384 directive line have the effect of turning that line into an
385 ordinary source line, since the first token on the line is no
386 longer a #.
387
388 -CC Do not discard comments, including during macro expansion. This is
389 like -C, except that comments contained within macros are also
390 passed through to the output file where the macro is expanded.
391
392 In addition to the side effects of the -C option, the -CC option
393 causes all C++-style comments inside a macro to be converted to
394 C-style comments. This is to prevent later use of that macro from
395 inadvertently commenting out the remainder of the source line.
396
397 The -CC option is generally used to support lint comments.
398
399 -P Inhibit generation of linemarkers in the output from the
400 preprocessor. This might be useful when running the preprocessor
401 on something that is not C code, and will be sent to a program
402 which might be confused by the linemarkers.
403
404 -traditional
405 -traditional-cpp
406 Try to imitate the behavior of pre-standard C preprocessors, as
407 opposed to ISO C preprocessors.
408
409 Note that GCC does not otherwise attempt to emulate a pre-standard
410 C compiler, and these options are only supported with the -E
411 switch, or when invoking CPP explicitly.
412
413 -trigraphs
414 Support ISO C trigraphs. These are three-character sequences, all
415 starting with ??, that are defined by ISO C to stand for single
416 characters. For example, ??/ stands for \, so '??/n' is a
417 character constant for a newline.
418
419 By default, GCC ignores trigraphs, but in standard-conforming modes
420 it converts them. See the -std and -ansi options.
421
422 -remap
423 Enable special code to work around file systems which only permit
424 very short file names, such as MS-DOS.
425
426 -H Print the name of each header file used, in addition to other
427 normal activities. Each name is indented to show how deep in the
428 #include stack it is. Precompiled header files are also printed,
429 even if they are found to be invalid; an invalid precompiled header
430 file is printed with ...x and a valid one with ...! .
431
432 -dletters
433 Says to make debugging dumps during compilation as specified by
434 letters. The flags documented here are those relevant to the
435 preprocessor. Other letters are interpreted by the compiler
436 proper, or reserved for future versions of GCC, and so are silently
437 ignored. If you specify letters whose behavior conflicts, the
438 result is undefined.
439
440 -dM Instead of the normal output, generate a list of #define
441 directives for all the macros defined during the execution of
442 the preprocessor, including predefined macros. This gives you
443 a way of finding out what is predefined in your version of the
444 preprocessor. Assuming you have no file foo.h, the command
445
446 touch foo.h; cpp -dM foo.h
447
448 shows all the predefined macros.
449
450 -dD Like -dM except in two respects: it does not include the
451 predefined macros, and it outputs both the #define directives
452 and the result of preprocessing. Both kinds of output go to
453 the standard output file.
454
455 -dN Like -dD, but emit only the macro names, not their expansions.
456
457 -dI Output #include directives in addition to the result of
458 preprocessing.
459
460 -dU Like -dD except that only macros that are expanded, or whose
461 definedness is tested in preprocessor directives, are output;
462 the output is delayed until the use or test of the macro; and
463 #undef directives are also output for macros tested but
464 undefined at the time.
465
466 -fdebug-cpp
467 This option is only useful for debugging GCC. When used from CPP
468 or with -E, it dumps debugging information about location maps.
469 Every token in the output is preceded by the dump of the map its
470 location belongs to.
471
472 When used from GCC without -E, this option has no effect.
473
474 -I dir
475 -iquote dir
476 -isystem dir
477 -idirafter dir
478 Add the directory dir to the list of directories to be searched for
479 header files during preprocessing.
480
481 If dir begins with = or $SYSROOT, then the = or $SYSROOT is
482 replaced by the sysroot prefix; see --sysroot and -isysroot.
483
484 Directories specified with -iquote apply only to the quote form of
485 the directive, "#include "file"". Directories specified with -I,
486 -isystem, or -idirafter apply to lookup for both the
487 "#include "file"" and "#include <file>" directives.
488
489 You can specify any number or combination of these options on the
490 command line to search for header files in several directories.
491 The lookup order is as follows:
492
493 1. For the quote form of the include directive, the directory of
494 the current file is searched first.
495
496 2. For the quote form of the include directive, the directories
497 specified by -iquote options are searched in left-to-right
498 order, as they appear on the command line.
499
500 3. Directories specified with -I options are scanned in left-to-
501 right order.
502
503 4. Directories specified with -isystem options are scanned in
504 left-to-right order.
505
506 5. Standard system directories are scanned.
507
508 6. Directories specified with -idirafter options are scanned in
509 left-to-right order.
510
511 You can use -I to override a system header file, substituting your
512 own version, since these directories are searched before the
513 standard system header file directories. However, you should not
514 use this option to add directories that contain vendor-supplied
515 system header files; use -isystem for that.
516
517 The -isystem and -idirafter options also mark the directory as a
518 system directory, so that it gets the same special treatment that
519 is applied to the standard system directories.
520
521 If a standard system include directory, or a directory specified
522 with -isystem, is also specified with -I, the -I option is ignored.
523 The directory is still searched but as a system directory at its
524 normal position in the system include chain. This is to ensure
525 that GCC's procedure to fix buggy system headers and the ordering
526 for the "#include_next" directive are not inadvertently changed.
527 If you really need to change the search order for system
528 directories, use the -nostdinc and/or -isystem options.
529
530 -I- Split the include path. This option has been deprecated. Please
531 use -iquote instead for -I directories before the -I- and remove
532 the -I- option.
533
534 Any directories specified with -I options before -I- are searched
535 only for headers requested with "#include "file""; they are not
536 searched for "#include <file>". If additional directories are
537 specified with -I options after the -I-, those directories are
538 searched for all #include directives.
539
540 In addition, -I- inhibits the use of the directory of the current
541 file directory as the first search directory for "#include "file"".
542 There is no way to override this effect of -I-.
543
544 -iprefix prefix
545 Specify prefix as the prefix for subsequent -iwithprefix options.
546 If the prefix represents a directory, you should include the final
547 /.
548
549 -iwithprefix dir
550 -iwithprefixbefore dir
551 Append dir to the prefix specified previously with -iprefix, and
552 add the resulting directory to the include search path.
553 -iwithprefixbefore puts it in the same place -I would; -iwithprefix
554 puts it where -idirafter would.
555
556 -isysroot dir
557 This option is like the --sysroot option, but applies only to
558 header files (except for Darwin targets, where it applies to both
559 header files and libraries). See the --sysroot option for more
560 information.
561
562 -imultilib dir
563 Use dir as a subdirectory of the directory containing target-
564 specific C++ headers.
565
566 -nostdinc
567 Do not search the standard system directories for header files.
568 Only the directories explicitly specified with -I, -iquote,
569 -isystem, and/or -idirafter options (and the directory of the
570 current file, if appropriate) are searched.
571
572 -nostdinc++
573 Do not search for header files in the C++-specific standard
574 directories, but do still search the other standard directories.
575 (This option is used when building the C++ library.)
576
577 -Wcomment
578 -Wcomments
579 Warn whenever a comment-start sequence /* appears in a /* comment,
580 or whenever a backslash-newline appears in a // comment. This
581 warning is enabled by -Wall.
582
583 -Wtrigraphs
584 Warn if any trigraphs are encountered that might change the meaning
585 of the program. Trigraphs within comments are not warned about,
586 except those that would form escaped newlines.
587
588 This option is implied by -Wall. If -Wall is not given, this
589 option is still enabled unless trigraphs are enabled. To get
590 trigraph conversion without warnings, but get the other -Wall
591 warnings, use -trigraphs -Wall -Wno-trigraphs.
592
593 -Wundef
594 Warn if an undefined identifier is evaluated in an "#if" directive.
595 Such identifiers are replaced with zero.
596
597 -Wexpansion-to-defined
598 Warn whenever defined is encountered in the expansion of a macro
599 (including the case where the macro is expanded by an #if
600 directive). Such usage is not portable. This warning is also
601 enabled by -Wpedantic and -Wextra.
602
603 -Wunused-macros
604 Warn about macros defined in the main file that are unused. A
605 macro is used if it is expanded or tested for existence at least
606 once. The preprocessor also warns if the macro has not been used
607 at the time it is redefined or undefined.
608
609 Built-in macros, macros defined on the command line, and macros
610 defined in include files are not warned about.
611
612 Note: If a macro is actually used, but only used in skipped
613 conditional blocks, then the preprocessor reports it as unused. To
614 avoid the warning in such a case, you might improve the scope of
615 the macro's definition by, for example, moving it into the first
616 skipped block. Alternatively, you could provide a dummy use with
617 something like:
618
619 #if defined the_macro_causing_the_warning
620 #endif
621
622 -Wno-endif-labels
623 Do not warn whenever an "#else" or an "#endif" are followed by
624 text. This sometimes happens in older programs with code of the
625 form
626
627 #if FOO
628 ...
629 #else FOO
630 ...
631 #endif FOO
632
633 The second and third "FOO" should be in comments. This warning is
634 on by default.
635
637 This section describes the environment variables that affect how CPP
638 operates. You can use them to specify directories or prefixes to use
639 when searching for include files, or to control dependency output.
640
641 Note that you can also specify places to search using options such as
642 -I, and control dependency output with options like -M. These take
643 precedence over environment variables, which in turn take precedence
644 over the configuration of GCC.
645
646 CPATH
647 C_INCLUDE_PATH
648 CPLUS_INCLUDE_PATH
649 OBJC_INCLUDE_PATH
650 Each variable's value is a list of directories separated by a
651 special character, much like PATH, in which to look for header
652 files. The special character, "PATH_SEPARATOR", is target-
653 dependent and determined at GCC build time. For Microsoft Windows-
654 based targets it is a semicolon, and for almost all other targets
655 it is a colon.
656
657 CPATH specifies a list of directories to be searched as if
658 specified with -I, but after any paths given with -I options on the
659 command line. This environment variable is used regardless of
660 which language is being preprocessed.
661
662 The remaining environment variables apply only when preprocessing
663 the particular language indicated. Each specifies a list of
664 directories to be searched as if specified with -isystem, but after
665 any paths given with -isystem options on the command line.
666
667 In all these variables, an empty element instructs the compiler to
668 search its current working directory. Empty elements can appear at
669 the beginning or end of a path. For instance, if the value of
670 CPATH is ":/special/include", that has the same effect as
671 -I. -I/special/include.
672
673 DEPENDENCIES_OUTPUT
674 If this variable is set, its value specifies how to output
675 dependencies for Make based on the non-system header files
676 processed by the compiler. System header files are ignored in the
677 dependency output.
678
679 The value of DEPENDENCIES_OUTPUT can be just a file name, in which
680 case the Make rules are written to that file, guessing the target
681 name from the source file name. Or the value can have the form
682 file target, in which case the rules are written to file file using
683 target as the target name.
684
685 In other words, this environment variable is equivalent to
686 combining the options -MM and -MF, with an optional -MT switch too.
687
688 SUNPRO_DEPENDENCIES
689 This variable is the same as DEPENDENCIES_OUTPUT (see above),
690 except that system header files are not ignored, so it implies -M
691 rather than -MM. However, the dependence on the main input file is
692 omitted.
693
694 SOURCE_DATE_EPOCH
695 If this variable is set, its value specifies a UNIX timestamp to be
696 used in replacement of the current date and time in the "__DATE__"
697 and "__TIME__" macros, so that the embedded timestamps become
698 reproducible.
699
700 The value of SOURCE_DATE_EPOCH must be a UNIX timestamp, defined as
701 the number of seconds (excluding leap seconds) since 01 Jan 1970
702 00:00:00 represented in ASCII; identical to the output of "date
703 +%s" on GNU/Linux and other systems that support the %s extension
704 in the "date" command.
705
706 The value should be a known timestamp such as the last modification
707 time of the source or package and it should be set by the build
708 process.
709
711 gpl(7), gfdl(7), fsf-funding(7), gcc(1), and the Info entries for cpp
712 and gcc.
713
715 Copyright (c) 1987-2023 Free Software Foundation, Inc.
716
717 Permission is granted to copy, distribute and/or modify this document
718 under the terms of the GNU Free Documentation License, Version 1.3 or
719 any later version published by the Free Software Foundation. A copy of
720 the license is included in the man page gfdl(7). This manual contains
721 no Invariant Sections. The Front-Cover Texts are (a) (see below), and
722 the Back-Cover Texts are (b) (see below).
723
724 (a) The FSF's Front-Cover Text is:
725
726 A GNU Manual
727
728 (b) The FSF's Back-Cover Text is:
729
730 You have freedom to copy and modify this GNU Manual, like GNU
731 software. Copies published by the Free Software Foundation raise
732 funds for GNU development.
733
734
735
736gcc-13 2023-12-05 CPP(1)