2 Copyright (C) 1986, 87, 89, 92-98, 1999 Free Software Foundation, Inc.
3 Contributed by Per Bothner, 1994-95.
4 Based on CCCP program by Paul Rubin, June 1986
5 Adapted to ANSI C, Richard Stallman, Jan 1987
7 This program is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 2, or (at your option) any
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
31 /* XXX Should be in a header file. */
32 extern char *version_string
;
34 /* Predefined symbols, built-in macros, and the default include path. */
36 #ifndef GET_ENV_PATH_LIST
37 #define GET_ENV_PATH_LIST(VAR,NAME) do { (VAR) = getenv (NAME); } while (0)
40 /* By default, colon separates directories in a path. */
41 #ifndef PATH_SEPARATOR
42 #define PATH_SEPARATOR ':'
45 #ifndef STANDARD_INCLUDE_DIR
46 #define STANDARD_INCLUDE_DIR "/usr/include"
49 /* We let tm.h override the types used here, to handle trivial differences
50 such as the choice of unsigned int or long unsigned int for size_t.
51 When machines start needing nontrivial differences in the size type,
52 it would be best to do something here to figure out automatically
53 from other information what type to use. */
55 /* The string value for __SIZE_TYPE__. */
58 #define SIZE_TYPE "long unsigned int"
61 /* The string value for __PTRDIFF_TYPE__. */
64 #define PTRDIFF_TYPE "long int"
67 /* The string value for __WCHAR_TYPE__. */
70 #define WCHAR_TYPE "int"
72 #define CPP_WCHAR_TYPE(PFILE) \
73 (CPP_OPTIONS (PFILE)->cplusplus ? "__wchar_t" : WCHAR_TYPE)
75 /* The string value for __USER_LABEL_PREFIX__ */
77 #ifndef USER_LABEL_PREFIX
78 #define USER_LABEL_PREFIX ""
81 /* The string value for __REGISTER_PREFIX__ */
83 #ifndef REGISTER_PREFIX
84 #define REGISTER_PREFIX ""
87 /* Suffix for object files, and known input-file extensions. */
88 static char *known_suffixes
[] =
90 ".c", ".C", ".s", ".S", ".m",
91 ".cc", ".cxx", ".cpp", ".cp", ".c++",
97 # define OBJECT_SUFFIX ".obj"
99 # define OBJECT_SUFFIX ".o"
104 /* This is the default list of directories to search for include files.
105 It may be overridden by the various -I and -ixxx options.
107 #include "file" looks in the same directory as the current file,
109 #include <file> just looks in this list.
111 All these directories are treated as `system' include directories
112 (they are not subject to pedantic warnings in some cases). */
114 static struct default_include
116 char *fname
; /* The name of the directory. */
117 char *component
; /* The component containing the directory
118 (see update_path in prefix.c) */
119 int cplusplus
; /* Only look here if we're compiling C++. */
120 int cxx_aware
; /* Includes in this directory don't need to
121 be wrapped in extern "C" when compiling
122 C++. This is not used anymore. */
124 include_defaults_array
[]
125 #ifdef INCLUDE_DEFAULTS
129 /* Pick up GNU C++ specific include files. */
130 { GPLUSPLUS_INCLUDE_DIR
, "G++", 1, 1 },
132 /* This is the dir for fixincludes. Put it just before
133 the files that we fix. */
134 { GCC_INCLUDE_DIR
, "GCC", 0, 0 },
135 /* For cross-compilation, this dir name is generated
136 automatically in Makefile.in. */
137 { CROSS_INCLUDE_DIR
, "GCC", 0, 0 },
138 #ifdef TOOL_INCLUDE_DIR
139 /* This is another place that the target system's headers might be. */
140 { TOOL_INCLUDE_DIR
, "BINUTILS", 0, 1 },
142 #else /* not CROSS_COMPILE */
143 #ifdef LOCAL_INCLUDE_DIR
144 /* This should be /usr/local/include and should come before
145 the fixincludes-fixed header files. */
146 { LOCAL_INCLUDE_DIR
, 0, 0, 1 },
148 #ifdef TOOL_INCLUDE_DIR
149 /* This is here ahead of GCC_INCLUDE_DIR because assert.h goes here.
150 Likewise, behind LOCAL_INCLUDE_DIR, where glibc puts its assert.h. */
151 { TOOL_INCLUDE_DIR
, "BINUTILS", 0, 1 },
153 /* This is the dir for fixincludes. Put it just before
154 the files that we fix. */
155 { GCC_INCLUDE_DIR
, "GCC", 0, 0 },
156 /* Some systems have an extra dir of include files. */
157 #ifdef SYSTEM_INCLUDE_DIR
158 { SYSTEM_INCLUDE_DIR
, 0, 0, 0 },
160 #ifndef STANDARD_INCLUDE_COMPONENT
161 #define STANDARD_INCLUDE_COMPONENT 0
163 { STANDARD_INCLUDE_DIR
, STANDARD_INCLUDE_COMPONENT
, 0, 0 },
164 #endif /* not CROSS_COMPILE */
167 #endif /* no INCLUDE_DEFAULTS */
169 /* Internal structures and prototypes. */
171 /* A `struct pending_option' remembers one -D, -A, -U, -include, or -imacros
172 switch. There are four lists: one for -D and -U, one for -A, one
173 for -include, one for -imacros. `undef' is set for -U, clear for
174 -D, ignored for the others.
175 (Future: add an equivalent of -U for -A) */
176 struct pending_option
178 struct pending_option
*next
;
184 #define APPEND(pend, list, elt) \
185 do { if (!(pend)->list##_head) (pend)->list##_head = (elt); \
186 else (pend)->list##_tail->next = (elt); \
187 (pend)->list##_tail = (elt); \
190 #define APPEND(pend, list, elt) \
191 do { if (!(pend)->list/**/_head) (pend)->list/**/_head = (elt); \
192 else (pend)->list/**/_tail->next = (elt); \
193 (pend)->list/**/_tail = (elt); \
197 static void initialize_char_syntax
PARAMS ((int));
198 static void print_help
PARAMS ((void));
199 static void path_include
PARAMS ((cpp_reader
*,
200 struct cpp_pending
*,
202 static void initialize_builtins
PARAMS ((cpp_reader
*));
203 static void append_include_chain
PARAMS ((cpp_reader
*,
204 struct cpp_pending
*,
207 /* Last argument to append_include_chain: chain to use */
208 enum { QUOTE
= 0, BRACKET
, SYSTEM
, AFTER
};
210 /* If gcc is in use (stage2/stage3) we can make these tables initialized
212 #if defined __GNUC__ && __GNUC__ >= 2
213 /* Table to tell if a character is legal as the second or later character
214 of a C identifier. */
215 U_CHAR is_idchar
[256] =
217 ['a'] = 1, ['b'] = 1, ['c'] = 1, ['d'] = 1, ['e'] = 1, ['f'] = 1,
218 ['g'] = 1, ['h'] = 1, ['i'] = 1, ['j'] = 1, ['k'] = 1, ['l'] = 1,
219 ['m'] = 1, ['n'] = 1, ['o'] = 1, ['p'] = 1, ['q'] = 1, ['r'] = 1,
220 ['s'] = 1, ['t'] = 1, ['u'] = 1, ['v'] = 1, ['w'] = 1, ['x'] = 1,
221 ['y'] = 1, ['z'] = 1,
223 ['A'] = 1, ['B'] = 1, ['C'] = 1, ['D'] = 1, ['E'] = 1, ['F'] = 1,
224 ['G'] = 1, ['H'] = 1, ['I'] = 1, ['J'] = 1, ['K'] = 1, ['L'] = 1,
225 ['M'] = 1, ['N'] = 1, ['O'] = 1, ['P'] = 1, ['Q'] = 1, ['R'] = 1,
226 ['S'] = 1, ['T'] = 1, ['U'] = 1, ['V'] = 1, ['W'] = 1, ['X'] = 1,
227 ['Y'] = 1, ['Z'] = 1,
229 ['1'] = 1, ['2'] = 1, ['3'] = 1, ['4'] = 1, ['5'] = 1, ['6'] = 1,
230 ['7'] = 1, ['8'] = 1, ['9'] = 1, ['0'] = 1,
235 /* Table to tell if a character is legal as the first character of
237 U_CHAR is_idstart
[256] =
239 ['a'] = 1, ['b'] = 1, ['c'] = 1, ['d'] = 1, ['e'] = 1, ['f'] = 1,
240 ['g'] = 1, ['h'] = 1, ['i'] = 1, ['j'] = 1, ['k'] = 1, ['l'] = 1,
241 ['m'] = 1, ['n'] = 1, ['o'] = 1, ['p'] = 1, ['q'] = 1, ['r'] = 1,
242 ['s'] = 1, ['t'] = 1, ['u'] = 1, ['v'] = 1, ['w'] = 1, ['x'] = 1,
243 ['y'] = 1, ['z'] = 1,
245 ['A'] = 1, ['B'] = 1, ['C'] = 1, ['D'] = 1, ['E'] = 1, ['F'] = 1,
246 ['G'] = 1, ['H'] = 1, ['I'] = 1, ['J'] = 1, ['K'] = 1, ['L'] = 1,
247 ['M'] = 1, ['N'] = 1, ['O'] = 1, ['P'] = 1, ['Q'] = 1, ['R'] = 1,
248 ['S'] = 1, ['T'] = 1, ['U'] = 1, ['V'] = 1, ['W'] = 1, ['X'] = 1,
249 ['Y'] = 1, ['Z'] = 1,
254 /* Table to tell if a character is horizontal space.
255 \r is magical, so it is not in here. */
256 U_CHAR is_hor_space
[256] =
258 [' '] = 1, ['\t'] = 1, ['\v'] = 1, ['\f'] = 1,
260 /* table to tell if a character is horizontal or vertical space. */
261 U_CHAR is_space
[256] =
263 [' '] = 1, ['\t'] = 1, ['\v'] = 1, ['\f'] = 1, ['\n'] = 1,
265 /* Table to handle trigraph conversion, which occurs before all other
266 processing, everywhere in the file. (This is necessary since one
267 of the trigraphs encodes backslash.) Note it's off by default.
269 from to from to from to
274 There is not a space between the ?? and the third char. I put spaces
275 there to avoid warnings when compiling this file. */
276 U_CHAR trigraph_table
[256] =
278 ['='] = '#', [')'] = ']', ['!'] = '|',
279 ['('] = '[', ['\''] = '^', ['>'] = '}',
280 ['/'] = '\\', ['<'] = '{', ['-'] = '~',
283 /* This function will be entirely removed soon. */
285 initialize_char_syntax (dollar_in_ident
)
288 is_idchar
['$'] = dollar_in_ident
;
289 is_idstart
['$'] = dollar_in_ident
;
294 U_CHAR is_idchar
[256] = { 0 };
295 U_CHAR is_idstart
[256] = { 0 };
296 U_CHAR is_hor_space
[256] = { 0 };
297 U_CHAR is_space
[256] = { 0 };
298 U_CHAR trigraph_table
[256] = { 0 };
300 /* Initialize syntactic classifications of characters. */
302 initialize_char_syntax (dollar_in_ident
)
305 is_idstart
['a'] = 1; is_idstart
['b'] = 1; is_idstart
['c'] = 1;
306 is_idstart
['d'] = 1; is_idstart
['e'] = 1; is_idstart
['f'] = 1;
307 is_idstart
['g'] = 1; is_idstart
['h'] = 1; is_idstart
['i'] = 1;
308 is_idstart
['j'] = 1; is_idstart
['k'] = 1; is_idstart
['l'] = 1;
309 is_idstart
['m'] = 1; is_idstart
['n'] = 1; is_idstart
['o'] = 1;
310 is_idstart
['p'] = 1; is_idstart
['q'] = 1; is_idstart
['r'] = 1;
311 is_idstart
['s'] = 1; is_idstart
['t'] = 1; is_idstart
['u'] = 1;
312 is_idstart
['v'] = 1; is_idstart
['w'] = 1; is_idstart
['x'] = 1;
313 is_idstart
['y'] = 1; is_idstart
['z'] = 1;
315 is_idstart
['A'] = 1; is_idstart
['B'] = 1; is_idstart
['C'] = 1;
316 is_idstart
['D'] = 1; is_idstart
['E'] = 1; is_idstart
['F'] = 1;
317 is_idstart
['G'] = 1; is_idstart
['H'] = 1; is_idstart
['I'] = 1;
318 is_idstart
['J'] = 1; is_idstart
['K'] = 1; is_idstart
['L'] = 1;
319 is_idstart
['M'] = 1; is_idstart
['N'] = 1; is_idstart
['O'] = 1;
320 is_idstart
['P'] = 1; is_idstart
['Q'] = 1; is_idstart
['R'] = 1;
321 is_idstart
['S'] = 1; is_idstart
['T'] = 1; is_idstart
['U'] = 1;
322 is_idstart
['V'] = 1; is_idstart
['W'] = 1; is_idstart
['X'] = 1;
323 is_idstart
['Y'] = 1; is_idstart
['Z'] = 1;
327 is_idchar
['a'] = 1; is_idchar
['b'] = 1; is_idchar
['c'] = 1;
328 is_idchar
['d'] = 1; is_idchar
['e'] = 1; is_idchar
['f'] = 1;
329 is_idchar
['g'] = 1; is_idchar
['h'] = 1; is_idchar
['i'] = 1;
330 is_idchar
['j'] = 1; is_idchar
['k'] = 1; is_idchar
['l'] = 1;
331 is_idchar
['m'] = 1; is_idchar
['n'] = 1; is_idchar
['o'] = 1;
332 is_idchar
['p'] = 1; is_idchar
['q'] = 1; is_idchar
['r'] = 1;
333 is_idchar
['s'] = 1; is_idchar
['t'] = 1; is_idchar
['u'] = 1;
334 is_idchar
['v'] = 1; is_idchar
['w'] = 1; is_idchar
['x'] = 1;
335 is_idchar
['y'] = 1; is_idchar
['z'] = 1;
337 is_idchar
['A'] = 1; is_idchar
['B'] = 1; is_idchar
['C'] = 1;
338 is_idchar
['D'] = 1; is_idchar
['E'] = 1; is_idchar
['F'] = 1;
339 is_idchar
['G'] = 1; is_idchar
['H'] = 1; is_idchar
['I'] = 1;
340 is_idchar
['J'] = 1; is_idchar
['K'] = 1; is_idchar
['L'] = 1;
341 is_idchar
['M'] = 1; is_idchar
['N'] = 1; is_idchar
['O'] = 1;
342 is_idchar
['P'] = 1; is_idchar
['Q'] = 1; is_idchar
['R'] = 1;
343 is_idchar
['S'] = 1; is_idchar
['T'] = 1; is_idchar
['U'] = 1;
344 is_idchar
['V'] = 1; is_idchar
['W'] = 1; is_idchar
['X'] = 1;
345 is_idchar
['Y'] = 1; is_idchar
['Z'] = 1;
347 is_idchar
['1'] = 1; is_idchar
['2'] = 1; is_idchar
['3'] = 1;
348 is_idchar
['4'] = 1; is_idchar
['5'] = 1; is_idchar
['6'] = 1;
349 is_idchar
['7'] = 1; is_idchar
['8'] = 1; is_idchar
['9'] = 1;
354 is_idchar
['$'] = dollar_in_ident
;
355 is_idstart
['$'] = dollar_in_ident
;
357 /* white space tables */
358 is_hor_space
[' '] = 1;
359 is_hor_space
['\t'] = 1;
360 is_hor_space
['\v'] = 1;
361 is_hor_space
['\f'] = 1;
369 /* trigraph conversion */
370 trigraph_table
['='] = '#'; trigraph_table
[')'] = ']';
371 trigraph_table
['!'] = '|'; trigraph_table
['('] = '[';
372 trigraph_table
['\''] = '^'; trigraph_table
['>'] = '}';
373 trigraph_table
['/'] = '\\'; trigraph_table
['<'] = '{';
374 trigraph_table
['-'] = '~';
377 #endif /* Not GCC. */
379 /* Given a colon-separated list of file names PATH,
380 add all the names to the search path for include files. */
383 path_include (pfile
, pend
, list
, path
)
385 struct cpp_pending
*pend
;
395 /* Find the end of this name. */
397 while (*q
!= 0 && *q
!= PATH_SEPARATOR
) q
++;
400 /* An empty name in the path stands for the current directory. */
401 name
= (char *) xmalloc (2);
407 /* Otherwise use the directory that is named. */
408 name
= (char *) xmalloc (q
- p
+ 1);
409 memcpy (name
, p
, q
- p
);
413 append_include_chain (pfile
, pend
, name
, path
);
415 /* Advance past this name. */
423 /* Find the base name of a (partial) pathname FNAME.
424 Returns a pointer into the string passed in.
425 Accepts Unix (/-separated) paths on all systems,
426 DOS and VMS paths on those systems. */
431 char *s
= (char *)fname
;
433 #if defined (__MSDOS__) || defined (_WIN32)
434 if (ISALPHA (s
[0]) && s
[1] == ':') s
+= 2;
435 if ((p
= rindex (s
, '\\'))) s
= p
+ 1;
437 if ((p
= rindex (s
, ':'))) s
= p
+ 1; /* Skip device. */
438 if ((p
= rindex (s
, ']'))) s
= p
+ 1; /* Skip directory. */
439 if ((p
= rindex (s
, '>'))) s
= p
+ 1; /* Skip alternate (int'n'l) dir. */
441 if ((p
= rindex (s
, '/'))) s
= p
+ 1;
446 /* Append DIR to include path PATH. DIR must be permanently allocated
449 append_include_chain (pfile
, pend
, dir
, path
)
451 struct cpp_pending
*pend
;
455 struct file_name_list
*new;
459 simplify_pathname (dir
);
462 /* Dirs that don't exist are silently ignored. */
464 cpp_perror_with_name (pfile
, dir
);
465 else if (CPP_OPTIONS (pfile
)->verbose
)
466 cpp_notice ("ignoring nonexistent directory `%s'\n", dir
);
470 if (!S_ISDIR (st
.st_mode
))
472 cpp_message (pfile
, 1, "%s: %s: Not a directory", progname
, dir
);
477 if (len
> pfile
->max_include_len
)
478 pfile
->max_include_len
= len
;
480 new = (struct file_name_list
*)xmalloc (sizeof (struct file_name_list
));
483 new->ino
= st
.st_ino
;
484 new->dev
= st
.st_dev
;
485 new->sysp
= (path
== SYSTEM
);
486 new->name_map
= NULL
;
490 case QUOTE
: APPEND (pend
, quote
, new); break;
491 case BRACKET
: APPEND (pend
, brack
, new); break;
492 case SYSTEM
: APPEND (pend
, systm
, new); break;
493 case AFTER
: APPEND (pend
, after
, new); break;
498 /* Write out a #define command for the special named MACRO_NAME
499 to PFILE's token_buffer. */
502 dump_special_to_buffer (pfile
, macro_name
)
506 static char define_directive
[] = "#define ";
507 int macro_name_length
= strlen (macro_name
);
508 output_line_command (pfile
, 0, same_file
);
509 CPP_RESERVE (pfile
, sizeof(define_directive
) + macro_name_length
);
510 CPP_PUTS_Q (pfile
, define_directive
, sizeof(define_directive
)-1);
511 CPP_PUTS_Q (pfile
, macro_name
, macro_name_length
);
512 CPP_PUTC_Q (pfile
, ' ');
513 cpp_expand_to_buffer (pfile
, macro_name
, macro_name_length
);
514 CPP_PUTC (pfile
, '\n');
517 /* Initialize a cpp_options structure. */
519 cpp_options_init (opts
)
522 bzero ((char *) opts
, sizeof (struct cpp_options
));
524 opts
->dollars_in_ident
= 1;
525 opts
->cplusplus_comments
= 1;
526 opts
->warn_import
= 1;
528 opts
->pending
= (struct cpp_pending
*) xmalloc (sizeof (struct cpp_pending
));
529 bzero ((char *) opts
->pending
, sizeof (struct cpp_pending
));
532 /* Initialize a cpp_reader structure. */
534 cpp_reader_init (pfile
)
537 bzero ((char *) pfile
, sizeof (cpp_reader
));
539 pfile
->get_token
= cpp_get_token
;
542 pfile
->token_buffer_size
= 200;
543 pfile
->token_buffer
= (U_CHAR
*) xmalloc (pfile
->token_buffer_size
);
544 CPP_SET_WRITTEN (pfile
, 0);
546 pfile
->hashtab
= (HASHNODE
**) xcalloc (HASHSIZE
, sizeof (HASHNODE
*));
549 /* Free resources used by PFILE.
550 This is the cpp_reader 'finalizer' or 'destructor' (in C++ terminology). */
556 while (CPP_BUFFER (pfile
) != CPP_NULL_BUFFER (pfile
))
557 cpp_pop_buffer (pfile
);
559 if (pfile
->token_buffer
)
561 free (pfile
->token_buffer
);
562 pfile
->token_buffer
= NULL
;
565 if (pfile
->deps_buffer
)
567 free (pfile
->deps_buffer
);
568 pfile
->deps_buffer
= NULL
;
569 pfile
->deps_allocated_size
= 0;
572 while (pfile
->if_stack
)
574 IF_STACK_FRAME
*temp
= pfile
->if_stack
;
575 pfile
->if_stack
= temp
->next
;
579 for (i
= ALL_INCLUDE_HASHSIZE
; --i
>= 0; )
581 struct include_hash
*imp
= pfile
->all_include_files
[i
];
584 struct include_hash
*next
= imp
->next
;
586 /* This gets freed elsewhere - I think. */
592 pfile
->all_include_files
[i
] = 0;
595 for (i
= HASHSIZE
; --i
>= 0;)
597 while (pfile
->hashtab
[i
])
598 delete_macro (pfile
->hashtab
[i
]);
600 free (pfile
->hashtab
);
604 /* Initialize the built-in macros. */
606 initialize_builtins (pfile
)
609 #define NAME(str) (U_CHAR *)str, sizeof str - 1
610 cpp_install (pfile
, NAME("__TIME__"), T_TIME
, 0, -1);
611 cpp_install (pfile
, NAME("__DATE__"), T_DATE
, 0, -1);
612 cpp_install (pfile
, NAME("__FILE__"), T_FILE
, 0, -1);
613 cpp_install (pfile
, NAME("__BASE_FILE__"), T_BASE_FILE
, 0, -1);
614 cpp_install (pfile
, NAME("__LINE__"), T_SPECLINE
, 0, -1);
615 cpp_install (pfile
, NAME("__INCLUDE_LEVEL__"), T_INCLUDE_LEVEL
, 0, -1);
616 cpp_install (pfile
, NAME("__VERSION__"), T_VERSION
, 0, -1);
617 #ifndef NO_BUILTIN_SIZE_TYPE
618 cpp_install (pfile
, NAME("__SIZE_TYPE__"), T_CONST
, SIZE_TYPE
, -1);
620 #ifndef NO_BUILTIN_PTRDIFF_TYPE
621 cpp_install (pfile
, NAME("__PTRDIFF_TYPE__ "), T_CONST
, PTRDIFF_TYPE
, -1);
623 cpp_install (pfile
, NAME("__WCHAR_TYPE__"), T_CONST
, WCHAR_TYPE
, -1);
624 cpp_install (pfile
, NAME("__USER_LABEL_PREFIX__"), T_CONST
, user_label_prefix
, -1);
625 cpp_install (pfile
, NAME("__REGISTER_PREFIX__"), T_CONST
, REGISTER_PREFIX
, -1);
626 cpp_install (pfile
, NAME("__HAVE_BUILTIN_SETJMP__"), T_CONST
, "1", -1);
627 if (!CPP_TRADITIONAL (pfile
))
629 cpp_install (pfile
, NAME("__STDC__"), T_STDC
, 0, -1);
631 if (CPP_OPTIONS (pfile
)->c9x
)
632 cpp_install (pfile
, NAME("__STDC_VERSION__"),T_CONST
, "199909L", -1);
635 cpp_install (pfile
, NAME("__STDC_VERSION__"),T_CONST
, "199409L", -1);
639 if (CPP_OPTIONS (pfile
)->debug_output
)
641 dump_special_to_buffer (pfile
, "__BASE_FILE__");
642 dump_special_to_buffer (pfile
, "__VERSION__");
643 #ifndef NO_BUILTIN_SIZE_TYPE
644 dump_special_to_buffer (pfile
, "__SIZE_TYPE__");
646 #ifndef NO_BUILTIN_PTRDIFF_TYPE
647 dump_special_to_buffer (pfile
, "__PTRDIFF_TYPE__");
649 dump_special_to_buffer (pfile
, "__WCHAR_TYPE__");
650 dump_special_to_buffer (pfile
, "__DATE__");
651 dump_special_to_buffer (pfile
, "__TIME__");
652 if (!CPP_TRADITIONAL (pfile
))
653 dump_special_to_buffer (pfile
, "__STDC__");
657 /* Another subroutine of cpp_start_read. This one sets up to do
658 dependency-file output. */
660 initialize_dependency_output (pfile
)
663 cpp_options
*opts
= CPP_OPTIONS (pfile
);
664 char *spec
, *s
, *output_file
;
666 /* Either of two environment variables can specify output of deps.
667 Its value is either "OUTPUT_FILE" or "OUTPUT_FILE DEPS_TARGET",
668 where OUTPUT_FILE is the file to write deps info to
669 and DEPS_TARGET is the target to mention in the deps. */
671 if (opts
->print_deps
== 0)
673 spec
= getenv ("DEPENDENCIES_OUTPUT");
675 opts
->print_deps
= 1;
678 spec
= getenv ("SUNPRO_DEPENDENCIES");
680 opts
->print_deps
= 2;
685 /* Find the space before the DEPS_TARGET, if there is one. */
686 s
= strchr (spec
, ' ');
689 opts
->deps_target
= s
+ 1;
690 output_file
= (char *) xmalloc (s
- spec
+ 1);
691 memcpy (output_file
, spec
, s
- spec
);
692 output_file
[s
- spec
] = 0;
696 opts
->deps_target
= 0;
700 opts
->deps_file
= output_file
;
701 opts
->print_deps_append
= 1;
704 /* Print the expected object file name as the target of this Make-rule. */
705 pfile
->deps_allocated_size
= 200;
706 pfile
->deps_buffer
= (char *) xmalloc (pfile
->deps_allocated_size
);
707 pfile
->deps_buffer
[0] = 0;
708 pfile
->deps_size
= 0;
709 pfile
->deps_column
= 0;
711 if (opts
->deps_target
)
712 deps_output (pfile
, opts
->deps_target
, ':');
713 else if (*opts
->in_fname
== 0)
714 deps_output (pfile
, "-", ':');
720 /* Discard all directory prefixes from filename. */
721 q
= base_name (opts
->in_fname
);
723 /* Copy remainder to mungable area. */
725 p
= (char *) alloca (len
+ 8);
728 /* Output P, but remove known suffixes. */
730 /* Point to the filename suffix. */
732 /* Compare against the known suffixes. */
733 for (x
= 0; known_suffixes
[x
]; x
++)
735 if (strncmp (known_suffixes
[x
], r
, q
- r
) == 0)
737 /* Make q point to the bit we're going to overwrite
738 with an object suffix. */
744 /* Supply our own suffix. */
745 strcpy (q
, OBJECT_SUFFIX
);
747 deps_output (pfile
, p
, ':');
748 deps_output (pfile
, opts
->in_fname
, ' ');
752 /* This is called after options have been processed.
753 * Check options for consistency, and setup for processing input
754 * from the file named FNAME. (Use standard input if FNAME==NULL.)
755 * Return 1 on success, 0 on failure.
759 cpp_start_read (pfile
, fname
)
763 struct cpp_options
*opts
= CPP_OPTIONS (pfile
);
764 struct pending_option
*p
, *q
;
767 struct include_hash
*ih_fake
;
769 /* -MG doesn't select the form of output and must be specified with one of
770 -M or -MM. -MG doesn't make sense with -MD or -MMD since they don't
771 inhibit compilation. */
772 if (opts
->print_deps_missing_files
773 && (opts
->print_deps
== 0 || !opts
->no_output
))
775 cpp_fatal (pfile
, "-MG must be specified with one of -M or -MM");
779 /* Chill should not be used with -trigraphs. */
780 if (opts
->chill
&& opts
->trigraphs
)
782 cpp_warning (pfile
, "-lang-chill and -trigraphs are mutually exclusive");
786 /* Set this if it hasn't been set already. */
787 if (user_label_prefix
== NULL
)
788 user_label_prefix
= USER_LABEL_PREFIX
;
790 /* Now that we know dollars_in_ident, we can initialize the syntax
792 initialize_char_syntax (opts
->dollars_in_ident
);
794 /* Do partial setup of input buffer for the sake of generating
795 early #line directives (when -g is in effect). */
796 fp
= cpp_push_buffer (pfile
, NULL
, 0);
799 if (opts
->in_fname
== NULL
|| *opts
->in_fname
== 0)
801 opts
->in_fname
= fname
;
802 if (opts
->in_fname
== NULL
)
805 fp
->nominal_fname
= fp
->fname
= opts
->in_fname
;
808 /* Install __LINE__, etc. Must follow initialize_char_syntax
809 and option processing. */
810 initialize_builtins (pfile
);
812 /* Do -U's, -D's and -A's in the order they were seen. */
813 p
= opts
->pending
->define_head
;
816 if (opts
->debug_output
)
817 output_line_command (pfile
, 0, same_file
);
819 cpp_undef (pfile
, p
->arg
);
821 cpp_define (pfile
, p
->arg
);
828 p
= opts
->pending
->assert_head
;
831 if (opts
->debug_output
)
832 output_line_command (pfile
, 0, same_file
);
834 cpp_unassert (pfile
, p
->arg
);
836 cpp_assert (pfile
, p
->arg
);
843 opts
->done_initializing
= 1;
845 /* Several environment variables may add to the include search path.
846 CPATH specifies an additional list of directories to be searched
847 as if specified with -I, while C_INCLUDE_PATH, CPLUS_INCLUDE_PATH,
848 etc. specify an additional list of directories to be searched as
849 if specified with -isystem, for the language indicated.
851 These variables are ignored if -nostdinc is on. */
852 if (! opts
->no_standard_includes
)
855 GET_ENV_PATH_LIST (path
, "CPATH");
856 if (path
!= 0 && *path
!= 0)
857 path_include (pfile
, opts
->pending
, path
, BRACKET
);
859 switch ((opts
->objc
<< 1) + opts
->cplusplus
)
862 GET_ENV_PATH_LIST (path
, "C_INCLUDE_PATH");
865 GET_ENV_PATH_LIST (path
, "CPLUS_INCLUDE_PATH");
868 GET_ENV_PATH_LIST (path
, "OBJC_INCLUDE_PATH");
871 GET_ENV_PATH_LIST (path
, "OBJCPLUS_INCLUDE_PATH");
874 if (path
!= 0 && *path
!= 0)
875 path_include (pfile
, opts
->pending
, path
, SYSTEM
);
878 /* Unless -nostdinc, add the compiled-in include path to the list,
879 translating prefixes. */
880 if (!opts
->no_standard_includes
)
882 struct default_include
*p
= include_defaults_array
;
883 char *specd_prefix
= opts
->include_prefix
;
884 char *default_prefix
= alloca (sizeof GCC_INCLUDE_DIR
- 7);
888 /* Search "translated" versions of GNU directories.
889 These have /usr/local/lib/gcc... replaced by specd_prefix. */
890 if (specd_prefix
!= 0)
892 /* Remove the `include' from /usr/local/lib/gcc.../include.
893 GCC_INCLUDE_DIR will always end in /include. */
894 default_len
= sizeof GCC_INCLUDE_DIR
- 8;
895 memcpy (default_prefix
, GCC_INCLUDE_DIR
, default_len
);
896 default_prefix
[default_len
] = '\0';
899 specd_len
= strlen (specd_prefix
);
900 for (p
= include_defaults_array
; p
->fname
; p
++)
902 /* Some standard dirs are only for C++. */
905 && !opts
->no_standard_cplusplus_includes
))
907 /* Does this dir start with the prefix? */
908 if (!strncmp (p
->fname
, default_prefix
, default_len
))
910 /* Yes; change prefix and add to search list. */
911 int flen
= strlen (p
->fname
);
912 int this_len
= specd_len
- default_len
+ flen
;
913 char *str
= (char *) xmalloc (this_len
+ 1);
914 memcpy (str
, specd_prefix
, specd_len
);
915 memcpy (str
+specd_len
, p
->fname
, flen
+ 1);
917 append_include_chain (pfile
, opts
->pending
,
924 /* Search ordinary names for GNU include directories. */
925 for (p
= include_defaults_array
; p
->fname
; p
++)
927 /* Some standard dirs are only for C++. */
930 && !opts
->no_standard_cplusplus_includes
))
932 char *str
= (char *) update_path (p
->fname
, p
->component
);
933 str
= xstrdup (str
); /* XXX Potential memory leak! */
934 append_include_chain (pfile
, opts
->pending
, str
, SYSTEM
);
939 merge_include_chains (opts
);
941 /* With -v, print the list of dirs to search. */
944 struct file_name_list
*p
;
945 cpp_message (pfile
, -1, "#include \"...\" search starts here:\n");
946 for (p
= opts
->quote_include
; p
; p
= p
->next
)
948 if (p
== opts
->bracket_include
)
949 cpp_message (pfile
, -1, "#include <...> search starts here:\n");
950 fprintf (stderr
, " %s\n", p
->name
);
952 cpp_message (pfile
, -1, "End of search list.\n");
955 /* Open the main input file.
956 We do this in nonblocking mode so we don't get stuck here if
957 someone clever has asked cpp to process /dev/rmt0;
958 finclude() will check that we have a real file to work with. */
959 if (fname
== NULL
|| *fname
== 0)
964 else if ((f
= open (fname
, O_RDONLY
|O_NONBLOCK
|O_NOCTTY
, 0666)) < 0)
965 cpp_pfatal_with_name (pfile
, fname
);
967 initialize_dependency_output (pfile
);
969 /* Must call finclude() on the main input before processing
970 -include switches; otherwise the -included text winds up
971 after the main input. */
972 ih_fake
= (struct include_hash
*) xmalloc (sizeof (struct include_hash
));
974 ih_fake
->next_this_file
= 0;
975 ih_fake
->foundhere
= ABSOLUTE_PATH
; /* well sort of ... */
976 ih_fake
->name
= fname
;
977 ih_fake
->control_macro
= 0;
978 ih_fake
->buf
= (char *)-1;
980 if (!finclude (pfile
, f
, ih_fake
))
982 output_line_command (pfile
, 0, same_file
);
983 pfile
->only_seen_white
= 2;
985 /* The -imacros files can be scanned now, but the -include files
986 have to be pushed onto the include stack and processed later,
987 in the main loop calling cpp_get_token. */
989 pfile
->no_record_file
++;
991 p
= opts
->pending
->imacros_head
;
994 int fd
= open (p
->arg
, O_RDONLY
|O_NONBLOCK
|O_NOCTTY
, 0666);
997 cpp_perror_with_name (pfile
, p
->arg
);
1000 if (!cpp_push_buffer (pfile
, NULL
, 0))
1003 ih_fake
= (struct include_hash
*)
1004 xmalloc (sizeof (struct include_hash
));
1006 ih_fake
->next_this_file
= 0;
1007 ih_fake
->foundhere
= ABSOLUTE_PATH
; /* well sort of ... */
1008 ih_fake
->name
= p
->arg
;
1009 ih_fake
->control_macro
= 0;
1010 ih_fake
->buf
= (char *)-1;
1012 if (!finclude (pfile
, fd
, ih_fake
))
1013 cpp_scan_buffer (pfile
);
1023 p
= opts
->pending
->include_head
;
1026 int fd
= open (p
->arg
, O_RDONLY
|O_NONBLOCK
|O_NOCTTY
, 0666);
1029 cpp_perror_with_name (pfile
, p
->arg
);
1032 if (!cpp_push_buffer (pfile
, NULL
, 0))
1035 ih_fake
= (struct include_hash
*)
1036 xmalloc (sizeof (struct include_hash
));
1038 ih_fake
->next_this_file
= 0;
1039 ih_fake
->foundhere
= ABSOLUTE_PATH
; /* well sort of ... */
1040 ih_fake
->name
= p
->arg
;
1041 ih_fake
->control_macro
= 0;
1042 ih_fake
->buf
= (char *)-1;
1044 if (finclude (pfile
, fd
, ih_fake
))
1045 output_line_command (pfile
, 0, enter_file
);
1051 pfile
->no_record_file
--;
1053 free (opts
->pending
);
1054 opts
->pending
= NULL
;
1059 /* This is called at the end of preprocessing. It pops the
1060 last buffer and writes dependency output. It should also
1061 clear macro definitions, such that you could call cpp_start_read
1062 with a new filename to restart processing. */
1067 struct cpp_options
*opts
= CPP_OPTIONS (pfile
);
1069 if (CPP_PREV_BUFFER (CPP_BUFFER (pfile
)) != CPP_NULL_BUFFER (pfile
))
1071 "cpplib internal error: buffers still stacked in cpp_finish");
1072 cpp_pop_buffer (pfile
);
1074 if (opts
->print_deps
)
1076 /* Stream on which to print the dependency information. */
1079 /* Don't actually write the deps file if compilation has failed. */
1080 if (pfile
->errors
== 0)
1082 char *deps_mode
= opts
->print_deps_append
? "a" : "w";
1083 if (opts
->deps_file
== 0)
1084 deps_stream
= stdout
;
1085 else if ((deps_stream
= fopen (opts
->deps_file
, deps_mode
)) == 0)
1086 cpp_pfatal_with_name (pfile
, opts
->deps_file
);
1087 fputs (pfile
->deps_buffer
, deps_stream
);
1088 putc ('\n', deps_stream
);
1089 if (opts
->deps_file
)
1091 if (ferror (deps_stream
) || fclose (deps_stream
) != 0)
1092 cpp_fatal (pfile
, "I/O error on output");
1098 /* Handle one command-line option in (argc, argv).
1099 Can be called multiple times, to handle multiple sets of options.
1100 Returns number of strings consumed. */
1102 cpp_handle_option (pfile
, argc
, argv
)
1107 struct cpp_options
*opts
= CPP_OPTIONS (pfile
);
1110 if (argv
[i
][0] != '-')
1112 if (opts
->out_fname
!= NULL
)
1115 cpp_fatal (pfile
, "Too many arguments");
1117 else if (opts
->in_fname
!= NULL
)
1118 opts
->out_fname
= argv
[i
];
1120 opts
->in_fname
= argv
[i
];
1126 if (!strcmp (argv
[i
], "-fleading-underscore"))
1127 user_label_prefix
= "_";
1128 else if (!strcmp (argv
[i
], "-fno-leading-underscore"))
1129 user_label_prefix
= "";
1132 case 'I': /* Add directory to path for includes. */
1133 if (!strcmp (argv
[i
] + 2, "-"))
1136 Use the preceding -I directories for #include "..."
1137 but not #include <...>.
1138 Don't search the directory of the present file
1139 for #include "...". (Note that -I. -I- is not the same as
1140 the default setup; -I. uses the compiler's working dir.) */
1141 if (! opts
->ignore_srcdir
)
1143 opts
->ignore_srcdir
= 1;
1144 opts
->pending
->quote_head
= opts
->pending
->brack_head
;
1145 opts
->pending
->quote_tail
= opts
->pending
->brack_tail
;
1146 opts
->pending
->brack_head
= 0;
1147 opts
->pending
->brack_tail
= 0;
1151 cpp_fatal (pfile
, "-I- specified twice");
1158 if (argv
[i
][2] != 0)
1159 fname
= argv
[i
] + 2;
1160 else if (i
+ 1 == argc
)
1161 goto missing_dirname
;
1164 append_include_chain (pfile
, opts
->pending
,
1165 xstrdup (fname
), BRACKET
);
1170 /* Add directory to beginning of system include path, as a system
1171 include directory. */
1172 if (!strcmp (argv
[i
], "-isystem"))
1175 goto missing_filename
;
1176 append_include_chain (pfile
, opts
->pending
,
1177 xstrdup (argv
[++i
]), SYSTEM
);
1179 else if (!strcmp (argv
[i
], "-include"))
1182 goto missing_filename
;
1185 struct pending_option
*o
= (struct pending_option
*)
1186 xmalloc (sizeof (struct pending_option
));
1189 /* This list has to be built in reverse order so that
1190 when cpp_start_read pushes all the -include files onto
1191 the buffer stack, they will be scanned in forward order. */
1192 o
->next
= opts
->pending
->include_head
;
1193 opts
->pending
->include_head
= o
;
1196 else if (!strcmp (argv
[i
], "-imacros"))
1199 goto missing_filename
;
1202 struct pending_option
*o
= (struct pending_option
*)
1203 xmalloc (sizeof (struct pending_option
));
1207 APPEND (opts
->pending
, imacros
, o
);
1210 /* Add directory to end of path for includes,
1211 with the default prefix at the front of its name. */
1212 else if (!strcmp (argv
[i
], "-iwithprefix"))
1217 goto missing_dirname
;
1219 len
= strlen (argv
[i
]);
1221 if (opts
->include_prefix
!= 0)
1223 fname
= xmalloc (opts
->include_prefix_len
+ len
+ 1);
1224 memcpy (fname
, opts
->include_prefix
, opts
->include_prefix_len
);
1225 memcpy (fname
+ opts
->include_prefix_len
, argv
[i
], len
+ 1);
1229 fname
= xmalloc (sizeof GCC_INCLUDE_DIR
- 8 + len
);
1230 memcpy (fname
, GCC_INCLUDE_DIR
, sizeof GCC_INCLUDE_DIR
- 9);
1231 memcpy (fname
+ sizeof GCC_INCLUDE_DIR
- 9, argv
[i
], len
+ 1);
1234 append_include_chain (pfile
, opts
->pending
, fname
, SYSTEM
);
1236 /* Add directory to main path for includes,
1237 with the default prefix at the front of its name. */
1238 else if (!strcmp (argv
[i
], "-iwithprefixbefore"))
1243 goto missing_dirname
;
1245 len
= strlen (argv
[i
]);
1247 if (opts
->include_prefix
!= 0)
1249 fname
= xmalloc (opts
->include_prefix_len
+ len
+ 1);
1250 memcpy (fname
, opts
->include_prefix
, opts
->include_prefix_len
);
1251 memcpy (fname
+ opts
->include_prefix_len
, argv
[i
], len
+ 1);
1255 fname
= xmalloc (sizeof GCC_INCLUDE_DIR
- 8 + len
);
1256 memcpy (fname
, GCC_INCLUDE_DIR
, sizeof GCC_INCLUDE_DIR
- 9);
1257 memcpy (fname
+ sizeof GCC_INCLUDE_DIR
- 9, argv
[i
], len
+ 1);
1260 append_include_chain (pfile
, opts
->pending
, fname
, BRACKET
);
1262 /* Add directory to end of path for includes. */
1263 else if (!strcmp (argv
[i
], "-idirafter"))
1266 goto missing_dirname
;
1267 append_include_chain (pfile
, opts
->pending
,
1268 xstrdup (argv
[++i
]), AFTER
);
1270 else if (!strcmp (argv
[i
], "-iprefix"))
1273 goto missing_filename
;
1276 opts
->include_prefix
= argv
[++i
];
1277 opts
->include_prefix_len
= strlen (argv
[i
]);
1280 else if (!strcmp (argv
[i
], "-ifoutput"))
1281 opts
->output_conditionals
= 1;
1286 if (opts
->out_fname
!= NULL
)
1288 cpp_fatal (pfile
, "Output filename specified twice");
1292 goto missing_filename
;
1293 opts
->out_fname
= argv
[++i
];
1294 if (!strcmp (opts
->out_fname
, "-"))
1295 opts
->out_fname
= "";
1299 if (!strcmp (argv
[i
], "-pedantic"))
1300 CPP_PEDANTIC (pfile
) = 1;
1301 else if (!strcmp (argv
[i
], "-pedantic-errors"))
1303 CPP_PEDANTIC (pfile
) = 1;
1304 opts
->pedantic_errors
= 1;
1307 else if (!strcmp (argv
[i
], "-pcp")) {
1308 char *pcp_fname
= argv
[++i
];
1309 pcp_outfile
= ((pcp_fname
[0] != '-' || pcp_fname
[1] != '\0')
1310 ? fopen (pcp_fname
, "w")
1311 : fdopen (dup (fileno (stdout
)), "w"));
1312 if (pcp_outfile
== 0)
1313 cpp_pfatal_with_name (pfile
, pcp_fname
);
1320 if (!strcmp (argv
[i
], "-traditional"))
1322 opts
->traditional
= 1;
1323 opts
->cplusplus_comments
= 0;
1325 else if (!strcmp (argv
[i
], "-trigraphs"))
1326 opts
->trigraphs
= 1;
1330 if (! strcmp (argv
[i
], "-lang-c"))
1331 opts
->cplusplus
= 0, opts
->cplusplus_comments
= 1, opts
->c89
= 0,
1332 opts
->c9x
= 1, opts
->objc
= 0;
1333 if (! strcmp (argv
[i
], "-lang-c89"))
1334 opts
->cplusplus
= 0, opts
->cplusplus_comments
= 0, opts
->c89
= 1,
1335 opts
->c9x
= 0, opts
->objc
= 0;
1336 if (! strcmp (argv
[i
], "-lang-c++"))
1337 opts
->cplusplus
= 1, opts
->cplusplus_comments
= 1, opts
->c89
= 0,
1338 opts
->c9x
= 0, opts
->objc
= 0;
1339 if (! strcmp (argv
[i
], "-lang-objc"))
1340 opts
->cplusplus
= 0, opts
->cplusplus_comments
= 1, opts
->c89
= 0,
1341 opts
->c9x
= 0, opts
->objc
= 1;
1342 if (! strcmp (argv
[i
], "-lang-objc++"))
1343 opts
->cplusplus
= 1, opts
->cplusplus_comments
= 1, opts
->c89
= 0,
1344 opts
->c9x
= 0, opts
->objc
= 1;
1345 if (! strcmp (argv
[i
], "-lang-asm"))
1347 if (! strcmp (argv
[i
], "-lint"))
1349 if (! strcmp (argv
[i
], "-lang-chill"))
1350 opts
->objc
= 0, opts
->cplusplus
= 0, opts
->chill
= 1,
1351 opts
->traditional
= 1;
1355 opts
->cplusplus
= 1, opts
->cplusplus_comments
= 1;
1359 if (!strcmp (argv
[i
], "-std=iso9899:1990")
1360 || !strcmp (argv
[i
], "-std=iso9899:199409")
1361 || !strcmp (argv
[i
], "-std=c89")
1362 || !strcmp (argv
[i
], "-std=gnu89"))
1363 opts
->cplusplus
= 0, opts
->cplusplus_comments
= 0,
1364 opts
->c89
= 1, opts
->c9x
= 0, opts
->objc
= 0;
1365 else if (!strcmp (argv
[i
], "-std=iso9899:199x")
1366 || !strcmp (argv
[i
], "-std=c9x")
1367 || !strcmp (argv
[i
], "-std=gnu9x"))
1368 opts
->cplusplus
= 0, opts
->cplusplus_comments
= 1, opts
->c89
= 0,
1369 opts
->c9x
= 1, opts
->objc
= 0;
1373 opts
->inhibit_warnings
= 1;
1377 if (!strcmp (argv
[i
], "-Wtrigraphs"))
1378 opts
->warn_trigraphs
= 1;
1379 else if (!strcmp (argv
[i
], "-Wno-trigraphs"))
1380 opts
->warn_trigraphs
= 0;
1381 else if (!strcmp (argv
[i
], "-Wcomment"))
1382 opts
->warn_comments
= 1;
1383 else if (!strcmp (argv
[i
], "-Wno-comment"))
1384 opts
->warn_comments
= 0;
1385 else if (!strcmp (argv
[i
], "-Wcomments"))
1386 opts
->warn_comments
= 1;
1387 else if (!strcmp (argv
[i
], "-Wno-comments"))
1388 opts
->warn_comments
= 0;
1389 else if (!strcmp (argv
[i
], "-Wtraditional"))
1390 opts
->warn_stringify
= 1;
1391 else if (!strcmp (argv
[i
], "-Wno-traditional"))
1392 opts
->warn_stringify
= 0;
1393 else if (!strcmp (argv
[i
], "-Wundef"))
1394 opts
->warn_undef
= 1;
1395 else if (!strcmp (argv
[i
], "-Wno-undef"))
1396 opts
->warn_undef
= 0;
1397 else if (!strcmp (argv
[i
], "-Wimport"))
1398 opts
->warn_import
= 1;
1399 else if (!strcmp (argv
[i
], "-Wno-import"))
1400 opts
->warn_import
= 0;
1401 else if (!strcmp (argv
[i
], "-Werror"))
1402 opts
->warnings_are_errors
= 1;
1403 else if (!strcmp (argv
[i
], "-Wno-error"))
1404 opts
->warnings_are_errors
= 0;
1405 else if (!strcmp (argv
[i
], "-Wall"))
1407 opts
->warn_trigraphs
= 1;
1408 opts
->warn_comments
= 1;
1413 /* The style of the choices here is a bit mixed.
1414 The chosen scheme is a hybrid of keeping all options in one string
1415 and specifying each option in a separate argument:
1416 -M|-MM|-MD file|-MMD file [-MG]. An alternative is:
1417 -M|-MM|-MD file|-MMD file|-MG|-MMG; or more concisely:
1418 -M[M][G][D file]. This is awkward to handle in specs, and is not
1420 /* ??? -MG must be specified in addition to one of -M or -MM.
1421 This can be relaxed in the future without breaking anything.
1422 The converse isn't true. */
1424 /* -MG isn't valid with -MD or -MMD. This is checked for later. */
1425 if (!strcmp (argv
[i
], "-MG"))
1427 opts
->print_deps_missing_files
= 1;
1430 if (!strcmp (argv
[i
], "-M"))
1431 opts
->print_deps
= 2;
1432 else if (!strcmp (argv
[i
], "-MM"))
1433 opts
->print_deps
= 1;
1434 else if (!strcmp (argv
[i
], "-MD"))
1435 opts
->print_deps
= 2;
1436 else if (!strcmp (argv
[i
], "-MMD"))
1437 opts
->print_deps
= 1;
1438 /* For -MD and -MMD options, write deps on file named by next arg. */
1439 if (!strcmp (argv
[i
], "-MD") || !strcmp (argv
[i
], "-MMD"))
1442 goto missing_filename
;
1443 opts
->deps_file
= argv
[++i
];
1447 /* For -M and -MM, write deps on standard output
1448 and suppress the usual output. */
1449 opts
->no_output
= 1;
1455 char *p
= argv
[i
] + 2;
1457 while ((c
= *p
++) != 0)
1459 /* Arg to -d specifies what parts of macros to dump */
1463 opts
->dump_macros
= dump_only
;
1464 opts
->no_output
= 1;
1467 opts
->dump_macros
= dump_names
;
1470 opts
->dump_macros
= dump_definitions
;
1473 opts
->dump_includes
= 1;
1481 if (argv
[i
][2] == '3')
1482 opts
->debug_output
= 1;
1486 if (!strcmp (argv
[i
], "--help"))
1488 else if (!strcmp (argv
[i
], "--version"))
1489 cpp_notice ("GNU CPP version %s\n", version_string
);
1494 cpp_notice ("GNU CPP version %s", version_string
);
1495 #ifdef TARGET_VERSION
1498 fputc ('\n', stderr
);
1503 opts
->print_include_names
= 1;
1508 struct pending_option
*o
= (struct pending_option
*)
1509 xmalloc (sizeof (struct pending_option
));
1510 if (argv
[i
][2] != 0)
1511 o
->arg
= argv
[i
] + 2;
1512 else if (i
+ 1 == argc
)
1514 cpp_fatal (pfile
, "Macro name missing after -D option");
1522 APPEND (opts
->pending
, define
, o
);
1530 if (argv
[i
][2] != 0)
1532 else if (i
+ 1 == argc
)
1534 cpp_fatal (pfile
, "Assertion missing after -A option");
1540 if (strcmp (p
, "-"))
1542 struct pending_option
*o
= (struct pending_option
*)
1543 xmalloc (sizeof (struct pending_option
));
1548 APPEND (opts
->pending
, assert, o
);
1552 /* -A- eliminates all predefined macros and assertions.
1553 Let's include also any that were specified earlier
1554 on the command line. That way we can get rid of any
1555 that were passed automatically in from GCC. */
1556 struct pending_option
*o1
, *o2
;
1558 o1
= opts
->pending
->define_head
;
1565 o1
= opts
->pending
->assert_head
;
1572 opts
->pending
->assert_head
= NULL
;
1573 opts
->pending
->assert_tail
= NULL
;
1574 opts
->pending
->define_head
= NULL
;
1575 opts
->pending
->define_tail
= NULL
;
1582 struct pending_option
*o
= (struct pending_option
*)
1583 xmalloc (sizeof (struct pending_option
));
1585 if (argv
[i
][2] != 0)
1586 o
->arg
= argv
[i
] + 2;
1587 else if (i
+ 1 == argc
)
1589 cpp_fatal (pfile
, "Macro name missing after -U option");
1597 APPEND (opts
->pending
, define
, o
);
1602 opts
->put_out_comments
= 1;
1605 case 'E': /* -E comes from cc -E; ignore it. */
1609 opts
->no_line_commands
= 1;
1612 case '$': /* Don't include $ in identifiers. */
1613 opts
->dollars_in_ident
= 0;
1617 if (!strcmp (argv
[i
], "-nostdinc"))
1618 /* -nostdinc causes no default include directories.
1619 You must specify all include-file directories with -I. */
1620 opts
->no_standard_includes
= 1;
1621 else if (!strcmp (argv
[i
], "-nostdinc++"))
1622 /* -nostdinc++ causes no default C++-specific include directories. */
1623 opts
->no_standard_cplusplus_includes
= 1;
1625 else if (!strcmp (argv
[i
], "-noprecomp"))
1631 if (!strcmp (argv
[i
], "-remap"))
1635 case '\0': /* JF handle '-' as file name meaning stdin or stdout */
1636 if (opts
->in_fname
== NULL
)
1637 opts
->in_fname
= "";
1638 else if (opts
->out_fname
== NULL
)
1639 opts
->out_fname
= "";
1641 return i
; /* error */
1651 cpp_fatal (pfile
, "Filename missing after `%s' option", argv
[i
]);
1654 cpp_fatal (pfile
, "Directory name missing after `%s' option", argv
[i
]);
1658 /* Handle command-line options in (argc, argv).
1659 Can be called multiple times, to handle multiple sets of options.
1660 Returns if an unrecognized option is seen.
1661 Returns number of strings consumed. */
1664 cpp_handle_options (pfile
, argc
, argv
)
1670 int strings_processed
;
1671 for (i
= 0; i
< argc
; i
+= strings_processed
)
1673 strings_processed
= cpp_handle_option (pfile
, argc
- i
, argv
+ i
);
1674 if (strings_processed
== 0)
1683 cpp_notice ("Usage: %s [switches] input output\n", progname
);
1686 -include <file> Include the contents of <file> before other files\n\
1687 -imacros <file> Accept definition of macros in <file>\n\
1688 -iprefix <path> Specify <path> as a prefix for next two options\n\
1689 -iwithprefix <dir> Add <dir> to the end of the system include path\n\
1690 -iwithprefixbefore <dir> Add <dir> to the end of the main include path\n\
1691 -isystem <dir> Add <dir> to the start of the system include path\n\
1692 -idirafter <dir> Add <dir> to the end of the system include path\n\
1693 -I <dir> Add <dir> to the end of the main include path\n\
1694 -nostdinc Do not search system include directories\n\
1695 (dirs specified with -isystem will still be used)\n\
1696 -nostdinc++ Do not search system include directories for C++\n\
1697 -o <file> Put output into <file>\n\
1698 -pedantic Issue all warnings demanded by strict ANSI C\n\
1699 -traditional Follow K&R pre-processor behaviour\n\
1700 -trigraphs Support ANSI C trigraphs\n\
1701 -lang-c Assume that the input sources are in C\n\
1702 -lang-c89 Assume that the input sources are in C89\n\
1703 -lang-c++ Assume that the input sources are in C++\n\
1704 -lang-objc Assume that the input sources are in ObjectiveC\n\
1705 -lang-objc++ Assume that the input sources are in ObjectiveC++\n\
1706 -lang-asm Assume that the input sources are in assembler\n\
1707 -lang-chill Assume that the input sources are in Chill\n\
1708 -std=<std name> Specify the conformance standard; one of:\n\
1709 gnu89, gnu9x, c89, c9x, iso9899:1990,\n\
1710 iso9899:199409, iso9899:199x\n\
1711 -+ Allow parsing of C++ style features\n\
1712 -w Inhibit warning messages\n\
1713 -Wtrigraphs Warn if trigraphs are encountered\n\
1714 -Wno-trigraphs Do not warn about trigraphs\n\
1715 -Wcomment{s} Warn if one comment starts inside another\n\
1716 -Wno-comment{s} Do not warn about comments\n\
1717 -Wtraditional Warn if a macro argument is/would be turned into\n\
1718 a string if -traditional is specified\n\
1719 -Wno-traditional Do not warn about stringification\n\
1720 -Wundef Warn if an undefined macro is used by #if\n\
1721 -Wno-undef Do not warn about testing undefined macros\n\
1722 -Wimport Warn about the use of the #import directive\n\
1723 -Wno-import Do not warn about the use of #import\n\
1724 -Werror Treat all warnings as errors\n\
1725 -Wno-error Do not treat warnings as errors\n\
1726 -Wall Enable all preprocessor warnings\n\
1727 -M Generate make dependencies\n\
1728 -MM As -M, but ignore system header files\n\
1729 -MD As -M, but put output in a .d file\n\
1730 -MMD As -MD, but ignore system header files\n\
1731 -MG Treat missing header file as generated files\n\
1732 -g Include #define and #undef directives in the output\n\
1733 -D<macro> Define a <macro> with string '1' as its value\n\
1734 -D<macro>=<val> Define a <macro> with <val> as its value\n\
1735 -A<question> (<answer>) Assert the <answer> to <question>\n\
1736 -U<macro> Undefine <macro> \n\
1737 -v Display the version number\n\
1738 -H Print the name of header files as they are used\n\
1739 -C Do not discard comments\n\
1740 -dM Display a list of macro definitions active at end\n\
1741 -dD Preserve macro definitions in output\n\
1742 -dN As -dD except that only the names are preserved\n\
1743 -dI Include #include directives in the output\n\
1744 -ifoutput Describe skipped code blocks in output \n\
1745 -P Do not generate #line directives\n\
1746 -$ Do not allow '$' in identifiers\n\
1747 -remap Remap file names when including files.\n\
1748 -h or --help Display this information\n\