]>
Commit | Line | Data |
---|---|---|
5538ada6 | 1 | /* CPP Library. |
5e7b4e25 | 2 | Copyright (C) 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, |
03b9ab42 | 3 | 1999, 2000, 2001 Free Software Foundation, Inc. |
5538ada6 ZW |
4 | Contributed by Per Bothner, 1994-95. |
5 | Based on CCCP program by Paul Rubin, June 1986 | |
6 | Adapted to ANSI C, Richard Stallman, Jan 1987 | |
7 | ||
8 | This program is free software; you can redistribute it and/or modify it | |
9 | under the terms of the GNU General Public License as published by the | |
10 | Free Software Foundation; either version 2, or (at your option) any | |
11 | later version. | |
12 | ||
13 | This program is distributed in the hope that it will be useful, | |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | GNU General Public License for more details. | |
17 | ||
18 | You should have received a copy of the GNU General Public License | |
19 | along with this program; if not, write to the Free Software | |
20 | Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ | |
21 | ||
5538ada6 ZW |
22 | #include "config.h" |
23 | #include "system.h" | |
6de1e2a9 ZW |
24 | #include "cpplib.h" |
25 | #include "cpphash.h" | |
26 | #include "output.h" | |
27 | #include "prefix.h" | |
28 | #include "intl.h" | |
9f8f4efe | 29 | #include "version.h" |
49e6c08e | 30 | #include "mkdeps.h" |
60893f43 | 31 | #include "cppdefault.h" |
6de1e2a9 | 32 | |
4a58aab6 | 33 | /* Predefined symbols, built-in macros, and the default include path. */ |
6de1e2a9 ZW |
34 | |
35 | #ifndef GET_ENV_PATH_LIST | |
36 | #define GET_ENV_PATH_LIST(VAR,NAME) do { (VAR) = getenv (NAME); } while (0) | |
37 | #endif | |
38 | ||
88ae23e7 ZW |
39 | /* Windows does not natively support inodes, and neither does MSDOS. |
40 | Cygwin's emulation can generate non-unique inodes, so don't use it. | |
41 | VMS has non-numeric inodes. */ | |
42 | #ifdef VMS | |
43 | #define INO_T_EQ(a, b) (!memcmp (&(a), &(b), sizeof (a))) | |
44 | #elif (defined _WIN32 && ! defined (_UWIN)) || defined __MSDOS__ | |
45 | #define INO_T_EQ(a, b) 0 | |
46 | #else | |
47 | #define INO_T_EQ(a, b) ((a) == (b)) | |
48 | #endif | |
49 | ||
4a58aab6 | 50 | /* Internal structures and prototypes. */ |
6de1e2a9 | 51 | |
4a58aab6 NB |
52 | /* A `struct pending_option' remembers one -D, -A, -U, -include, or |
53 | -imacros switch. */ | |
40eac643 | 54 | |
8be1ddca | 55 | typedef void (* cl_directive_handler) PARAMS ((cpp_reader *, const char *)); |
0b22d65c | 56 | struct pending_option |
6de1e2a9 | 57 | { |
0b22d65c | 58 | struct pending_option *next; |
7ceb3598 | 59 | const char *arg; |
40eac643 | 60 | cl_directive_handler handler; |
6de1e2a9 | 61 | }; |
0b22d65c | 62 | |
88ae23e7 ZW |
63 | /* The `pending' structure accumulates all the options that are not |
64 | actually processed until we hit cpp_start_read. It consists of | |
65 | several lists, one for each type of option. We keep both head and | |
4a58aab6 | 66 | tail pointers for quick insertion. */ |
88ae23e7 ZW |
67 | struct cpp_pending |
68 | { | |
40eac643 | 69 | struct pending_option *directive_head, *directive_tail; |
88ae23e7 ZW |
70 | |
71 | struct file_name_list *quote_head, *quote_tail; | |
72 | struct file_name_list *brack_head, *brack_tail; | |
73 | struct file_name_list *systm_head, *systm_tail; | |
74 | struct file_name_list *after_head, *after_tail; | |
75 | ||
76 | struct pending_option *imacros_head, *imacros_tail; | |
77 | struct pending_option *include_head, *include_tail; | |
78 | }; | |
79 | ||
0b22d65c ZW |
80 | #ifdef __STDC__ |
81 | #define APPEND(pend, list, elt) \ | |
82 | do { if (!(pend)->list##_head) (pend)->list##_head = (elt); \ | |
83 | else (pend)->list##_tail->next = (elt); \ | |
84 | (pend)->list##_tail = (elt); \ | |
85 | } while (0) | |
86 | #else | |
87 | #define APPEND(pend, list, elt) \ | |
88 | do { if (!(pend)->list/**/_head) (pend)->list/**/_head = (elt); \ | |
89 | else (pend)->list/**/_tail->next = (elt); \ | |
90 | (pend)->list/**/_tail = (elt); \ | |
91 | } while (0) | |
92 | #endif | |
6de1e2a9 | 93 | |
6de1e2a9 | 94 | static void print_help PARAMS ((void)); |
0b22d65c | 95 | static void path_include PARAMS ((cpp_reader *, |
0b22d65c | 96 | char *, int)); |
8d9e9a08 | 97 | static void initialize PARAMS ((void)); |
6de1e2a9 | 98 | static void initialize_builtins PARAMS ((cpp_reader *)); |
0b22d65c | 99 | static void append_include_chain PARAMS ((cpp_reader *, |
c45da1ca | 100 | char *, int, int)); |
dd69c71b NB |
101 | struct file_name_list * remove_dup_dir PARAMS ((cpp_reader *, |
102 | struct file_name_list *)); | |
103 | struct file_name_list * remove_dup_dirs PARAMS ((cpp_reader *, | |
104 | struct file_name_list *)); | |
ae79697b | 105 | static void merge_include_chains PARAMS ((cpp_reader *)); |
4a58aab6 NB |
106 | static void do_includes PARAMS ((cpp_reader *, |
107 | struct pending_option *, | |
108 | int)); | |
dd07b884 | 109 | static void set_lang PARAMS ((cpp_reader *, enum c_lang)); |
bcc5cac9 | 110 | static void initialize_dependency_output PARAMS ((cpp_reader *)); |
c45da1ca | 111 | static void initialize_standard_includes PARAMS ((cpp_reader *)); |
2c0accc9 | 112 | static void new_pending_directive PARAMS ((struct cpp_pending *, |
40eac643 NB |
113 | const char *, |
114 | cl_directive_handler)); | |
e23c0ba3 ZW |
115 | #ifdef HOST_EBCDIC |
116 | static int opt_comp PARAMS ((const void *, const void *)); | |
117 | #endif | |
118 | static int parse_option PARAMS ((const char *)); | |
6de1e2a9 | 119 | |
4a58aab6 | 120 | /* Fourth argument to append_include_chain: chain to use. */ |
0b22d65c | 121 | enum { QUOTE = 0, BRACKET, SYSTEM, AFTER }; |
6de1e2a9 | 122 | |
61d0346d NB |
123 | /* If we have designated initializers (GCC >2.7) these tables can be |
124 | initialized, constant data. Otherwise, they have to be filled in at | |
12cf91fe | 125 | runtime. */ |
61d0346d | 126 | #if HAVE_DESIGNATED_INITIALIZERS |
a9ae4483 | 127 | |
4a58aab6 | 128 | #define init_trigraph_map() /* Nothing. */ |
61d0346d NB |
129 | #define TRIGRAPH_MAP \ |
130 | __extension__ const U_CHAR _cpp_trigraph_map[UCHAR_MAX + 1] = { | |
131 | ||
a9ae4483 | 132 | #define END }; |
455d2586 | 133 | #define s(p, v) [p] = v, |
61d0346d | 134 | |
a9ae4483 | 135 | #else |
61d0346d | 136 | |
61d0346d NB |
137 | #define TRIGRAPH_MAP U_CHAR _cpp_trigraph_map[UCHAR_MAX + 1] = { 0 }; \ |
138 | static void init_trigraph_map PARAMS ((void)) { \ | |
139 | unsigned char *x = _cpp_trigraph_map; | |
140 | ||
ae79697b | 141 | #define END } |
455d2586 | 142 | #define s(p, v) x[p] = v; |
61d0346d | 143 | |
a9ae4483 | 144 | #endif |
6de1e2a9 | 145 | |
61d0346d NB |
146 | TRIGRAPH_MAP |
147 | s('=', '#') s(')', ']') s('!', '|') | |
148 | s('(', '[') s('\'', '^') s('>', '}') | |
149 | s('/', '\\') s('<', '{') s('-', '~') | |
150 | END | |
151 | ||
a9ae4483 | 152 | #undef s |
455d2586 | 153 | #undef END |
61d0346d | 154 | #undef TRIGRAPH_MAP |
6de1e2a9 ZW |
155 | |
156 | /* Given a colon-separated list of file names PATH, | |
157 | add all the names to the search path for include files. */ | |
158 | ||
159 | static void | |
e33f6253 | 160 | path_include (pfile, list, path) |
6de1e2a9 | 161 | cpp_reader *pfile; |
0b22d65c ZW |
162 | char *list; |
163 | int path; | |
6de1e2a9 | 164 | { |
0b22d65c | 165 | char *p, *q, *name; |
6de1e2a9 | 166 | |
0b22d65c | 167 | p = list; |
6de1e2a9 | 168 | |
0b22d65c ZW |
169 | do |
170 | { | |
6de1e2a9 | 171 | /* Find the end of this name. */ |
0b22d65c | 172 | q = p; |
6de1e2a9 | 173 | while (*q != 0 && *q != PATH_SEPARATOR) q++; |
0b22d65c ZW |
174 | if (q == p) |
175 | { | |
176 | /* An empty name in the path stands for the current directory. */ | |
177 | name = (char *) xmalloc (2); | |
178 | name[0] = '.'; | |
179 | name[1] = 0; | |
180 | } | |
181 | else | |
182 | { | |
183 | /* Otherwise use the directory that is named. */ | |
184 | name = (char *) xmalloc (q - p + 1); | |
185 | memcpy (name, p, q - p); | |
186 | name[q - p] = 0; | |
187 | } | |
6de1e2a9 | 188 | |
e33f6253 | 189 | append_include_chain (pfile, name, path, 0); |
6de1e2a9 ZW |
190 | |
191 | /* Advance past this name. */ | |
0b22d65c | 192 | if (*q == 0) |
6de1e2a9 | 193 | break; |
0b22d65c ZW |
194 | p = q + 1; |
195 | } | |
196 | while (1); | |
197 | } | |
198 | ||
0b22d65c ZW |
199 | /* Append DIR to include path PATH. DIR must be permanently allocated |
200 | and writable. */ | |
201 | static void | |
e33f6253 | 202 | append_include_chain (pfile, dir, path, cxx_aware) |
0b22d65c | 203 | cpp_reader *pfile; |
0b22d65c ZW |
204 | char *dir; |
205 | int path; | |
c45da1ca | 206 | int cxx_aware; |
0b22d65c | 207 | { |
e33f6253 | 208 | struct cpp_pending *pend = CPP_OPTION (pfile, pending); |
0b22d65c ZW |
209 | struct file_name_list *new; |
210 | struct stat st; | |
211 | unsigned int len; | |
212 | ||
b0699dad | 213 | _cpp_simplify_pathname (dir); |
0b22d65c ZW |
214 | if (stat (dir, &st)) |
215 | { | |
216 | /* Dirs that don't exist are silently ignored. */ | |
217 | if (errno != ENOENT) | |
c1212d2f | 218 | cpp_notice_from_errno (pfile, dir); |
ae79697b | 219 | else if (CPP_OPTION (pfile, verbose)) |
041c3194 | 220 | fprintf (stderr, _("ignoring nonexistent directory \"%s\"\n"), dir); |
0b22d65c ZW |
221 | return; |
222 | } | |
223 | ||
224 | if (!S_ISDIR (st.st_mode)) | |
225 | { | |
c1212d2f | 226 | cpp_notice (pfile, "%s: Not a directory", dir); |
0b22d65c ZW |
227 | return; |
228 | } | |
229 | ||
230 | len = strlen (dir); | |
231 | if (len > pfile->max_include_len) | |
232 | pfile->max_include_len = len; | |
ae79697b | 233 | |
7ceb3598 | 234 | new = (struct file_name_list *) xmalloc (sizeof (struct file_name_list)); |
0b22d65c ZW |
235 | new->name = dir; |
236 | new->nlen = len; | |
237 | new->ino = st.st_ino; | |
238 | new->dev = st.st_dev; | |
c45da1ca ZW |
239 | if (path == SYSTEM) |
240 | new->sysp = cxx_aware ? 1 : 2; | |
241 | else | |
242 | new->sysp = 0; | |
0b22d65c | 243 | new->name_map = NULL; |
503cb436 DB |
244 | new->next = NULL; |
245 | new->alloc = NULL; | |
0b22d65c ZW |
246 | |
247 | switch (path) | |
248 | { | |
249 | case QUOTE: APPEND (pend, quote, new); break; | |
250 | case BRACKET: APPEND (pend, brack, new); break; | |
251 | case SYSTEM: APPEND (pend, systm, new); break; | |
252 | case AFTER: APPEND (pend, after, new); break; | |
6de1e2a9 ZW |
253 | } |
254 | } | |
255 | ||
dd69c71b NB |
256 | /* Handle a duplicated include path. PREV is the link in the chain |
257 | before the duplicate. The duplicate is removed from the chain and | |
258 | freed. Returns PREV. */ | |
259 | struct file_name_list * | |
260 | remove_dup_dir (pfile, prev) | |
261 | cpp_reader *pfile; | |
262 | struct file_name_list *prev; | |
263 | { | |
264 | struct file_name_list *cur = prev->next; | |
265 | ||
266 | if (CPP_OPTION (pfile, verbose)) | |
267 | fprintf (stderr, _("ignoring duplicate directory \"%s\"\n"), cur->name); | |
268 | ||
269 | prev->next = cur->next; | |
270 | free (cur->name); | |
271 | free (cur); | |
272 | ||
273 | return prev; | |
274 | } | |
275 | ||
276 | /* Remove duplicate directories from a chain. Returns the tail of the | |
277 | chain, or NULL if the chain is empty. This algorithm is quadratic | |
278 | in the number of -I switches, which is acceptable since there | |
279 | aren't usually that many of them. */ | |
280 | struct file_name_list * | |
281 | remove_dup_dirs (pfile, head) | |
282 | cpp_reader *pfile; | |
283 | struct file_name_list *head; | |
284 | { | |
285 | struct file_name_list *prev = NULL, *cur, *other; | |
286 | ||
287 | for (cur = head; cur; cur = cur->next) | |
288 | { | |
289 | for (other = head; other != cur; other = other->next) | |
290 | if (INO_T_EQ (cur->ino, other->ino) && cur->dev == other->dev) | |
291 | { | |
292 | cur = remove_dup_dir (pfile, prev); | |
293 | break; | |
294 | } | |
295 | prev = cur; | |
296 | } | |
297 | ||
298 | return prev; | |
299 | } | |
300 | ||
88ae23e7 ZW |
301 | /* Merge the four include chains together in the order quote, bracket, |
302 | system, after. Remove duplicate dirs (as determined by | |
303 | INO_T_EQ()). The system_include and after_include chains are never | |
304 | referred to again after this function; all access is through the | |
305 | bracket_include path. | |
306 | ||
307 | For the future: Check if the directory is empty (but | |
4a58aab6 | 308 | how?) and possibly preload the include hash. */ |
88ae23e7 ZW |
309 | |
310 | static void | |
ae79697b ZW |
311 | merge_include_chains (pfile) |
312 | cpp_reader *pfile; | |
88ae23e7 | 313 | { |
dd69c71b | 314 | struct file_name_list *quote, *brack, *systm, *qtail; |
88ae23e7 | 315 | |
ae79697b | 316 | struct cpp_pending *pend = CPP_OPTION (pfile, pending); |
88ae23e7 | 317 | |
ae79697b ZW |
318 | quote = pend->quote_head; |
319 | brack = pend->brack_head; | |
320 | systm = pend->systm_head; | |
dd69c71b | 321 | qtail = pend->quote_tail; |
88ae23e7 | 322 | |
dd69c71b NB |
323 | /* Paste together bracket, system, and after include chains. */ |
324 | if (systm) | |
325 | pend->systm_tail->next = pend->after_head; | |
88ae23e7 | 326 | else |
dd69c71b NB |
327 | systm = pend->after_head; |
328 | ||
329 | if (brack) | |
330 | pend->brack_tail->next = systm; | |
88ae23e7 ZW |
331 | else |
332 | brack = systm; | |
333 | ||
dd69c71b NB |
334 | /* This is a bit tricky. First we drop dupes from the quote-include |
335 | list. Then we drop dupes from the bracket-include list. | |
336 | Finally, if qtail and brack are the same directory, we cut out | |
337 | brack. | |
88ae23e7 ZW |
338 | |
339 | We can't just merge the lists and then uniquify them because | |
340 | then we may lose directories from the <> search path that should | |
341 | be there; consider -Ifoo -Ibar -I- -Ifoo -Iquux. It is however | |
342 | safe to treat -Ibar -Ifoo -I- -Ifoo -Iquux as if written | |
dd69c71b | 343 | -Ibar -I- -Ifoo -Iquux. */ |
88ae23e7 | 344 | |
dd69c71b NB |
345 | remove_dup_dirs (pfile, brack); |
346 | qtail = remove_dup_dirs (pfile, quote); | |
88ae23e7 ZW |
347 | |
348 | if (quote) | |
349 | { | |
dd69c71b NB |
350 | qtail->next = brack; |
351 | ||
352 | /* If brack == qtail, remove brack as it's simpler. */ | |
88ae23e7 | 353 | if (INO_T_EQ (qtail->ino, brack->ino) && qtail->dev == brack->dev) |
dd69c71b | 354 | brack = remove_dup_dir (pfile, qtail); |
88ae23e7 ZW |
355 | } |
356 | else | |
357 | quote = brack; | |
358 | ||
ae79697b ZW |
359 | CPP_OPTION (pfile, quote_include) = quote; |
360 | CPP_OPTION (pfile, bracket_include) = brack; | |
88ae23e7 ZW |
361 | } |
362 | ||
dd07b884 NB |
363 | /* Sets internal flags correctly for a given language, and defines |
364 | macros if necessary. */ | |
365 | static void | |
366 | set_lang (pfile, lang) | |
367 | cpp_reader *pfile; | |
368 | enum c_lang lang; | |
369 | { | |
370 | struct cpp_pending *pend = CPP_OPTION (pfile, pending); | |
371 | ||
bdb05a7b NB |
372 | /* Defaults. */ |
373 | CPP_OPTION (pfile, lang) = lang; | |
dd07b884 NB |
374 | CPP_OPTION (pfile, objc) = 0; |
375 | CPP_OPTION (pfile, cplusplus) = 0; | |
bdb05a7b | 376 | CPP_OPTION (pfile, extended_numbers) = 1; /* Allowed in GNU C and C99. */ |
dd07b884 NB |
377 | |
378 | switch (lang) | |
379 | { | |
380 | /* GNU C. */ | |
381 | case CLK_GNUC99: | |
382 | CPP_OPTION (pfile, trigraphs) = 0; | |
383 | CPP_OPTION (pfile, dollars_in_ident) = 1; | |
384 | CPP_OPTION (pfile, cplusplus_comments) = 1; | |
385 | CPP_OPTION (pfile, digraphs) = 1; | |
dd07b884 NB |
386 | CPP_OPTION (pfile, c99) = 1; |
387 | new_pending_directive (pend, "__STDC_VERSION__=199901L", cpp_define); | |
388 | break; | |
389 | case CLK_GNUC89: | |
390 | CPP_OPTION (pfile, trigraphs) = 0; | |
391 | CPP_OPTION (pfile, dollars_in_ident) = 1; | |
392 | CPP_OPTION (pfile, cplusplus_comments) = 1; | |
393 | CPP_OPTION (pfile, digraphs) = 1; | |
dd07b884 NB |
394 | CPP_OPTION (pfile, c99) = 0; |
395 | break; | |
396 | ||
397 | /* ISO C. */ | |
398 | case CLK_STDC94: | |
399 | new_pending_directive (pend, "__STDC_VERSION__=199409L", cpp_define); | |
400 | case CLK_STDC89: | |
401 | CPP_OPTION (pfile, trigraphs) = 1; | |
402 | CPP_OPTION (pfile, dollars_in_ident) = 0; | |
403 | CPP_OPTION (pfile, cplusplus_comments) = 0; | |
404 | CPP_OPTION (pfile, digraphs) = lang == CLK_STDC94; | |
dd07b884 | 405 | CPP_OPTION (pfile, c99) = 0; |
bdb05a7b | 406 | CPP_OPTION (pfile, extended_numbers) = 0; |
dd07b884 NB |
407 | new_pending_directive (pend, "__STRICT_ANSI__", cpp_define); |
408 | break; | |
409 | case CLK_STDC99: | |
410 | CPP_OPTION (pfile, trigraphs) = 1; | |
411 | CPP_OPTION (pfile, dollars_in_ident) = 0; | |
412 | CPP_OPTION (pfile, cplusplus_comments) = 1; | |
413 | CPP_OPTION (pfile, digraphs) = 1; | |
dd07b884 NB |
414 | CPP_OPTION (pfile, c99) = 1; |
415 | new_pending_directive (pend, "__STRICT_ANSI__", cpp_define); | |
416 | new_pending_directive (pend, "__STDC_VERSION__=199901L", cpp_define); | |
417 | break; | |
418 | ||
419 | /* Objective C. */ | |
420 | case CLK_OBJCXX: | |
421 | new_pending_directive (pend, "__cplusplus", cpp_define); | |
422 | CPP_OPTION (pfile, cplusplus) = 1; | |
423 | case CLK_OBJC: | |
424 | CPP_OPTION (pfile, trigraphs) = 0; | |
425 | CPP_OPTION (pfile, dollars_in_ident) = 1; | |
426 | CPP_OPTION (pfile, cplusplus_comments) = 1; | |
427 | CPP_OPTION (pfile, digraphs) = 1; | |
dd07b884 NB |
428 | CPP_OPTION (pfile, c99) = 0; |
429 | CPP_OPTION (pfile, objc) = 1; | |
430 | new_pending_directive (pend, "__OBJC__", cpp_define); | |
431 | break; | |
432 | ||
433 | /* C++. */ | |
434 | case CLK_GNUCXX: | |
435 | case CLK_CXX98: | |
436 | CPP_OPTION (pfile, cplusplus) = 1; | |
437 | CPP_OPTION (pfile, trigraphs) = lang == CLK_CXX98; | |
438 | CPP_OPTION (pfile, dollars_in_ident) = lang == CLK_GNUCXX; | |
439 | CPP_OPTION (pfile, cplusplus_comments) = 1; | |
440 | CPP_OPTION (pfile, digraphs) = 1; | |
dd07b884 NB |
441 | CPP_OPTION (pfile, c99) = 0; |
442 | new_pending_directive (pend, "__cplusplus", cpp_define); | |
443 | break; | |
444 | ||
445 | /* Assembler. */ | |
446 | case CLK_ASM: | |
447 | CPP_OPTION (pfile, trigraphs) = 0; | |
448 | CPP_OPTION (pfile, dollars_in_ident) = 0; /* Maybe not? */ | |
449 | CPP_OPTION (pfile, cplusplus_comments) = 1; | |
450 | CPP_OPTION (pfile, digraphs) = 0; | |
dd07b884 | 451 | CPP_OPTION (pfile, c99) = 0; |
dd07b884 NB |
452 | new_pending_directive (pend, "__ASSEMBLER__", cpp_define); |
453 | break; | |
454 | } | |
455 | } | |
456 | ||
cf44ea52 NB |
457 | /* initialize initializes library global state. It might not need to |
458 | do anything depending on the platform and compiler. */ | |
459 | ||
460 | static int initialized = 0; | |
461 | ||
462 | static void | |
463 | initialize () | |
464 | { | |
465 | #ifdef HOST_EBCDIC | |
466 | /* For non-ASCII hosts, the cl_options array needs to be sorted at | |
467 | runtime. */ | |
468 | qsort (cl_options, N_OPTS, sizeof (struct cl_option), opt_comp); | |
469 | #endif | |
470 | ||
f6bbde28 ZW |
471 | /* Set up the trigraph map. This doesn't need to do anything if we were |
472 | compiled with a compiler that supports C99 designated initializers. */ | |
cf44ea52 | 473 | init_trigraph_map (); |
cf44ea52 NB |
474 | |
475 | initialized = 1; | |
476 | } | |
477 | ||
6de1e2a9 | 478 | /* Initialize a cpp_reader structure. */ |
cf44ea52 NB |
479 | cpp_reader * |
480 | cpp_create_reader (lang) | |
dd07b884 | 481 | enum c_lang lang; |
6de1e2a9 | 482 | { |
93c80368 | 483 | struct spec_nodes *s; |
cf44ea52 | 484 | cpp_reader *pfile = (cpp_reader *) xcalloc (1, sizeof (cpp_reader)); |
93c80368 | 485 | |
cf44ea52 NB |
486 | /* Initialise this instance of the library if it hasn't been already. */ |
487 | if (! initialized) | |
488 | initialize (); | |
93c80368 | 489 | |
ae79697b ZW |
490 | CPP_OPTION (pfile, warn_import) = 1; |
491 | CPP_OPTION (pfile, discard_comments) = 1; | |
492 | CPP_OPTION (pfile, show_column) = 1; | |
6ab3e7dd | 493 | CPP_OPTION (pfile, tabstop) = 8; |
be768055 | 494 | CPP_OPTION (pfile, operator_names) = 1; |
ae79697b ZW |
495 | |
496 | CPP_OPTION (pfile, pending) = | |
497 | (struct cpp_pending *) xcalloc (1, sizeof (struct cpp_pending)); | |
498 | ||
056487e7 NB |
499 | /* After creating pfile->pending. */ |
500 | set_lang (pfile, lang); | |
501 | ||
4a58aab6 | 502 | /* Initialize lexer state. */ |
93c80368 NB |
503 | pfile->state.save_comments = ! CPP_OPTION (pfile, discard_comments); |
504 | ||
505 | /* Indicate date and time not yet calculated. */ | |
506 | pfile->date.type = CPP_EOF; | |
507 | ||
508 | /* Initialise the base context. */ | |
509 | pfile->context = &pfile->base_context; | |
510 | pfile->base_context.macro = 0; | |
511 | pfile->base_context.prev = pfile->base_context.next = 0; | |
512 | ||
513 | /* Identifier pool initially 8K. Unaligned, permanent pool. */ | |
514 | _cpp_init_pool (&pfile->ident_pool, 8 * 1024, 1, 0); | |
515 | ||
93c80368 NB |
516 | /* Argument pool initially 8K. Aligned, temporary pool. */ |
517 | _cpp_init_pool (&pfile->argument_pool, 8 * 1024, 0, 1); | |
518 | ||
519 | /* Macro pool initially 8K. Aligned, permanent pool. */ | |
520 | _cpp_init_pool (&pfile->macro_pool, 8 * 1024, 0, 0); | |
3cb553b4 | 521 | |
93c80368 | 522 | _cpp_init_hashtable (pfile); |
bfb9dc7f | 523 | _cpp_init_stacks (pfile); |
c71f835b | 524 | _cpp_init_includes (pfile); |
58fea6af | 525 | _cpp_init_internal_pragmas (pfile); |
6de1e2a9 | 526 | |
93c80368 NB |
527 | /* Initialize the special nodes. */ |
528 | s = &pfile->spec_nodes; | |
529 | s->n_L = cpp_lookup (pfile, DSC("L")); | |
530 | s->n_defined = cpp_lookup (pfile, DSC("defined")); | |
a5c3cccd | 531 | s->n__Pragma = cpp_lookup (pfile, DSC("_Pragma")); |
93c80368 NB |
532 | s->n__STRICT_ANSI__ = cpp_lookup (pfile, DSC("__STRICT_ANSI__")); |
533 | s->n__CHAR_UNSIGNED__ = cpp_lookup (pfile, DSC("__CHAR_UNSIGNED__")); | |
534 | s->n__VA_ARGS__ = cpp_lookup (pfile, DSC("__VA_ARGS__")); | |
535 | s->n__VA_ARGS__->flags |= NODE_DIAGNOSTIC; | |
cf44ea52 NB |
536 | |
537 | return pfile; | |
f2d5f0cc ZW |
538 | } |
539 | ||
6de1e2a9 ZW |
540 | /* Free resources used by PFILE. |
541 | This is the cpp_reader 'finalizer' or 'destructor' (in C++ terminology). */ | |
542 | void | |
543 | cpp_cleanup (pfile) | |
544 | cpp_reader *pfile; | |
545 | { | |
93c80368 NB |
546 | struct file_name_list *dir, *dirn; |
547 | cpp_context *context, *contextn; | |
709e9e50 | 548 | |
38b24ee2 | 549 | while (CPP_BUFFER (pfile) != NULL) |
6de1e2a9 ZW |
550 | cpp_pop_buffer (pfile); |
551 | ||
93c80368 NB |
552 | if (pfile->macro_buffer) |
553 | free ((PTR) pfile->macro_buffer); | |
554 | ||
49e6c08e ZW |
555 | if (pfile->deps) |
556 | deps_free (pfile->deps); | |
557 | ||
bfb9dc7f | 558 | _cpp_cleanup_includes (pfile); |
c71f835b | 559 | _cpp_cleanup_stacks (pfile); |
93c80368 NB |
560 | _cpp_cleanup_hashtable (pfile); |
561 | ||
562 | _cpp_free_lookaheads (pfile); | |
709e9e50 | 563 | |
93c80368 | 564 | _cpp_free_pool (&pfile->ident_pool); |
93c80368 NB |
565 | _cpp_free_pool (&pfile->macro_pool); |
566 | _cpp_free_pool (&pfile->argument_pool); | |
567 | ||
568 | for (dir = CPP_OPTION (pfile, quote_include); dir; dir = dirn) | |
709e9e50 | 569 | { |
93c80368 | 570 | dirn = dir->next; |
709e9e50 NB |
571 | free (dir->name); |
572 | free (dir); | |
573 | } | |
93c80368 NB |
574 | |
575 | for (context = pfile->base_context.next; context; context = contextn) | |
576 | { | |
577 | contextn = context->next; | |
578 | free (context); | |
579 | } | |
6de1e2a9 ZW |
580 | } |
581 | ||
582 | ||
93c80368 NB |
583 | /* This structure defines one built-in identifier. A node will be |
584 | entered in the hash table under the name NAME, with value VALUE (if | |
585 | any). If flags has OPERATOR, the node's operator field is used; if | |
586 | flags has BUILTIN the node's builtin field is used. | |
92936ecf ZW |
587 | |
588 | Two values are not compile time constants, so we tag | |
041c3194 | 589 | them in the FLAGS field instead: |
8c389f84 ZW |
590 | VERS value is the global version_string, quoted |
591 | ULP value is the global user_label_prefix | |
92936ecf | 592 | |
93c80368 | 593 | Also, macros with CPLUS set in the flags field are entered only for C++. */ |
a9ae4483 ZW |
594 | |
595 | struct builtin | |
596 | { | |
12cf91fe | 597 | const U_CHAR *name; |
041c3194 | 598 | const char *value; |
93c80368 NB |
599 | unsigned char builtin; |
600 | unsigned char operator; | |
a9ae4483 | 601 | unsigned short flags; |
93c80368 | 602 | unsigned short len; |
a9ae4483 | 603 | }; |
93c80368 NB |
604 | #define VERS 0x01 |
605 | #define ULP 0x02 | |
606 | #define CPLUS 0x04 | |
607 | #define BUILTIN 0x08 | |
608 | #define OPERATOR 0x10 | |
609 | ||
610 | #define B(n, t) { U n, 0, t, 0, BUILTIN, sizeof n - 1 } | |
611 | #define C(n, v) { U n, v, 0, 0, 0, sizeof n - 1 } | |
612 | #define X(n, f) { U n, 0, 0, 0, f, sizeof n - 1 } | |
613 | #define O(n, c, f) { U n, 0, 0, c, OPERATOR | f, sizeof n - 1 } | |
a9ae4483 | 614 | static const struct builtin builtin_array[] = |
6de1e2a9 | 615 | { |
93c80368 NB |
616 | B("__TIME__", BT_TIME), |
617 | B("__DATE__", BT_DATE), | |
618 | B("__FILE__", BT_FILE), | |
619 | B("__BASE_FILE__", BT_BASE_FILE), | |
620 | B("__LINE__", BT_SPECLINE), | |
621 | B("__INCLUDE_LEVEL__", BT_INCLUDE_LEVEL), | |
622 | B("__STDC__", BT_STDC), | |
12cf91fe | 623 | |
041c3194 ZW |
624 | X("__VERSION__", VERS), |
625 | X("__USER_LABEL_PREFIX__", ULP), | |
12cf91fe ZW |
626 | C("__REGISTER_PREFIX__", REGISTER_PREFIX), |
627 | C("__HAVE_BUILTIN_SETJMP__", "1"), | |
6de1e2a9 | 628 | #ifndef NO_BUILTIN_SIZE_TYPE |
12cf91fe | 629 | C("__SIZE_TYPE__", SIZE_TYPE), |
6de1e2a9 ZW |
630 | #endif |
631 | #ifndef NO_BUILTIN_PTRDIFF_TYPE | |
12cf91fe | 632 | C("__PTRDIFF_TYPE__", PTRDIFF_TYPE), |
6de1e2a9 | 633 | #endif |
0209c340 | 634 | #ifndef NO_BUILTIN_WCHAR_TYPE |
12cf91fe | 635 | C("__WCHAR_TYPE__", WCHAR_TYPE), |
0209c340 | 636 | #endif |
d6777972 JM |
637 | #ifndef NO_BUILTIN_WINT_TYPE |
638 | C("__WINT_TYPE__", WINT_TYPE), | |
639 | #endif | |
92936ecf ZW |
640 | |
641 | /* Named operators known to the preprocessor. These cannot be #defined | |
642 | and always have their stated meaning. They are treated like normal | |
93c80368 | 643 | identifiers except for the type code and the meaning. Most of them |
92936ecf | 644 | are only for C++ (but see iso646.h). */ |
92936ecf ZW |
645 | O("and", CPP_AND_AND, CPLUS), |
646 | O("and_eq", CPP_AND_EQ, CPLUS), | |
647 | O("bitand", CPP_AND, CPLUS), | |
648 | O("bitor", CPP_OR, CPLUS), | |
649 | O("compl", CPP_COMPL, CPLUS), | |
650 | O("not", CPP_NOT, CPLUS), | |
651 | O("not_eq", CPP_NOT_EQ, CPLUS), | |
652 | O("or", CPP_OR_OR, CPLUS), | |
653 | O("or_eq", CPP_OR_EQ, CPLUS), | |
654 | O("xor", CPP_XOR, CPLUS), | |
93c80368 | 655 | O("xor_eq", CPP_XOR_EQ, CPLUS) |
a9ae4483 | 656 | }; |
12cf91fe ZW |
657 | #undef B |
658 | #undef C | |
659 | #undef X | |
be768055 | 660 | #undef O |
8c389f84 ZW |
661 | #define builtin_array_end \ |
662 | builtin_array + sizeof(builtin_array)/sizeof(struct builtin) | |
a9ae4483 ZW |
663 | |
664 | /* Subroutine of cpp_start_read; reads the builtins table above and | |
665 | enters the macros into the hash table. */ | |
a9ae4483 ZW |
666 | static void |
667 | initialize_builtins (pfile) | |
668 | cpp_reader *pfile; | |
669 | { | |
a9ae4483 | 670 | const struct builtin *b; |
771c4df3 | 671 | |
8c389f84 | 672 | for(b = builtin_array; b < builtin_array_end; b++) |
6de1e2a9 | 673 | { |
93c80368 | 674 | if ((b->flags & CPLUS) && ! CPP_OPTION (pfile, cplusplus)) |
92936ecf ZW |
675 | continue; |
676 | ||
be768055 JJ |
677 | if ((b->flags & OPERATOR) && ! CPP_OPTION (pfile, operator_names)) |
678 | continue; | |
679 | ||
93c80368 NB |
680 | if (b->flags & (OPERATOR | BUILTIN)) |
681 | { | |
682 | cpp_hashnode *hp = cpp_lookup (pfile, b->name, b->len); | |
683 | if (b->flags & OPERATOR) | |
684 | { | |
685 | hp->flags |= NODE_OPERATOR; | |
686 | hp->value.operator = b->operator; | |
687 | } | |
688 | else | |
689 | { | |
690 | hp->type = NT_MACRO; | |
691 | hp->flags |= NODE_BUILTIN; | |
692 | hp->value.builtin = b->builtin; | |
693 | } | |
694 | } | |
695 | else /* A standard macro of some kind. */ | |
8c389f84 | 696 | { |
041c3194 ZW |
697 | const char *val; |
698 | char *str; | |
699 | ||
700 | if (b->flags & VERS) | |
701 | { | |
2c8f0515 ZW |
702 | /* Allocate enough space for 'name "value"\n\0'. */ |
703 | str = alloca (b->len + strlen (version_string) + 5); | |
704 | sprintf (str, "%s \"%s\"\n", b->name, version_string); | |
041c3194 ZW |
705 | } |
706 | else | |
707 | { | |
708 | if (b->flags & ULP) | |
771c4df3 | 709 | val = CPP_OPTION (pfile, user_label_prefix); |
041c3194 ZW |
710 | else |
711 | val = b->value; | |
712 | ||
2c8f0515 ZW |
713 | /* Allocate enough space for "name value\n\0". */ |
714 | str = alloca (b->len + strlen (val) + 3); | |
715 | sprintf(str, "%s %s\n", b->name, val); | |
041c3194 | 716 | } |
c154ba66 | 717 | |
2c8f0515 | 718 | _cpp_define_builtin (pfile, str); |
8c389f84 | 719 | } |
6de1e2a9 ZW |
720 | } |
721 | } | |
93c80368 NB |
722 | #undef BUILTIN |
723 | #undef OPERATOR | |
6feb7728 | 724 | #undef VERS |
a9ae4483 | 725 | #undef ULP |
93c80368 | 726 | #undef CPLUS |
041c3194 | 727 | #undef builtin_array_end |
6de1e2a9 | 728 | |
0b22d65c ZW |
729 | /* Another subroutine of cpp_start_read. This one sets up to do |
730 | dependency-file output. */ | |
731 | static void | |
732 | initialize_dependency_output (pfile) | |
733 | cpp_reader *pfile; | |
734 | { | |
0b22d65c | 735 | char *spec, *s, *output_file; |
ae79697b | 736 | |
0b22d65c ZW |
737 | /* Either of two environment variables can specify output of deps. |
738 | Its value is either "OUTPUT_FILE" or "OUTPUT_FILE DEPS_TARGET", | |
739 | where OUTPUT_FILE is the file to write deps info to | |
740 | and DEPS_TARGET is the target to mention in the deps. */ | |
741 | ||
ae79697b | 742 | if (CPP_OPTION (pfile, print_deps) == 0) |
0b22d65c ZW |
743 | { |
744 | spec = getenv ("DEPENDENCIES_OUTPUT"); | |
745 | if (spec) | |
ae79697b | 746 | CPP_OPTION (pfile, print_deps) = 1; |
0b22d65c ZW |
747 | else |
748 | { | |
749 | spec = getenv ("SUNPRO_DEPENDENCIES"); | |
750 | if (spec) | |
ae79697b | 751 | CPP_OPTION (pfile, print_deps) = 2; |
0b22d65c ZW |
752 | else |
753 | return; | |
754 | } | |
755 | ||
03b9ab42 NB |
756 | if (! pfile->deps) |
757 | pfile->deps = deps_init (); | |
758 | ||
0b22d65c ZW |
759 | /* Find the space before the DEPS_TARGET, if there is one. */ |
760 | s = strchr (spec, ' '); | |
761 | if (s) | |
762 | { | |
a5a4ce3c NB |
763 | /* Let the caller perform MAKE quoting. */ |
764 | deps_add_target (pfile->deps, s + 1, 0); | |
0b22d65c ZW |
765 | output_file = (char *) xmalloc (s - spec + 1); |
766 | memcpy (output_file, spec, s - spec); | |
767 | output_file[s - spec] = 0; | |
768 | } | |
769 | else | |
03b9ab42 | 770 | output_file = spec; |
0b22d65c | 771 | |
ae79697b ZW |
772 | CPP_OPTION (pfile, deps_file) = output_file; |
773 | CPP_OPTION (pfile, print_deps_append) = 1; | |
0b22d65c ZW |
774 | } |
775 | ||
03b9ab42 NB |
776 | /* Set the default target (if there is none already). */ |
777 | deps_add_default_target (pfile->deps, CPP_OPTION (pfile, in_fname)); | |
0b22d65c | 778 | |
ae79697b ZW |
779 | if (CPP_OPTION (pfile, in_fname)) |
780 | deps_add_dep (pfile->deps, CPP_OPTION (pfile, in_fname)); | |
0b22d65c ZW |
781 | } |
782 | ||
c45da1ca ZW |
783 | /* And another subroutine. This one sets up the standard include path. */ |
784 | static void | |
785 | initialize_standard_includes (pfile) | |
786 | cpp_reader *pfile; | |
787 | { | |
c45da1ca | 788 | char *path; |
455d2586 | 789 | const struct default_include *p; |
ae79697b | 790 | const char *specd_prefix = CPP_OPTION (pfile, include_prefix); |
c45da1ca ZW |
791 | |
792 | /* Several environment variables may add to the include search path. | |
793 | CPATH specifies an additional list of directories to be searched | |
794 | as if specified with -I, while C_INCLUDE_PATH, CPLUS_INCLUDE_PATH, | |
795 | etc. specify an additional list of directories to be searched as | |
796 | if specified with -isystem, for the language indicated. */ | |
797 | ||
798 | GET_ENV_PATH_LIST (path, "CPATH"); | |
799 | if (path != 0 && *path != 0) | |
e33f6253 | 800 | path_include (pfile, path, BRACKET); |
c45da1ca | 801 | |
ae79697b | 802 | switch ((CPP_OPTION (pfile, objc) << 1) + CPP_OPTION (pfile, cplusplus)) |
c45da1ca ZW |
803 | { |
804 | case 0: | |
805 | GET_ENV_PATH_LIST (path, "C_INCLUDE_PATH"); | |
806 | break; | |
807 | case 1: | |
808 | GET_ENV_PATH_LIST (path, "CPLUS_INCLUDE_PATH"); | |
809 | break; | |
810 | case 2: | |
811 | GET_ENV_PATH_LIST (path, "OBJC_INCLUDE_PATH"); | |
812 | break; | |
813 | case 3: | |
814 | GET_ENV_PATH_LIST (path, "OBJCPLUS_INCLUDE_PATH"); | |
815 | break; | |
816 | } | |
817 | if (path != 0 && *path != 0) | |
e33f6253 | 818 | path_include (pfile, path, SYSTEM); |
c45da1ca ZW |
819 | |
820 | /* Search "translated" versions of GNU directories. | |
821 | These have /usr/local/lib/gcc... replaced by specd_prefix. */ | |
60893f43 | 822 | if (specd_prefix != 0 && cpp_GCC_INCLUDE_DIR_len) |
c45da1ca | 823 | { |
c45da1ca ZW |
824 | /* Remove the `include' from /usr/local/lib/gcc.../include. |
825 | GCC_INCLUDE_DIR will always end in /include. */ | |
60893f43 ZW |
826 | int default_len = cpp_GCC_INCLUDE_DIR_len; |
827 | char *default_prefix = (char *) alloca (default_len + 1); | |
c45da1ca ZW |
828 | int specd_len = strlen (specd_prefix); |
829 | ||
60893f43 | 830 | memcpy (default_prefix, cpp_GCC_INCLUDE_DIR, default_len); |
c45da1ca ZW |
831 | default_prefix[default_len] = '\0'; |
832 | ||
60893f43 | 833 | for (p = cpp_include_defaults; p->fname; p++) |
c45da1ca ZW |
834 | { |
835 | /* Some standard dirs are only for C++. */ | |
836 | if (!p->cplusplus | |
ae79697b ZW |
837 | || (CPP_OPTION (pfile, cplusplus) |
838 | && !CPP_OPTION (pfile, no_standard_cplusplus_includes))) | |
c45da1ca ZW |
839 | { |
840 | /* Does this dir start with the prefix? */ | |
61d0346d | 841 | if (!memcmp (p->fname, default_prefix, default_len)) |
c45da1ca ZW |
842 | { |
843 | /* Yes; change prefix and add to search list. */ | |
844 | int flen = strlen (p->fname); | |
845 | int this_len = specd_len + flen - default_len; | |
846 | char *str = (char *) xmalloc (this_len + 1); | |
847 | memcpy (str, specd_prefix, specd_len); | |
848 | memcpy (str + specd_len, | |
849 | p->fname + default_len, | |
850 | flen - default_len + 1); | |
851 | ||
e33f6253 | 852 | append_include_chain (pfile, str, SYSTEM, p->cxx_aware); |
c45da1ca ZW |
853 | } |
854 | } | |
855 | } | |
856 | } | |
857 | ||
858 | /* Search ordinary names for GNU include directories. */ | |
60893f43 | 859 | for (p = cpp_include_defaults; p->fname; p++) |
c45da1ca ZW |
860 | { |
861 | /* Some standard dirs are only for C++. */ | |
862 | if (!p->cplusplus | |
ae79697b ZW |
863 | || (CPP_OPTION (pfile, cplusplus) |
864 | && !CPP_OPTION (pfile, no_standard_cplusplus_includes))) | |
c45da1ca | 865 | { |
c45da1ca | 866 | char *str = xstrdup (update_path (p->fname, p->component)); |
e33f6253 | 867 | append_include_chain (pfile, str, SYSTEM, p->cxx_aware); |
c45da1ca ZW |
868 | } |
869 | } | |
870 | } | |
871 | ||
4a58aab6 NB |
872 | /* Handles -imacro and -include from the command line. */ |
873 | static void | |
874 | do_includes (pfile, p, scan) | |
875 | cpp_reader *pfile; | |
876 | struct pending_option *p; | |
877 | int scan; | |
878 | { | |
879 | while (p) | |
880 | { | |
4a58aab6 NB |
881 | struct pending_option *q; |
882 | ||
3fc786a4 NB |
883 | /* Later: maybe update this to use the #include "" search path |
884 | if cpp_read_file fails. */ | |
614c7d37 | 885 | if (_cpp_read_file (pfile, p->arg) && scan) |
8dc4676d | 886 | cpp_scan_buffer_nooutput (pfile, 0); |
4a58aab6 NB |
887 | q = p->next; |
888 | free (p); | |
889 | p = q; | |
890 | } | |
891 | } | |
892 | ||
893 | /* This is called after options have been processed. Check options | |
894 | for consistency, and setup for processing input from the file named | |
895 | FNAME. (Use standard input if FNAME == NULL.) Return 1 on success, | |
896 | 0 on failure. */ | |
6de1e2a9 ZW |
897 | |
898 | int | |
93c80368 | 899 | cpp_start_read (pfile, fname) |
6de1e2a9 | 900 | cpp_reader *pfile; |
7ceb3598 | 901 | const char *fname; |
6de1e2a9 | 902 | { |
0b22d65c | 903 | struct pending_option *p, *q; |
6de1e2a9 | 904 | |
0b22d65c ZW |
905 | /* -MG doesn't select the form of output and must be specified with one of |
906 | -M or -MM. -MG doesn't make sense with -MD or -MMD since they don't | |
907 | inhibit compilation. */ | |
ae79697b ZW |
908 | if (CPP_OPTION (pfile, print_deps_missing_files) |
909 | && (CPP_OPTION (pfile, print_deps) == 0 | |
910 | || !CPP_OPTION (pfile, no_output))) | |
0b22d65c ZW |
911 | { |
912 | cpp_fatal (pfile, "-MG must be specified with one of -M or -MM"); | |
913 | return 0; | |
914 | } | |
6de1e2a9 | 915 | |
bfab56e7 ZW |
916 | /* -Wtraditional is not useful in C++ mode. */ |
917 | if (CPP_OPTION (pfile, cplusplus)) | |
918 | CPP_OPTION (pfile, warn_traditional) = 0; | |
919 | ||
0b22d65c | 920 | /* Set this if it hasn't been set already. */ |
771c4df3 NB |
921 | if (CPP_OPTION (pfile, user_label_prefix) == NULL) |
922 | CPP_OPTION (pfile, user_label_prefix) = USER_LABEL_PREFIX; | |
c45da1ca | 923 | |
c45da1ca | 924 | /* Set up the include search path now. */ |
ae79697b | 925 | if (! CPP_OPTION (pfile, no_standard_includes)) |
c45da1ca ZW |
926 | initialize_standard_includes (pfile); |
927 | ||
ae79697b | 928 | merge_include_chains (pfile); |
c45da1ca ZW |
929 | |
930 | /* With -v, print the list of dirs to search. */ | |
ae79697b | 931 | if (CPP_OPTION (pfile, verbose)) |
c45da1ca ZW |
932 | { |
933 | struct file_name_list *l; | |
934 | fprintf (stderr, _("#include \"...\" search starts here:\n")); | |
ae79697b | 935 | for (l = CPP_OPTION (pfile, quote_include); l; l = l->next) |
c45da1ca | 936 | { |
ae79697b | 937 | if (l == CPP_OPTION (pfile, bracket_include)) |
c45da1ca ZW |
938 | fprintf (stderr, _("#include <...> search starts here:\n")); |
939 | fprintf (stderr, " %s\n", l->name); | |
940 | } | |
941 | fprintf (stderr, _("End of search list.\n")); | |
942 | } | |
943 | ||
4b3fe5b6 ZW |
944 | /* Open the main input file. This must be done early, so we have a |
945 | buffer to stand on. */ | |
ae79697b ZW |
946 | if (CPP_OPTION (pfile, in_fname) == NULL |
947 | || *CPP_OPTION (pfile, in_fname) == 0) | |
6de1e2a9 | 948 | { |
ae79697b ZW |
949 | CPP_OPTION (pfile, in_fname) = fname; |
950 | if (CPP_OPTION (pfile, in_fname) == NULL) | |
951 | CPP_OPTION (pfile, in_fname) = ""; | |
6de1e2a9 | 952 | } |
ae79697b ZW |
953 | if (CPP_OPTION (pfile, out_fname) == NULL) |
954 | CPP_OPTION (pfile, out_fname) = ""; | |
6de1e2a9 | 955 | |
614c7d37 | 956 | if (!_cpp_read_file (pfile, fname)) |
c45da1ca ZW |
957 | return 0; |
958 | ||
4b3fe5b6 | 959 | initialize_dependency_output (pfile); |
ae79697b | 960 | |
c45da1ca | 961 | /* Install __LINE__, etc. */ |
6de1e2a9 ZW |
962 | initialize_builtins (pfile); |
963 | ||
6de1e2a9 | 964 | /* Do -U's, -D's and -A's in the order they were seen. */ |
ae79697b | 965 | p = CPP_OPTION (pfile, pending)->directive_head; |
0b22d65c | 966 | while (p) |
6de1e2a9 | 967 | { |
b1b74f93 | 968 | (*p->handler) (pfile, p->arg); |
0b22d65c ZW |
969 | q = p->next; |
970 | free (p); | |
971 | p = q; | |
6de1e2a9 | 972 | } |
ae79697b | 973 | pfile->done_initializing = 1; |
041c3194 | 974 | |
6de1e2a9 | 975 | /* The -imacros files can be scanned now, but the -include files |
4a58aab6 NB |
976 | have to be pushed onto the buffer stack and processed later, |
977 | otherwise cppmain.c won't see the tokens. include_head was built | |
978 | up as a stack, and popping this stack onto the buffer stack means | |
979 | we preserve the order of the command line. */ | |
980 | do_includes (pfile, CPP_OPTION (pfile, pending)->imacros_head, 1); | |
981 | do_includes (pfile, CPP_OPTION (pfile, pending)->include_head, 0); | |
6de1e2a9 | 982 | |
ae79697b ZW |
983 | free (CPP_OPTION (pfile, pending)); |
984 | CPP_OPTION (pfile, pending) = NULL; | |
6de1e2a9 ZW |
985 | |
986 | return 1; | |
987 | } | |
988 | ||
989 | /* This is called at the end of preprocessing. It pops the | |
990 | last buffer and writes dependency output. It should also | |
991 | clear macro definitions, such that you could call cpp_start_read | |
4a58aab6 | 992 | with a new filename to restart processing. */ |
6de1e2a9 | 993 | void |
93c80368 | 994 | cpp_finish (pfile) |
6de1e2a9 ZW |
995 | cpp_reader *pfile; |
996 | { | |
f2d5f0cc ZW |
997 | if (CPP_BUFFER (pfile)) |
998 | { | |
999 | cpp_ice (pfile, "buffers still stacked in cpp_finish"); | |
1000 | while (CPP_BUFFER (pfile)) | |
1001 | cpp_pop_buffer (pfile); | |
1002 | } | |
c1212d2f | 1003 | |
49e6c08e | 1004 | /* Don't write the deps file if preprocessing has failed. */ |
ae79697b | 1005 | if (CPP_OPTION (pfile, print_deps) && pfile->errors == 0) |
6de1e2a9 ZW |
1006 | { |
1007 | /* Stream on which to print the dependency information. */ | |
c1212d2f | 1008 | FILE *deps_stream = 0; |
ae79697b ZW |
1009 | const char *deps_mode |
1010 | = CPP_OPTION (pfile, print_deps_append) ? "a" : "w"; | |
1011 | if (CPP_OPTION (pfile, deps_file) == 0) | |
49e6c08e | 1012 | deps_stream = stdout; |
ae79697b ZW |
1013 | else |
1014 | { | |
1015 | deps_stream = fopen (CPP_OPTION (pfile, deps_file), deps_mode); | |
1016 | if (deps_stream == 0) | |
1017 | cpp_notice_from_errno (pfile, CPP_OPTION (pfile, deps_file)); | |
1018 | } | |
49e6c08e ZW |
1019 | if (deps_stream) |
1020 | { | |
1021 | deps_write (pfile->deps, deps_stream, 72); | |
a5a4ce3c NB |
1022 | |
1023 | if (CPP_OPTION (pfile, deps_phony_targets)) | |
1024 | deps_phony_targets (pfile->deps, deps_stream); | |
1025 | ||
ae79697b | 1026 | if (CPP_OPTION (pfile, deps_file)) |
6de1e2a9 | 1027 | { |
49e6c08e ZW |
1028 | if (ferror (deps_stream) || fclose (deps_stream) != 0) |
1029 | cpp_fatal (pfile, "I/O error on output"); | |
6de1e2a9 ZW |
1030 | } |
1031 | } | |
1032 | } | |
3caee4a8 | 1033 | |
d4506961 ZW |
1034 | /* Report on headers that could use multiple include guards. */ |
1035 | if (CPP_OPTION (pfile, print_include_names)) | |
c71f835b | 1036 | _cpp_report_missing_guards (pfile); |
6de1e2a9 ZW |
1037 | } |
1038 | ||
223dca6a | 1039 | static void |
ae79697b ZW |
1040 | new_pending_directive (pend, text, handler) |
1041 | struct cpp_pending *pend; | |
223dca6a | 1042 | const char *text; |
40eac643 | 1043 | cl_directive_handler handler; |
223dca6a RH |
1044 | { |
1045 | struct pending_option *o = (struct pending_option *) | |
1046 | xmalloc (sizeof (struct pending_option)); | |
1047 | ||
7ceb3598 | 1048 | o->arg = text; |
223dca6a | 1049 | o->next = NULL; |
40eac643 | 1050 | o->handler = handler; |
ae79697b | 1051 | APPEND (pend, directive, o); |
223dca6a RH |
1052 | } |
1053 | ||
ae79697b ZW |
1054 | /* Irix6 "cc -n32" and OSF4 cc have problems with char foo[] = ("string"); |
1055 | I.e. a const string initializer with parens around it. That is | |
1056 | what N_("string") resolves to, so we make no_* be macros instead. */ | |
1057 | #define no_arg N_("Argument missing after %s") | |
1058 | #define no_ass N_("Assertion missing after %s") | |
1059 | #define no_dir N_("Directory name missing after %s") | |
1060 | #define no_fil N_("File name missing after %s") | |
1061 | #define no_mac N_("Macro name missing after %s") | |
1062 | #define no_pth N_("Path name missing after %s") | |
6ab3e7dd | 1063 | #define no_num N_("Number missing after %s") |
03b9ab42 | 1064 | #define no_tgt N_("Target missing after %s") |
ae79697b ZW |
1065 | |
1066 | /* This is the list of all command line options, with the leading | |
1067 | "-" removed. It must be sorted in ASCII collating order. */ | |
1068 | #define COMMAND_LINE_OPTIONS \ | |
1069 | DEF_OPT("", 0, OPT_stdin_stdout) \ | |
1070 | DEF_OPT("$", 0, OPT_dollar) \ | |
1071 | DEF_OPT("+", 0, OPT_plus) \ | |
1072 | DEF_OPT("-help", 0, OPT__help) \ | |
91606ce2 | 1073 | DEF_OPT("-target-help", 0, OPT_target__help) \ |
ae79697b ZW |
1074 | DEF_OPT("-version", 0, OPT__version) \ |
1075 | DEF_OPT("A", no_ass, OPT_A) \ | |
1076 | DEF_OPT("C", 0, OPT_C) \ | |
1077 | DEF_OPT("D", no_mac, OPT_D) \ | |
1078 | DEF_OPT("H", 0, OPT_H) \ | |
1079 | DEF_OPT("I", no_dir, OPT_I) \ | |
1080 | DEF_OPT("M", 0, OPT_M) \ | |
1081 | DEF_OPT("MD", no_fil, OPT_MD) \ | |
1082 | DEF_OPT("MG", 0, OPT_MG) \ | |
1083 | DEF_OPT("MM", 0, OPT_MM) \ | |
1084 | DEF_OPT("MMD", no_fil, OPT_MMD) \ | |
a5a4ce3c | 1085 | DEF_OPT("MP", 0, OPT_MP) \ |
03b9ab42 | 1086 | DEF_OPT("MT", no_tgt, OPT_MT) \ |
ae79697b ZW |
1087 | DEF_OPT("P", 0, OPT_P) \ |
1088 | DEF_OPT("U", no_mac, OPT_U) \ | |
1089 | DEF_OPT("W", no_arg, OPT_W) /* arg optional */ \ | |
1090 | DEF_OPT("d", no_arg, OPT_d) \ | |
1091 | DEF_OPT("fleading-underscore", 0, OPT_fleading_underscore) \ | |
1092 | DEF_OPT("fno-leading-underscore", 0, OPT_fno_leading_underscore) \ | |
be768055 | 1093 | DEF_OPT("fno-operator-names", 0, OPT_fno_operator_names) \ |
ae79697b ZW |
1094 | DEF_OPT("fno-preprocessed", 0, OPT_fno_preprocessed) \ |
1095 | DEF_OPT("fno-show-column", 0, OPT_fno_show_column) \ | |
1096 | DEF_OPT("fpreprocessed", 0, OPT_fpreprocessed) \ | |
1097 | DEF_OPT("fshow-column", 0, OPT_fshow_column) \ | |
6ab3e7dd | 1098 | DEF_OPT("ftabstop=", no_num, OPT_ftabstop) \ |
ae79697b ZW |
1099 | DEF_OPT("g", no_arg, OPT_g) /* arg optional */ \ |
1100 | DEF_OPT("h", 0, OPT_h) \ | |
1101 | DEF_OPT("idirafter", no_dir, OPT_idirafter) \ | |
1102 | DEF_OPT("imacros", no_fil, OPT_imacros) \ | |
1103 | DEF_OPT("include", no_fil, OPT_include) \ | |
1104 | DEF_OPT("iprefix", no_pth, OPT_iprefix) \ | |
1105 | DEF_OPT("isystem", no_dir, OPT_isystem) \ | |
1106 | DEF_OPT("iwithprefix", no_dir, OPT_iwithprefix) \ | |
1107 | DEF_OPT("iwithprefixbefore", no_dir, OPT_iwithprefixbefore) \ | |
1108 | DEF_OPT("lang-asm", 0, OPT_lang_asm) \ | |
1109 | DEF_OPT("lang-c", 0, OPT_lang_c) \ | |
1110 | DEF_OPT("lang-c++", 0, OPT_lang_cplusplus) \ | |
1111 | DEF_OPT("lang-c89", 0, OPT_lang_c89) \ | |
ae79697b ZW |
1112 | DEF_OPT("lang-objc", 0, OPT_lang_objc) \ |
1113 | DEF_OPT("lang-objc++", 0, OPT_lang_objcplusplus) \ | |
1114 | DEF_OPT("nostdinc", 0, OPT_nostdinc) \ | |
1115 | DEF_OPT("nostdinc++", 0, OPT_nostdincplusplus) \ | |
1116 | DEF_OPT("o", no_fil, OPT_o) \ | |
1117 | DEF_OPT("pedantic", 0, OPT_pedantic) \ | |
1118 | DEF_OPT("pedantic-errors", 0, OPT_pedantic_errors) \ | |
1119 | DEF_OPT("remap", 0, OPT_remap) \ | |
dd07b884 | 1120 | DEF_OPT("std=c++98", 0, OPT_std_cplusplus98) \ |
ae79697b ZW |
1121 | DEF_OPT("std=c89", 0, OPT_std_c89) \ |
1122 | DEF_OPT("std=c99", 0, OPT_std_c99) \ | |
1123 | DEF_OPT("std=c9x", 0, OPT_std_c9x) \ | |
1124 | DEF_OPT("std=gnu89", 0, OPT_std_gnu89) \ | |
1125 | DEF_OPT("std=gnu99", 0, OPT_std_gnu99) \ | |
1126 | DEF_OPT("std=gnu9x", 0, OPT_std_gnu9x) \ | |
1127 | DEF_OPT("std=iso9899:1990", 0, OPT_std_iso9899_1990) \ | |
1128 | DEF_OPT("std=iso9899:199409", 0, OPT_std_iso9899_199409) \ | |
1129 | DEF_OPT("std=iso9899:1999", 0, OPT_std_iso9899_1999) \ | |
1130 | DEF_OPT("std=iso9899:199x", 0, OPT_std_iso9899_199x) \ | |
ae79697b ZW |
1131 | DEF_OPT("trigraphs", 0, OPT_trigraphs) \ |
1132 | DEF_OPT("v", 0, OPT_v) \ | |
1133 | DEF_OPT("w", 0, OPT_w) | |
1134 | ||
1135 | #define DEF_OPT(text, msg, code) code, | |
e23c0ba3 ZW |
1136 | enum opt_code |
1137 | { | |
ae79697b | 1138 | COMMAND_LINE_OPTIONS |
e23c0ba3 ZW |
1139 | N_OPTS |
1140 | }; | |
ae79697b | 1141 | #undef DEF_OPT |
e23c0ba3 ZW |
1142 | |
1143 | struct cl_option | |
1144 | { | |
1145 | const char *opt_text; | |
1146 | const char *msg; | |
1147 | size_t opt_len; | |
1148 | enum opt_code opt_code; | |
1149 | }; | |
1150 | ||
ae79697b | 1151 | #define DEF_OPT(text, msg, code) { text, msg, sizeof(text) - 1, code }, |
e23c0ba3 ZW |
1152 | #ifdef HOST_EBCDIC |
1153 | static struct cl_option cl_options[] = | |
1154 | #else | |
1155 | static const struct cl_option cl_options[] = | |
1156 | #endif | |
1157 | { | |
ae79697b | 1158 | COMMAND_LINE_OPTIONS |
e23c0ba3 ZW |
1159 | }; |
1160 | #undef DEF_OPT | |
ae79697b | 1161 | #undef COMMAND_LINE_OPTIONS |
e23c0ba3 ZW |
1162 | |
1163 | /* Perform a binary search to find which, if any, option the given | |
1164 | command-line matches. Returns its index in the option array, | |
1165 | negative on failure. Complications arise since some options can be | |
1166 | suffixed with an argument, and multiple complete matches can occur, | |
1167 | e.g. -iwithprefix and -iwithprefixbefore. Moreover, we want to | |
1168 | accept options beginning with -g and -W that we do not recognise, | |
1169 | but not to swallow any subsequent command line argument; these are | |
4a58aab6 | 1170 | handled as special cases in cpp_handle_option. */ |
e23c0ba3 ZW |
1171 | static int |
1172 | parse_option (input) | |
1173 | const char *input; | |
1174 | { | |
1175 | unsigned int md, mn, mx; | |
1176 | size_t opt_len; | |
1177 | int comp; | |
1178 | ||
1179 | mn = 0; | |
1180 | mx = N_OPTS; | |
1181 | ||
1182 | while (mx > mn) | |
1183 | { | |
1184 | md = (mn + mx) / 2; | |
ae79697b | 1185 | |
e23c0ba3 | 1186 | opt_len = cl_options[md].opt_len; |
61d0346d | 1187 | comp = memcmp (input, cl_options[md].opt_text, opt_len); |
ae79697b | 1188 | |
e23c0ba3 ZW |
1189 | if (comp > 0) |
1190 | mn = md + 1; | |
1191 | else if (comp < 0) | |
1192 | mx = md; | |
1193 | else | |
1194 | { | |
1195 | if (input[opt_len] == '\0') | |
1196 | return md; | |
1197 | /* We were passed more text. If the option takes an argument, | |
1198 | we may match a later option or we may have been passed the | |
1199 | argument. The longest possible option match succeeds. | |
1200 | If the option takes no arguments we have not matched and | |
4a58aab6 | 1201 | continue the search (e.g. input="stdc++" match was "stdc"). */ |
e23c0ba3 ZW |
1202 | mn = md + 1; |
1203 | if (cl_options[md].msg) | |
1204 | { | |
1205 | /* Scan forwards. If we get an exact match, return it. | |
1206 | Otherwise, return the longest option-accepting match. | |
4a58aab6 | 1207 | This loops no more than twice with current options. */ |
e23c0ba3 ZW |
1208 | mx = md; |
1209 | for (; mn < N_OPTS; mn++) | |
1210 | { | |
1211 | opt_len = cl_options[mn].opt_len; | |
61d0346d | 1212 | if (memcmp (input, cl_options[mn].opt_text, opt_len)) |
e23c0ba3 ZW |
1213 | break; |
1214 | if (input[opt_len] == '\0') | |
1215 | return mn; | |
1216 | if (cl_options[mn].msg) | |
1217 | mx = mn; | |
1218 | } | |
1219 | return mx; | |
1220 | } | |
1221 | } | |
1222 | } | |
1223 | ||
1224 | return -1; | |
1225 | } | |
1226 | ||
6de1e2a9 ZW |
1227 | /* Handle one command-line option in (argc, argv). |
1228 | Can be called multiple times, to handle multiple sets of options. | |
1229 | Returns number of strings consumed. */ | |
c8d8ed65 | 1230 | |
2c0accc9 ZW |
1231 | int |
1232 | cpp_handle_option (pfile, argc, argv) | |
6de1e2a9 ZW |
1233 | cpp_reader *pfile; |
1234 | int argc; | |
1235 | char **argv; | |
1236 | { | |
6de1e2a9 | 1237 | int i = 0; |
f8f769ea | 1238 | struct cpp_pending *pend = CPP_OPTION (pfile, pending); |
6de1e2a9 | 1239 | |
0b22d65c ZW |
1240 | if (argv[i][0] != '-') |
1241 | { | |
ae79697b ZW |
1242 | if (CPP_OPTION (pfile, out_fname) != NULL) |
1243 | cpp_fatal (pfile, "Too many arguments. Type %s --help for usage info", | |
1244 | progname); | |
1245 | else if (CPP_OPTION (pfile, in_fname) != NULL) | |
1246 | CPP_OPTION (pfile, out_fname) = argv[i]; | |
0b22d65c | 1247 | else |
ae79697b | 1248 | CPP_OPTION (pfile, in_fname) = argv[i]; |
0b22d65c ZW |
1249 | } |
1250 | else | |
e23c0ba3 ZW |
1251 | { |
1252 | enum opt_code opt_code; | |
1253 | int opt_index; | |
7ceb3598 | 1254 | const char *arg = 0; |
e23c0ba3 | 1255 | |
4a58aab6 | 1256 | /* Skip over '-'. */ |
e23c0ba3 ZW |
1257 | opt_index = parse_option (&argv[i][1]); |
1258 | if (opt_index < 0) | |
1259 | return i; | |
1260 | ||
1261 | opt_code = cl_options[opt_index].opt_code; | |
1262 | if (cl_options[opt_index].msg) | |
1263 | { | |
1264 | arg = &argv[i][cl_options[opt_index].opt_len + 1]; | |
1265 | ||
1266 | /* Yuk. Special case for -g and -W as they must not swallow | |
1267 | up any following argument. If this becomes common, add | |
4a58aab6 | 1268 | another field to the cl_options table. */ |
e23c0ba3 ZW |
1269 | if (arg[0] == '\0' && !(opt_code == OPT_g || opt_code == OPT_W)) |
1270 | { | |
1271 | arg = argv[++i]; | |
1272 | if (!arg) | |
1273 | { | |
d88b89e5 | 1274 | cpp_fatal (pfile, cl_options[opt_index].msg, argv[i - 1]); |
e23c0ba3 ZW |
1275 | return argc; |
1276 | } | |
1277 | } | |
1278 | } | |
ae79697b | 1279 | |
e23c0ba3 ZW |
1280 | switch (opt_code) |
1281 | { | |
4a58aab6 | 1282 | case N_OPTS: /* Shut GCC up. */ |
e23c0ba3 ZW |
1283 | break; |
1284 | case OPT_fleading_underscore: | |
771c4df3 | 1285 | CPP_OPTION (pfile, user_label_prefix) = "_"; |
e23c0ba3 ZW |
1286 | break; |
1287 | case OPT_fno_leading_underscore: | |
771c4df3 | 1288 | CPP_OPTION (pfile, user_label_prefix) = ""; |
e23c0ba3 | 1289 | break; |
be768055 JJ |
1290 | case OPT_fno_operator_names: |
1291 | CPP_OPTION (pfile, operator_names) = 0; | |
1292 | break; | |
e23c0ba3 | 1293 | case OPT_fpreprocessed: |
ae79697b | 1294 | CPP_OPTION (pfile, preprocessed) = 1; |
e23c0ba3 ZW |
1295 | break; |
1296 | case OPT_fno_preprocessed: | |
ae79697b ZW |
1297 | CPP_OPTION (pfile, preprocessed) = 0; |
1298 | break; | |
1299 | case OPT_fshow_column: | |
1300 | CPP_OPTION (pfile, show_column) = 1; | |
1301 | break; | |
1302 | case OPT_fno_show_column: | |
1303 | CPP_OPTION (pfile, show_column) = 0; | |
e23c0ba3 | 1304 | break; |
6ab3e7dd NB |
1305 | case OPT_ftabstop: |
1306 | /* Silently ignore empty string, non-longs and silly values. */ | |
1307 | if (arg[0] != '\0') | |
1308 | { | |
1309 | char *endptr; | |
1310 | long tabstop = strtol (arg, &endptr, 10); | |
1311 | if (*endptr == '\0' && tabstop >= 1 && tabstop <= 100) | |
1312 | CPP_OPTION (pfile, tabstop) = tabstop; | |
1313 | } | |
1314 | break; | |
e23c0ba3 | 1315 | case OPT_w: |
ae79697b | 1316 | CPP_OPTION (pfile, inhibit_warnings) = 1; |
e23c0ba3 | 1317 | break; |
4a58aab6 | 1318 | case OPT_g: /* Silently ignore anything but -g3. */ |
e23c0ba3 | 1319 | if (!strcmp(&argv[i][2], "3")) |
ae79697b | 1320 | CPP_OPTION (pfile, debug_output) = 1; |
e23c0ba3 ZW |
1321 | break; |
1322 | case OPT_h: | |
1323 | case OPT__help: | |
1324 | print_help (); | |
1325 | exit (0); /* XXX */ | |
1326 | break; | |
91606ce2 CC |
1327 | case OPT_target__help: |
1328 | /* Print if any target specific options. */ | |
1329 | exit (0); | |
1330 | break; | |
e23c0ba3 ZW |
1331 | case OPT__version: |
1332 | fprintf (stderr, _("GNU CPP version %s (cpplib)\n"), version_string); | |
1333 | exit (0); /* XXX */ | |
1334 | break; | |
1335 | case OPT_C: | |
ae79697b | 1336 | CPP_OPTION (pfile, discard_comments) = 0; |
e23c0ba3 ZW |
1337 | break; |
1338 | case OPT_P: | |
ae79697b | 1339 | CPP_OPTION (pfile, no_line_commands) = 1; |
e23c0ba3 | 1340 | break; |
4a58aab6 | 1341 | case OPT_dollar: /* Don't include $ in identifiers. */ |
ae79697b | 1342 | CPP_OPTION (pfile, dollars_in_ident) = 0; |
e23c0ba3 ZW |
1343 | break; |
1344 | case OPT_H: | |
ae79697b | 1345 | CPP_OPTION (pfile, print_include_names) = 1; |
e23c0ba3 ZW |
1346 | break; |
1347 | case OPT_D: | |
f8f769ea | 1348 | new_pending_directive (pend, arg, cpp_define); |
e23c0ba3 ZW |
1349 | break; |
1350 | case OPT_pedantic_errors: | |
ae79697b | 1351 | CPP_OPTION (pfile, pedantic_errors) = 1; |
e23c0ba3 ZW |
1352 | /* fall through */ |
1353 | case OPT_pedantic: | |
ae79697b | 1354 | CPP_OPTION (pfile, pedantic) = 1; |
e23c0ba3 | 1355 | break; |
e23c0ba3 | 1356 | case OPT_trigraphs: |
ae79697b | 1357 | CPP_OPTION (pfile, trigraphs) = 1; |
e23c0ba3 ZW |
1358 | break; |
1359 | case OPT_plus: | |
ae79697b ZW |
1360 | CPP_OPTION (pfile, cplusplus) = 1; |
1361 | CPP_OPTION (pfile, cplusplus_comments) = 1; | |
e23c0ba3 ZW |
1362 | break; |
1363 | case OPT_remap: | |
ae79697b | 1364 | CPP_OPTION (pfile, remap) = 1; |
e23c0ba3 ZW |
1365 | break; |
1366 | case OPT_iprefix: | |
ae79697b ZW |
1367 | CPP_OPTION (pfile, include_prefix) = arg; |
1368 | CPP_OPTION (pfile, include_prefix_len) = strlen (arg); | |
e23c0ba3 ZW |
1369 | break; |
1370 | case OPT_lang_c: | |
dd07b884 | 1371 | set_lang (pfile, CLK_GNUC89); |
e23c0ba3 | 1372 | break; |
e23c0ba3 | 1373 | case OPT_lang_cplusplus: |
dd07b884 | 1374 | set_lang (pfile, CLK_GNUCXX); |
e23c0ba3 | 1375 | break; |
f8f769ea | 1376 | case OPT_lang_objc: |
dd07b884 | 1377 | set_lang (pfile, CLK_OBJC); |
e23c0ba3 | 1378 | break; |
dd07b884 NB |
1379 | case OPT_lang_objcplusplus: |
1380 | set_lang (pfile, CLK_OBJCXX); | |
e23c0ba3 | 1381 | break; |
dd07b884 NB |
1382 | case OPT_lang_asm: |
1383 | set_lang (pfile, CLK_ASM); | |
e23c0ba3 | 1384 | break; |
dd07b884 NB |
1385 | case OPT_std_cplusplus98: |
1386 | set_lang (pfile, CLK_CXX98); | |
e23c0ba3 ZW |
1387 | break; |
1388 | case OPT_std_gnu89: | |
dd07b884 | 1389 | set_lang (pfile, CLK_GNUC89); |
e23c0ba3 ZW |
1390 | break; |
1391 | case OPT_std_gnu9x: | |
1392 | case OPT_std_gnu99: | |
dd07b884 | 1393 | set_lang (pfile, CLK_GNUC99); |
e23c0ba3 ZW |
1394 | break; |
1395 | case OPT_std_iso9899_199409: | |
dd07b884 NB |
1396 | set_lang (pfile, CLK_STDC94); |
1397 | break; | |
e23c0ba3 ZW |
1398 | case OPT_std_iso9899_1990: |
1399 | case OPT_std_c89: | |
9b55f29a | 1400 | case OPT_lang_c89: |
dd07b884 | 1401 | set_lang (pfile, CLK_STDC89); |
e23c0ba3 ZW |
1402 | break; |
1403 | case OPT_std_iso9899_199x: | |
1404 | case OPT_std_iso9899_1999: | |
1405 | case OPT_std_c9x: | |
1406 | case OPT_std_c99: | |
dd07b884 NB |
1407 | set_lang (pfile, CLK_STDC99); |
1408 | break; | |
1409 | case OPT_nostdinc: | |
1410 | /* -nostdinc causes no default include directories. | |
1411 | You must specify all include-file directories with -I. */ | |
1412 | CPP_OPTION (pfile, no_standard_includes) = 1; | |
1413 | break; | |
1414 | case OPT_nostdincplusplus: | |
1415 | /* -nostdinc++ causes no default C++-specific include directories. */ | |
1416 | CPP_OPTION (pfile, no_standard_cplusplus_includes) = 1; | |
e23c0ba3 ZW |
1417 | break; |
1418 | case OPT_o: | |
ae79697b | 1419 | if (CPP_OPTION (pfile, out_fname) != NULL) |
0b22d65c | 1420 | { |
e23c0ba3 ZW |
1421 | cpp_fatal (pfile, "Output filename specified twice"); |
1422 | return argc; | |
1423 | } | |
ae79697b ZW |
1424 | CPP_OPTION (pfile, out_fname) = arg; |
1425 | if (!strcmp (CPP_OPTION (pfile, out_fname), "-")) | |
1426 | CPP_OPTION (pfile, out_fname) = ""; | |
e23c0ba3 ZW |
1427 | break; |
1428 | case OPT_v: | |
d8090680 | 1429 | fprintf (stderr, _("GNU CPP version %s (cpplib)"), version_string); |
e23c0ba3 ZW |
1430 | #ifdef TARGET_VERSION |
1431 | TARGET_VERSION; | |
1432 | #endif | |
1433 | fputc ('\n', stderr); | |
ae79697b | 1434 | CPP_OPTION (pfile, verbose) = 1; |
e23c0ba3 ZW |
1435 | break; |
1436 | case OPT_stdin_stdout: | |
4a58aab6 | 1437 | /* JF handle '-' as file name meaning stdin or stdout. */ |
ae79697b ZW |
1438 | if (CPP_OPTION (pfile, in_fname) == NULL) |
1439 | CPP_OPTION (pfile, in_fname) = ""; | |
1440 | else if (CPP_OPTION (pfile, out_fname) == NULL) | |
1441 | CPP_OPTION (pfile, out_fname) = ""; | |
e23c0ba3 ZW |
1442 | break; |
1443 | case OPT_d: | |
1444 | /* Args to -d specify what parts of macros to dump. | |
1445 | Silently ignore unrecognised options; they may | |
4a58aab6 | 1446 | be aimed at the compiler proper. */ |
e23c0ba3 ZW |
1447 | { |
1448 | char c; | |
ae79697b | 1449 | |
e23c0ba3 ZW |
1450 | while ((c = *arg++) != '\0') |
1451 | switch (c) | |
1452 | { | |
1453 | case 'M': | |
ae79697b ZW |
1454 | CPP_OPTION (pfile, dump_macros) = dump_only; |
1455 | CPP_OPTION (pfile, no_output) = 1; | |
0b22d65c ZW |
1456 | break; |
1457 | case 'N': | |
ae79697b | 1458 | CPP_OPTION (pfile, dump_macros) = dump_names; |
0b22d65c ZW |
1459 | break; |
1460 | case 'D': | |
ae79697b | 1461 | CPP_OPTION (pfile, dump_macros) = dump_definitions; |
0b22d65c ZW |
1462 | break; |
1463 | case 'I': | |
ae79697b | 1464 | CPP_OPTION (pfile, dump_includes) = 1; |
0b22d65c ZW |
1465 | break; |
1466 | } | |
e23c0ba3 ZW |
1467 | } |
1468 | break; | |
1469 | /* The style of the choices here is a bit mixed. | |
1470 | The chosen scheme is a hybrid of keeping all options in one string | |
1471 | and specifying each option in a separate argument: | |
1472 | -M|-MM|-MD file|-MMD file [-MG]. An alternative is: | |
1473 | -M|-MM|-MD file|-MMD file|-MG|-MMG; or more concisely: | |
1474 | -M[M][G][D file]. This is awkward to handle in specs, and is not | |
1475 | as extensible. */ | |
1476 | /* ??? -MG must be specified in addition to one of -M or -MM. | |
1477 | This can be relaxed in the future without breaking anything. | |
1478 | The converse isn't true. */ | |
ae79697b | 1479 | |
e23c0ba3 ZW |
1480 | /* -MG isn't valid with -MD or -MMD. This is checked for later. */ |
1481 | case OPT_MG: | |
ae79697b | 1482 | CPP_OPTION (pfile, print_deps_missing_files) = 1; |
e23c0ba3 ZW |
1483 | break; |
1484 | case OPT_M: | |
1485 | case OPT_MD: | |
1486 | case OPT_MM: | |
1487 | case OPT_MMD: | |
03b9ab42 NB |
1488 | if (! pfile->deps) |
1489 | pfile->deps = deps_init (); | |
1490 | ||
e23c0ba3 | 1491 | if (opt_code == OPT_M || opt_code == OPT_MD) |
ae79697b | 1492 | CPP_OPTION (pfile, print_deps) = 2; |
e23c0ba3 | 1493 | else |
ae79697b | 1494 | CPP_OPTION (pfile, print_deps) = 1; |
e23c0ba3 | 1495 | |
4a58aab6 NB |
1496 | /* For -MD and -MMD, write deps on file named by next arg. */ |
1497 | /* For -M and -MM, write deps on standard output and | |
1498 | suppress the usual output. */ | |
e23c0ba3 | 1499 | if (opt_code == OPT_MD || opt_code == OPT_MMD) |
ae79697b | 1500 | CPP_OPTION (pfile, deps_file) = arg; |
e23c0ba3 | 1501 | else |
ae79697b | 1502 | CPP_OPTION (pfile, no_output) = 1; |
e23c0ba3 | 1503 | break; |
03b9ab42 | 1504 | |
a5a4ce3c NB |
1505 | case OPT_MP: |
1506 | CPP_OPTION (pfile, deps_phony_targets) = 1; | |
1507 | break; | |
1508 | ||
03b9ab42 NB |
1509 | case OPT_MT: |
1510 | /* Add a target. */ | |
1511 | if (! pfile->deps) | |
1512 | pfile->deps = deps_init (); | |
a5a4ce3c | 1513 | deps_add_target (pfile->deps, arg, 0); |
03b9ab42 NB |
1514 | break; |
1515 | ||
e23c0ba3 | 1516 | case OPT_A: |
e1e97c4f | 1517 | if (arg[0] == '-') |
0b22d65c | 1518 | { |
e1e97c4f NB |
1519 | /* -A with an argument beginning with '-' acts as |
1520 | #unassert on whatever immediately follows the '-'. | |
1521 | If "-" is the whole argument, we eliminate all | |
1522 | predefined macros and assertions, including those | |
1523 | that were specified earlier on the command line. | |
1524 | That way we can get rid of any that were passed | |
1525 | automatically in from GCC. */ | |
1526 | ||
1527 | if (arg[1] == '\0') | |
0b22d65c | 1528 | { |
e1e97c4f NB |
1529 | struct pending_option *o1, *o2; |
1530 | ||
e33f6253 | 1531 | o1 = pend->directive_head; |
e1e97c4f NB |
1532 | while (o1) |
1533 | { | |
1534 | o2 = o1->next; | |
1535 | free (o1); | |
1536 | o1 = o2; | |
1537 | } | |
e33f6253 NB |
1538 | pend->directive_head = NULL; |
1539 | pend->directive_tail = NULL; | |
0b22d65c | 1540 | } |
e1e97c4f | 1541 | else |
e33f6253 | 1542 | new_pending_directive (pend, arg + 1, cpp_unassert); |
6de1e2a9 | 1543 | } |
e1e97c4f | 1544 | else |
e33f6253 | 1545 | new_pending_directive (pend, arg, cpp_assert); |
e23c0ba3 ZW |
1546 | break; |
1547 | case OPT_U: | |
e33f6253 | 1548 | new_pending_directive (pend, arg, cpp_undef); |
e23c0ba3 ZW |
1549 | break; |
1550 | case OPT_I: /* Add directory to path for includes. */ | |
1551 | if (!strcmp (arg, "-")) | |
1552 | { | |
1553 | /* -I- means: | |
1554 | Use the preceding -I directories for #include "..." | |
1555 | but not #include <...>. | |
1556 | Don't search the directory of the present file | |
1557 | for #include "...". (Note that -I. -I- is not the same as | |
1558 | the default setup; -I. uses the compiler's working dir.) */ | |
ae79697b | 1559 | if (! CPP_OPTION (pfile, ignore_srcdir)) |
e23c0ba3 | 1560 | { |
ae79697b ZW |
1561 | pend->quote_head = pend->brack_head; |
1562 | pend->quote_tail = pend->brack_tail; | |
1563 | pend->brack_head = 0; | |
1564 | pend->brack_tail = 0; | |
1565 | CPP_OPTION (pfile, ignore_srcdir) = 1; | |
e23c0ba3 ZW |
1566 | } |
1567 | else | |
1568 | { | |
1569 | cpp_fatal (pfile, "-I- specified twice"); | |
1570 | return argc; | |
1571 | } | |
1572 | } | |
1573 | else | |
e33f6253 | 1574 | append_include_chain (pfile, xstrdup (arg), BRACKET, 0); |
e23c0ba3 ZW |
1575 | break; |
1576 | case OPT_isystem: | |
1577 | /* Add directory to beginning of system include path, as a system | |
4a58aab6 | 1578 | include directory. */ |
e33f6253 | 1579 | append_include_chain (pfile, xstrdup (arg), SYSTEM, 0); |
e23c0ba3 ZW |
1580 | break; |
1581 | case OPT_include: | |
1582 | { | |
1583 | struct pending_option *o = (struct pending_option *) | |
1584 | xmalloc (sizeof (struct pending_option)); | |
1585 | o->arg = arg; | |
1586 | ||
1587 | /* This list has to be built in reverse order so that | |
1588 | when cpp_start_read pushes all the -include files onto | |
1589 | the buffer stack, they will be scanned in forward order. */ | |
e33f6253 NB |
1590 | o->next = pend->include_head; |
1591 | pend->include_head = o; | |
e23c0ba3 ZW |
1592 | } |
1593 | break; | |
1594 | case OPT_imacros: | |
1595 | { | |
1596 | struct pending_option *o = (struct pending_option *) | |
1597 | xmalloc (sizeof (struct pending_option)); | |
1598 | o->arg = arg; | |
1599 | o->next = NULL; | |
ae79697b | 1600 | |
e33f6253 | 1601 | APPEND (pend, imacros, o); |
e23c0ba3 ZW |
1602 | } |
1603 | break; | |
1604 | case OPT_iwithprefix: | |
1605 | /* Add directory to end of path for includes, | |
1606 | with the default prefix at the front of its name. */ | |
1607 | /* fall through */ | |
1608 | case OPT_iwithprefixbefore: | |
1609 | /* Add directory to main path for includes, | |
1610 | with the default prefix at the front of its name. */ | |
1611 | { | |
1612 | char *fname; | |
1613 | int len; | |
ae79697b | 1614 | |
e23c0ba3 | 1615 | len = strlen (arg); |
ae79697b ZW |
1616 | |
1617 | if (CPP_OPTION (pfile, include_prefix) != 0) | |
e23c0ba3 | 1618 | { |
ae79697b ZW |
1619 | size_t ipl = CPP_OPTION (pfile, include_prefix_len); |
1620 | fname = xmalloc (ipl + len + 1); | |
1621 | memcpy (fname, CPP_OPTION (pfile, include_prefix), ipl); | |
1622 | memcpy (fname + ipl, arg, len + 1); | |
e23c0ba3 | 1623 | } |
60893f43 | 1624 | else if (cpp_GCC_INCLUDE_DIR_len) |
e23c0ba3 | 1625 | { |
60893f43 ZW |
1626 | fname = xmalloc (cpp_GCC_INCLUDE_DIR_len + len + 1); |
1627 | memcpy (fname, cpp_GCC_INCLUDE_DIR, cpp_GCC_INCLUDE_DIR_len); | |
1628 | memcpy (fname + cpp_GCC_INCLUDE_DIR_len, arg, len + 1); | |
e23c0ba3 | 1629 | } |
60893f43 ZW |
1630 | else |
1631 | fname = xstrdup (arg); | |
ae79697b | 1632 | |
e33f6253 | 1633 | append_include_chain (pfile, fname, |
e23c0ba3 ZW |
1634 | opt_code == OPT_iwithprefix ? SYSTEM: BRACKET, 0); |
1635 | } | |
1636 | break; | |
1637 | case OPT_idirafter: | |
1638 | /* Add directory to end of path for includes. */ | |
e33f6253 | 1639 | append_include_chain (pfile, xstrdup (arg), AFTER, 0); |
e23c0ba3 ZW |
1640 | break; |
1641 | case OPT_W: | |
4a58aab6 | 1642 | /* Silently ignore unrecognised options. */ |
e23c0ba3 | 1643 | if (!strcmp (argv[i], "-Wall")) |
0b22d65c | 1644 | { |
ae79697b ZW |
1645 | CPP_OPTION (pfile, warn_trigraphs) = 1; |
1646 | CPP_OPTION (pfile, warn_comments) = 1; | |
0b22d65c | 1647 | } |
e23c0ba3 | 1648 | else if (!strcmp (argv[i], "-Wtraditional")) |
07aa0b04 | 1649 | CPP_OPTION (pfile, warn_traditional) = 1; |
e23c0ba3 | 1650 | else if (!strcmp (argv[i], "-Wtrigraphs")) |
ae79697b | 1651 | CPP_OPTION (pfile, warn_trigraphs) = 1; |
e23c0ba3 | 1652 | else if (!strcmp (argv[i], "-Wcomment")) |
ae79697b | 1653 | CPP_OPTION (pfile, warn_comments) = 1; |
e23c0ba3 | 1654 | else if (!strcmp (argv[i], "-Wcomments")) |
ae79697b | 1655 | CPP_OPTION (pfile, warn_comments) = 1; |
e23c0ba3 | 1656 | else if (!strcmp (argv[i], "-Wundef")) |
ae79697b | 1657 | CPP_OPTION (pfile, warn_undef) = 1; |
e23c0ba3 | 1658 | else if (!strcmp (argv[i], "-Wimport")) |
ae79697b | 1659 | CPP_OPTION (pfile, warn_import) = 1; |
e23c0ba3 | 1660 | else if (!strcmp (argv[i], "-Werror")) |
ae79697b | 1661 | CPP_OPTION (pfile, warnings_are_errors) = 1; |
317639a8 BC |
1662 | else if (!strcmp (argv[i], "-Wsystem-headers")) |
1663 | CPP_OPTION (pfile, warn_system_headers) = 1; | |
e23c0ba3 | 1664 | else if (!strcmp (argv[i], "-Wno-traditional")) |
07aa0b04 | 1665 | CPP_OPTION (pfile, warn_traditional) = 0; |
e23c0ba3 | 1666 | else if (!strcmp (argv[i], "-Wno-trigraphs")) |
ae79697b | 1667 | CPP_OPTION (pfile, warn_trigraphs) = 0; |
e23c0ba3 | 1668 | else if (!strcmp (argv[i], "-Wno-comment")) |
ae79697b | 1669 | CPP_OPTION (pfile, warn_comments) = 0; |
e23c0ba3 | 1670 | else if (!strcmp (argv[i], "-Wno-comments")) |
ae79697b | 1671 | CPP_OPTION (pfile, warn_comments) = 0; |
e23c0ba3 | 1672 | else if (!strcmp (argv[i], "-Wno-undef")) |
ae79697b | 1673 | CPP_OPTION (pfile, warn_undef) = 0; |
e23c0ba3 | 1674 | else if (!strcmp (argv[i], "-Wno-import")) |
ae79697b | 1675 | CPP_OPTION (pfile, warn_import) = 0; |
e23c0ba3 | 1676 | else if (!strcmp (argv[i], "-Wno-error")) |
ae79697b | 1677 | CPP_OPTION (pfile, warnings_are_errors) = 0; |
317639a8 BC |
1678 | else if (!strcmp (argv[i], "-Wno-system-headers")) |
1679 | CPP_OPTION (pfile, warn_system_headers) = 0; | |
e23c0ba3 ZW |
1680 | break; |
1681 | } | |
1682 | } | |
6de1e2a9 | 1683 | return i + 1; |
e23c0ba3 | 1684 | } |
0b22d65c | 1685 | |
e23c0ba3 ZW |
1686 | #ifdef HOST_EBCDIC |
1687 | static int | |
1688 | opt_comp (const void *p1, const void *p2) | |
1689 | { | |
1690 | return strcmp (((struct cl_option *)p1)->opt_text, | |
1691 | ((struct cl_option *)p2)->opt_text); | |
6de1e2a9 | 1692 | } |
e23c0ba3 | 1693 | #endif |
6de1e2a9 ZW |
1694 | |
1695 | /* Handle command-line options in (argc, argv). | |
1696 | Can be called multiple times, to handle multiple sets of options. | |
1697 | Returns if an unrecognized option is seen. | |
1698 | Returns number of strings consumed. */ | |
6de1e2a9 ZW |
1699 | int |
1700 | cpp_handle_options (pfile, argc, argv) | |
1701 | cpp_reader *pfile; | |
1702 | int argc; | |
1703 | char **argv; | |
1704 | { | |
1705 | int i; | |
1706 | int strings_processed; | |
e23c0ba3 | 1707 | |
6de1e2a9 ZW |
1708 | for (i = 0; i < argc; i += strings_processed) |
1709 | { | |
2c0accc9 | 1710 | strings_processed = cpp_handle_option (pfile, argc - i, argv + i); |
6de1e2a9 ZW |
1711 | if (strings_processed == 0) |
1712 | break; | |
1713 | } | |
1714 | return i; | |
1715 | } | |
1716 | ||
1717 | static void | |
1718 | print_help () | |
1719 | { | |
c1212d2f | 1720 | fprintf (stderr, _("Usage: %s [switches] input output\n"), progname); |
aaaf7848 DT |
1721 | /* To keep the lines from getting too long for some compilers, limit |
1722 | to about 500 characters (6 lines) per chunk. */ | |
6de1e2a9 ZW |
1723 | fputs (_("\ |
1724 | Switches:\n\ | |
1725 | -include <file> Include the contents of <file> before other files\n\ | |
1726 | -imacros <file> Accept definition of macros in <file>\n\ | |
1727 | -iprefix <path> Specify <path> as a prefix for next two options\n\ | |
1728 | -iwithprefix <dir> Add <dir> to the end of the system include path\n\ | |
1729 | -iwithprefixbefore <dir> Add <dir> to the end of the main include path\n\ | |
1730 | -isystem <dir> Add <dir> to the start of the system include path\n\ | |
aaaf7848 DT |
1731 | "), stdout); |
1732 | fputs (_("\ | |
6de1e2a9 ZW |
1733 | -idirafter <dir> Add <dir> to the end of the system include path\n\ |
1734 | -I <dir> Add <dir> to the end of the main include path\n\ | |
e23c0ba3 | 1735 | -I- Fine-grained include path control; see info docs\n\ |
6de1e2a9 ZW |
1736 | -nostdinc Do not search system include directories\n\ |
1737 | (dirs specified with -isystem will still be used)\n\ | |
1738 | -nostdinc++ Do not search system include directories for C++\n\ | |
1739 | -o <file> Put output into <file>\n\ | |
aaaf7848 DT |
1740 | "), stdout); |
1741 | fputs (_("\ | |
041c3194 | 1742 | -pedantic Issue all warnings demanded by strict ISO C\n\ |
e23c0ba3 | 1743 | -pedantic-errors Issue -pedantic warnings as errors instead\n\ |
041c3194 | 1744 | -trigraphs Support ISO C trigraphs\n\ |
6de1e2a9 ZW |
1745 | -lang-c Assume that the input sources are in C\n\ |
1746 | -lang-c89 Assume that the input sources are in C89\n\ | |
aaaf7848 DT |
1747 | "), stdout); |
1748 | fputs (_("\ | |
f9a0e96c | 1749 | -lang-c++ Assume that the input sources are in C++\n\ |
6de1e2a9 ZW |
1750 | -lang-objc Assume that the input sources are in ObjectiveC\n\ |
1751 | -lang-objc++ Assume that the input sources are in ObjectiveC++\n\ | |
1752 | -lang-asm Assume that the input sources are in assembler\n\ | |
aaaf7848 DT |
1753 | "), stdout); |
1754 | fputs (_("\ | |
6de1e2a9 | 1755 | -std=<std name> Specify the conformance standard; one of:\n\ |
916269ab UD |
1756 | gnu89, gnu99, c89, c99, iso9899:1990,\n\ |
1757 | iso9899:199409, iso9899:1999\n\ | |
6de1e2a9 ZW |
1758 | -+ Allow parsing of C++ style features\n\ |
1759 | -w Inhibit warning messages\n\ | |
1760 | -Wtrigraphs Warn if trigraphs are encountered\n\ | |
1761 | -Wno-trigraphs Do not warn about trigraphs\n\ | |
1762 | -Wcomment{s} Warn if one comment starts inside another\n\ | |
aaaf7848 DT |
1763 | "), stdout); |
1764 | fputs (_("\ | |
6de1e2a9 | 1765 | -Wno-comment{s} Do not warn about comments\n\ |
f9a0e96c ZW |
1766 | -Wtraditional Warn about features not present in traditional C\n\ |
1767 | -Wno-traditional Do not warn about traditional C\n\ | |
6de1e2a9 ZW |
1768 | -Wundef Warn if an undefined macro is used by #if\n\ |
1769 | -Wno-undef Do not warn about testing undefined macros\n\ | |
1770 | -Wimport Warn about the use of the #import directive\n\ | |
aaaf7848 DT |
1771 | "), stdout); |
1772 | fputs (_("\ | |
6de1e2a9 ZW |
1773 | -Wno-import Do not warn about the use of #import\n\ |
1774 | -Werror Treat all warnings as errors\n\ | |
1775 | -Wno-error Do not treat warnings as errors\n\ | |
317639a8 BC |
1776 | -Wsystem-headers Do not suppress warnings from system headers\n\ |
1777 | -Wno-system-headers Suppress warnings from system headers\n\ | |
6de1e2a9 | 1778 | -Wall Enable all preprocessor warnings\n\ |
aaaf7848 DT |
1779 | "), stdout); |
1780 | fputs (_("\ | |
317639a8 BC |
1781 | -M Generate make dependencies\n\ |
1782 | -MM As -M, but ignore system header files\n\ | |
6de1e2a9 ZW |
1783 | -MD As -M, but put output in a .d file\n\ |
1784 | -MMD As -MD, but ignore system header files\n\ | |
1785 | -MG Treat missing header file as generated files\n\ | |
e23c0ba3 | 1786 | -g3 Include #define and #undef directives in the output\n\ |
aaaf7848 DT |
1787 | "), stdout); |
1788 | fputs (_("\ | |
317639a8 BC |
1789 | -D<macro> Define a <macro> with string '1' as its value\n\ |
1790 | -D<macro>=<val> Define a <macro> with <val> as its value\n\ | |
6de1e2a9 | 1791 | -A<question> (<answer>) Assert the <answer> to <question>\n\ |
e1e97c4f | 1792 | -A-<question> (<answer>) Disable the <answer> to <question>\n\ |
6de1e2a9 | 1793 | -U<macro> Undefine <macro> \n\ |
6de1e2a9 | 1794 | -v Display the version number\n\ |
aaaf7848 DT |
1795 | "), stdout); |
1796 | fputs (_("\ | |
317639a8 BC |
1797 | -H Print the name of header files as they are used\n\ |
1798 | -C Do not discard comments\n\ | |
6de1e2a9 ZW |
1799 | -dM Display a list of macro definitions active at end\n\ |
1800 | -dD Preserve macro definitions in output\n\ | |
1801 | -dN As -dD except that only the names are preserved\n\ | |
1802 | -dI Include #include directives in the output\n\ | |
317639a8 BC |
1803 | "), stdout); |
1804 | fputs (_("\ | |
6ab3e7dd | 1805 | -ftabstop=<number> Distance between tab stops for column reporting\n\ |
6de1e2a9 ZW |
1806 | -P Do not generate #line directives\n\ |
1807 | -$ Do not allow '$' in identifiers\n\ | |
1808 | -remap Remap file names when including files.\n\ | |
e23c0ba3 | 1809 | --version Display version information\n\ |
6de1e2a9 ZW |
1810 | -h or --help Display this information\n\ |
1811 | "), stdout); | |
1812 | } |