Daily bump.
[gcc.git] / gcc / gcc.c
1 /* Compiler driver program that can handle many languages.
2 Copyright (C) 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
4 2010, 2011, 2012, 2013
5 Free Software Foundation, Inc.
6
7 This file is part of GCC.
8
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 3, or (at your option) any later
12 version.
13
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
22
23 /* This program is the user interface to the C compiler and possibly to
24 other compilers. It is used because compilation is a complicated procedure
25 which involves running several programs and passing temporary files between
26 them, forwarding the users switches to those programs selectively,
27 and deleting the temporary files at the end.
28
29 CC recognizes how to compile each input file by suffixes in the file names.
30 Once it knows which kind of compilation to perform, the procedure for
31 compilation is specified by a string called a "spec". */
32
33 #include "config.h"
34 #include "system.h"
35 #include "coretypes.h"
36 #include "multilib.h" /* before tm.h */
37 #include "tm.h"
38 #include "xregex.h"
39 #include "obstack.h"
40 #include "intl.h"
41 #include "prefix.h"
42 #include "gcc.h"
43 #include "diagnostic.h"
44 #include "flags.h"
45 #include "opts.h"
46 #include "params.h"
47 #include "vec.h"
48 #include "filenames.h"
49
50 /* By default there is no special suffix for target executables. */
51 /* FIXME: when autoconf is fixed, remove the host check - dj */
52 #if defined(TARGET_EXECUTABLE_SUFFIX) && defined(HOST_EXECUTABLE_SUFFIX)
53 #define HAVE_TARGET_EXECUTABLE_SUFFIX
54 #endif
55
56 /* By default there is no special suffix for host executables. */
57 #ifdef HOST_EXECUTABLE_SUFFIX
58 #define HAVE_HOST_EXECUTABLE_SUFFIX
59 #else
60 #define HOST_EXECUTABLE_SUFFIX ""
61 #endif
62
63 /* By default, the suffix for target object files is ".o". */
64 #ifdef TARGET_OBJECT_SUFFIX
65 #define HAVE_TARGET_OBJECT_SUFFIX
66 #else
67 #define TARGET_OBJECT_SUFFIX ".o"
68 #endif
69
70 static const char dir_separator_str[] = { DIR_SEPARATOR, 0 };
71
72 /* Most every one is fine with LIBRARY_PATH. For some, it conflicts. */
73 #ifndef LIBRARY_PATH_ENV
74 #define LIBRARY_PATH_ENV "LIBRARY_PATH"
75 #endif
76
77 /* If a stage of compilation returns an exit status >= 1,
78 compilation of that file ceases. */
79
80 #define MIN_FATAL_STATUS 1
81
82 /* Flag set by cppspec.c to 1. */
83 int is_cpp_driver;
84
85 /* Flag set to nonzero if an @file argument has been supplied to gcc. */
86 static bool at_file_supplied;
87
88 /* Definition of string containing the arguments given to configure. */
89 #include "configargs.h"
90
91 /* Flag saying to print the command line options understood by gcc and its
92 sub-processes. */
93
94 static int print_help_list;
95
96 /* Flag saying to print the version of gcc and its sub-processes. */
97
98 static int print_version;
99
100 /* Flag indicating whether we should ONLY print the command and
101 arguments (like verbose_flag) without executing the command.
102 Displayed arguments are quoted so that the generated command
103 line is suitable for execution. This is intended for use in
104 shell scripts to capture the driver-generated command line. */
105 static int verbose_only_flag;
106
107 /* Flag indicating how to print command line options of sub-processes. */
108
109 static int print_subprocess_help;
110
111 /* Whether we should report subprocess execution times to a file. */
112
113 FILE *report_times_to_file = NULL;
114
115 /* Nonzero means place this string before uses of /, so that include
116 and library files can be found in an alternate location. */
117
118 #ifdef TARGET_SYSTEM_ROOT
119 static const char *target_system_root = TARGET_SYSTEM_ROOT;
120 #else
121 static const char *target_system_root = 0;
122 #endif
123
124 /* Nonzero means pass the updated target_system_root to the compiler. */
125
126 static int target_system_root_changed;
127
128 /* Nonzero means append this string to target_system_root. */
129
130 static const char *target_sysroot_suffix = 0;
131
132 /* Nonzero means append this string to target_system_root for headers. */
133
134 static const char *target_sysroot_hdrs_suffix = 0;
135
136 /* Nonzero means write "temp" files in source directory
137 and use the source file's name in them, and don't delete them. */
138
139 static enum save_temps {
140 SAVE_TEMPS_NONE, /* no -save-temps */
141 SAVE_TEMPS_CWD, /* -save-temps in current directory */
142 SAVE_TEMPS_OBJ /* -save-temps in object directory */
143 } save_temps_flag;
144
145 /* Output file to use to get the object directory for -save-temps=obj */
146 static char *save_temps_prefix = 0;
147 static size_t save_temps_length = 0;
148
149 /* The compiler version. */
150
151 static const char *compiler_version;
152
153 /* The target version. */
154
155 static const char *const spec_version = DEFAULT_TARGET_VERSION;
156
157 /* The target machine. */
158
159 static const char *spec_machine = DEFAULT_TARGET_MACHINE;
160
161 /* Nonzero if cross-compiling.
162 When -b is used, the value comes from the `specs' file. */
163
164 #ifdef CROSS_DIRECTORY_STRUCTURE
165 static const char *cross_compile = "1";
166 #else
167 static const char *cross_compile = "0";
168 #endif
169
170 /* Greatest exit code of sub-processes that has been encountered up to
171 now. */
172 static int greatest_status = 1;
173
174 /* This is the obstack which we use to allocate many strings. */
175
176 static struct obstack obstack;
177
178 /* This is the obstack to build an environment variable to pass to
179 collect2 that describes all of the relevant switches of what to
180 pass the compiler in building the list of pointers to constructors
181 and destructors. */
182
183 static struct obstack collect_obstack;
184
185 /* Forward declaration for prototypes. */
186 struct path_prefix;
187 struct prefix_list;
188
189 static void init_spec (void);
190 static void store_arg (const char *, int, int);
191 static void insert_wrapper (const char *);
192 static char *load_specs (const char *);
193 static void read_specs (const char *, bool, bool);
194 static void set_spec (const char *, const char *, bool);
195 static struct compiler *lookup_compiler (const char *, size_t, const char *);
196 static char *build_search_list (const struct path_prefix *, const char *,
197 bool, bool);
198 static void xputenv (const char *);
199 static void putenv_from_prefixes (const struct path_prefix *, const char *,
200 bool);
201 static int access_check (const char *, int);
202 static char *find_a_file (const struct path_prefix *, const char *, int, bool);
203 static void add_prefix (struct path_prefix *, const char *, const char *,
204 int, int, int);
205 static void add_sysrooted_prefix (struct path_prefix *, const char *,
206 const char *, int, int, int);
207 static char *skip_whitespace (char *);
208 static void delete_if_ordinary (const char *);
209 static void delete_temp_files (void);
210 static void delete_failure_queue (void);
211 static void clear_failure_queue (void);
212 static int check_live_switch (int, int);
213 static const char *handle_braces (const char *);
214 static inline bool input_suffix_matches (const char *, const char *);
215 static inline bool switch_matches (const char *, const char *, int);
216 static inline void mark_matching_switches (const char *, const char *, int);
217 static inline void process_marked_switches (void);
218 static const char *process_brace_body (const char *, const char *, const char *, int, int);
219 static const struct spec_function *lookup_spec_function (const char *);
220 static const char *eval_spec_function (const char *, const char *);
221 static const char *handle_spec_function (const char *);
222 static char *save_string (const char *, int);
223 static void set_collect_gcc_options (void);
224 static int do_spec_1 (const char *, int, const char *);
225 static int do_spec_2 (const char *);
226 static void do_option_spec (const char *, const char *);
227 static void do_self_spec (const char *);
228 static const char *find_file (const char *);
229 static int is_directory (const char *, bool);
230 static const char *validate_switches (const char *, bool);
231 static void validate_all_switches (void);
232 static inline void validate_switches_from_spec (const char *, bool);
233 static void give_switch (int, int);
234 static int used_arg (const char *, int);
235 static int default_arg (const char *, int);
236 static void set_multilib_dir (void);
237 static void print_multilib_info (void);
238 static void perror_with_name (const char *);
239 static void display_help (void);
240 static void add_preprocessor_option (const char *, int);
241 static void add_assembler_option (const char *, int);
242 static void add_linker_option (const char *, int);
243 static void process_command (unsigned int, struct cl_decoded_option *);
244 static int execute (void);
245 static void alloc_args (void);
246 static void clear_args (void);
247 static void fatal_signal (int);
248 #if defined(ENABLE_SHARED_LIBGCC) && !defined(REAL_LIBGCC_SPEC)
249 static void init_gcc_specs (struct obstack *, const char *, const char *,
250 const char *);
251 #endif
252 #if defined(HAVE_TARGET_OBJECT_SUFFIX) || defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
253 static const char *convert_filename (const char *, int, int);
254 #endif
255
256 static const char *getenv_spec_function (int, const char **);
257 static const char *if_exists_spec_function (int, const char **);
258 static const char *if_exists_else_spec_function (int, const char **);
259 static const char *replace_outfile_spec_function (int, const char **);
260 static const char *remove_outfile_spec_function (int, const char **);
261 static const char *version_compare_spec_function (int, const char **);
262 static const char *include_spec_function (int, const char **);
263 static const char *find_file_spec_function (int, const char **);
264 static const char *find_plugindir_spec_function (int, const char **);
265 static const char *print_asm_header_spec_function (int, const char **);
266 static const char *compare_debug_dump_opt_spec_function (int, const char **);
267 static const char *compare_debug_self_opt_spec_function (int, const char **);
268 static const char *compare_debug_auxbase_opt_spec_function (int, const char **);
269 static const char *pass_through_libs_spec_func (int, const char **);
270 static const char *replace_extension_spec_func (int, const char **);
271 \f
272 /* The Specs Language
273
274 Specs are strings containing lines, each of which (if not blank)
275 is made up of a program name, and arguments separated by spaces.
276 The program name must be exact and start from root, since no path
277 is searched and it is unreliable to depend on the current working directory.
278 Redirection of input or output is not supported; the subprograms must
279 accept filenames saying what files to read and write.
280
281 In addition, the specs can contain %-sequences to substitute variable text
282 or for conditional text. Here is a table of all defined %-sequences.
283 Note that spaces are not generated automatically around the results of
284 expanding these sequences; therefore, you can concatenate them together
285 or with constant text in a single argument.
286
287 %% substitute one % into the program name or argument.
288 %i substitute the name of the input file being processed.
289 %b substitute the basename of the input file being processed.
290 This is the substring up to (and not including) the last period
291 and not including the directory unless -save-temps was specified
292 to put temporaries in a different location.
293 %B same as %b, but include the file suffix (text after the last period).
294 %gSUFFIX
295 substitute a file name that has suffix SUFFIX and is chosen
296 once per compilation, and mark the argument a la %d. To reduce
297 exposure to denial-of-service attacks, the file name is now
298 chosen in a way that is hard to predict even when previously
299 chosen file names are known. For example, `%g.s ... %g.o ... %g.s'
300 might turn into `ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s'. SUFFIX matches
301 the regexp "[.0-9A-Za-z]*%O"; "%O" is treated exactly as if it
302 had been pre-processed. Previously, %g was simply substituted
303 with a file name chosen once per compilation, without regard
304 to any appended suffix (which was therefore treated just like
305 ordinary text), making such attacks more likely to succeed.
306 %|SUFFIX
307 like %g, but if -pipe is in effect, expands simply to "-".
308 %mSUFFIX
309 like %g, but if -pipe is in effect, expands to nothing. (We have both
310 %| and %m to accommodate differences between system assemblers; see
311 the AS_NEEDS_DASH_FOR_PIPED_INPUT target macro.)
312 %uSUFFIX
313 like %g, but generates a new temporary file name even if %uSUFFIX
314 was already seen.
315 %USUFFIX
316 substitutes the last file name generated with %uSUFFIX, generating a
317 new one if there is no such last file name. In the absence of any
318 %uSUFFIX, this is just like %gSUFFIX, except they don't share
319 the same suffix "space", so `%g.s ... %U.s ... %g.s ... %U.s'
320 would involve the generation of two distinct file names, one
321 for each `%g.s' and another for each `%U.s'. Previously, %U was
322 simply substituted with a file name chosen for the previous %u,
323 without regard to any appended suffix.
324 %jSUFFIX
325 substitutes the name of the HOST_BIT_BUCKET, if any, and if it is
326 writable, and if save-temps is off; otherwise, substitute the name
327 of a temporary file, just like %u. This temporary file is not
328 meant for communication between processes, but rather as a junk
329 disposal mechanism.
330 %.SUFFIX
331 substitutes .SUFFIX for the suffixes of a matched switch's args when
332 it is subsequently output with %*. SUFFIX is terminated by the next
333 space or %.
334 %d marks the argument containing or following the %d as a
335 temporary file name, so that that file will be deleted if GCC exits
336 successfully. Unlike %g, this contributes no text to the argument.
337 %w marks the argument containing or following the %w as the
338 "output file" of this compilation. This puts the argument
339 into the sequence of arguments that %o will substitute later.
340 %V indicates that this compilation produces no "output file".
341 %W{...}
342 like %{...} but mark last argument supplied within
343 as a file to be deleted on failure.
344 %o substitutes the names of all the output files, with spaces
345 automatically placed around them. You should write spaces
346 around the %o as well or the results are undefined.
347 %o is for use in the specs for running the linker.
348 Input files whose names have no recognized suffix are not compiled
349 at all, but they are included among the output files, so they will
350 be linked.
351 %O substitutes the suffix for object files. Note that this is
352 handled specially when it immediately follows %g, %u, or %U
353 (with or without a suffix argument) because of the need for
354 those to form complete file names. The handling is such that
355 %O is treated exactly as if it had already been substituted,
356 except that %g, %u, and %U do not currently support additional
357 SUFFIX characters following %O as they would following, for
358 example, `.o'.
359 %I Substitute any of -iprefix (made from GCC_EXEC_PREFIX), -isysroot
360 (made from TARGET_SYSTEM_ROOT), -isystem (made from COMPILER_PATH
361 and -B options) and -imultilib as necessary.
362 %s current argument is the name of a library or startup file of some sort.
363 Search for that file in a standard list of directories
364 and substitute the full name found.
365 %eSTR Print STR as an error message. STR is terminated by a newline.
366 Use this when inconsistent options are detected.
367 %nSTR Print STR as a notice. STR is terminated by a newline.
368 %x{OPTION} Accumulate an option for %X.
369 %X Output the accumulated linker options specified by compilations.
370 %Y Output the accumulated assembler options specified by compilations.
371 %Z Output the accumulated preprocessor options specified by compilations.
372 %a process ASM_SPEC as a spec.
373 This allows config.h to specify part of the spec for running as.
374 %A process ASM_FINAL_SPEC as a spec. A capital A is actually
375 used here. This can be used to run a post-processor after the
376 assembler has done its job.
377 %D Dump out a -L option for each directory in startfile_prefixes.
378 If multilib_dir is set, extra entries are generated with it affixed.
379 %l process LINK_SPEC as a spec.
380 %L process LIB_SPEC as a spec.
381 %M Output multilib_os_dir.
382 %G process LIBGCC_SPEC as a spec.
383 %R Output the concatenation of target_system_root and
384 target_sysroot_suffix.
385 %S process STARTFILE_SPEC as a spec. A capital S is actually used here.
386 %E process ENDFILE_SPEC as a spec. A capital E is actually used here.
387 %C process CPP_SPEC as a spec.
388 %1 process CC1_SPEC as a spec.
389 %2 process CC1PLUS_SPEC as a spec.
390 %* substitute the variable part of a matched option. (See below.)
391 Note that each comma in the substituted string is replaced by
392 a single space.
393 %<S remove all occurrences of -S from the command line.
394 Note - this command is position dependent. % commands in the
395 spec string before this one will see -S, % commands in the
396 spec string after this one will not.
397 %>S Similar to "%<S", but keep it in the GCC command line.
398 %<S* remove all occurrences of all switches beginning with -S from the
399 command line.
400 %:function(args)
401 Call the named function FUNCTION, passing it ARGS. ARGS is
402 first processed as a nested spec string, then split into an
403 argument vector in the usual fashion. The function returns
404 a string which is processed as if it had appeared literally
405 as part of the current spec.
406 %{S} substitutes the -S switch, if that switch was given to GCC.
407 If that switch was not specified, this substitutes nothing.
408 Here S is a metasyntactic variable.
409 %{S*} substitutes all the switches specified to GCC whose names start
410 with -S. This is used for -o, -I, etc; switches that take
411 arguments. GCC considers `-o foo' as being one switch whose
412 name starts with `o'. %{o*} would substitute this text,
413 including the space; thus, two arguments would be generated.
414 %{S*&T*} likewise, but preserve order of S and T options (the order
415 of S and T in the spec is not significant). Can be any number
416 of ampersand-separated variables; for each the wild card is
417 optional. Useful for CPP as %{D*&U*&A*}.
418
419 %{S:X} substitutes X, if the -S switch was given to GCC.
420 %{!S:X} substitutes X, if the -S switch was NOT given to GCC.
421 %{S*:X} substitutes X if one or more switches whose names start
422 with -S was given to GCC. Normally X is substituted only
423 once, no matter how many such switches appeared. However,
424 if %* appears somewhere in X, then X will be substituted
425 once for each matching switch, with the %* replaced by the
426 part of that switch that matched the '*'.
427 %{.S:X} substitutes X, if processing a file with suffix S.
428 %{!.S:X} substitutes X, if NOT processing a file with suffix S.
429 %{,S:X} substitutes X, if processing a file which will use spec S.
430 %{!,S:X} substitutes X, if NOT processing a file which will use spec S.
431
432 %{S|T:X} substitutes X if either -S or -T was given to GCC. This may be
433 combined with '!', '.', ',', and '*' as above binding stronger
434 than the OR.
435 If %* appears in X, all of the alternatives must be starred, and
436 only the first matching alternative is substituted.
437 %{S:X; if S was given to GCC, substitutes X;
438 T:Y; else if T was given to GCC, substitutes Y;
439 :D} else substitutes D. There can be as many clauses as you need.
440 This may be combined with '.', '!', ',', '|', and '*' as above.
441
442 %(Spec) processes a specification defined in a specs file as *Spec:
443
444 The conditional text X in a %{S:X} or similar construct may contain
445 other nested % constructs or spaces, or even newlines. They are
446 processed as usual, as described above. Trailing white space in X is
447 ignored. White space may also appear anywhere on the left side of the
448 colon in these constructs, except between . or * and the corresponding
449 word.
450
451 The -O, -f, -g, -m, and -W switches are handled specifically in these
452 constructs. If another value of -O or the negated form of a -f, -m, or
453 -W switch is found later in the command line, the earlier switch
454 value is ignored, except with {S*} where S is just one letter; this
455 passes all matching options.
456
457 The character | at the beginning of the predicate text is used to indicate
458 that a command should be piped to the following command, but only if -pipe
459 is specified.
460
461 Note that it is built into GCC which switches take arguments and which
462 do not. You might think it would be useful to generalize this to
463 allow each compiler's spec to say which switches take arguments. But
464 this cannot be done in a consistent fashion. GCC cannot even decide
465 which input files have been specified without knowing which switches
466 take arguments, and it must know which input files to compile in order
467 to tell which compilers to run.
468
469 GCC also knows implicitly that arguments starting in `-l' are to be
470 treated as compiler output files, and passed to the linker in their
471 proper position among the other output files. */
472 \f
473 /* Define the macros used for specs %a, %l, %L, %S, %C, %1. */
474
475 /* config.h can define ASM_SPEC to provide extra args to the assembler
476 or extra switch-translations. */
477 #ifndef ASM_SPEC
478 #define ASM_SPEC ""
479 #endif
480
481 /* config.h can define ASM_FINAL_SPEC to run a post processor after
482 the assembler has run. */
483 #ifndef ASM_FINAL_SPEC
484 #define ASM_FINAL_SPEC \
485 "%{gsplit-dwarf: \n\
486 objcopy --extract-dwo \
487 %{c:%{o*:%*}%{!o*:%b%O}}%{!c:%U%O} \
488 %{c:%{o*:%:replace-extension(%{o*:%*} .dwo)}%{!o*:%b.dwo}}%{!c:%b.dwo} \n\
489 objcopy --strip-dwo \
490 %{c:%{o*:%*}%{!o*:%b%O}}%{!c:%U%O} \
491 }"
492 #endif
493
494 /* config.h can define CPP_SPEC to provide extra args to the C preprocessor
495 or extra switch-translations. */
496 #ifndef CPP_SPEC
497 #define CPP_SPEC ""
498 #endif
499
500 /* config.h can define CC1_SPEC to provide extra args to cc1 and cc1plus
501 or extra switch-translations. */
502 #ifndef CC1_SPEC
503 #define CC1_SPEC ""
504 #endif
505
506 /* config.h can define CC1PLUS_SPEC to provide extra args to cc1plus
507 or extra switch-translations. */
508 #ifndef CC1PLUS_SPEC
509 #define CC1PLUS_SPEC ""
510 #endif
511
512 /* config.h can define LINK_SPEC to provide extra args to the linker
513 or extra switch-translations. */
514 #ifndef LINK_SPEC
515 #define LINK_SPEC ""
516 #endif
517
518 /* config.h can define LIB_SPEC to override the default libraries. */
519 #ifndef LIB_SPEC
520 #define LIB_SPEC "%{!shared:%{g*:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}}"
521 #endif
522
523 /* mudflap specs */
524 #ifndef MFWRAP_SPEC
525 /* XXX: valid only for GNU ld */
526 /* XXX: should exactly match hooks provided by libmudflap.a */
527 #define MFWRAP_SPEC " %{static: %{fmudflap|fmudflapth: \
528 --wrap=malloc --wrap=free --wrap=calloc --wrap=realloc\
529 --wrap=mmap --wrap=mmap64 --wrap=munmap --wrap=alloca\
530 } %{fmudflapth: --wrap=pthread_create\
531 }} %{fmudflap|fmudflapth: --wrap=main}"
532 #endif
533 #ifndef MFLIB_SPEC
534 #define MFLIB_SPEC "%{fmudflap|fmudflapth: -export-dynamic}"
535 #endif
536
537 /* When using -fsplit-stack we need to wrap pthread_create, in order
538 to initialize the stack guard. We always use wrapping, rather than
539 shared library ordering, and we keep the wrapper function in
540 libgcc. This is not yet a real spec, though it could become one;
541 it is currently just stuffed into LINK_SPEC. FIXME: This wrapping
542 only works with GNU ld and gold. FIXME: This is incompatible with
543 -fmudflap when linking statically, which wants to do its own
544 wrapping. */
545 #define STACK_SPLIT_SPEC " %{fsplit-stack: --wrap=pthread_create}"
546
547 #ifndef LIBASAN_SPEC
548 #ifdef STATIC_LIBASAN_LIBS
549 #define ADD_STATIC_LIBASAN_LIBS \
550 " %{static-libasan:" STATIC_LIBASAN_LIBS "}"
551 #else
552 #define ADD_STATIC_LIBASAN_LIBS
553 #endif
554 #ifdef HAVE_LD_STATIC_DYNAMIC
555 #define LIBASAN_SPEC "%{static-libasan:" LD_STATIC_OPTION \
556 "} -lasan %{static-libasan:" LD_DYNAMIC_OPTION "}" \
557 ADD_STATIC_LIBASAN_LIBS
558 #else
559 #define LIBASAN_SPEC "-lasan" ADD_STATIC_LIBASAN_LIBS
560 #endif
561 #endif
562
563 #ifndef LIBTSAN_SPEC
564 #ifdef HAVE_LD_STATIC_DYNAMIC
565 #define LIBTSAN_SPEC "%{static-libtsan:" LD_STATIC_OPTION \
566 "} -ltsan %{static-libtsan:" LD_DYNAMIC_OPTION "}"
567 #else
568 #define LIBTSAN_SPEC "-ltsan"
569 #endif
570 #endif
571
572 /* config.h can define LIBGCC_SPEC to override how and when libgcc.a is
573 included. */
574 #ifndef LIBGCC_SPEC
575 #if defined(REAL_LIBGCC_SPEC)
576 #define LIBGCC_SPEC REAL_LIBGCC_SPEC
577 #elif defined(LINK_LIBGCC_SPECIAL_1)
578 /* Have gcc do the search for libgcc.a. */
579 #define LIBGCC_SPEC "libgcc.a%s"
580 #else
581 #define LIBGCC_SPEC "-lgcc"
582 #endif
583 #endif
584
585 /* config.h can define STARTFILE_SPEC to override the default crt0 files. */
586 #ifndef STARTFILE_SPEC
587 #define STARTFILE_SPEC \
588 "%{!shared:%{pg:gcrt0%O%s}%{!pg:%{p:mcrt0%O%s}%{!p:crt0%O%s}}}"
589 #endif
590
591 /* config.h can define ENDFILE_SPEC to override the default crtn files. */
592 #ifndef ENDFILE_SPEC
593 #define ENDFILE_SPEC ""
594 #endif
595
596 #ifndef LINKER_NAME
597 #define LINKER_NAME "collect2"
598 #endif
599
600 #ifdef HAVE_AS_DEBUG_PREFIX_MAP
601 #define ASM_MAP " %{fdebug-prefix-map=*:--debug-prefix-map %*}"
602 #else
603 #define ASM_MAP ""
604 #endif
605
606 /* Define ASM_DEBUG_SPEC to be a spec suitable for translating '-g'
607 to the assembler. */
608 #ifndef ASM_DEBUG_SPEC
609 # if defined(DBX_DEBUGGING_INFO) && defined(DWARF2_DEBUGGING_INFO) \
610 && defined(HAVE_AS_GDWARF2_DEBUG_FLAG) && defined(HAVE_AS_GSTABS_DEBUG_FLAG)
611 # define ASM_DEBUG_SPEC \
612 (PREFERRED_DEBUGGING_TYPE == DBX_DEBUG \
613 ? "%{!g0:%{gdwarf-2*:--gdwarf2}%{!gdwarf-2*:%{g*:--gstabs}}}" ASM_MAP \
614 : "%{!g0:%{gstabs*:--gstabs}%{!gstabs*:%{g*:--gdwarf2}}}" ASM_MAP)
615 # else
616 # if defined(DBX_DEBUGGING_INFO) && defined(HAVE_AS_GSTABS_DEBUG_FLAG)
617 # define ASM_DEBUG_SPEC "%{g*:%{!g0:--gstabs}}" ASM_MAP
618 # endif
619 # if defined(DWARF2_DEBUGGING_INFO) && defined(HAVE_AS_GDWARF2_DEBUG_FLAG)
620 # define ASM_DEBUG_SPEC "%{g*:%{!g0:--gdwarf2}}" ASM_MAP
621 # endif
622 # endif
623 #endif
624 #ifndef ASM_DEBUG_SPEC
625 # define ASM_DEBUG_SPEC ""
626 #endif
627
628 /* Here is the spec for running the linker, after compiling all files. */
629
630 /* This is overridable by the target in case they need to specify the
631 -lgcc and -lc order specially, yet not require them to override all
632 of LINK_COMMAND_SPEC. */
633 #ifndef LINK_GCC_C_SEQUENCE_SPEC
634 #define LINK_GCC_C_SEQUENCE_SPEC "%G %L %G"
635 #endif
636
637 #ifndef LINK_SSP_SPEC
638 #ifdef TARGET_LIBC_PROVIDES_SSP
639 #define LINK_SSP_SPEC "%{fstack-protector:}"
640 #else
641 #define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all:-lssp_nonshared -lssp}"
642 #endif
643 #endif
644
645 #ifndef LINK_PIE_SPEC
646 #ifdef HAVE_LD_PIE
647 #define LINK_PIE_SPEC "%{pie:-pie} "
648 #else
649 #define LINK_PIE_SPEC "%{pie:} "
650 #endif
651 #endif
652
653 #ifndef LINK_BUILDID_SPEC
654 # if defined(HAVE_LD_BUILDID) && defined(ENABLE_LD_BUILDID)
655 # define LINK_BUILDID_SPEC "%{!r:--build-id} "
656 # endif
657 #endif
658
659 /* Conditional to test whether the LTO plugin is used or not.
660 FIXME: For slim LTO we will need to enable plugin unconditionally. This
661 still cause problems with PLUGIN_LD != LD and when plugin is built but
662 not useable. For GCC 4.6 we don't support slim LTO and thus we can enable
663 plugin only when LTO is enabled. We still honor explicit
664 -fuse-linker-plugin if the linker used understands -plugin. */
665
666 /* The linker has some plugin support. */
667 #if HAVE_LTO_PLUGIN > 0
668 /* The linker used has full plugin support, use LTO plugin by default. */
669 #if HAVE_LTO_PLUGIN == 2
670 #define PLUGIN_COND "!fno-use-linker-plugin:%{flto|flto=*|fuse-linker-plugin"
671 #define PLUGIN_COND_CLOSE "}"
672 #else
673 /* The linker used has limited plugin support, use LTO plugin with explicit
674 -fuse-linker-plugin. */
675 #define PLUGIN_COND "fuse-linker-plugin"
676 #define PLUGIN_COND_CLOSE ""
677 #endif
678 #define LINK_PLUGIN_SPEC \
679 "%{"PLUGIN_COND": \
680 -plugin %(linker_plugin_file) \
681 -plugin-opt=%(lto_wrapper) \
682 -plugin-opt=-fresolution=%u.res \
683 %{!nostdlib:%{!nodefaultlibs:%:pass-through-libs(%(link_gcc_c_sequence))}} \
684 }"PLUGIN_COND_CLOSE
685 #else
686 /* The linker used doesn't support -plugin, reject -fuse-linker-plugin. */
687 #define LINK_PLUGIN_SPEC "%{fuse-linker-plugin:\
688 %e-fuse-linker-plugin is not supported in this configuration}"
689 #endif
690
691
692 /* -u* was put back because both BSD and SysV seem to support it. */
693 /* %{static:} simply prevents an error message if the target machine
694 doesn't handle -static. */
695 /* We want %{T*} after %{L*} and %D so that it can be used to specify linker
696 scripts which exist in user specified directories, or in standard
697 directories. */
698 /* We pass any -flto flags on to the linker, which is expected
699 to understand them. In practice, this means it had better be collect2. */
700 /* %{e*} includes -export-dynamic; see comment in common.opt. */
701 #ifndef LINK_COMMAND_SPEC
702 #define LINK_COMMAND_SPEC "\
703 %{!fsyntax-only:%{!c:%{!M:%{!MM:%{!E:%{!S:\
704 %(linker) " \
705 LINK_PLUGIN_SPEC \
706 "%{flto|flto=*:%<fcompare-debug*} \
707 %{flto} %{flto=*} %l " LINK_PIE_SPEC \
708 "%{fuse-ld=*:-fuse-ld=%*}\
709 %X %{o*} %{e*} %{N} %{n} %{r}\
710 %{s} %{t} %{u*} %{z} %{Z} %{!nostdlib:%{!nostartfiles:%S}}\
711 %{static:} %{L*} %(mfwrap) %(link_libgcc) %o\
712 %{fopenmp|ftree-parallelize-loops=*:%:include(libgomp.spec)%(link_gomp)}\
713 %{fgnu-tm:%:include(libitm.spec)%(link_itm)}\
714 %(mflib) " STACK_SPLIT_SPEC "\
715 %{fprofile-arcs|fprofile-generate*|coverage:-lgcov}\
716 %{fsanitize=address:" LIBASAN_SPEC "%{static:%ecannot specify -static with -fsanitize=address}}\
717 %{fsanitize=thread:" LIBTSAN_SPEC "}\
718 %{!nostdlib:%{!nodefaultlibs:%(link_ssp) %(link_gcc_c_sequence)}}\
719 %{!nostdlib:%{!nostartfiles:%E}} %{T*} }}}}}}"
720 #endif
721
722 #ifndef LINK_LIBGCC_SPEC
723 /* Generate -L options for startfile prefix list. */
724 # define LINK_LIBGCC_SPEC "%D"
725 #endif
726
727 #ifndef STARTFILE_PREFIX_SPEC
728 # define STARTFILE_PREFIX_SPEC ""
729 #endif
730
731 #ifndef SYSROOT_SPEC
732 # define SYSROOT_SPEC "--sysroot=%R"
733 #endif
734
735 #ifndef SYSROOT_SUFFIX_SPEC
736 # define SYSROOT_SUFFIX_SPEC ""
737 #endif
738
739 #ifndef SYSROOT_HEADERS_SUFFIX_SPEC
740 # define SYSROOT_HEADERS_SUFFIX_SPEC ""
741 #endif
742
743 static const char *asm_debug = ASM_DEBUG_SPEC;
744 static const char *cpp_spec = CPP_SPEC;
745 static const char *cc1_spec = CC1_SPEC;
746 static const char *cc1plus_spec = CC1PLUS_SPEC;
747 static const char *link_gcc_c_sequence_spec = LINK_GCC_C_SEQUENCE_SPEC;
748 static const char *link_ssp_spec = LINK_SSP_SPEC;
749 static const char *asm_spec = ASM_SPEC;
750 static const char *asm_final_spec = ASM_FINAL_SPEC;
751 static const char *link_spec = LINK_SPEC;
752 static const char *lib_spec = LIB_SPEC;
753 static const char *mfwrap_spec = MFWRAP_SPEC;
754 static const char *mflib_spec = MFLIB_SPEC;
755 static const char *link_gomp_spec = "";
756 static const char *libgcc_spec = LIBGCC_SPEC;
757 static const char *endfile_spec = ENDFILE_SPEC;
758 static const char *startfile_spec = STARTFILE_SPEC;
759 static const char *linker_name_spec = LINKER_NAME;
760 static const char *linker_plugin_file_spec = "";
761 static const char *lto_wrapper_spec = "";
762 static const char *lto_gcc_spec = "";
763 static const char *link_command_spec = LINK_COMMAND_SPEC;
764 static const char *link_libgcc_spec = LINK_LIBGCC_SPEC;
765 static const char *startfile_prefix_spec = STARTFILE_PREFIX_SPEC;
766 static const char *sysroot_spec = SYSROOT_SPEC;
767 static const char *sysroot_suffix_spec = SYSROOT_SUFFIX_SPEC;
768 static const char *sysroot_hdrs_suffix_spec = SYSROOT_HEADERS_SUFFIX_SPEC;
769 static const char *self_spec = "";
770
771 /* Standard options to cpp, cc1, and as, to reduce duplication in specs.
772 There should be no need to override these in target dependent files,
773 but we need to copy them to the specs file so that newer versions
774 of the GCC driver can correctly drive older tool chains with the
775 appropriate -B options. */
776
777 /* When cpplib handles traditional preprocessing, get rid of this, and
778 call cc1 (or cc1obj in objc/lang-specs.h) from the main specs so
779 that we default the front end language better. */
780 static const char *trad_capable_cpp =
781 "cc1 -E %{traditional|traditional-cpp:-traditional-cpp}";
782
783 /* We don't wrap .d files in %W{} since a missing .d file, and
784 therefore no dependency entry, confuses make into thinking a .o
785 file that happens to exist is up-to-date. */
786 static const char *cpp_unique_options =
787 "%{!Q:-quiet} %{nostdinc*} %{C} %{CC} %{v} %{I*&F*} %{P} %I\
788 %{MD:-MD %{!o:%b.d}%{o*:%.d%*}}\
789 %{MMD:-MMD %{!o:%b.d}%{o*:%.d%*}}\
790 %{M} %{MM} %{MF*} %{MG} %{MP} %{MQ*} %{MT*}\
791 %{!E:%{!M:%{!MM:%{!MT:%{!MQ:%{MD|MMD:%{o*:-MQ %*}}}}}}}\
792 %{remap} %{g3|ggdb3|gstabs3|gcoff3|gxcoff3|gvms3:-dD}\
793 %{!iplugindir*:%{fplugin*:%:find-plugindir()}}\
794 %{H} %C %{D*&U*&A*} %{i*} %Z %i\
795 %{fmudflap:-D_MUDFLAP -include mf-runtime.h}\
796 %{fmudflapth:-D_MUDFLAP -D_MUDFLAPTH -include mf-runtime.h}\
797 %{E|M|MM:%W{o*}}";
798
799 /* This contains cpp options which are common with cc1_options and are passed
800 only when preprocessing only to avoid duplication. We pass the cc1 spec
801 options to the preprocessor so that it the cc1 spec may manipulate
802 options used to set target flags. Those special target flags settings may
803 in turn cause preprocessor symbols to be defined specially. */
804 static const char *cpp_options =
805 "%(cpp_unique_options) %1 %{m*} %{std*&ansi&trigraphs} %{W*&pedantic*} %{w}\
806 %{f*} %{g*:%{!g0:%{g*} %{!fno-working-directory:-fworking-directory}}} %{O*}\
807 %{undef} %{save-temps*:-fpch-preprocess}";
808
809 /* This contains cpp options which are not passed when the preprocessor
810 output will be used by another program. */
811 static const char *cpp_debug_options = "%{d*}";
812
813 /* NB: This is shared amongst all front-ends, except for Ada. */
814 static const char *cc1_options =
815 "%{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
816 %{!iplugindir*:%{fplugin*:%:find-plugindir()}}\
817 %1 %{!Q:-quiet} %{!dumpbase:-dumpbase %B} %{d*} %{m*} %{aux-info*}\
818 %{fcompare-debug-second:%:compare-debug-auxbase-opt(%b)} \
819 %{!fcompare-debug-second:%{c|S:%{o*:-auxbase-strip %*}%{!o*:-auxbase %b}}}%{!c:%{!S:-auxbase %b}} \
820 %{g*} %{O*} %{W*&pedantic*} %{w} %{std*&ansi&trigraphs}\
821 %{v:-version} %{pg:-p} %{p} %{f*} %{undef}\
822 %{Qn:-fno-ident} %{Qy:} %{-help:--help}\
823 %{-target-help:--target-help}\
824 %{-version:--version}\
825 %{-help=*:--help=%*}\
826 %{!fsyntax-only:%{S:%W{o*}%{!o*:-o %b.s}}}\
827 %{fsyntax-only:-o %j} %{-param*}\
828 %{fmudflap|fmudflapth:-fno-builtin -fno-merge-constants}\
829 %{coverage:-fprofile-arcs -ftest-coverage}";
830
831 static const char *asm_options =
832 "%{-target-help:%:print-asm-header()} "
833 #if HAVE_GNU_AS
834 /* If GNU AS is used, then convert -w (no warnings), -I, and -v
835 to the assembler equivalents. */
836 "%{v} %{w:-W} %{I*} "
837 #endif
838 "%a %Y %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}";
839
840 static const char *invoke_as =
841 #ifdef AS_NEEDS_DASH_FOR_PIPED_INPUT
842 "%{!fwpa:\
843 %{fcompare-debug=*|fdump-final-insns=*:%:compare-debug-dump-opt()}\
844 %{!S:-o %|.s |\n as %(asm_options) %|.s %A }\
845 }";
846 #else
847 "%{!fwpa:\
848 %{fcompare-debug=*|fdump-final-insns=*:%:compare-debug-dump-opt()}\
849 %{!S:-o %|.s |\n as %(asm_options) %m.s %A }\
850 }";
851 #endif
852
853 /* Some compilers have limits on line lengths, and the multilib_select
854 and/or multilib_matches strings can be very long, so we build them at
855 run time. */
856 static struct obstack multilib_obstack;
857 static const char *multilib_select;
858 static const char *multilib_matches;
859 static const char *multilib_defaults;
860 static const char *multilib_exclusions;
861
862 /* Check whether a particular argument is a default argument. */
863
864 #ifndef MULTILIB_DEFAULTS
865 #define MULTILIB_DEFAULTS { "" }
866 #endif
867
868 static const char *const multilib_defaults_raw[] = MULTILIB_DEFAULTS;
869
870 #ifndef DRIVER_SELF_SPECS
871 #define DRIVER_SELF_SPECS ""
872 #endif
873
874 /* Adding -fopenmp should imply pthreads. This is particularly important
875 for targets that use different start files and suchlike. */
876 #ifndef GOMP_SELF_SPECS
877 #define GOMP_SELF_SPECS "%{fopenmp|ftree-parallelize-loops=*: -pthread}"
878 #endif
879
880 /* Likewise for -fgnu-tm. */
881 #ifndef GTM_SELF_SPECS
882 #define GTM_SELF_SPECS "%{fgnu-tm: -pthread}"
883 #endif
884
885 static const char *const driver_self_specs[] = {
886 "%{fdump-final-insns:-fdump-final-insns=.} %<fdump-final-insns",
887 DRIVER_SELF_SPECS, CONFIGURE_SPECS, GOMP_SELF_SPECS, GTM_SELF_SPECS
888 };
889
890 #ifndef OPTION_DEFAULT_SPECS
891 #define OPTION_DEFAULT_SPECS { "", "" }
892 #endif
893
894 struct default_spec
895 {
896 const char *name;
897 const char *spec;
898 };
899
900 static const struct default_spec
901 option_default_specs[] = { OPTION_DEFAULT_SPECS };
902
903 struct user_specs
904 {
905 struct user_specs *next;
906 const char *filename;
907 };
908
909 static struct user_specs *user_specs_head, *user_specs_tail;
910
911 \f
912 /* Record the mapping from file suffixes for compilation specs. */
913
914 struct compiler
915 {
916 const char *suffix; /* Use this compiler for input files
917 whose names end in this suffix. */
918
919 const char *spec; /* To use this compiler, run this spec. */
920
921 const char *cpp_spec; /* If non-NULL, substitute this spec
922 for `%C', rather than the usual
923 cpp_spec. */
924 const int combinable; /* If nonzero, compiler can deal with
925 multiple source files at once (IMA). */
926 const int needs_preprocessing; /* If nonzero, source files need to
927 be run through a preprocessor. */
928 };
929
930 /* Pointer to a vector of `struct compiler' that gives the spec for
931 compiling a file, based on its suffix.
932 A file that does not end in any of these suffixes will be passed
933 unchanged to the loader and nothing else will be done to it.
934
935 An entry containing two 0s is used to terminate the vector.
936
937 If multiple entries match a file, the last matching one is used. */
938
939 static struct compiler *compilers;
940
941 /* Number of entries in `compilers', not counting the null terminator. */
942
943 static int n_compilers;
944
945 /* The default list of file name suffixes and their compilation specs. */
946
947 static const struct compiler default_compilers[] =
948 {
949 /* Add lists of suffixes of known languages here. If those languages
950 were not present when we built the driver, we will hit these copies
951 and be given a more meaningful error than "file not used since
952 linking is not done". */
953 {".m", "#Objective-C", 0, 0, 0}, {".mi", "#Objective-C", 0, 0, 0},
954 {".mm", "#Objective-C++", 0, 0, 0}, {".M", "#Objective-C++", 0, 0, 0},
955 {".mii", "#Objective-C++", 0, 0, 0},
956 {".cc", "#C++", 0, 0, 0}, {".cxx", "#C++", 0, 0, 0},
957 {".cpp", "#C++", 0, 0, 0}, {".cp", "#C++", 0, 0, 0},
958 {".c++", "#C++", 0, 0, 0}, {".C", "#C++", 0, 0, 0},
959 {".CPP", "#C++", 0, 0, 0}, {".ii", "#C++", 0, 0, 0},
960 {".ads", "#Ada", 0, 0, 0}, {".adb", "#Ada", 0, 0, 0},
961 {".f", "#Fortran", 0, 0, 0}, {".F", "#Fortran", 0, 0, 0},
962 {".for", "#Fortran", 0, 0, 0}, {".FOR", "#Fortran", 0, 0, 0},
963 {".ftn", "#Fortran", 0, 0, 0}, {".FTN", "#Fortran", 0, 0, 0},
964 {".fpp", "#Fortran", 0, 0, 0}, {".FPP", "#Fortran", 0, 0, 0},
965 {".f90", "#Fortran", 0, 0, 0}, {".F90", "#Fortran", 0, 0, 0},
966 {".f95", "#Fortran", 0, 0, 0}, {".F95", "#Fortran", 0, 0, 0},
967 {".f03", "#Fortran", 0, 0, 0}, {".F03", "#Fortran", 0, 0, 0},
968 {".f08", "#Fortran", 0, 0, 0}, {".F08", "#Fortran", 0, 0, 0},
969 {".r", "#Ratfor", 0, 0, 0},
970 {".p", "#Pascal", 0, 0, 0}, {".pas", "#Pascal", 0, 0, 0},
971 {".java", "#Java", 0, 0, 0}, {".class", "#Java", 0, 0, 0},
972 {".zip", "#Java", 0, 0, 0}, {".jar", "#Java", 0, 0, 0},
973 {".go", "#Go", 0, 1, 0},
974 /* Next come the entries for C. */
975 {".c", "@c", 0, 0, 1},
976 {"@c",
977 /* cc1 has an integrated ISO C preprocessor. We should invoke the
978 external preprocessor if -save-temps is given. */
979 "%{E|M|MM:%(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)}\
980 %{!E:%{!M:%{!MM:\
981 %{traditional:\
982 %eGNU C no longer supports -traditional without -E}\
983 %{save-temps*|traditional-cpp|no-integrated-cpp:%(trad_capable_cpp) \
984 %(cpp_options) -o %{save-temps*:%b.i} %{!save-temps*:%g.i} \n\
985 cc1 -fpreprocessed %{save-temps*:%b.i} %{!save-temps*:%g.i} \
986 %(cc1_options)}\
987 %{!save-temps*:%{!traditional-cpp:%{!no-integrated-cpp:\
988 cc1 %(cpp_unique_options) %(cc1_options)}}}\
989 %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 1},
990 {"-",
991 "%{!E:%e-E or -x required when input is from standard input}\
992 %(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)", 0, 0, 0},
993 {".h", "@c-header", 0, 0, 0},
994 {"@c-header",
995 /* cc1 has an integrated ISO C preprocessor. We should invoke the
996 external preprocessor if -save-temps is given. */
997 "%{E|M|MM:%(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)}\
998 %{!E:%{!M:%{!MM:\
999 %{save-temps*|traditional-cpp|no-integrated-cpp:%(trad_capable_cpp) \
1000 %(cpp_options) -o %{save-temps*:%b.i} %{!save-temps*:%g.i} \n\
1001 cc1 -fpreprocessed %{save-temps*:%b.i} %{!save-temps*:%g.i} \
1002 %(cc1_options)\
1003 %{!fdump-ada-spec*:-o %g.s %{!o*:--output-pch=%i.gch}\
1004 %W{o*:--output-pch=%*}}%V}\
1005 %{!save-temps*:%{!traditional-cpp:%{!no-integrated-cpp:\
1006 cc1 %(cpp_unique_options) %(cc1_options)\
1007 %{!fdump-ada-spec*:-o %g.s %{!o*:--output-pch=%i.gch}\
1008 %W{o*:--output-pch=%*}}%V}}}}}}", 0, 0, 0},
1009 {".i", "@cpp-output", 0, 0, 0},
1010 {"@cpp-output",
1011 "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 0},
1012 {".s", "@assembler", 0, 0, 0},
1013 {"@assembler",
1014 "%{!M:%{!MM:%{!E:%{!S:as %(asm_debug) %(asm_options) %i %A }}}}", 0, 0, 0},
1015 {".sx", "@assembler-with-cpp", 0, 0, 0},
1016 {".S", "@assembler-with-cpp", 0, 0, 0},
1017 {"@assembler-with-cpp",
1018 #ifdef AS_NEEDS_DASH_FOR_PIPED_INPUT
1019 "%(trad_capable_cpp) -lang-asm %(cpp_options) -fno-directives-only\
1020 %{E|M|MM:%(cpp_debug_options)}\
1021 %{!M:%{!MM:%{!E:%{!S:-o %|.s |\n\
1022 as %(asm_debug) %(asm_options) %|.s %A }}}}"
1023 #else
1024 "%(trad_capable_cpp) -lang-asm %(cpp_options) -fno-directives-only\
1025 %{E|M|MM:%(cpp_debug_options)}\
1026 %{!M:%{!MM:%{!E:%{!S:-o %|.s |\n\
1027 as %(asm_debug) %(asm_options) %m.s %A }}}}"
1028 #endif
1029 , 0, 0, 0},
1030
1031 #include "specs.h"
1032 /* Mark end of table. */
1033 {0, 0, 0, 0, 0}
1034 };
1035
1036 /* Number of elements in default_compilers, not counting the terminator. */
1037
1038 static const int n_default_compilers = ARRAY_SIZE (default_compilers) - 1;
1039
1040 typedef char *char_p; /* For DEF_VEC_P. */
1041
1042 /* A vector of options to give to the linker.
1043 These options are accumulated by %x,
1044 and substituted into the linker command with %X. */
1045 static vec<char_p> linker_options;
1046
1047 /* A vector of options to give to the assembler.
1048 These options are accumulated by -Wa,
1049 and substituted into the assembler command with %Y. */
1050 static vec<char_p> assembler_options;
1051
1052 /* A vector of options to give to the preprocessor.
1053 These options are accumulated by -Wp,
1054 and substituted into the preprocessor command with %Z. */
1055 static vec<char_p> preprocessor_options;
1056 \f
1057 static char *
1058 skip_whitespace (char *p)
1059 {
1060 while (1)
1061 {
1062 /* A fully-blank line is a delimiter in the SPEC file and shouldn't
1063 be considered whitespace. */
1064 if (p[0] == '\n' && p[1] == '\n' && p[2] == '\n')
1065 return p + 1;
1066 else if (*p == '\n' || *p == ' ' || *p == '\t')
1067 p++;
1068 else if (*p == '#')
1069 {
1070 while (*p != '\n')
1071 p++;
1072 p++;
1073 }
1074 else
1075 break;
1076 }
1077
1078 return p;
1079 }
1080 /* Structures to keep track of prefixes to try when looking for files. */
1081
1082 struct prefix_list
1083 {
1084 const char *prefix; /* String to prepend to the path. */
1085 struct prefix_list *next; /* Next in linked list. */
1086 int require_machine_suffix; /* Don't use without machine_suffix. */
1087 /* 2 means try both machine_suffix and just_machine_suffix. */
1088 int priority; /* Sort key - priority within list. */
1089 int os_multilib; /* 1 if OS multilib scheme should be used,
1090 0 for GCC multilib scheme. */
1091 };
1092
1093 struct path_prefix
1094 {
1095 struct prefix_list *plist; /* List of prefixes to try */
1096 int max_len; /* Max length of a prefix in PLIST */
1097 const char *name; /* Name of this list (used in config stuff) */
1098 };
1099
1100 /* List of prefixes to try when looking for executables. */
1101
1102 static struct path_prefix exec_prefixes = { 0, 0, "exec" };
1103
1104 /* List of prefixes to try when looking for startup (crt0) files. */
1105
1106 static struct path_prefix startfile_prefixes = { 0, 0, "startfile" };
1107
1108 /* List of prefixes to try when looking for include files. */
1109
1110 static struct path_prefix include_prefixes = { 0, 0, "include" };
1111
1112 /* Suffix to attach to directories searched for commands.
1113 This looks like `MACHINE/VERSION/'. */
1114
1115 static const char *machine_suffix = 0;
1116
1117 /* Suffix to attach to directories searched for commands.
1118 This is just `MACHINE/'. */
1119
1120 static const char *just_machine_suffix = 0;
1121
1122 /* Adjusted value of GCC_EXEC_PREFIX envvar. */
1123
1124 static const char *gcc_exec_prefix;
1125
1126 /* Adjusted value of standard_libexec_prefix. */
1127
1128 static const char *gcc_libexec_prefix;
1129
1130 /* Default prefixes to attach to command names. */
1131
1132 #ifndef STANDARD_STARTFILE_PREFIX_1
1133 #define STANDARD_STARTFILE_PREFIX_1 "/lib/"
1134 #endif
1135 #ifndef STANDARD_STARTFILE_PREFIX_2
1136 #define STANDARD_STARTFILE_PREFIX_2 "/usr/lib/"
1137 #endif
1138
1139 #ifdef CROSS_DIRECTORY_STRUCTURE /* Don't use these prefixes for a cross compiler. */
1140 #undef MD_EXEC_PREFIX
1141 #undef MD_STARTFILE_PREFIX
1142 #undef MD_STARTFILE_PREFIX_1
1143 #endif
1144
1145 /* If no prefixes defined, use the null string, which will disable them. */
1146 #ifndef MD_EXEC_PREFIX
1147 #define MD_EXEC_PREFIX ""
1148 #endif
1149 #ifndef MD_STARTFILE_PREFIX
1150 #define MD_STARTFILE_PREFIX ""
1151 #endif
1152 #ifndef MD_STARTFILE_PREFIX_1
1153 #define MD_STARTFILE_PREFIX_1 ""
1154 #endif
1155
1156 /* These directories are locations set at configure-time based on the
1157 --prefix option provided to configure. Their initializers are
1158 defined in Makefile.in. These paths are not *directly* used when
1159 gcc_exec_prefix is set because, in that case, we know where the
1160 compiler has been installed, and use paths relative to that
1161 location instead. */
1162 static const char *const standard_exec_prefix = STANDARD_EXEC_PREFIX;
1163 static const char *const standard_libexec_prefix = STANDARD_LIBEXEC_PREFIX;
1164 static const char *const standard_bindir_prefix = STANDARD_BINDIR_PREFIX;
1165 static const char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
1166
1167 /* For native compilers, these are well-known paths containing
1168 components that may be provided by the system. For cross
1169 compilers, these paths are not used. */
1170 static const char *md_exec_prefix = MD_EXEC_PREFIX;
1171 static const char *md_startfile_prefix = MD_STARTFILE_PREFIX;
1172 static const char *md_startfile_prefix_1 = MD_STARTFILE_PREFIX_1;
1173 static const char *const standard_startfile_prefix_1
1174 = STANDARD_STARTFILE_PREFIX_1;
1175 static const char *const standard_startfile_prefix_2
1176 = STANDARD_STARTFILE_PREFIX_2;
1177
1178 /* A relative path to be used in finding the location of tools
1179 relative to the driver. */
1180 static const char *const tooldir_base_prefix = TOOLDIR_BASE_PREFIX;
1181
1182 /* Subdirectory to use for locating libraries. Set by
1183 set_multilib_dir based on the compilation options. */
1184
1185 static const char *multilib_dir;
1186
1187 /* Subdirectory to use for locating libraries in OS conventions. Set by
1188 set_multilib_dir based on the compilation options. */
1189
1190 static const char *multilib_os_dir;
1191
1192 /* Subdirectory to use for locating libraries in multiarch conventions. Set by
1193 set_multilib_dir based on the compilation options. */
1194
1195 static const char *multiarch_dir;
1196 \f
1197 /* Structure to keep track of the specs that have been defined so far.
1198 These are accessed using %(specname) in a compiler or link
1199 spec. */
1200
1201 struct spec_list
1202 {
1203 /* The following 2 fields must be first */
1204 /* to allow EXTRA_SPECS to be initialized */
1205 const char *name; /* name of the spec. */
1206 const char *ptr; /* available ptr if no static pointer */
1207
1208 /* The following fields are not initialized */
1209 /* by EXTRA_SPECS */
1210 const char **ptr_spec; /* pointer to the spec itself. */
1211 struct spec_list *next; /* Next spec in linked list. */
1212 int name_len; /* length of the name */
1213 bool user_p; /* whether string come from file spec. */
1214 bool alloc_p; /* whether string was allocated */
1215 };
1216
1217 #define INIT_STATIC_SPEC(NAME,PTR) \
1218 { NAME, NULL, PTR, (struct spec_list *) 0, sizeof (NAME) - 1, false, false }
1219
1220 /* List of statically defined specs. */
1221 static struct spec_list static_specs[] =
1222 {
1223 INIT_STATIC_SPEC ("asm", &asm_spec),
1224 INIT_STATIC_SPEC ("asm_debug", &asm_debug),
1225 INIT_STATIC_SPEC ("asm_final", &asm_final_spec),
1226 INIT_STATIC_SPEC ("asm_options", &asm_options),
1227 INIT_STATIC_SPEC ("invoke_as", &invoke_as),
1228 INIT_STATIC_SPEC ("cpp", &cpp_spec),
1229 INIT_STATIC_SPEC ("cpp_options", &cpp_options),
1230 INIT_STATIC_SPEC ("cpp_debug_options", &cpp_debug_options),
1231 INIT_STATIC_SPEC ("cpp_unique_options", &cpp_unique_options),
1232 INIT_STATIC_SPEC ("trad_capable_cpp", &trad_capable_cpp),
1233 INIT_STATIC_SPEC ("cc1", &cc1_spec),
1234 INIT_STATIC_SPEC ("cc1_options", &cc1_options),
1235 INIT_STATIC_SPEC ("cc1plus", &cc1plus_spec),
1236 INIT_STATIC_SPEC ("link_gcc_c_sequence", &link_gcc_c_sequence_spec),
1237 INIT_STATIC_SPEC ("link_ssp", &link_ssp_spec),
1238 INIT_STATIC_SPEC ("endfile", &endfile_spec),
1239 INIT_STATIC_SPEC ("link", &link_spec),
1240 INIT_STATIC_SPEC ("lib", &lib_spec),
1241 INIT_STATIC_SPEC ("mfwrap", &mfwrap_spec),
1242 INIT_STATIC_SPEC ("mflib", &mflib_spec),
1243 INIT_STATIC_SPEC ("link_gomp", &link_gomp_spec),
1244 INIT_STATIC_SPEC ("libgcc", &libgcc_spec),
1245 INIT_STATIC_SPEC ("startfile", &startfile_spec),
1246 INIT_STATIC_SPEC ("cross_compile", &cross_compile),
1247 INIT_STATIC_SPEC ("version", &compiler_version),
1248 INIT_STATIC_SPEC ("multilib", &multilib_select),
1249 INIT_STATIC_SPEC ("multilib_defaults", &multilib_defaults),
1250 INIT_STATIC_SPEC ("multilib_extra", &multilib_extra),
1251 INIT_STATIC_SPEC ("multilib_matches", &multilib_matches),
1252 INIT_STATIC_SPEC ("multilib_exclusions", &multilib_exclusions),
1253 INIT_STATIC_SPEC ("multilib_options", &multilib_options),
1254 INIT_STATIC_SPEC ("linker", &linker_name_spec),
1255 INIT_STATIC_SPEC ("linker_plugin_file", &linker_plugin_file_spec),
1256 INIT_STATIC_SPEC ("lto_wrapper", &lto_wrapper_spec),
1257 INIT_STATIC_SPEC ("lto_gcc", &lto_gcc_spec),
1258 INIT_STATIC_SPEC ("link_libgcc", &link_libgcc_spec),
1259 INIT_STATIC_SPEC ("md_exec_prefix", &md_exec_prefix),
1260 INIT_STATIC_SPEC ("md_startfile_prefix", &md_startfile_prefix),
1261 INIT_STATIC_SPEC ("md_startfile_prefix_1", &md_startfile_prefix_1),
1262 INIT_STATIC_SPEC ("startfile_prefix_spec", &startfile_prefix_spec),
1263 INIT_STATIC_SPEC ("sysroot_spec", &sysroot_spec),
1264 INIT_STATIC_SPEC ("sysroot_suffix_spec", &sysroot_suffix_spec),
1265 INIT_STATIC_SPEC ("sysroot_hdrs_suffix_spec", &sysroot_hdrs_suffix_spec),
1266 INIT_STATIC_SPEC ("self_spec", &self_spec),
1267 };
1268
1269 #ifdef EXTRA_SPECS /* additional specs needed */
1270 /* Structure to keep track of just the first two args of a spec_list.
1271 That is all that the EXTRA_SPECS macro gives us. */
1272 struct spec_list_1
1273 {
1274 const char *const name;
1275 const char *const ptr;
1276 };
1277
1278 static const struct spec_list_1 extra_specs_1[] = { EXTRA_SPECS };
1279 static struct spec_list *extra_specs = (struct spec_list *) 0;
1280 #endif
1281
1282 /* List of dynamically allocates specs that have been defined so far. */
1283
1284 static struct spec_list *specs = (struct spec_list *) 0;
1285 \f
1286 /* List of static spec functions. */
1287
1288 static const struct spec_function static_spec_functions[] =
1289 {
1290 { "getenv", getenv_spec_function },
1291 { "if-exists", if_exists_spec_function },
1292 { "if-exists-else", if_exists_else_spec_function },
1293 { "replace-outfile", replace_outfile_spec_function },
1294 { "remove-outfile", remove_outfile_spec_function },
1295 { "version-compare", version_compare_spec_function },
1296 { "include", include_spec_function },
1297 { "find-file", find_file_spec_function },
1298 { "find-plugindir", find_plugindir_spec_function },
1299 { "print-asm-header", print_asm_header_spec_function },
1300 { "compare-debug-dump-opt", compare_debug_dump_opt_spec_function },
1301 { "compare-debug-self-opt", compare_debug_self_opt_spec_function },
1302 { "compare-debug-auxbase-opt", compare_debug_auxbase_opt_spec_function },
1303 { "pass-through-libs", pass_through_libs_spec_func },
1304 { "replace-extension", replace_extension_spec_func },
1305 #ifdef EXTRA_SPEC_FUNCTIONS
1306 EXTRA_SPEC_FUNCTIONS
1307 #endif
1308 { 0, 0 }
1309 };
1310
1311 static int processing_spec_function;
1312 \f
1313 /* Add appropriate libgcc specs to OBSTACK, taking into account
1314 various permutations of -shared-libgcc, -shared, and such. */
1315
1316 #if defined(ENABLE_SHARED_LIBGCC) && !defined(REAL_LIBGCC_SPEC)
1317
1318 #ifndef USE_LD_AS_NEEDED
1319 #define USE_LD_AS_NEEDED 0
1320 #endif
1321
1322 static void
1323 init_gcc_specs (struct obstack *obstack, const char *shared_name,
1324 const char *static_name, const char *eh_name)
1325 {
1326 char *buf;
1327
1328 buf = concat ("%{static|static-libgcc:", static_name, " ", eh_name, "}"
1329 "%{!static:%{!static-libgcc:"
1330 #if USE_LD_AS_NEEDED
1331 "%{!shared-libgcc:",
1332 static_name, " --as-needed ", shared_name, " --no-as-needed"
1333 "}"
1334 "%{shared-libgcc:",
1335 shared_name, "%{!shared: ", static_name, "}"
1336 "}"
1337 #else
1338 "%{!shared:"
1339 "%{!shared-libgcc:", static_name, " ", eh_name, "}"
1340 "%{shared-libgcc:", shared_name, " ", static_name, "}"
1341 "}"
1342 #ifdef LINK_EH_SPEC
1343 "%{shared:"
1344 "%{shared-libgcc:", shared_name, "}"
1345 "%{!shared-libgcc:", static_name, "}"
1346 "}"
1347 #else
1348 "%{shared:", shared_name, "}"
1349 #endif
1350 #endif
1351 "}}", NULL);
1352
1353 obstack_grow (obstack, buf, strlen (buf));
1354 free (buf);
1355 }
1356 #endif /* ENABLE_SHARED_LIBGCC */
1357
1358 /* Initialize the specs lookup routines. */
1359
1360 static void
1361 init_spec (void)
1362 {
1363 struct spec_list *next = (struct spec_list *) 0;
1364 struct spec_list *sl = (struct spec_list *) 0;
1365 int i;
1366
1367 if (specs)
1368 return; /* Already initialized. */
1369
1370 if (verbose_flag)
1371 fnotice (stderr, "Using built-in specs.\n");
1372
1373 #ifdef EXTRA_SPECS
1374 extra_specs = XCNEWVEC (struct spec_list, ARRAY_SIZE (extra_specs_1));
1375
1376 for (i = ARRAY_SIZE (extra_specs_1) - 1; i >= 0; i--)
1377 {
1378 sl = &extra_specs[i];
1379 sl->name = extra_specs_1[i].name;
1380 sl->ptr = extra_specs_1[i].ptr;
1381 sl->next = next;
1382 sl->name_len = strlen (sl->name);
1383 sl->ptr_spec = &sl->ptr;
1384 next = sl;
1385 }
1386 #endif
1387
1388 for (i = ARRAY_SIZE (static_specs) - 1; i >= 0; i--)
1389 {
1390 sl = &static_specs[i];
1391 sl->next = next;
1392 next = sl;
1393 }
1394
1395 #if defined(ENABLE_SHARED_LIBGCC) && !defined(REAL_LIBGCC_SPEC)
1396 /* ??? If neither -shared-libgcc nor --static-libgcc was
1397 seen, then we should be making an educated guess. Some proposed
1398 heuristics for ELF include:
1399
1400 (1) If "-Wl,--export-dynamic", then it's a fair bet that the
1401 program will be doing dynamic loading, which will likely
1402 need the shared libgcc.
1403
1404 (2) If "-ldl", then it's also a fair bet that we're doing
1405 dynamic loading.
1406
1407 (3) For each ET_DYN we're linking against (either through -lfoo
1408 or /some/path/foo.so), check to see whether it or one of
1409 its dependencies depends on a shared libgcc.
1410
1411 (4) If "-shared"
1412
1413 If the runtime is fixed to look for program headers instead
1414 of calling __register_frame_info at all, for each object,
1415 use the shared libgcc if any EH symbol referenced.
1416
1417 If crtstuff is fixed to not invoke __register_frame_info
1418 automatically, for each object, use the shared libgcc if
1419 any non-empty unwind section found.
1420
1421 Doing any of this probably requires invoking an external program to
1422 do the actual object file scanning. */
1423 {
1424 const char *p = libgcc_spec;
1425 int in_sep = 1;
1426
1427 /* Transform the extant libgcc_spec into one that uses the shared libgcc
1428 when given the proper command line arguments. */
1429 while (*p)
1430 {
1431 if (in_sep && *p == '-' && strncmp (p, "-lgcc", 5) == 0)
1432 {
1433 init_gcc_specs (&obstack,
1434 "-lgcc_s"
1435 #ifdef USE_LIBUNWIND_EXCEPTIONS
1436 " -lunwind"
1437 #endif
1438 ,
1439 "-lgcc",
1440 "-lgcc_eh"
1441 #ifdef USE_LIBUNWIND_EXCEPTIONS
1442 # ifdef HAVE_LD_STATIC_DYNAMIC
1443 " %{!static:" LD_STATIC_OPTION "} -lunwind"
1444 " %{!static:" LD_DYNAMIC_OPTION "}"
1445 # else
1446 " -lunwind"
1447 # endif
1448 #endif
1449 );
1450
1451 p += 5;
1452 in_sep = 0;
1453 }
1454 else if (in_sep && *p == 'l' && strncmp (p, "libgcc.a%s", 10) == 0)
1455 {
1456 /* Ug. We don't know shared library extensions. Hope that
1457 systems that use this form don't do shared libraries. */
1458 init_gcc_specs (&obstack,
1459 "-lgcc_s",
1460 "libgcc.a%s",
1461 "libgcc_eh.a%s"
1462 #ifdef USE_LIBUNWIND_EXCEPTIONS
1463 " -lunwind"
1464 #endif
1465 );
1466 p += 10;
1467 in_sep = 0;
1468 }
1469 else
1470 {
1471 obstack_1grow (&obstack, *p);
1472 in_sep = (*p == ' ');
1473 p += 1;
1474 }
1475 }
1476
1477 obstack_1grow (&obstack, '\0');
1478 libgcc_spec = XOBFINISH (&obstack, const char *);
1479 }
1480 #endif
1481 #ifdef USE_AS_TRADITIONAL_FORMAT
1482 /* Prepend "--traditional-format" to whatever asm_spec we had before. */
1483 {
1484 static const char tf[] = "--traditional-format ";
1485 obstack_grow (&obstack, tf, sizeof(tf) - 1);
1486 obstack_grow0 (&obstack, asm_spec, strlen (asm_spec));
1487 asm_spec = XOBFINISH (&obstack, const char *);
1488 }
1489 #endif
1490
1491 #if defined LINK_EH_SPEC || defined LINK_BUILDID_SPEC || \
1492 defined LINKER_HASH_STYLE
1493 # ifdef LINK_BUILDID_SPEC
1494 /* Prepend LINK_BUILDID_SPEC to whatever link_spec we had before. */
1495 obstack_grow (&obstack, LINK_BUILDID_SPEC, sizeof(LINK_BUILDID_SPEC) - 1);
1496 # endif
1497 # ifdef LINK_EH_SPEC
1498 /* Prepend LINK_EH_SPEC to whatever link_spec we had before. */
1499 obstack_grow (&obstack, LINK_EH_SPEC, sizeof(LINK_EH_SPEC) - 1);
1500 # endif
1501 # ifdef LINKER_HASH_STYLE
1502 /* Prepend --hash-style=LINKER_HASH_STYLE to whatever link_spec we had
1503 before. */
1504 {
1505 static const char hash_style[] = "--hash-style=";
1506 obstack_grow (&obstack, hash_style, sizeof(hash_style) - 1);
1507 obstack_grow (&obstack, LINKER_HASH_STYLE, sizeof(LINKER_HASH_STYLE) - 1);
1508 obstack_1grow (&obstack, ' ');
1509 }
1510 # endif
1511 obstack_grow0 (&obstack, link_spec, strlen (link_spec));
1512 link_spec = XOBFINISH (&obstack, const char *);
1513 #endif
1514
1515 specs = sl;
1516 }
1517 \f
1518 /* Change the value of spec NAME to SPEC. If SPEC is empty, then the spec is
1519 removed; If the spec starts with a + then SPEC is added to the end of the
1520 current spec. */
1521
1522 static void
1523 set_spec (const char *name, const char *spec, bool user_p)
1524 {
1525 struct spec_list *sl;
1526 const char *old_spec;
1527 int name_len = strlen (name);
1528 int i;
1529
1530 /* If this is the first call, initialize the statically allocated specs. */
1531 if (!specs)
1532 {
1533 struct spec_list *next = (struct spec_list *) 0;
1534 for (i = ARRAY_SIZE (static_specs) - 1; i >= 0; i--)
1535 {
1536 sl = &static_specs[i];
1537 sl->next = next;
1538 next = sl;
1539 }
1540 specs = sl;
1541 }
1542
1543 /* See if the spec already exists. */
1544 for (sl = specs; sl; sl = sl->next)
1545 if (name_len == sl->name_len && !strcmp (sl->name, name))
1546 break;
1547
1548 if (!sl)
1549 {
1550 /* Not found - make it. */
1551 sl = XNEW (struct spec_list);
1552 sl->name = xstrdup (name);
1553 sl->name_len = name_len;
1554 sl->ptr_spec = &sl->ptr;
1555 sl->alloc_p = 0;
1556 *(sl->ptr_spec) = "";
1557 sl->next = specs;
1558 specs = sl;
1559 }
1560
1561 old_spec = *(sl->ptr_spec);
1562 *(sl->ptr_spec) = ((spec[0] == '+' && ISSPACE ((unsigned char)spec[1]))
1563 ? concat (old_spec, spec + 1, NULL)
1564 : xstrdup (spec));
1565
1566 #ifdef DEBUG_SPECS
1567 if (verbose_flag)
1568 fnotice (stderr, "Setting spec %s to '%s'\n\n", name, *(sl->ptr_spec));
1569 #endif
1570
1571 /* Free the old spec. */
1572 if (old_spec && sl->alloc_p)
1573 free (CONST_CAST(char *, old_spec));
1574
1575 sl->user_p = user_p;
1576 sl->alloc_p = true;
1577 }
1578 \f
1579 /* Accumulate a command (program name and args), and run it. */
1580
1581 typedef const char *const_char_p; /* For DEF_VEC_P. */
1582
1583 /* Vector of pointers to arguments in the current line of specifications. */
1584
1585 static vec<const_char_p> argbuf;
1586
1587 /* Position in the argbuf vector containing the name of the output file
1588 (the value associated with the "-o" flag). */
1589
1590 static int have_o_argbuf_index = 0;
1591
1592 /* Were the options -c, -S or -E passed. */
1593 static int have_c = 0;
1594
1595 /* Was the option -o passed. */
1596 static int have_o = 0;
1597
1598 /* This is the list of suffixes and codes (%g/%u/%U/%j) and the associated
1599 temp file. If the HOST_BIT_BUCKET is used for %j, no entry is made for
1600 it here. */
1601
1602 static struct temp_name {
1603 const char *suffix; /* suffix associated with the code. */
1604 int length; /* strlen (suffix). */
1605 int unique; /* Indicates whether %g or %u/%U was used. */
1606 const char *filename; /* associated filename. */
1607 int filename_length; /* strlen (filename). */
1608 struct temp_name *next;
1609 } *temp_names;
1610
1611 /* Number of commands executed so far. */
1612
1613 static int execution_count;
1614
1615 /* Number of commands that exited with a signal. */
1616
1617 static int signal_count;
1618 \f
1619 /* Allocate the argument vector. */
1620
1621 static void
1622 alloc_args (void)
1623 {
1624 argbuf.create (10);
1625 }
1626
1627 /* Clear out the vector of arguments (after a command is executed). */
1628
1629 static void
1630 clear_args (void)
1631 {
1632 argbuf.truncate (0);
1633 }
1634
1635 /* Add one argument to the vector at the end.
1636 This is done when a space is seen or at the end of the line.
1637 If DELETE_ALWAYS is nonzero, the arg is a filename
1638 and the file should be deleted eventually.
1639 If DELETE_FAILURE is nonzero, the arg is a filename
1640 and the file should be deleted if this compilation fails. */
1641
1642 static void
1643 store_arg (const char *arg, int delete_always, int delete_failure)
1644 {
1645 argbuf.safe_push (arg);
1646
1647 if (strcmp (arg, "-o") == 0)
1648 have_o_argbuf_index = argbuf.length ();
1649 if (delete_always || delete_failure)
1650 {
1651 const char *p;
1652 /* If the temporary file we should delete is specified as
1653 part of a joined argument extract the filename. */
1654 if (arg[0] == '-'
1655 && (p = strrchr (arg, '=')))
1656 arg = p + 1;
1657 record_temp_file (arg, delete_always, delete_failure);
1658 }
1659 }
1660 \f
1661 /* Load specs from a file name named FILENAME, replacing occurrences of
1662 various different types of line-endings, \r\n, \n\r and just \r, with
1663 a single \n. */
1664
1665 static char *
1666 load_specs (const char *filename)
1667 {
1668 int desc;
1669 int readlen;
1670 struct stat statbuf;
1671 char *buffer;
1672 char *buffer_p;
1673 char *specs;
1674 char *specs_p;
1675
1676 if (verbose_flag)
1677 fnotice (stderr, "Reading specs from %s\n", filename);
1678
1679 /* Open and stat the file. */
1680 desc = open (filename, O_RDONLY, 0);
1681 if (desc < 0)
1682 pfatal_with_name (filename);
1683 if (stat (filename, &statbuf) < 0)
1684 pfatal_with_name (filename);
1685
1686 /* Read contents of file into BUFFER. */
1687 buffer = XNEWVEC (char, statbuf.st_size + 1);
1688 readlen = read (desc, buffer, (unsigned) statbuf.st_size);
1689 if (readlen < 0)
1690 pfatal_with_name (filename);
1691 buffer[readlen] = 0;
1692 close (desc);
1693
1694 specs = XNEWVEC (char, readlen + 1);
1695 specs_p = specs;
1696 for (buffer_p = buffer; buffer_p && *buffer_p; buffer_p++)
1697 {
1698 int skip = 0;
1699 char c = *buffer_p;
1700 if (c == '\r')
1701 {
1702 if (buffer_p > buffer && *(buffer_p - 1) == '\n') /* \n\r */
1703 skip = 1;
1704 else if (*(buffer_p + 1) == '\n') /* \r\n */
1705 skip = 1;
1706 else /* \r */
1707 c = '\n';
1708 }
1709 if (! skip)
1710 *specs_p++ = c;
1711 }
1712 *specs_p = '\0';
1713
1714 free (buffer);
1715 return (specs);
1716 }
1717
1718 /* Read compilation specs from a file named FILENAME,
1719 replacing the default ones.
1720
1721 A suffix which starts with `*' is a definition for
1722 one of the machine-specific sub-specs. The "suffix" should be
1723 *asm, *cc1, *cpp, *link, *startfile, etc.
1724 The corresponding spec is stored in asm_spec, etc.,
1725 rather than in the `compilers' vector.
1726
1727 Anything invalid in the file is a fatal error. */
1728
1729 static void
1730 read_specs (const char *filename, bool main_p, bool user_p)
1731 {
1732 char *buffer;
1733 char *p;
1734
1735 buffer = load_specs (filename);
1736
1737 /* Scan BUFFER for specs, putting them in the vector. */
1738 p = buffer;
1739 while (1)
1740 {
1741 char *suffix;
1742 char *spec;
1743 char *in, *out, *p1, *p2, *p3;
1744
1745 /* Advance P in BUFFER to the next nonblank nocomment line. */
1746 p = skip_whitespace (p);
1747 if (*p == 0)
1748 break;
1749
1750 /* Is this a special command that starts with '%'? */
1751 /* Don't allow this for the main specs file, since it would
1752 encourage people to overwrite it. */
1753 if (*p == '%' && !main_p)
1754 {
1755 p1 = p;
1756 while (*p && *p != '\n')
1757 p++;
1758
1759 /* Skip '\n'. */
1760 p++;
1761
1762 if (!strncmp (p1, "%include", sizeof ("%include") - 1)
1763 && (p1[sizeof "%include" - 1] == ' '
1764 || p1[sizeof "%include" - 1] == '\t'))
1765 {
1766 char *new_filename;
1767
1768 p1 += sizeof ("%include");
1769 while (*p1 == ' ' || *p1 == '\t')
1770 p1++;
1771
1772 if (*p1++ != '<' || p[-2] != '>')
1773 fatal_error ("specs %%include syntax malformed after "
1774 "%ld characters",
1775 (long) (p1 - buffer + 1));
1776
1777 p[-2] = '\0';
1778 new_filename = find_a_file (&startfile_prefixes, p1, R_OK, true);
1779 read_specs (new_filename ? new_filename : p1, false, user_p);
1780 continue;
1781 }
1782 else if (!strncmp (p1, "%include_noerr", sizeof "%include_noerr" - 1)
1783 && (p1[sizeof "%include_noerr" - 1] == ' '
1784 || p1[sizeof "%include_noerr" - 1] == '\t'))
1785 {
1786 char *new_filename;
1787
1788 p1 += sizeof "%include_noerr";
1789 while (*p1 == ' ' || *p1 == '\t')
1790 p1++;
1791
1792 if (*p1++ != '<' || p[-2] != '>')
1793 fatal_error ("specs %%include syntax malformed after "
1794 "%ld characters",
1795 (long) (p1 - buffer + 1));
1796
1797 p[-2] = '\0';
1798 new_filename = find_a_file (&startfile_prefixes, p1, R_OK, true);
1799 if (new_filename)
1800 read_specs (new_filename, false, user_p);
1801 else if (verbose_flag)
1802 fnotice (stderr, "could not find specs file %s\n", p1);
1803 continue;
1804 }
1805 else if (!strncmp (p1, "%rename", sizeof "%rename" - 1)
1806 && (p1[sizeof "%rename" - 1] == ' '
1807 || p1[sizeof "%rename" - 1] == '\t'))
1808 {
1809 int name_len;
1810 struct spec_list *sl;
1811 struct spec_list *newsl;
1812
1813 /* Get original name. */
1814 p1 += sizeof "%rename";
1815 while (*p1 == ' ' || *p1 == '\t')
1816 p1++;
1817
1818 if (! ISALPHA ((unsigned char) *p1))
1819 fatal_error ("specs %%rename syntax malformed after "
1820 "%ld characters",
1821 (long) (p1 - buffer));
1822
1823 p2 = p1;
1824 while (*p2 && !ISSPACE ((unsigned char) *p2))
1825 p2++;
1826
1827 if (*p2 != ' ' && *p2 != '\t')
1828 fatal_error ("specs %%rename syntax malformed after "
1829 "%ld characters",
1830 (long) (p2 - buffer));
1831
1832 name_len = p2 - p1;
1833 *p2++ = '\0';
1834 while (*p2 == ' ' || *p2 == '\t')
1835 p2++;
1836
1837 if (! ISALPHA ((unsigned char) *p2))
1838 fatal_error ("specs %%rename syntax malformed after "
1839 "%ld characters",
1840 (long) (p2 - buffer));
1841
1842 /* Get new spec name. */
1843 p3 = p2;
1844 while (*p3 && !ISSPACE ((unsigned char) *p3))
1845 p3++;
1846
1847 if (p3 != p - 1)
1848 fatal_error ("specs %%rename syntax malformed after "
1849 "%ld characters",
1850 (long) (p3 - buffer));
1851 *p3 = '\0';
1852
1853 for (sl = specs; sl; sl = sl->next)
1854 if (name_len == sl->name_len && !strcmp (sl->name, p1))
1855 break;
1856
1857 if (!sl)
1858 fatal_error ("specs %s spec was not found to be renamed", p1);
1859
1860 if (strcmp (p1, p2) == 0)
1861 continue;
1862
1863 for (newsl = specs; newsl; newsl = newsl->next)
1864 if (strcmp (newsl->name, p2) == 0)
1865 fatal_error ("%s: attempt to rename spec %qs to "
1866 "already defined spec %qs",
1867 filename, p1, p2);
1868
1869 if (verbose_flag)
1870 {
1871 fnotice (stderr, "rename spec %s to %s\n", p1, p2);
1872 #ifdef DEBUG_SPECS
1873 fnotice (stderr, "spec is '%s'\n\n", *(sl->ptr_spec));
1874 #endif
1875 }
1876
1877 set_spec (p2, *(sl->ptr_spec), user_p);
1878 if (sl->alloc_p)
1879 free (CONST_CAST (char *, *(sl->ptr_spec)));
1880
1881 *(sl->ptr_spec) = "";
1882 sl->alloc_p = 0;
1883 continue;
1884 }
1885 else
1886 fatal_error ("specs unknown %% command after %ld characters",
1887 (long) (p1 - buffer));
1888 }
1889
1890 /* Find the colon that should end the suffix. */
1891 p1 = p;
1892 while (*p1 && *p1 != ':' && *p1 != '\n')
1893 p1++;
1894
1895 /* The colon shouldn't be missing. */
1896 if (*p1 != ':')
1897 fatal_error ("specs file malformed after %ld characters",
1898 (long) (p1 - buffer));
1899
1900 /* Skip back over trailing whitespace. */
1901 p2 = p1;
1902 while (p2 > buffer && (p2[-1] == ' ' || p2[-1] == '\t'))
1903 p2--;
1904
1905 /* Copy the suffix to a string. */
1906 suffix = save_string (p, p2 - p);
1907 /* Find the next line. */
1908 p = skip_whitespace (p1 + 1);
1909 if (p[1] == 0)
1910 fatal_error ("specs file malformed after %ld characters",
1911 (long) (p - buffer));
1912
1913 p1 = p;
1914 /* Find next blank line or end of string. */
1915 while (*p1 && !(*p1 == '\n' && (p1[1] == '\n' || p1[1] == '\0')))
1916 p1++;
1917
1918 /* Specs end at the blank line and do not include the newline. */
1919 spec = save_string (p, p1 - p);
1920 p = p1;
1921
1922 /* Delete backslash-newline sequences from the spec. */
1923 in = spec;
1924 out = spec;
1925 while (*in != 0)
1926 {
1927 if (in[0] == '\\' && in[1] == '\n')
1928 in += 2;
1929 else if (in[0] == '#')
1930 while (*in && *in != '\n')
1931 in++;
1932
1933 else
1934 *out++ = *in++;
1935 }
1936 *out = 0;
1937
1938 if (suffix[0] == '*')
1939 {
1940 if (! strcmp (suffix, "*link_command"))
1941 link_command_spec = spec;
1942 else
1943 set_spec (suffix + 1, spec, user_p);
1944 }
1945 else
1946 {
1947 /* Add this pair to the vector. */
1948 compilers
1949 = XRESIZEVEC (struct compiler, compilers, n_compilers + 2);
1950
1951 compilers[n_compilers].suffix = suffix;
1952 compilers[n_compilers].spec = spec;
1953 n_compilers++;
1954 memset (&compilers[n_compilers], 0, sizeof compilers[n_compilers]);
1955 }
1956
1957 if (*suffix == 0)
1958 link_command_spec = spec;
1959 }
1960
1961 if (link_command_spec == 0)
1962 fatal_error ("spec file has no spec for linking");
1963 }
1964 \f
1965 /* Record the names of temporary files we tell compilers to write,
1966 and delete them at the end of the run. */
1967
1968 /* This is the common prefix we use to make temp file names.
1969 It is chosen once for each run of this program.
1970 It is substituted into a spec by %g or %j.
1971 Thus, all temp file names contain this prefix.
1972 In practice, all temp file names start with this prefix.
1973
1974 This prefix comes from the envvar TMPDIR if it is defined;
1975 otherwise, from the P_tmpdir macro if that is defined;
1976 otherwise, in /usr/tmp or /tmp;
1977 or finally the current directory if all else fails. */
1978
1979 static const char *temp_filename;
1980
1981 /* Length of the prefix. */
1982
1983 static int temp_filename_length;
1984
1985 /* Define the list of temporary files to delete. */
1986
1987 struct temp_file
1988 {
1989 const char *name;
1990 struct temp_file *next;
1991 };
1992
1993 /* Queue of files to delete on success or failure of compilation. */
1994 static struct temp_file *always_delete_queue;
1995 /* Queue of files to delete on failure of compilation. */
1996 static struct temp_file *failure_delete_queue;
1997
1998 /* Record FILENAME as a file to be deleted automatically.
1999 ALWAYS_DELETE nonzero means delete it if all compilation succeeds;
2000 otherwise delete it in any case.
2001 FAIL_DELETE nonzero means delete it if a compilation step fails;
2002 otherwise delete it in any case. */
2003
2004 void
2005 record_temp_file (const char *filename, int always_delete, int fail_delete)
2006 {
2007 char *const name = xstrdup (filename);
2008
2009 if (always_delete)
2010 {
2011 struct temp_file *temp;
2012 for (temp = always_delete_queue; temp; temp = temp->next)
2013 if (! filename_cmp (name, temp->name))
2014 goto already1;
2015
2016 temp = XNEW (struct temp_file);
2017 temp->next = always_delete_queue;
2018 temp->name = name;
2019 always_delete_queue = temp;
2020
2021 already1:;
2022 }
2023
2024 if (fail_delete)
2025 {
2026 struct temp_file *temp;
2027 for (temp = failure_delete_queue; temp; temp = temp->next)
2028 if (! filename_cmp (name, temp->name))
2029 {
2030 free (name);
2031 goto already2;
2032 }
2033
2034 temp = XNEW (struct temp_file);
2035 temp->next = failure_delete_queue;
2036 temp->name = name;
2037 failure_delete_queue = temp;
2038
2039 already2:;
2040 }
2041 }
2042
2043 /* Delete all the temporary files whose names we previously recorded. */
2044
2045 #ifndef DELETE_IF_ORDINARY
2046 #define DELETE_IF_ORDINARY(NAME,ST,VERBOSE_FLAG) \
2047 do \
2048 { \
2049 if (stat (NAME, &ST) >= 0 && S_ISREG (ST.st_mode)) \
2050 if (unlink (NAME) < 0) \
2051 if (VERBOSE_FLAG) \
2052 perror_with_name (NAME); \
2053 } while (0)
2054 #endif
2055
2056 static void
2057 delete_if_ordinary (const char *name)
2058 {
2059 struct stat st;
2060 #ifdef DEBUG
2061 int i, c;
2062
2063 printf ("Delete %s? (y or n) ", name);
2064 fflush (stdout);
2065 i = getchar ();
2066 if (i != '\n')
2067 while ((c = getchar ()) != '\n' && c != EOF)
2068 ;
2069
2070 if (i == 'y' || i == 'Y')
2071 #endif /* DEBUG */
2072 DELETE_IF_ORDINARY (name, st, verbose_flag);
2073 }
2074
2075 static void
2076 delete_temp_files (void)
2077 {
2078 struct temp_file *temp;
2079
2080 for (temp = always_delete_queue; temp; temp = temp->next)
2081 delete_if_ordinary (temp->name);
2082 always_delete_queue = 0;
2083 }
2084
2085 /* Delete all the files to be deleted on error. */
2086
2087 static void
2088 delete_failure_queue (void)
2089 {
2090 struct temp_file *temp;
2091
2092 for (temp = failure_delete_queue; temp; temp = temp->next)
2093 delete_if_ordinary (temp->name);
2094 }
2095
2096 static void
2097 clear_failure_queue (void)
2098 {
2099 failure_delete_queue = 0;
2100 }
2101 \f
2102 /* Call CALLBACK for each path in PATHS, breaking out early if CALLBACK
2103 returns non-NULL.
2104 If DO_MULTI is true iterate over the paths twice, first with multilib
2105 suffix then without, otherwise iterate over the paths once without
2106 adding a multilib suffix. When DO_MULTI is true, some attempt is made
2107 to avoid visiting the same path twice, but we could do better. For
2108 instance, /usr/lib/../lib is considered different from /usr/lib.
2109 At least EXTRA_SPACE chars past the end of the path passed to
2110 CALLBACK are available for use by the callback.
2111 CALLBACK_INFO allows extra parameters to be passed to CALLBACK.
2112
2113 Returns the value returned by CALLBACK. */
2114
2115 static void *
2116 for_each_path (const struct path_prefix *paths,
2117 bool do_multi,
2118 size_t extra_space,
2119 void *(*callback) (char *, void *),
2120 void *callback_info)
2121 {
2122 struct prefix_list *pl;
2123 const char *multi_dir = NULL;
2124 const char *multi_os_dir = NULL;
2125 const char *multiarch_suffix = NULL;
2126 const char *multi_suffix;
2127 const char *just_multi_suffix;
2128 char *path = NULL;
2129 void *ret = NULL;
2130 bool skip_multi_dir = false;
2131 bool skip_multi_os_dir = false;
2132
2133 multi_suffix = machine_suffix;
2134 just_multi_suffix = just_machine_suffix;
2135 if (do_multi && multilib_dir && strcmp (multilib_dir, ".") != 0)
2136 {
2137 multi_dir = concat (multilib_dir, dir_separator_str, NULL);
2138 multi_suffix = concat (multi_suffix, multi_dir, NULL);
2139 just_multi_suffix = concat (just_multi_suffix, multi_dir, NULL);
2140 }
2141 if (do_multi && multilib_os_dir && strcmp (multilib_os_dir, ".") != 0)
2142 multi_os_dir = concat (multilib_os_dir, dir_separator_str, NULL);
2143 if (multiarch_dir)
2144 multiarch_suffix = concat (multiarch_dir, dir_separator_str, NULL);
2145
2146 while (1)
2147 {
2148 size_t multi_dir_len = 0;
2149 size_t multi_os_dir_len = 0;
2150 size_t multiarch_len = 0;
2151 size_t suffix_len;
2152 size_t just_suffix_len;
2153 size_t len;
2154
2155 if (multi_dir)
2156 multi_dir_len = strlen (multi_dir);
2157 if (multi_os_dir)
2158 multi_os_dir_len = strlen (multi_os_dir);
2159 if (multiarch_suffix)
2160 multiarch_len = strlen (multiarch_suffix);
2161 suffix_len = strlen (multi_suffix);
2162 just_suffix_len = strlen (just_multi_suffix);
2163
2164 if (path == NULL)
2165 {
2166 len = paths->max_len + extra_space + 1;
2167 len += MAX (MAX (suffix_len, multi_os_dir_len), multiarch_len);
2168 path = XNEWVEC (char, len);
2169 }
2170
2171 for (pl = paths->plist; pl != 0; pl = pl->next)
2172 {
2173 len = strlen (pl->prefix);
2174 memcpy (path, pl->prefix, len);
2175
2176 /* Look first in MACHINE/VERSION subdirectory. */
2177 if (!skip_multi_dir)
2178 {
2179 memcpy (path + len, multi_suffix, suffix_len + 1);
2180 ret = callback (path, callback_info);
2181 if (ret)
2182 break;
2183 }
2184
2185 /* Some paths are tried with just the machine (ie. target)
2186 subdir. This is used for finding as, ld, etc. */
2187 if (!skip_multi_dir
2188 && pl->require_machine_suffix == 2)
2189 {
2190 memcpy (path + len, just_multi_suffix, just_suffix_len + 1);
2191 ret = callback (path, callback_info);
2192 if (ret)
2193 break;
2194 }
2195
2196 /* Now try the multiarch path. */
2197 if (!skip_multi_dir
2198 && !pl->require_machine_suffix && multiarch_dir)
2199 {
2200 memcpy (path + len, multiarch_suffix, multiarch_len + 1);
2201 ret = callback (path, callback_info);
2202 if (ret)
2203 break;
2204 }
2205
2206 /* Now try the base path. */
2207 if (!pl->require_machine_suffix
2208 && !(pl->os_multilib ? skip_multi_os_dir : skip_multi_dir))
2209 {
2210 const char *this_multi;
2211 size_t this_multi_len;
2212
2213 if (pl->os_multilib)
2214 {
2215 this_multi = multi_os_dir;
2216 this_multi_len = multi_os_dir_len;
2217 }
2218 else
2219 {
2220 this_multi = multi_dir;
2221 this_multi_len = multi_dir_len;
2222 }
2223
2224 if (this_multi_len)
2225 memcpy (path + len, this_multi, this_multi_len + 1);
2226 else
2227 path[len] = '\0';
2228
2229 ret = callback (path, callback_info);
2230 if (ret)
2231 break;
2232 }
2233 }
2234 if (pl)
2235 break;
2236
2237 if (multi_dir == NULL && multi_os_dir == NULL)
2238 break;
2239
2240 /* Run through the paths again, this time without multilibs.
2241 Don't repeat any we have already seen. */
2242 if (multi_dir)
2243 {
2244 free (CONST_CAST (char *, multi_dir));
2245 multi_dir = NULL;
2246 free (CONST_CAST (char *, multi_suffix));
2247 multi_suffix = machine_suffix;
2248 free (CONST_CAST (char *, just_multi_suffix));
2249 just_multi_suffix = just_machine_suffix;
2250 }
2251 else
2252 skip_multi_dir = true;
2253 if (multi_os_dir)
2254 {
2255 free (CONST_CAST (char *, multi_os_dir));
2256 multi_os_dir = NULL;
2257 }
2258 else
2259 skip_multi_os_dir = true;
2260 }
2261
2262 if (multi_dir)
2263 {
2264 free (CONST_CAST (char *, multi_dir));
2265 free (CONST_CAST (char *, multi_suffix));
2266 free (CONST_CAST (char *, just_multi_suffix));
2267 }
2268 if (multi_os_dir)
2269 free (CONST_CAST (char *, multi_os_dir));
2270 if (ret != path)
2271 free (path);
2272 return ret;
2273 }
2274
2275 /* Callback for build_search_list. Adds path to obstack being built. */
2276
2277 struct add_to_obstack_info {
2278 struct obstack *ob;
2279 bool check_dir;
2280 bool first_time;
2281 };
2282
2283 static void *
2284 add_to_obstack (char *path, void *data)
2285 {
2286 struct add_to_obstack_info *info = (struct add_to_obstack_info *) data;
2287
2288 if (info->check_dir && !is_directory (path, false))
2289 return NULL;
2290
2291 if (!info->first_time)
2292 obstack_1grow (info->ob, PATH_SEPARATOR);
2293
2294 obstack_grow (info->ob, path, strlen (path));
2295
2296 info->first_time = false;
2297 return NULL;
2298 }
2299
2300 /* Add or change the value of an environment variable, outputting the
2301 change to standard error if in verbose mode. */
2302 static void
2303 xputenv (const char *string)
2304 {
2305 if (verbose_flag)
2306 fnotice (stderr, "%s\n", string);
2307 putenv (CONST_CAST (char *, string));
2308 }
2309
2310 /* Build a list of search directories from PATHS.
2311 PREFIX is a string to prepend to the list.
2312 If CHECK_DIR_P is true we ensure the directory exists.
2313 If DO_MULTI is true, multilib paths are output first, then
2314 non-multilib paths.
2315 This is used mostly by putenv_from_prefixes so we use `collect_obstack'.
2316 It is also used by the --print-search-dirs flag. */
2317
2318 static char *
2319 build_search_list (const struct path_prefix *paths, const char *prefix,
2320 bool check_dir, bool do_multi)
2321 {
2322 struct add_to_obstack_info info;
2323
2324 info.ob = &collect_obstack;
2325 info.check_dir = check_dir;
2326 info.first_time = true;
2327
2328 obstack_grow (&collect_obstack, prefix, strlen (prefix));
2329 obstack_1grow (&collect_obstack, '=');
2330
2331 for_each_path (paths, do_multi, 0, add_to_obstack, &info);
2332
2333 obstack_1grow (&collect_obstack, '\0');
2334 return XOBFINISH (&collect_obstack, char *);
2335 }
2336
2337 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
2338 for collect. */
2339
2340 static void
2341 putenv_from_prefixes (const struct path_prefix *paths, const char *env_var,
2342 bool do_multi)
2343 {
2344 xputenv (build_search_list (paths, env_var, true, do_multi));
2345 }
2346 \f
2347 /* Check whether NAME can be accessed in MODE. This is like access,
2348 except that it never considers directories to be executable. */
2349
2350 static int
2351 access_check (const char *name, int mode)
2352 {
2353 if (mode == X_OK)
2354 {
2355 struct stat st;
2356
2357 if (stat (name, &st) < 0
2358 || S_ISDIR (st.st_mode))
2359 return -1;
2360 }
2361
2362 return access (name, mode);
2363 }
2364
2365 /* Callback for find_a_file. Appends the file name to the directory
2366 path. If the resulting file exists in the right mode, return the
2367 full pathname to the file. */
2368
2369 struct file_at_path_info {
2370 const char *name;
2371 const char *suffix;
2372 int name_len;
2373 int suffix_len;
2374 int mode;
2375 };
2376
2377 static void *
2378 file_at_path (char *path, void *data)
2379 {
2380 struct file_at_path_info *info = (struct file_at_path_info *) data;
2381 size_t len = strlen (path);
2382
2383 memcpy (path + len, info->name, info->name_len);
2384 len += info->name_len;
2385
2386 /* Some systems have a suffix for executable files.
2387 So try appending that first. */
2388 if (info->suffix_len)
2389 {
2390 memcpy (path + len, info->suffix, info->suffix_len + 1);
2391 if (access_check (path, info->mode) == 0)
2392 return path;
2393 }
2394
2395 path[len] = '\0';
2396 if (access_check (path, info->mode) == 0)
2397 return path;
2398
2399 return NULL;
2400 }
2401
2402 /* Search for NAME using the prefix list PREFIXES. MODE is passed to
2403 access to check permissions. If DO_MULTI is true, search multilib
2404 paths then non-multilib paths, otherwise do not search multilib paths.
2405 Return 0 if not found, otherwise return its name, allocated with malloc. */
2406
2407 static char *
2408 find_a_file (const struct path_prefix *pprefix, const char *name, int mode,
2409 bool do_multi)
2410 {
2411 struct file_at_path_info info;
2412
2413 #ifdef DEFAULT_ASSEMBLER
2414 if (! strcmp (name, "as") && access (DEFAULT_ASSEMBLER, mode) == 0)
2415 return xstrdup (DEFAULT_ASSEMBLER);
2416 #endif
2417
2418 #ifdef DEFAULT_LINKER
2419 if (! strcmp(name, "ld") && access (DEFAULT_LINKER, mode) == 0)
2420 return xstrdup (DEFAULT_LINKER);
2421 #endif
2422
2423 /* Determine the filename to execute (special case for absolute paths). */
2424
2425 if (IS_ABSOLUTE_PATH (name))
2426 {
2427 if (access (name, mode) == 0)
2428 return xstrdup (name);
2429
2430 return NULL;
2431 }
2432
2433 info.name = name;
2434 info.suffix = (mode & X_OK) != 0 ? HOST_EXECUTABLE_SUFFIX : "";
2435 info.name_len = strlen (info.name);
2436 info.suffix_len = strlen (info.suffix);
2437 info.mode = mode;
2438
2439 return (char*) for_each_path (pprefix, do_multi,
2440 info.name_len + info.suffix_len,
2441 file_at_path, &info);
2442 }
2443
2444 /* Ranking of prefixes in the sort list. -B prefixes are put before
2445 all others. */
2446
2447 enum path_prefix_priority
2448 {
2449 PREFIX_PRIORITY_B_OPT,
2450 PREFIX_PRIORITY_LAST
2451 };
2452
2453 /* Add an entry for PREFIX in PLIST. The PLIST is kept in ascending
2454 order according to PRIORITY. Within each PRIORITY, new entries are
2455 appended.
2456
2457 If WARN is nonzero, we will warn if no file is found
2458 through this prefix. WARN should point to an int
2459 which will be set to 1 if this entry is used.
2460
2461 COMPONENT is the value to be passed to update_path.
2462
2463 REQUIRE_MACHINE_SUFFIX is 1 if this prefix can't be used without
2464 the complete value of machine_suffix.
2465 2 means try both machine_suffix and just_machine_suffix. */
2466
2467 static void
2468 add_prefix (struct path_prefix *pprefix, const char *prefix,
2469 const char *component, /* enum prefix_priority */ int priority,
2470 int require_machine_suffix, int os_multilib)
2471 {
2472 struct prefix_list *pl, **prev;
2473 int len;
2474
2475 for (prev = &pprefix->plist;
2476 (*prev) != NULL && (*prev)->priority <= priority;
2477 prev = &(*prev)->next)
2478 ;
2479
2480 /* Keep track of the longest prefix. */
2481
2482 prefix = update_path (prefix, component);
2483 len = strlen (prefix);
2484 if (len > pprefix->max_len)
2485 pprefix->max_len = len;
2486
2487 pl = XNEW (struct prefix_list);
2488 pl->prefix = prefix;
2489 pl->require_machine_suffix = require_machine_suffix;
2490 pl->priority = priority;
2491 pl->os_multilib = os_multilib;
2492
2493 /* Insert after PREV. */
2494 pl->next = (*prev);
2495 (*prev) = pl;
2496 }
2497
2498 /* Same as add_prefix, but prepending target_system_root to prefix. */
2499 /* The target_system_root prefix has been relocated by gcc_exec_prefix. */
2500 static void
2501 add_sysrooted_prefix (struct path_prefix *pprefix, const char *prefix,
2502 const char *component,
2503 /* enum prefix_priority */ int priority,
2504 int require_machine_suffix, int os_multilib)
2505 {
2506 if (!IS_ABSOLUTE_PATH (prefix))
2507 fatal_error ("system path %qs is not absolute", prefix);
2508
2509 if (target_system_root)
2510 {
2511 char *sysroot_no_trailing_dir_separator = xstrdup (target_system_root);
2512 size_t sysroot_len = strlen (target_system_root);
2513
2514 if (sysroot_len > 0
2515 && target_system_root[sysroot_len - 1] == DIR_SEPARATOR)
2516 sysroot_no_trailing_dir_separator[sysroot_len - 1] = '\0';
2517
2518 if (target_sysroot_suffix)
2519 prefix = concat (sysroot_no_trailing_dir_separator,
2520 target_sysroot_suffix, prefix, NULL);
2521 else
2522 prefix = concat (sysroot_no_trailing_dir_separator, prefix, NULL);
2523
2524 free (sysroot_no_trailing_dir_separator);
2525
2526 /* We have to override this because GCC's notion of sysroot
2527 moves along with GCC. */
2528 component = "GCC";
2529 }
2530
2531 add_prefix (pprefix, prefix, component, priority,
2532 require_machine_suffix, os_multilib);
2533 }
2534 \f
2535 /* Execute the command specified by the arguments on the current line of spec.
2536 When using pipes, this includes several piped-together commands
2537 with `|' between them.
2538
2539 Return 0 if successful, -1 if failed. */
2540
2541 static int
2542 execute (void)
2543 {
2544 int i;
2545 int n_commands; /* # of command. */
2546 char *string;
2547 struct pex_obj *pex;
2548 struct command
2549 {
2550 const char *prog; /* program name. */
2551 const char **argv; /* vector of args. */
2552 };
2553 const char *arg;
2554
2555 struct command *commands; /* each command buffer with above info. */
2556
2557 gcc_assert (!processing_spec_function);
2558
2559 if (wrapper_string)
2560 {
2561 string = find_a_file (&exec_prefixes,
2562 argbuf[0], X_OK, false);
2563 if (string)
2564 argbuf[0] = string;
2565 insert_wrapper (wrapper_string);
2566 }
2567
2568 /* Count # of piped commands. */
2569 for (n_commands = 1, i = 0; argbuf.iterate (i, &arg); i++)
2570 if (strcmp (arg, "|") == 0)
2571 n_commands++;
2572
2573 /* Get storage for each command. */
2574 commands = (struct command *) alloca (n_commands * sizeof (struct command));
2575
2576 /* Split argbuf into its separate piped processes,
2577 and record info about each one.
2578 Also search for the programs that are to be run. */
2579
2580 argbuf.safe_push (0);
2581
2582 commands[0].prog = argbuf[0]; /* first command. */
2583 commands[0].argv = argbuf.address ();
2584
2585 if (!wrapper_string)
2586 {
2587 string = find_a_file (&exec_prefixes, commands[0].prog, X_OK, false);
2588 commands[0].argv[0] = (string) ? string : commands[0].argv[0];
2589 }
2590
2591 for (n_commands = 1, i = 0; argbuf.iterate (i, &arg); i++)
2592 if (arg && strcmp (arg, "|") == 0)
2593 { /* each command. */
2594 #if defined (__MSDOS__) || defined (OS2) || defined (VMS)
2595 fatal_error ("-pipe not supported");
2596 #endif
2597 argbuf[i] = 0; /* Termination of
2598 command args. */
2599 commands[n_commands].prog = argbuf[i + 1];
2600 commands[n_commands].argv
2601 = &(argbuf.address ())[i + 1];
2602 string = find_a_file (&exec_prefixes, commands[n_commands].prog,
2603 X_OK, false);
2604 if (string)
2605 commands[n_commands].argv[0] = string;
2606 n_commands++;
2607 }
2608
2609 /* If -v, print what we are about to do, and maybe query. */
2610
2611 if (verbose_flag)
2612 {
2613 /* For help listings, put a blank line between sub-processes. */
2614 if (print_help_list)
2615 fputc ('\n', stderr);
2616
2617 /* Print each piped command as a separate line. */
2618 for (i = 0; i < n_commands; i++)
2619 {
2620 const char *const *j;
2621
2622 if (verbose_only_flag)
2623 {
2624 for (j = commands[i].argv; *j; j++)
2625 {
2626 const char *p;
2627 for (p = *j; *p; ++p)
2628 if (!ISALNUM ((unsigned char) *p)
2629 && *p != '_' && *p != '/' && *p != '-' && *p != '.')
2630 break;
2631 if (*p || !*j)
2632 {
2633 fprintf (stderr, " \"");
2634 for (p = *j; *p; ++p)
2635 {
2636 if (*p == '"' || *p == '\\' || *p == '$')
2637 fputc ('\\', stderr);
2638 fputc (*p, stderr);
2639 }
2640 fputc ('"', stderr);
2641 }
2642 /* If it's empty, print "". */
2643 else if (!**j)
2644 fprintf (stderr, " \"\"");
2645 else
2646 fprintf (stderr, " %s", *j);
2647 }
2648 }
2649 else
2650 for (j = commands[i].argv; *j; j++)
2651 /* If it's empty, print "". */
2652 if (!**j)
2653 fprintf (stderr, " \"\"");
2654 else
2655 fprintf (stderr, " %s", *j);
2656
2657 /* Print a pipe symbol after all but the last command. */
2658 if (i + 1 != n_commands)
2659 fprintf (stderr, " |");
2660 fprintf (stderr, "\n");
2661 }
2662 fflush (stderr);
2663 if (verbose_only_flag != 0)
2664 {
2665 /* verbose_only_flag should act as if the spec was
2666 executed, so increment execution_count before
2667 returning. This prevents spurious warnings about
2668 unused linker input files, etc. */
2669 execution_count++;
2670 return 0;
2671 }
2672 #ifdef DEBUG
2673 fnotice (stderr, "\nGo ahead? (y or n) ");
2674 fflush (stderr);
2675 i = getchar ();
2676 if (i != '\n')
2677 while (getchar () != '\n')
2678 ;
2679
2680 if (i != 'y' && i != 'Y')
2681 return 0;
2682 #endif /* DEBUG */
2683 }
2684
2685 #ifdef ENABLE_VALGRIND_CHECKING
2686 /* Run the each command through valgrind. To simplify prepending the
2687 path to valgrind and the option "-q" (for quiet operation unless
2688 something triggers), we allocate a separate argv array. */
2689
2690 for (i = 0; i < n_commands; i++)
2691 {
2692 const char **argv;
2693 int argc;
2694 int j;
2695
2696 for (argc = 0; commands[i].argv[argc] != NULL; argc++)
2697 ;
2698
2699 argv = XALLOCAVEC (const char *, argc + 3);
2700
2701 argv[0] = VALGRIND_PATH;
2702 argv[1] = "-q";
2703 for (j = 2; j < argc + 2; j++)
2704 argv[j] = commands[i].argv[j - 2];
2705 argv[j] = NULL;
2706
2707 commands[i].argv = argv;
2708 commands[i].prog = argv[0];
2709 }
2710 #endif
2711
2712 /* Run each piped subprocess. */
2713
2714 pex = pex_init (PEX_USE_PIPES | ((report_times || report_times_to_file)
2715 ? PEX_RECORD_TIMES : 0),
2716 progname, temp_filename);
2717 if (pex == NULL)
2718 fatal_error ("pex_init failed: %m");
2719
2720 for (i = 0; i < n_commands; i++)
2721 {
2722 const char *errmsg;
2723 int err;
2724 const char *string = commands[i].argv[0];
2725
2726 errmsg = pex_run (pex,
2727 ((i + 1 == n_commands ? PEX_LAST : 0)
2728 | (string == commands[i].prog ? PEX_SEARCH : 0)),
2729 string, CONST_CAST (char **, commands[i].argv),
2730 NULL, NULL, &err);
2731 if (errmsg != NULL)
2732 {
2733 if (err == 0)
2734 fatal_error (errmsg);
2735 else
2736 {
2737 errno = err;
2738 pfatal_with_name (errmsg);
2739 }
2740 }
2741
2742 if (string != commands[i].prog)
2743 free (CONST_CAST (char *, string));
2744 }
2745
2746 execution_count++;
2747
2748 /* Wait for all the subprocesses to finish. */
2749
2750 {
2751 int *statuses;
2752 struct pex_time *times = NULL;
2753 int ret_code = 0;
2754
2755 statuses = (int *) alloca (n_commands * sizeof (int));
2756 if (!pex_get_status (pex, n_commands, statuses))
2757 fatal_error ("failed to get exit status: %m");
2758
2759 if (report_times || report_times_to_file)
2760 {
2761 times = (struct pex_time *) alloca (n_commands * sizeof (struct pex_time));
2762 if (!pex_get_times (pex, n_commands, times))
2763 fatal_error ("failed to get process times: %m");
2764 }
2765
2766 pex_free (pex);
2767
2768 for (i = 0; i < n_commands; ++i)
2769 {
2770 int status = statuses[i];
2771
2772 if (WIFSIGNALED (status))
2773 {
2774 #ifdef SIGPIPE
2775 /* SIGPIPE is a special case. It happens in -pipe mode
2776 when the compiler dies before the preprocessor is done,
2777 or the assembler dies before the compiler is done.
2778 There's generally been an error already, and this is
2779 just fallout. So don't generate another error unless
2780 we would otherwise have succeeded. */
2781 if (WTERMSIG (status) == SIGPIPE
2782 && (signal_count || greatest_status >= MIN_FATAL_STATUS))
2783 {
2784 signal_count++;
2785 ret_code = -1;
2786 }
2787 else
2788 #endif
2789 internal_error ("%s (program %s)",
2790 strsignal (WTERMSIG (status)), commands[i].prog);
2791 }
2792 else if (WIFEXITED (status)
2793 && WEXITSTATUS (status) >= MIN_FATAL_STATUS)
2794 {
2795 if (WEXITSTATUS (status) > greatest_status)
2796 greatest_status = WEXITSTATUS (status);
2797 ret_code = -1;
2798 }
2799
2800 if (report_times || report_times_to_file)
2801 {
2802 struct pex_time *pt = &times[i];
2803 double ut, st;
2804
2805 ut = ((double) pt->user_seconds
2806 + (double) pt->user_microseconds / 1.0e6);
2807 st = ((double) pt->system_seconds
2808 + (double) pt->system_microseconds / 1.0e6);
2809
2810 if (ut + st != 0)
2811 {
2812 if (report_times)
2813 fnotice (stderr, "# %s %.2f %.2f\n",
2814 commands[i].prog, ut, st);
2815
2816 if (report_times_to_file)
2817 {
2818 int c = 0;
2819 const char *const *j;
2820
2821 fprintf (report_times_to_file, "%g %g", ut, st);
2822
2823 for (j = &commands[i].prog; *j; j = &commands[i].argv[++c])
2824 {
2825 const char *p;
2826 for (p = *j; *p; ++p)
2827 if (*p == '"' || *p == '\\' || *p == '$'
2828 || ISSPACE (*p))
2829 break;
2830
2831 if (*p)
2832 {
2833 fprintf (report_times_to_file, " \"");
2834 for (p = *j; *p; ++p)
2835 {
2836 if (*p == '"' || *p == '\\' || *p == '$')
2837 fputc ('\\', report_times_to_file);
2838 fputc (*p, report_times_to_file);
2839 }
2840 fputc ('"', report_times_to_file);
2841 }
2842 else
2843 fprintf (report_times_to_file, " %s", *j);
2844 }
2845
2846 fputc ('\n', report_times_to_file);
2847 }
2848 }
2849 }
2850 }
2851
2852 return ret_code;
2853 }
2854 }
2855 \f
2856 /* Find all the switches given to us
2857 and make a vector describing them.
2858 The elements of the vector are strings, one per switch given.
2859 If a switch uses following arguments, then the `part1' field
2860 is the switch itself and the `args' field
2861 is a null-terminated vector containing the following arguments.
2862 Bits in the `live_cond' field are:
2863 SWITCH_LIVE to indicate this switch is true in a conditional spec.
2864 SWITCH_FALSE to indicate this switch is overridden by a later switch.
2865 SWITCH_IGNORE to indicate this switch should be ignored (used in %<S).
2866 SWITCH_IGNORE_PERMANENTLY to indicate this switch should be ignored
2867 in all do_spec calls afterwards. Used for %<S from self specs.
2868 The `validated' field is nonzero if any spec has looked at this switch;
2869 if it remains zero at the end of the run, it must be meaningless. */
2870
2871 #define SWITCH_LIVE (1 << 0)
2872 #define SWITCH_FALSE (1 << 1)
2873 #define SWITCH_IGNORE (1 << 2)
2874 #define SWITCH_IGNORE_PERMANENTLY (1 << 3)
2875 #define SWITCH_KEEP_FOR_GCC (1 << 4)
2876
2877 struct switchstr
2878 {
2879 const char *part1;
2880 const char **args;
2881 unsigned int live_cond;
2882 bool known;
2883 bool validated;
2884 bool ordering;
2885 };
2886
2887 static struct switchstr *switches;
2888
2889 static int n_switches;
2890
2891 static int n_switches_alloc;
2892
2893 /* Set to zero if -fcompare-debug is disabled, positive if it's
2894 enabled and we're running the first compilation, negative if it's
2895 enabled and we're running the second compilation. For most of the
2896 time, it's in the range -1..1, but it can be temporarily set to 2
2897 or 3 to indicate that the -fcompare-debug flags didn't come from
2898 the command-line, but rather from the GCC_COMPARE_DEBUG environment
2899 variable, until a synthesized -fcompare-debug flag is added to the
2900 command line. */
2901 int compare_debug;
2902
2903 /* Set to nonzero if we've seen the -fcompare-debug-second flag. */
2904 int compare_debug_second;
2905
2906 /* Set to the flags that should be passed to the second compilation in
2907 a -fcompare-debug compilation. */
2908 const char *compare_debug_opt;
2909
2910 static struct switchstr *switches_debug_check[2];
2911
2912 static int n_switches_debug_check[2];
2913
2914 static int n_switches_alloc_debug_check[2];
2915
2916 static char *debug_check_temp_file[2];
2917
2918 /* Language is one of three things:
2919
2920 1) The name of a real programming language.
2921 2) NULL, indicating that no one has figured out
2922 what it is yet.
2923 3) '*', indicating that the file should be passed
2924 to the linker. */
2925 struct infile
2926 {
2927 const char *name;
2928 const char *language;
2929 struct compiler *incompiler;
2930 bool compiled;
2931 bool preprocessed;
2932 };
2933
2934 /* Also a vector of input files specified. */
2935
2936 static struct infile *infiles;
2937
2938 int n_infiles;
2939
2940 static int n_infiles_alloc;
2941
2942 /* True if multiple input files are being compiled to a single
2943 assembly file. */
2944
2945 static bool combine_inputs;
2946
2947 /* This counts the number of libraries added by lang_specific_driver, so that
2948 we can tell if there were any user supplied any files or libraries. */
2949
2950 static int added_libraries;
2951
2952 /* And a vector of corresponding output files is made up later. */
2953
2954 const char **outfiles;
2955 \f
2956 #if defined(HAVE_TARGET_OBJECT_SUFFIX) || defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
2957
2958 /* Convert NAME to a new name if it is the standard suffix. DO_EXE
2959 is true if we should look for an executable suffix. DO_OBJ
2960 is true if we should look for an object suffix. */
2961
2962 static const char *
2963 convert_filename (const char *name, int do_exe ATTRIBUTE_UNUSED,
2964 int do_obj ATTRIBUTE_UNUSED)
2965 {
2966 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
2967 int i;
2968 #endif
2969 int len;
2970
2971 if (name == NULL)
2972 return NULL;
2973
2974 len = strlen (name);
2975
2976 #ifdef HAVE_TARGET_OBJECT_SUFFIX
2977 /* Convert x.o to x.obj if TARGET_OBJECT_SUFFIX is ".obj". */
2978 if (do_obj && len > 2
2979 && name[len - 2] == '.'
2980 && name[len - 1] == 'o')
2981 {
2982 obstack_grow (&obstack, name, len - 2);
2983 obstack_grow0 (&obstack, TARGET_OBJECT_SUFFIX, strlen (TARGET_OBJECT_SUFFIX));
2984 name = XOBFINISH (&obstack, const char *);
2985 }
2986 #endif
2987
2988 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
2989 /* If there is no filetype, make it the executable suffix (which includes
2990 the "."). But don't get confused if we have just "-o". */
2991 if (! do_exe || TARGET_EXECUTABLE_SUFFIX[0] == 0 || (len == 2 && name[0] == '-'))
2992 return name;
2993
2994 for (i = len - 1; i >= 0; i--)
2995 if (IS_DIR_SEPARATOR (name[i]))
2996 break;
2997
2998 for (i++; i < len; i++)
2999 if (name[i] == '.')
3000 return name;
3001
3002 obstack_grow (&obstack, name, len);
3003 obstack_grow0 (&obstack, TARGET_EXECUTABLE_SUFFIX,
3004 strlen (TARGET_EXECUTABLE_SUFFIX));
3005 name = XOBFINISH (&obstack, const char *);
3006 #endif
3007
3008 return name;
3009 }
3010 #endif
3011 \f
3012 /* Display the command line switches accepted by gcc. */
3013 static void
3014 display_help (void)
3015 {
3016 printf (_("Usage: %s [options] file...\n"), progname);
3017 fputs (_("Options:\n"), stdout);
3018
3019 fputs (_(" -pass-exit-codes Exit with highest error code from a phase\n"), stdout);
3020 fputs (_(" --help Display this information\n"), stdout);
3021 fputs (_(" --target-help Display target specific command line options\n"), stdout);
3022 fputs (_(" --help={common|optimizers|params|target|warnings|[^]{joined|separate|undocumented}}[,...]\n"), stdout);
3023 fputs (_(" Display specific types of command line options\n"), stdout);
3024 if (! verbose_flag)
3025 fputs (_(" (Use '-v --help' to display command line options of sub-processes)\n"), stdout);
3026 fputs (_(" --version Display compiler version information\n"), stdout);
3027 fputs (_(" -dumpspecs Display all of the built in spec strings\n"), stdout);
3028 fputs (_(" -dumpversion Display the version of the compiler\n"), stdout);
3029 fputs (_(" -dumpmachine Display the compiler's target processor\n"), stdout);
3030 fputs (_(" -print-search-dirs Display the directories in the compiler's search path\n"), stdout);
3031 fputs (_(" -print-libgcc-file-name Display the name of the compiler's companion library\n"), stdout);
3032 fputs (_(" -print-file-name=<lib> Display the full path to library <lib>\n"), stdout);
3033 fputs (_(" -print-prog-name=<prog> Display the full path to compiler component <prog>\n"), stdout);
3034 fputs (_("\
3035 -print-multiarch Display the target's normalized GNU triplet, used as\n\
3036 a component in the library path\n"), stdout);
3037 fputs (_(" -print-multi-directory Display the root directory for versions of libgcc\n"), stdout);
3038 fputs (_("\
3039 -print-multi-lib Display the mapping between command line options and\n\
3040 multiple library search directories\n"), stdout);
3041 fputs (_(" -print-multi-os-directory Display the relative path to OS libraries\n"), stdout);
3042 fputs (_(" -print-sysroot Display the target libraries directory\n"), stdout);
3043 fputs (_(" -print-sysroot-headers-suffix Display the sysroot suffix used to find headers\n"), stdout);
3044 fputs (_(" -Wa,<options> Pass comma-separated <options> on to the assembler\n"), stdout);
3045 fputs (_(" -Wp,<options> Pass comma-separated <options> on to the preprocessor\n"), stdout);
3046 fputs (_(" -Wl,<options> Pass comma-separated <options> on to the linker\n"), stdout);
3047 fputs (_(" -Xassembler <arg> Pass <arg> on to the assembler\n"), stdout);
3048 fputs (_(" -Xpreprocessor <arg> Pass <arg> on to the preprocessor\n"), stdout);
3049 fputs (_(" -Xlinker <arg> Pass <arg> on to the linker\n"), stdout);
3050 fputs (_(" -save-temps Do not delete intermediate files\n"), stdout);
3051 fputs (_(" -save-temps=<arg> Do not delete intermediate files\n"), stdout);
3052 fputs (_("\
3053 -no-canonical-prefixes Do not canonicalize paths when building relative\n\
3054 prefixes to other gcc components\n"), stdout);
3055 fputs (_(" -pipe Use pipes rather than intermediate files\n"), stdout);
3056 fputs (_(" -time Time the execution of each subprocess\n"), stdout);
3057 fputs (_(" -specs=<file> Override built-in specs with the contents of <file>\n"), stdout);
3058 fputs (_(" -std=<standard> Assume that the input sources are for <standard>\n"), stdout);
3059 fputs (_("\
3060 --sysroot=<directory> Use <directory> as the root directory for headers\n\
3061 and libraries\n"), stdout);
3062 fputs (_(" -B <directory> Add <directory> to the compiler's search paths\n"), stdout);
3063 fputs (_(" -v Display the programs invoked by the compiler\n"), stdout);
3064 fputs (_(" -### Like -v but options quoted and commands not executed\n"), stdout);
3065 fputs (_(" -E Preprocess only; do not compile, assemble or link\n"), stdout);
3066 fputs (_(" -S Compile only; do not assemble or link\n"), stdout);
3067 fputs (_(" -c Compile and assemble, but do not link\n"), stdout);
3068 fputs (_(" -o <file> Place the output into <file>\n"), stdout);
3069 fputs (_(" -pie Create a position independent executable\n"), stdout);
3070 fputs (_(" -shared Create a shared library\n"), stdout);
3071 fputs (_("\
3072 -x <language> Specify the language of the following input files\n\
3073 Permissible languages include: c c++ assembler none\n\
3074 'none' means revert to the default behavior of\n\
3075 guessing the language based on the file's extension\n\
3076 "), stdout);
3077
3078 printf (_("\
3079 \nOptions starting with -g, -f, -m, -O, -W, or --param are automatically\n\
3080 passed on to the various sub-processes invoked by %s. In order to pass\n\
3081 other options on to these processes the -W<letter> options must be used.\n\
3082 "), progname);
3083
3084 /* The rest of the options are displayed by invocations of the various
3085 sub-processes. */
3086 }
3087
3088 static void
3089 add_preprocessor_option (const char *option, int len)
3090 {
3091 preprocessor_options.safe_push (save_string (option, len));
3092 }
3093
3094 static void
3095 add_assembler_option (const char *option, int len)
3096 {
3097 assembler_options.safe_push (save_string (option, len));
3098 }
3099
3100 static void
3101 add_linker_option (const char *option, int len)
3102 {
3103 linker_options.safe_push (save_string (option, len));
3104 }
3105 \f
3106 /* Allocate space for an input file in infiles. */
3107
3108 static void
3109 alloc_infile (void)
3110 {
3111 if (n_infiles_alloc == 0)
3112 {
3113 n_infiles_alloc = 16;
3114 infiles = XNEWVEC (struct infile, n_infiles_alloc);
3115 }
3116 else if (n_infiles_alloc == n_infiles)
3117 {
3118 n_infiles_alloc *= 2;
3119 infiles = XRESIZEVEC (struct infile, infiles, n_infiles_alloc);
3120 }
3121 }
3122
3123 /* Store an input file with the given NAME and LANGUAGE in
3124 infiles. */
3125
3126 static void
3127 add_infile (const char *name, const char *language)
3128 {
3129 alloc_infile ();
3130 infiles[n_infiles].name = name;
3131 infiles[n_infiles++].language = language;
3132 }
3133
3134 /* Allocate space for a switch in switches. */
3135
3136 static void
3137 alloc_switch (void)
3138 {
3139 if (n_switches_alloc == 0)
3140 {
3141 n_switches_alloc = 16;
3142 switches = XNEWVEC (struct switchstr, n_switches_alloc);
3143 }
3144 else if (n_switches_alloc == n_switches)
3145 {
3146 n_switches_alloc *= 2;
3147 switches = XRESIZEVEC (struct switchstr, switches, n_switches_alloc);
3148 }
3149 }
3150
3151 /* Save an option OPT with N_ARGS arguments in array ARGS, marking it
3152 as validated if VALIDATED and KNOWN if it is an internal switch. */
3153
3154 static void
3155 save_switch (const char *opt, size_t n_args, const char *const *args,
3156 bool validated, bool known)
3157 {
3158 alloc_switch ();
3159 switches[n_switches].part1 = opt + 1;
3160 if (n_args == 0)
3161 switches[n_switches].args = 0;
3162 else
3163 {
3164 switches[n_switches].args = XNEWVEC (const char *, n_args + 1);
3165 memcpy (switches[n_switches].args, args, n_args * sizeof (const char *));
3166 switches[n_switches].args[n_args] = NULL;
3167 }
3168
3169 switches[n_switches].live_cond = 0;
3170 switches[n_switches].validated = validated;
3171 switches[n_switches].known = known;
3172 switches[n_switches].ordering = 0;
3173 n_switches++;
3174 }
3175
3176 /* Handle an option DECODED that is unknown to the option-processing
3177 machinery. */
3178
3179 static bool
3180 driver_unknown_option_callback (const struct cl_decoded_option *decoded)
3181 {
3182 const char *opt = decoded->arg;
3183 if (opt[1] == 'W' && opt[2] == 'n' && opt[3] == 'o' && opt[4] == '-'
3184 && !(decoded->errors & CL_ERR_NEGATIVE))
3185 {
3186 /* Leave unknown -Wno-* options for the compiler proper, to be
3187 diagnosed only if there are warnings. */
3188 save_switch (decoded->canonical_option[0],
3189 decoded->canonical_option_num_elements - 1,
3190 &decoded->canonical_option[1], false, true);
3191 return false;
3192 }
3193 if (decoded->opt_index == OPT_SPECIAL_unknown)
3194 {
3195 /* Give it a chance to define it a a spec file. */
3196 save_switch (decoded->canonical_option[0],
3197 decoded->canonical_option_num_elements - 1,
3198 &decoded->canonical_option[1], false, false);
3199 return false;
3200 }
3201 else
3202 return true;
3203 }
3204
3205 /* Handle an option DECODED that is not marked as CL_DRIVER.
3206 LANG_MASK will always be CL_DRIVER. */
3207
3208 static void
3209 driver_wrong_lang_callback (const struct cl_decoded_option *decoded,
3210 unsigned int lang_mask ATTRIBUTE_UNUSED)
3211 {
3212 /* At this point, non-driver options are accepted (and expected to
3213 be passed down by specs) unless marked to be rejected by the
3214 driver. Options to be rejected by the driver but accepted by the
3215 compilers proper are treated just like completely unknown
3216 options. */
3217 const struct cl_option *option = &cl_options[decoded->opt_index];
3218
3219 if (option->cl_reject_driver)
3220 error ("unrecognized command line option %qs",
3221 decoded->orig_option_with_args_text);
3222 else
3223 save_switch (decoded->canonical_option[0],
3224 decoded->canonical_option_num_elements - 1,
3225 &decoded->canonical_option[1], false, true);
3226 }
3227
3228 static const char *spec_lang = 0;
3229 static int last_language_n_infiles;
3230
3231 /* Handle a driver option; arguments and return value as for
3232 handle_option. */
3233
3234 static bool
3235 driver_handle_option (struct gcc_options *opts,
3236 struct gcc_options *opts_set,
3237 const struct cl_decoded_option *decoded,
3238 unsigned int lang_mask ATTRIBUTE_UNUSED, int kind,
3239 location_t loc,
3240 const struct cl_option_handlers *handlers ATTRIBUTE_UNUSED,
3241 diagnostic_context *dc)
3242 {
3243 size_t opt_index = decoded->opt_index;
3244 const char *arg = decoded->arg;
3245 const char *compare_debug_replacement_opt;
3246 int value = decoded->value;
3247 bool validated = false;
3248 bool do_save = true;
3249
3250 gcc_assert (opts == &global_options);
3251 gcc_assert (opts_set == &global_options_set);
3252 gcc_assert (kind == DK_UNSPECIFIED);
3253 gcc_assert (loc == UNKNOWN_LOCATION);
3254 gcc_assert (dc == global_dc);
3255
3256 switch (opt_index)
3257 {
3258 case OPT_dumpspecs:
3259 {
3260 struct spec_list *sl;
3261 init_spec ();
3262 for (sl = specs; sl; sl = sl->next)
3263 printf ("*%s:\n%s\n\n", sl->name, *(sl->ptr_spec));
3264 if (link_command_spec)
3265 printf ("*link_command:\n%s\n\n", link_command_spec);
3266 exit (0);
3267 }
3268
3269 case OPT_dumpversion:
3270 printf ("%s\n", spec_version);
3271 exit (0);
3272
3273 case OPT_dumpmachine:
3274 printf ("%s\n", spec_machine);
3275 exit (0);
3276
3277 case OPT__version:
3278 print_version = 1;
3279
3280 /* CPP driver cannot obtain switch from cc1_options. */
3281 if (is_cpp_driver)
3282 add_preprocessor_option ("--version", strlen ("--version"));
3283 add_assembler_option ("--version", strlen ("--version"));
3284 add_linker_option ("--version", strlen ("--version"));
3285 break;
3286
3287 case OPT__help:
3288 print_help_list = 1;
3289
3290 /* CPP driver cannot obtain switch from cc1_options. */
3291 if (is_cpp_driver)
3292 add_preprocessor_option ("--help", 6);
3293 add_assembler_option ("--help", 6);
3294 add_linker_option ("--help", 6);
3295 break;
3296
3297 case OPT__help_:
3298 print_subprocess_help = 2;
3299 break;
3300
3301 case OPT__target_help:
3302 print_subprocess_help = 1;
3303
3304 /* CPP driver cannot obtain switch from cc1_options. */
3305 if (is_cpp_driver)
3306 add_preprocessor_option ("--target-help", 13);
3307 add_assembler_option ("--target-help", 13);
3308 add_linker_option ("--target-help", 13);
3309 break;
3310
3311 case OPT__no_sysroot_suffix:
3312 case OPT_pass_exit_codes:
3313 case OPT_print_search_dirs:
3314 case OPT_print_file_name_:
3315 case OPT_print_prog_name_:
3316 case OPT_print_multi_lib:
3317 case OPT_print_multi_directory:
3318 case OPT_print_sysroot:
3319 case OPT_print_multi_os_directory:
3320 case OPT_print_multiarch:
3321 case OPT_print_sysroot_headers_suffix:
3322 case OPT_time:
3323 case OPT_wrapper:
3324 /* These options set the variables specified in common.opt
3325 automatically, and do not need to be saved for spec
3326 processing. */
3327 do_save = false;
3328 break;
3329
3330 case OPT_print_libgcc_file_name:
3331 print_file_name = "libgcc.a";
3332 do_save = false;
3333 break;
3334
3335 case OPT_fcompare_debug_second:
3336 compare_debug_second = 1;
3337 break;
3338
3339 case OPT_fcompare_debug:
3340 switch (value)
3341 {
3342 case 0:
3343 compare_debug_replacement_opt = "-fcompare-debug=";
3344 arg = "";
3345 goto compare_debug_with_arg;
3346
3347 case 1:
3348 compare_debug_replacement_opt = "-fcompare-debug=-gtoggle";
3349 arg = "-gtoggle";
3350 goto compare_debug_with_arg;
3351
3352 default:
3353 gcc_unreachable ();
3354 }
3355 break;
3356
3357 case OPT_fcompare_debug_:
3358 compare_debug_replacement_opt = decoded->canonical_option[0];
3359 compare_debug_with_arg:
3360 gcc_assert (decoded->canonical_option_num_elements == 1);
3361 gcc_assert (arg != NULL);
3362 if (*arg)
3363 compare_debug = 1;
3364 else
3365 compare_debug = -1;
3366 if (compare_debug < 0)
3367 compare_debug_opt = NULL;
3368 else
3369 compare_debug_opt = arg;
3370 save_switch (compare_debug_replacement_opt, 0, NULL, validated, true);
3371 return true;
3372
3373 case OPT_Wa_:
3374 {
3375 int prev, j;
3376 /* Pass the rest of this option to the assembler. */
3377
3378 /* Split the argument at commas. */
3379 prev = 0;
3380 for (j = 0; arg[j]; j++)
3381 if (arg[j] == ',')
3382 {
3383 add_assembler_option (arg + prev, j - prev);
3384 prev = j + 1;
3385 }
3386
3387 /* Record the part after the last comma. */
3388 add_assembler_option (arg + prev, j - prev);
3389 }
3390 do_save = false;
3391 break;
3392
3393 case OPT_Wp_:
3394 {
3395 int prev, j;
3396 /* Pass the rest of this option to the preprocessor. */
3397
3398 /* Split the argument at commas. */
3399 prev = 0;
3400 for (j = 0; arg[j]; j++)
3401 if (arg[j] == ',')
3402 {
3403 add_preprocessor_option (arg + prev, j - prev);
3404 prev = j + 1;
3405 }
3406
3407 /* Record the part after the last comma. */
3408 add_preprocessor_option (arg + prev, j - prev);
3409 }
3410 do_save = false;
3411 break;
3412
3413 case OPT_Wl_:
3414 {
3415 int prev, j;
3416 /* Split the argument at commas. */
3417 prev = 0;
3418 for (j = 0; arg[j]; j++)
3419 if (arg[j] == ',')
3420 {
3421 add_infile (save_string (arg + prev, j - prev), "*");
3422 prev = j + 1;
3423 }
3424 /* Record the part after the last comma. */
3425 add_infile (arg + prev, "*");
3426 }
3427 do_save = false;
3428 break;
3429
3430 case OPT_Xlinker:
3431 add_infile (arg, "*");
3432 do_save = false;
3433 break;
3434
3435 case OPT_Xpreprocessor:
3436 add_preprocessor_option (arg, strlen (arg));
3437 do_save = false;
3438 break;
3439
3440 case OPT_Xassembler:
3441 add_assembler_option (arg, strlen (arg));
3442 do_save = false;
3443 break;
3444
3445 case OPT_l:
3446 /* POSIX allows separation of -l and the lib arg; canonicalize
3447 by concatenating -l with its arg */
3448 add_infile (concat ("-l", arg, NULL), "*");
3449 do_save = false;
3450 break;
3451
3452 case OPT_L:
3453 /* Similarly, canonicalize -L for linkers that may not accept
3454 separate arguments. */
3455 save_switch (concat ("-L", arg, NULL), 0, NULL, validated, true);
3456 return true;
3457
3458 case OPT_F:
3459 /* Likewise -F. */
3460 save_switch (concat ("-F", arg, NULL), 0, NULL, validated, true);
3461 return true;
3462
3463 case OPT_save_temps:
3464 save_temps_flag = SAVE_TEMPS_CWD;
3465 validated = true;
3466 break;
3467
3468 case OPT_save_temps_:
3469 if (strcmp (arg, "cwd") == 0)
3470 save_temps_flag = SAVE_TEMPS_CWD;
3471 else if (strcmp (arg, "obj") == 0
3472 || strcmp (arg, "object") == 0)
3473 save_temps_flag = SAVE_TEMPS_OBJ;
3474 else
3475 fatal_error ("%qs is an unknown -save-temps option",
3476 decoded->orig_option_with_args_text);
3477 break;
3478
3479 case OPT_no_canonical_prefixes:
3480 /* Already handled as a special case, so ignored here. */
3481 do_save = false;
3482 break;
3483
3484 case OPT_pipe:
3485 validated = true;
3486 /* These options set the variables specified in common.opt
3487 automatically, but do need to be saved for spec
3488 processing. */
3489 break;
3490
3491 case OPT_specs_:
3492 {
3493 struct user_specs *user = XNEW (struct user_specs);
3494
3495 user->next = (struct user_specs *) 0;
3496 user->filename = arg;
3497 if (user_specs_tail)
3498 user_specs_tail->next = user;
3499 else
3500 user_specs_head = user;
3501 user_specs_tail = user;
3502 }
3503 validated = true;
3504 break;
3505
3506 case OPT__sysroot_:
3507 target_system_root = arg;
3508 target_system_root_changed = 1;
3509 do_save = false;
3510 break;
3511
3512 case OPT_time_:
3513 if (report_times_to_file)
3514 fclose (report_times_to_file);
3515 report_times_to_file = fopen (arg, "a");
3516 do_save = false;
3517 break;
3518
3519 case OPT____:
3520 /* "-###"
3521 This is similar to -v except that there is no execution
3522 of the commands and the echoed arguments are quoted. It
3523 is intended for use in shell scripts to capture the
3524 driver-generated command line. */
3525 verbose_only_flag++;
3526 verbose_flag = 1;
3527 do_save = false;
3528 break;
3529
3530 case OPT_B:
3531 {
3532 size_t len = strlen (arg);
3533
3534 /* Catch the case where the user has forgotten to append a
3535 directory separator to the path. Note, they may be using
3536 -B to add an executable name prefix, eg "i386-elf-", in
3537 order to distinguish between multiple installations of
3538 GCC in the same directory. Hence we must check to see
3539 if appending a directory separator actually makes a
3540 valid directory name. */
3541 if (!IS_DIR_SEPARATOR (arg[len - 1])
3542 && is_directory (arg, false))
3543 {
3544 char *tmp = XNEWVEC (char, len + 2);
3545 strcpy (tmp, arg);
3546 tmp[len] = DIR_SEPARATOR;
3547 tmp[++len] = 0;
3548 arg = tmp;
3549 }
3550
3551 add_prefix (&exec_prefixes, arg, NULL,
3552 PREFIX_PRIORITY_B_OPT, 0, 0);
3553 add_prefix (&startfile_prefixes, arg, NULL,
3554 PREFIX_PRIORITY_B_OPT, 0, 0);
3555 add_prefix (&include_prefixes, arg, NULL,
3556 PREFIX_PRIORITY_B_OPT, 0, 0);
3557 }
3558 validated = true;
3559 break;
3560
3561 case OPT_x:
3562 spec_lang = arg;
3563 if (!strcmp (spec_lang, "none"))
3564 /* Suppress the warning if -xnone comes after the last input
3565 file, because alternate command interfaces like g++ might
3566 find it useful to place -xnone after each input file. */
3567 spec_lang = 0;
3568 else
3569 last_language_n_infiles = n_infiles;
3570 do_save = false;
3571 break;
3572
3573 case OPT_o:
3574 have_o = 1;
3575 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX) || defined(HAVE_TARGET_OBJECT_SUFFIX)
3576 arg = convert_filename (arg, ! have_c, 0);
3577 #endif
3578 /* Save the output name in case -save-temps=obj was used. */
3579 save_temps_prefix = xstrdup (arg);
3580 /* On some systems, ld cannot handle "-o" without a space. So
3581 split the option from its argument. */
3582 save_switch ("-o", 1, &arg, validated, true);
3583 return true;
3584
3585 case OPT_static_libgcc:
3586 case OPT_shared_libgcc:
3587 case OPT_static_libgfortran:
3588 case OPT_static_libstdc__:
3589 /* These are always valid, since gcc.c itself understands the
3590 first two, gfortranspec.c understands -static-libgfortran and
3591 g++spec.c understands -static-libstdc++ */
3592 validated = true;
3593 break;
3594
3595 default:
3596 /* Various driver options need no special processing at this
3597 point, having been handled in a prescan above or being
3598 handled by specs. */
3599 break;
3600 }
3601
3602 if (do_save)
3603 save_switch (decoded->canonical_option[0],
3604 decoded->canonical_option_num_elements - 1,
3605 &decoded->canonical_option[1], validated, true);
3606 return true;
3607 }
3608
3609 /* Put the driver's standard set of option handlers in *HANDLERS. */
3610
3611 static void
3612 set_option_handlers (struct cl_option_handlers *handlers)
3613 {
3614 handlers->unknown_option_callback = driver_unknown_option_callback;
3615 handlers->wrong_lang_callback = driver_wrong_lang_callback;
3616 handlers->num_handlers = 3;
3617 handlers->handlers[0].handler = driver_handle_option;
3618 handlers->handlers[0].mask = CL_DRIVER;
3619 handlers->handlers[1].handler = common_handle_option;
3620 handlers->handlers[1].mask = CL_COMMON;
3621 handlers->handlers[2].handler = target_handle_option;
3622 handlers->handlers[2].mask = CL_TARGET;
3623 }
3624
3625 /* Create the vector `switches' and its contents.
3626 Store its length in `n_switches'. */
3627
3628 static void
3629 process_command (unsigned int decoded_options_count,
3630 struct cl_decoded_option *decoded_options)
3631 {
3632 const char *temp;
3633 char *temp1;
3634 char *tooldir_prefix, *tooldir_prefix2;
3635 char *(*get_relative_prefix) (const char *, const char *,
3636 const char *) = NULL;
3637 struct cl_option_handlers handlers;
3638 unsigned int j;
3639
3640 gcc_exec_prefix = getenv ("GCC_EXEC_PREFIX");
3641
3642 n_switches = 0;
3643 n_infiles = 0;
3644 added_libraries = 0;
3645
3646 /* Figure compiler version from version string. */
3647
3648 compiler_version = temp1 = xstrdup (version_string);
3649
3650 for (; *temp1; ++temp1)
3651 {
3652 if (*temp1 == ' ')
3653 {
3654 *temp1 = '\0';
3655 break;
3656 }
3657 }
3658
3659 /* Handle any -no-canonical-prefixes flag early, to assign the function
3660 that builds relative prefixes. This function creates default search
3661 paths that are needed later in normal option handling. */
3662
3663 for (j = 1; j < decoded_options_count; j++)
3664 {
3665 if (decoded_options[j].opt_index == OPT_no_canonical_prefixes)
3666 {
3667 get_relative_prefix = make_relative_prefix_ignore_links;
3668 break;
3669 }
3670 }
3671 if (! get_relative_prefix)
3672 get_relative_prefix = make_relative_prefix;
3673
3674 /* Set up the default search paths. If there is no GCC_EXEC_PREFIX,
3675 see if we can create it from the pathname specified in
3676 decoded_options[0].arg. */
3677
3678 gcc_libexec_prefix = standard_libexec_prefix;
3679 #ifndef VMS
3680 /* FIXME: make_relative_prefix doesn't yet work for VMS. */
3681 if (!gcc_exec_prefix)
3682 {
3683 gcc_exec_prefix = get_relative_prefix (decoded_options[0].arg,
3684 standard_bindir_prefix,
3685 standard_exec_prefix);
3686 gcc_libexec_prefix = get_relative_prefix (decoded_options[0].arg,
3687 standard_bindir_prefix,
3688 standard_libexec_prefix);
3689 if (gcc_exec_prefix)
3690 xputenv (concat ("GCC_EXEC_PREFIX=", gcc_exec_prefix, NULL));
3691 }
3692 else
3693 {
3694 /* make_relative_prefix requires a program name, but
3695 GCC_EXEC_PREFIX is typically a directory name with a trailing
3696 / (which is ignored by make_relative_prefix), so append a
3697 program name. */
3698 char *tmp_prefix = concat (gcc_exec_prefix, "gcc", NULL);
3699 gcc_libexec_prefix = get_relative_prefix (tmp_prefix,
3700 standard_exec_prefix,
3701 standard_libexec_prefix);
3702
3703 /* The path is unrelocated, so fallback to the original setting. */
3704 if (!gcc_libexec_prefix)
3705 gcc_libexec_prefix = standard_libexec_prefix;
3706
3707 free (tmp_prefix);
3708 }
3709 #else
3710 #endif
3711 /* From this point onward, gcc_exec_prefix is non-null if the toolchain
3712 is relocated. The toolchain was either relocated using GCC_EXEC_PREFIX
3713 or an automatically created GCC_EXEC_PREFIX from
3714 decoded_options[0].arg. */
3715
3716 /* Do language-specific adjustment/addition of flags. */
3717 lang_specific_driver (&decoded_options, &decoded_options_count,
3718 &added_libraries);
3719
3720 if (gcc_exec_prefix)
3721 {
3722 int len = strlen (gcc_exec_prefix);
3723
3724 if (len > (int) sizeof ("/lib/gcc/") - 1
3725 && (IS_DIR_SEPARATOR (gcc_exec_prefix[len-1])))
3726 {
3727 temp = gcc_exec_prefix + len - sizeof ("/lib/gcc/") + 1;
3728 if (IS_DIR_SEPARATOR (*temp)
3729 && filename_ncmp (temp + 1, "lib", 3) == 0
3730 && IS_DIR_SEPARATOR (temp[4])
3731 && filename_ncmp (temp + 5, "gcc", 3) == 0)
3732 len -= sizeof ("/lib/gcc/") - 1;
3733 }
3734
3735 set_std_prefix (gcc_exec_prefix, len);
3736 add_prefix (&exec_prefixes, gcc_libexec_prefix, "GCC",
3737 PREFIX_PRIORITY_LAST, 0, 0);
3738 add_prefix (&startfile_prefixes, gcc_exec_prefix, "GCC",
3739 PREFIX_PRIORITY_LAST, 0, 0);
3740 }
3741
3742 /* COMPILER_PATH and LIBRARY_PATH have values
3743 that are lists of directory names with colons. */
3744
3745 temp = getenv ("COMPILER_PATH");
3746 if (temp)
3747 {
3748 const char *startp, *endp;
3749 char *nstore = (char *) alloca (strlen (temp) + 3);
3750
3751 startp = endp = temp;
3752 while (1)
3753 {
3754 if (*endp == PATH_SEPARATOR || *endp == 0)
3755 {
3756 strncpy (nstore, startp, endp - startp);
3757 if (endp == startp)
3758 strcpy (nstore, concat (".", dir_separator_str, NULL));
3759 else if (!IS_DIR_SEPARATOR (endp[-1]))
3760 {
3761 nstore[endp - startp] = DIR_SEPARATOR;
3762 nstore[endp - startp + 1] = 0;
3763 }
3764 else
3765 nstore[endp - startp] = 0;
3766 add_prefix (&exec_prefixes, nstore, 0,
3767 PREFIX_PRIORITY_LAST, 0, 0);
3768 add_prefix (&include_prefixes, nstore, 0,
3769 PREFIX_PRIORITY_LAST, 0, 0);
3770 if (*endp == 0)
3771 break;
3772 endp = startp = endp + 1;
3773 }
3774 else
3775 endp++;
3776 }
3777 }
3778
3779 temp = getenv (LIBRARY_PATH_ENV);
3780 if (temp && *cross_compile == '0')
3781 {
3782 const char *startp, *endp;
3783 char *nstore = (char *) alloca (strlen (temp) + 3);
3784
3785 startp = endp = temp;
3786 while (1)
3787 {
3788 if (*endp == PATH_SEPARATOR || *endp == 0)
3789 {
3790 strncpy (nstore, startp, endp - startp);
3791 if (endp == startp)
3792 strcpy (nstore, concat (".", dir_separator_str, NULL));
3793 else if (!IS_DIR_SEPARATOR (endp[-1]))
3794 {
3795 nstore[endp - startp] = DIR_SEPARATOR;
3796 nstore[endp - startp + 1] = 0;
3797 }
3798 else
3799 nstore[endp - startp] = 0;
3800 add_prefix (&startfile_prefixes, nstore, NULL,
3801 PREFIX_PRIORITY_LAST, 0, 1);
3802 if (*endp == 0)
3803 break;
3804 endp = startp = endp + 1;
3805 }
3806 else
3807 endp++;
3808 }
3809 }
3810
3811 /* Use LPATH like LIBRARY_PATH (for the CMU build program). */
3812 temp = getenv ("LPATH");
3813 if (temp && *cross_compile == '0')
3814 {
3815 const char *startp, *endp;
3816 char *nstore = (char *) alloca (strlen (temp) + 3);
3817
3818 startp = endp = temp;
3819 while (1)
3820 {
3821 if (*endp == PATH_SEPARATOR || *endp == 0)
3822 {
3823 strncpy (nstore, startp, endp - startp);
3824 if (endp == startp)
3825 strcpy (nstore, concat (".", dir_separator_str, NULL));
3826 else if (!IS_DIR_SEPARATOR (endp[-1]))
3827 {
3828 nstore[endp - startp] = DIR_SEPARATOR;
3829 nstore[endp - startp + 1] = 0;
3830 }
3831 else
3832 nstore[endp - startp] = 0;
3833 add_prefix (&startfile_prefixes, nstore, NULL,
3834 PREFIX_PRIORITY_LAST, 0, 1);
3835 if (*endp == 0)
3836 break;
3837 endp = startp = endp + 1;
3838 }
3839 else
3840 endp++;
3841 }
3842 }
3843
3844 /* Process the options and store input files and switches in their
3845 vectors. */
3846
3847 last_language_n_infiles = -1;
3848
3849 set_option_handlers (&handlers);
3850
3851 for (j = 1; j < decoded_options_count; j++)
3852 {
3853 switch (decoded_options[j].opt_index)
3854 {
3855 case OPT_S:
3856 case OPT_c:
3857 case OPT_E:
3858 have_c = 1;
3859 break;
3860 }
3861 if (have_c)
3862 break;
3863 }
3864
3865 for (j = 1; j < decoded_options_count; j++)
3866 {
3867 if (decoded_options[j].opt_index == OPT_SPECIAL_input_file)
3868 {
3869 const char *arg = decoded_options[j].arg;
3870 const char *p = strrchr (arg, '@');
3871 char *fname;
3872 long offset;
3873 int consumed;
3874 #ifdef HAVE_TARGET_OBJECT_SUFFIX
3875 arg = convert_filename (arg, 0, access (arg, F_OK));
3876 #endif
3877 /* For LTO static archive support we handle input file
3878 specifications that are composed of a filename and
3879 an offset like FNAME@OFFSET. */
3880 if (p
3881 && p != arg
3882 && sscanf (p, "@%li%n", &offset, &consumed) >= 1
3883 && strlen (p) == (unsigned int)consumed)
3884 {
3885 fname = (char *)xmalloc (p - arg + 1);
3886 memcpy (fname, arg, p - arg);
3887 fname[p - arg] = '\0';
3888 /* Only accept non-stdin and existing FNAME parts, otherwise
3889 try with the full name. */
3890 if (strcmp (fname, "-") == 0 || access (fname, F_OK) < 0)
3891 {
3892 free (fname);
3893 fname = xstrdup (arg);
3894 }
3895 }
3896 else
3897 fname = xstrdup (arg);
3898
3899 if (strcmp (fname, "-") != 0 && access (fname, F_OK) < 0)
3900 perror_with_name (fname);
3901 else
3902 add_infile (arg, spec_lang);
3903
3904 free (fname);
3905 continue;
3906 }
3907
3908 read_cmdline_option (&global_options, &global_options_set,
3909 decoded_options + j, UNKNOWN_LOCATION,
3910 CL_DRIVER, &handlers, global_dc);
3911 }
3912
3913 /* If -save-temps=obj and -o name, create the prefix to use for %b.
3914 Otherwise just make -save-temps=obj the same as -save-temps=cwd. */
3915 if (save_temps_flag == SAVE_TEMPS_OBJ && save_temps_prefix != NULL)
3916 {
3917 save_temps_length = strlen (save_temps_prefix);
3918 temp = strrchr (lbasename (save_temps_prefix), '.');
3919 if (temp)
3920 {
3921 save_temps_length -= strlen (temp);
3922 save_temps_prefix[save_temps_length] = '\0';
3923 }
3924
3925 }
3926 else if (save_temps_prefix != NULL)
3927 {
3928 free (save_temps_prefix);
3929 save_temps_prefix = NULL;
3930 }
3931
3932 if (save_temps_flag && use_pipes)
3933 {
3934 /* -save-temps overrides -pipe, so that temp files are produced */
3935 if (save_temps_flag)
3936 warning (0, "-pipe ignored because -save-temps specified");
3937 use_pipes = 0;
3938 }
3939
3940 if (!compare_debug)
3941 {
3942 const char *gcd = getenv ("GCC_COMPARE_DEBUG");
3943
3944 if (gcd && gcd[0] == '-')
3945 {
3946 compare_debug = 2;
3947 compare_debug_opt = gcd;
3948 }
3949 else if (gcd && *gcd && strcmp (gcd, "0"))
3950 {
3951 compare_debug = 3;
3952 compare_debug_opt = "-gtoggle";
3953 }
3954 }
3955 else if (compare_debug < 0)
3956 {
3957 compare_debug = 0;
3958 gcc_assert (!compare_debug_opt);
3959 }
3960
3961 /* Set up the search paths. We add directories that we expect to
3962 contain GNU Toolchain components before directories specified by
3963 the machine description so that we will find GNU components (like
3964 the GNU assembler) before those of the host system. */
3965
3966 /* If we don't know where the toolchain has been installed, use the
3967 configured-in locations. */
3968 if (!gcc_exec_prefix)
3969 {
3970 #ifndef OS2
3971 add_prefix (&exec_prefixes, standard_libexec_prefix, "GCC",
3972 PREFIX_PRIORITY_LAST, 1, 0);
3973 add_prefix (&exec_prefixes, standard_libexec_prefix, "BINUTILS",
3974 PREFIX_PRIORITY_LAST, 2, 0);
3975 add_prefix (&exec_prefixes, standard_exec_prefix, "BINUTILS",
3976 PREFIX_PRIORITY_LAST, 2, 0);
3977 #endif
3978 add_prefix (&startfile_prefixes, standard_exec_prefix, "BINUTILS",
3979 PREFIX_PRIORITY_LAST, 1, 0);
3980 }
3981
3982 gcc_assert (!IS_ABSOLUTE_PATH (tooldir_base_prefix));
3983 tooldir_prefix2 = concat (tooldir_base_prefix, spec_machine,
3984 dir_separator_str, NULL);
3985
3986 /* Look for tools relative to the location from which the driver is
3987 running, or, if that is not available, the configured prefix. */
3988 tooldir_prefix
3989 = concat (gcc_exec_prefix ? gcc_exec_prefix : standard_exec_prefix,
3990 spec_machine, dir_separator_str,
3991 spec_version, dir_separator_str, tooldir_prefix2, NULL);
3992 free (tooldir_prefix2);
3993
3994 add_prefix (&exec_prefixes,
3995 concat (tooldir_prefix, "bin", dir_separator_str, NULL),
3996 "BINUTILS", PREFIX_PRIORITY_LAST, 0, 0);
3997 add_prefix (&startfile_prefixes,
3998 concat (tooldir_prefix, "lib", dir_separator_str, NULL),
3999 "BINUTILS", PREFIX_PRIORITY_LAST, 0, 1);
4000 free (tooldir_prefix);
4001
4002 #if defined(TARGET_SYSTEM_ROOT_RELOCATABLE) && !defined(VMS)
4003 /* If the normal TARGET_SYSTEM_ROOT is inside of $exec_prefix,
4004 then consider it to relocate with the rest of the GCC installation
4005 if GCC_EXEC_PREFIX is set.
4006 ``make_relative_prefix'' is not compiled for VMS, so don't call it. */
4007 if (target_system_root && !target_system_root_changed && gcc_exec_prefix)
4008 {
4009 char *tmp_prefix = get_relative_prefix (decoded_options[0].arg,
4010 standard_bindir_prefix,
4011 target_system_root);
4012 if (tmp_prefix && access_check (tmp_prefix, F_OK) == 0)
4013 {
4014 target_system_root = tmp_prefix;
4015 target_system_root_changed = 1;
4016 }
4017 }
4018 #endif
4019
4020 /* More prefixes are enabled in main, after we read the specs file
4021 and determine whether this is cross-compilation or not. */
4022
4023 if (n_infiles == last_language_n_infiles && spec_lang != 0)
4024 warning (0, "%<-x %s%> after last input file has no effect", spec_lang);
4025
4026 /* Synthesize -fcompare-debug flag from the GCC_COMPARE_DEBUG
4027 environment variable. */
4028 if (compare_debug == 2 || compare_debug == 3)
4029 {
4030 const char *opt = concat ("-fcompare-debug=", compare_debug_opt, NULL);
4031 save_switch (opt, 0, NULL, false, true);
4032 compare_debug = 1;
4033 }
4034
4035 /* Ensure we only invoke each subprocess once. */
4036 if (print_subprocess_help || print_help_list || print_version)
4037 {
4038 n_infiles = 0;
4039
4040 /* Create a dummy input file, so that we can pass
4041 the help option on to the various sub-processes. */
4042 add_infile ("help-dummy", "c");
4043 }
4044
4045 alloc_switch ();
4046 switches[n_switches].part1 = 0;
4047 alloc_infile ();
4048 infiles[n_infiles].name = 0;
4049 }
4050
4051 /* Store switches not filtered out by %<S in spec in COLLECT_GCC_OPTIONS
4052 and place that in the environment. */
4053
4054 static void
4055 set_collect_gcc_options (void)
4056 {
4057 int i;
4058 int first_time;
4059
4060 /* Build COLLECT_GCC_OPTIONS to have all of the options specified to
4061 the compiler. */
4062 obstack_grow (&collect_obstack, "COLLECT_GCC_OPTIONS=",
4063 sizeof ("COLLECT_GCC_OPTIONS=") - 1);
4064
4065 first_time = TRUE;
4066 for (i = 0; (int) i < n_switches; i++)
4067 {
4068 const char *const *args;
4069 const char *p, *q;
4070 if (!first_time)
4071 obstack_grow (&collect_obstack, " ", 1);
4072
4073 first_time = FALSE;
4074
4075 /* Ignore elided switches. */
4076 if ((switches[i].live_cond
4077 & (SWITCH_IGNORE | SWITCH_KEEP_FOR_GCC))
4078 == SWITCH_IGNORE)
4079 continue;
4080
4081 obstack_grow (&collect_obstack, "'-", 2);
4082 q = switches[i].part1;
4083 while ((p = strchr (q, '\'')))
4084 {
4085 obstack_grow (&collect_obstack, q, p - q);
4086 obstack_grow (&collect_obstack, "'\\''", 4);
4087 q = ++p;
4088 }
4089 obstack_grow (&collect_obstack, q, strlen (q));
4090 obstack_grow (&collect_obstack, "'", 1);
4091
4092 for (args = switches[i].args; args && *args; args++)
4093 {
4094 obstack_grow (&collect_obstack, " '", 2);
4095 q = *args;
4096 while ((p = strchr (q, '\'')))
4097 {
4098 obstack_grow (&collect_obstack, q, p - q);
4099 obstack_grow (&collect_obstack, "'\\''", 4);
4100 q = ++p;
4101 }
4102 obstack_grow (&collect_obstack, q, strlen (q));
4103 obstack_grow (&collect_obstack, "'", 1);
4104 }
4105 }
4106 obstack_grow (&collect_obstack, "\0", 1);
4107 xputenv (XOBFINISH (&collect_obstack, char *));
4108 }
4109 \f
4110 /* Process a spec string, accumulating and running commands. */
4111
4112 /* These variables describe the input file name.
4113 input_file_number is the index on outfiles of this file,
4114 so that the output file name can be stored for later use by %o.
4115 input_basename is the start of the part of the input file
4116 sans all directory names, and basename_length is the number
4117 of characters starting there excluding the suffix .c or whatever. */
4118
4119 static const char *gcc_input_filename;
4120 static int input_file_number;
4121 size_t input_filename_length;
4122 static int basename_length;
4123 static int suffixed_basename_length;
4124 static const char *input_basename;
4125 static const char *input_suffix;
4126 #ifndef HOST_LACKS_INODE_NUMBERS
4127 static struct stat input_stat;
4128 #endif
4129 static int input_stat_set;
4130
4131 /* The compiler used to process the current input file. */
4132 static struct compiler *input_file_compiler;
4133
4134 /* These are variables used within do_spec and do_spec_1. */
4135
4136 /* Nonzero if an arg has been started and not yet terminated
4137 (with space, tab or newline). */
4138 static int arg_going;
4139
4140 /* Nonzero means %d or %g has been seen; the next arg to be terminated
4141 is a temporary file name. */
4142 static int delete_this_arg;
4143
4144 /* Nonzero means %w has been seen; the next arg to be terminated
4145 is the output file name of this compilation. */
4146 static int this_is_output_file;
4147
4148 /* Nonzero means %s has been seen; the next arg to be terminated
4149 is the name of a library file and we should try the standard
4150 search dirs for it. */
4151 static int this_is_library_file;
4152
4153 /* Nonzero means %T has been seen; the next arg to be terminated
4154 is the name of a linker script and we should try all of the
4155 standard search dirs for it. If it is found insert a --script
4156 command line switch and then substitute the full path in place,
4157 otherwise generate an error message. */
4158 static int this_is_linker_script;
4159
4160 /* Nonzero means that the input of this command is coming from a pipe. */
4161 static int input_from_pipe;
4162
4163 /* Nonnull means substitute this for any suffix when outputting a switches
4164 arguments. */
4165 static const char *suffix_subst;
4166
4167 /* If there is an argument being accumulated, terminate it and store it. */
4168
4169 static void
4170 end_going_arg (void)
4171 {
4172 if (arg_going)
4173 {
4174 const char *string;
4175
4176 obstack_1grow (&obstack, 0);
4177 string = XOBFINISH (&obstack, const char *);
4178 if (this_is_library_file)
4179 string = find_file (string);
4180 if (this_is_linker_script)
4181 {
4182 char * full_script_path = find_a_file (&startfile_prefixes, string, R_OK, true);
4183
4184 if (full_script_path == NULL)
4185 {
4186 error ("unable to locate default linker script %qs in the library search paths", string);
4187 /* Script was not found on search path. */
4188 return;
4189 }
4190 store_arg ("--script", false, false);
4191 string = full_script_path;
4192 }
4193 store_arg (string, delete_this_arg, this_is_output_file);
4194 if (this_is_output_file)
4195 outfiles[input_file_number] = string;
4196 arg_going = 0;
4197 }
4198 }
4199
4200
4201 /* Parse the WRAPPER string which is a comma separated list of the command line
4202 and insert them into the beginning of argbuf. */
4203
4204 static void
4205 insert_wrapper (const char *wrapper)
4206 {
4207 int n = 0;
4208 int i;
4209 char *buf = xstrdup (wrapper);
4210 char *p = buf;
4211 unsigned int old_length = argbuf.length ();
4212
4213 do
4214 {
4215 n++;
4216 while (*p == ',')
4217 p++;
4218 }
4219 while ((p = strchr (p, ',')) != NULL);
4220
4221 argbuf.safe_grow (old_length + n);
4222 memmove (argbuf.address () + n,
4223 argbuf.address (),
4224 old_length * sizeof (const_char_p));
4225
4226 i = 0;
4227 p = buf;
4228 do
4229 {
4230 while (*p == ',')
4231 {
4232 *p = 0;
4233 p++;
4234 }
4235 argbuf[i] = p;
4236 i++;
4237 }
4238 while ((p = strchr (p, ',')) != NULL);
4239 gcc_assert (i == n);
4240 }
4241
4242 /* Process the spec SPEC and run the commands specified therein.
4243 Returns 0 if the spec is successfully processed; -1 if failed. */
4244
4245 int
4246 do_spec (const char *spec)
4247 {
4248 int value;
4249
4250 value = do_spec_2 (spec);
4251
4252 /* Force out any unfinished command.
4253 If -pipe, this forces out the last command if it ended in `|'. */
4254 if (value == 0)
4255 {
4256 if (argbuf.length () > 0
4257 && !strcmp (argbuf.last (), "|"))
4258 argbuf.pop ();
4259
4260 set_collect_gcc_options ();
4261
4262 if (argbuf.length () > 0)
4263 value = execute ();
4264 }
4265
4266 return value;
4267 }
4268
4269 static int
4270 do_spec_2 (const char *spec)
4271 {
4272 int result;
4273
4274 clear_args ();
4275 arg_going = 0;
4276 delete_this_arg = 0;
4277 this_is_output_file = 0;
4278 this_is_library_file = 0;
4279 this_is_linker_script = 0;
4280 input_from_pipe = 0;
4281 suffix_subst = NULL;
4282
4283 result = do_spec_1 (spec, 0, NULL);
4284
4285 end_going_arg ();
4286
4287 return result;
4288 }
4289
4290
4291 /* Process the given spec string and add any new options to the end
4292 of the switches/n_switches array. */
4293
4294 static void
4295 do_option_spec (const char *name, const char *spec)
4296 {
4297 unsigned int i, value_count, value_len;
4298 const char *p, *q, *value;
4299 char *tmp_spec, *tmp_spec_p;
4300
4301 if (configure_default_options[0].name == NULL)
4302 return;
4303
4304 for (i = 0; i < ARRAY_SIZE (configure_default_options); i++)
4305 if (strcmp (configure_default_options[i].name, name) == 0)
4306 break;
4307 if (i == ARRAY_SIZE (configure_default_options))
4308 return;
4309
4310 value = configure_default_options[i].value;
4311 value_len = strlen (value);
4312
4313 /* Compute the size of the final spec. */
4314 value_count = 0;
4315 p = spec;
4316 while ((p = strstr (p, "%(VALUE)")) != NULL)
4317 {
4318 p ++;
4319 value_count ++;
4320 }
4321
4322 /* Replace each %(VALUE) by the specified value. */
4323 tmp_spec = (char *) alloca (strlen (spec) + 1
4324 + value_count * (value_len - strlen ("%(VALUE)")));
4325 tmp_spec_p = tmp_spec;
4326 q = spec;
4327 while ((p = strstr (q, "%(VALUE)")) != NULL)
4328 {
4329 memcpy (tmp_spec_p, q, p - q);
4330 tmp_spec_p = tmp_spec_p + (p - q);
4331 memcpy (tmp_spec_p, value, value_len);
4332 tmp_spec_p += value_len;
4333 q = p + strlen ("%(VALUE)");
4334 }
4335 strcpy (tmp_spec_p, q);
4336
4337 do_self_spec (tmp_spec);
4338 }
4339
4340 /* Process the given spec string and add any new options to the end
4341 of the switches/n_switches array. */
4342
4343 static void
4344 do_self_spec (const char *spec)
4345 {
4346 int i;
4347
4348 do_spec_2 (spec);
4349 do_spec_1 (" ", 0, NULL);
4350
4351 /* Mark %<S switches processed by do_self_spec to be ignored permanently.
4352 do_self_specs adds the replacements to switches array, so it shouldn't
4353 be processed afterwards. */
4354 for (i = 0; i < n_switches; i++)
4355 if ((switches[i].live_cond & SWITCH_IGNORE))
4356 switches[i].live_cond |= SWITCH_IGNORE_PERMANENTLY;
4357
4358 if (argbuf.length () > 0)
4359 {
4360 const char **argbuf_copy;
4361 struct cl_decoded_option *decoded_options;
4362 struct cl_option_handlers handlers;
4363 unsigned int decoded_options_count;
4364 unsigned int j;
4365
4366 /* Create a copy of argbuf with a dummy argv[0] entry for
4367 decode_cmdline_options_to_array. */
4368 argbuf_copy = XNEWVEC (const char *,
4369 argbuf.length () + 1);
4370 argbuf_copy[0] = "";
4371 memcpy (argbuf_copy + 1, argbuf.address (),
4372 argbuf.length () * sizeof (const char *));
4373
4374 decode_cmdline_options_to_array (argbuf.length () + 1,
4375 argbuf_copy,
4376 CL_DRIVER, &decoded_options,
4377 &decoded_options_count);
4378 free (argbuf_copy);
4379
4380 set_option_handlers (&handlers);
4381
4382 for (j = 1; j < decoded_options_count; j++)
4383 {
4384 switch (decoded_options[j].opt_index)
4385 {
4386 case OPT_SPECIAL_input_file:
4387 /* Specs should only generate options, not input
4388 files. */
4389 if (strcmp (decoded_options[j].arg, "-") != 0)
4390 fatal_error ("switch %qs does not start with %<-%>",
4391 decoded_options[j].arg);
4392 else
4393 fatal_error ("spec-generated switch is just %<-%>");
4394 break;
4395
4396 case OPT_fcompare_debug_second:
4397 case OPT_fcompare_debug:
4398 case OPT_fcompare_debug_:
4399 case OPT_o:
4400 /* Avoid duplicate processing of some options from
4401 compare-debug specs; just save them here. */
4402 save_switch (decoded_options[j].canonical_option[0],
4403 (decoded_options[j].canonical_option_num_elements
4404 - 1),
4405 &decoded_options[j].canonical_option[1], false, true);
4406 break;
4407
4408 default:
4409 read_cmdline_option (&global_options, &global_options_set,
4410 decoded_options + j, UNKNOWN_LOCATION,
4411 CL_DRIVER, &handlers, global_dc);
4412 break;
4413 }
4414 }
4415
4416 alloc_switch ();
4417 switches[n_switches].part1 = 0;
4418 }
4419 }
4420
4421 /* Callback for processing %D and %I specs. */
4422
4423 struct spec_path_info {
4424 const char *option;
4425 const char *append;
4426 size_t append_len;
4427 bool omit_relative;
4428 bool separate_options;
4429 };
4430
4431 static void *
4432 spec_path (char *path, void *data)
4433 {
4434 struct spec_path_info *info = (struct spec_path_info *) data;
4435 size_t len = 0;
4436 char save = 0;
4437
4438 if (info->omit_relative && !IS_ABSOLUTE_PATH (path))
4439 return NULL;
4440
4441 if (info->append_len != 0)
4442 {
4443 len = strlen (path);
4444 memcpy (path + len, info->append, info->append_len + 1);
4445 }
4446
4447 if (!is_directory (path, true))
4448 return NULL;
4449
4450 do_spec_1 (info->option, 1, NULL);
4451 if (info->separate_options)
4452 do_spec_1 (" ", 0, NULL);
4453
4454 if (info->append_len == 0)
4455 {
4456 len = strlen (path);
4457 save = path[len - 1];
4458 if (IS_DIR_SEPARATOR (path[len - 1]))
4459 path[len - 1] = '\0';
4460 }
4461
4462 do_spec_1 (path, 1, NULL);
4463 do_spec_1 (" ", 0, NULL);
4464
4465 /* Must not damage the original path. */
4466 if (info->append_len == 0)
4467 path[len - 1] = save;
4468
4469 return NULL;
4470 }
4471
4472 /* Create a temporary FILE with the contents of ARGV. Add @FILE to the
4473 argument list. */
4474
4475 static void
4476 create_at_file (char **argv)
4477 {
4478 char *temp_file = make_temp_file ("");
4479 char *at_argument = concat ("@", temp_file, NULL);
4480 FILE *f = fopen (temp_file, "w");
4481 int status;
4482
4483 if (f == NULL)
4484 fatal_error ("could not open temporary response file %s",
4485 temp_file);
4486
4487 status = writeargv (argv, f);
4488
4489 if (status)
4490 fatal_error ("could not write to temporary response file %s",
4491 temp_file);
4492
4493 status = fclose (f);
4494
4495 if (EOF == status)
4496 fatal_error ("could not close temporary response file %s",
4497 temp_file);
4498
4499 store_arg (at_argument, 0, 0);
4500
4501 record_temp_file (temp_file, !save_temps_flag, !save_temps_flag);
4502 }
4503
4504 /* True if we should compile INFILE. */
4505
4506 static bool
4507 compile_input_file_p (struct infile *infile)
4508 {
4509 if ((!infile->language) || (infile->language[0] != '*'))
4510 if (infile->incompiler == input_file_compiler)
4511 return true;
4512 return false;
4513 }
4514
4515 /* Process each member of VEC as a spec. */
4516
4517 static void
4518 do_specs_vec (vec<char_p> vec)
4519 {
4520 unsigned ix;
4521 char *opt;
4522
4523 FOR_EACH_VEC_ELT (vec, ix, opt)
4524 {
4525 do_spec_1 (opt, 1, NULL);
4526 /* Make each accumulated option a separate argument. */
4527 do_spec_1 (" ", 0, NULL);
4528 }
4529 }
4530
4531 /* Process the sub-spec SPEC as a portion of a larger spec.
4532 This is like processing a whole spec except that we do
4533 not initialize at the beginning and we do not supply a
4534 newline by default at the end.
4535 INSWITCH nonzero means don't process %-sequences in SPEC;
4536 in this case, % is treated as an ordinary character.
4537 This is used while substituting switches.
4538 INSWITCH nonzero also causes SPC not to terminate an argument.
4539
4540 Value is zero unless a line was finished
4541 and the command on that line reported an error. */
4542
4543 static int
4544 do_spec_1 (const char *spec, int inswitch, const char *soft_matched_part)
4545 {
4546 const char *p = spec;
4547 int c;
4548 int i;
4549 int value;
4550
4551 /* If it's an empty string argument to a switch, keep it as is. */
4552 if (inswitch && !*p)
4553 arg_going = 1;
4554
4555 while ((c = *p++))
4556 /* If substituting a switch, treat all chars like letters.
4557 Otherwise, NL, SPC, TAB and % are special. */
4558 switch (inswitch ? 'a' : c)
4559 {
4560 case '\n':
4561 end_going_arg ();
4562
4563 if (argbuf.length () > 0
4564 && !strcmp (argbuf.last (), "|"))
4565 {
4566 /* A `|' before the newline means use a pipe here,
4567 but only if -pipe was specified.
4568 Otherwise, execute now and don't pass the `|' as an arg. */
4569 if (use_pipes)
4570 {
4571 input_from_pipe = 1;
4572 break;
4573 }
4574 else
4575 argbuf.pop ();
4576 }
4577
4578 set_collect_gcc_options ();
4579
4580 if (argbuf.length () > 0)
4581 {
4582 value = execute ();
4583 if (value)
4584 return value;
4585 }
4586 /* Reinitialize for a new command, and for a new argument. */
4587 clear_args ();
4588 arg_going = 0;
4589 delete_this_arg = 0;
4590 this_is_output_file = 0;
4591 this_is_library_file = 0;
4592 this_is_linker_script = 0;
4593 input_from_pipe = 0;
4594 break;
4595
4596 case '|':
4597 end_going_arg ();
4598
4599 /* Use pipe */
4600 obstack_1grow (&obstack, c);
4601 arg_going = 1;
4602 break;
4603
4604 case '\t':
4605 case ' ':
4606 end_going_arg ();
4607
4608 /* Reinitialize for a new argument. */
4609 delete_this_arg = 0;
4610 this_is_output_file = 0;
4611 this_is_library_file = 0;
4612 this_is_linker_script = 0;
4613 break;
4614
4615 case '%':
4616 switch (c = *p++)
4617 {
4618 case 0:
4619 fatal_error ("spec %qs invalid", spec);
4620
4621 case 'b':
4622 if (save_temps_length)
4623 obstack_grow (&obstack, save_temps_prefix, save_temps_length);
4624 else
4625 obstack_grow (&obstack, input_basename, basename_length);
4626 if (compare_debug < 0)
4627 obstack_grow (&obstack, ".gk", 3);
4628 arg_going = 1;
4629 break;
4630
4631 case 'B':
4632 if (save_temps_length)
4633 obstack_grow (&obstack, save_temps_prefix, save_temps_length);
4634 else
4635 obstack_grow (&obstack, input_basename, suffixed_basename_length);
4636 if (compare_debug < 0)
4637 obstack_grow (&obstack, ".gk", 3);
4638 arg_going = 1;
4639 break;
4640
4641 case 'd':
4642 delete_this_arg = 2;
4643 break;
4644
4645 /* Dump out the directories specified with LIBRARY_PATH,
4646 followed by the absolute directories
4647 that we search for startfiles. */
4648 case 'D':
4649 {
4650 struct spec_path_info info;
4651
4652 info.option = "-L";
4653 info.append_len = 0;
4654 #ifdef RELATIVE_PREFIX_NOT_LINKDIR
4655 /* Used on systems which record the specified -L dirs
4656 and use them to search for dynamic linking.
4657 Relative directories always come from -B,
4658 and it is better not to use them for searching
4659 at run time. In particular, stage1 loses. */
4660 info.omit_relative = true;
4661 #else
4662 info.omit_relative = false;
4663 #endif
4664 info.separate_options = false;
4665
4666 for_each_path (&startfile_prefixes, true, 0, spec_path, &info);
4667 }
4668 break;
4669
4670 case 'e':
4671 /* %efoo means report an error with `foo' as error message
4672 and don't execute any more commands for this file. */
4673 {
4674 const char *q = p;
4675 char *buf;
4676 while (*p != 0 && *p != '\n')
4677 p++;
4678 buf = (char *) alloca (p - q + 1);
4679 strncpy (buf, q, p - q);
4680 buf[p - q] = 0;
4681 error ("%s", _(buf));
4682 return -1;
4683 }
4684 break;
4685 case 'n':
4686 /* %nfoo means report a notice with `foo' on stderr. */
4687 {
4688 const char *q = p;
4689 char *buf;
4690 while (*p != 0 && *p != '\n')
4691 p++;
4692 buf = (char *) alloca (p - q + 1);
4693 strncpy (buf, q, p - q);
4694 buf[p - q] = 0;
4695 inform (0, "%s", _(buf));
4696 if (*p)
4697 p++;
4698 }
4699 break;
4700
4701 case 'j':
4702 {
4703 struct stat st;
4704
4705 /* If save_temps_flag is off, and the HOST_BIT_BUCKET is
4706 defined, and it is not a directory, and it is
4707 writable, use it. Otherwise, treat this like any
4708 other temporary file. */
4709
4710 if ((!save_temps_flag)
4711 && (stat (HOST_BIT_BUCKET, &st) == 0) && (!S_ISDIR (st.st_mode))
4712 && (access (HOST_BIT_BUCKET, W_OK) == 0))
4713 {
4714 obstack_grow (&obstack, HOST_BIT_BUCKET,
4715 strlen (HOST_BIT_BUCKET));
4716 delete_this_arg = 0;
4717 arg_going = 1;
4718 break;
4719 }
4720 }
4721 goto create_temp_file;
4722 case '|':
4723 if (use_pipes)
4724 {
4725 obstack_1grow (&obstack, '-');
4726 delete_this_arg = 0;
4727 arg_going = 1;
4728
4729 /* consume suffix */
4730 while (*p == '.' || ISALNUM ((unsigned char) *p))
4731 p++;
4732 if (p[0] == '%' && p[1] == 'O')
4733 p += 2;
4734
4735 break;
4736 }
4737 goto create_temp_file;
4738 case 'm':
4739 if (use_pipes)
4740 {
4741 /* consume suffix */
4742 while (*p == '.' || ISALNUM ((unsigned char) *p))
4743 p++;
4744 if (p[0] == '%' && p[1] == 'O')
4745 p += 2;
4746
4747 break;
4748 }
4749 goto create_temp_file;
4750 case 'g':
4751 case 'u':
4752 case 'U':
4753 create_temp_file:
4754 {
4755 struct temp_name *t;
4756 int suffix_length;
4757 const char *suffix = p;
4758 char *saved_suffix = NULL;
4759
4760 while (*p == '.' || ISALNUM ((unsigned char) *p))
4761 p++;
4762 suffix_length = p - suffix;
4763 if (p[0] == '%' && p[1] == 'O')
4764 {
4765 p += 2;
4766 /* We don't support extra suffix characters after %O. */
4767 if (*p == '.' || ISALNUM ((unsigned char) *p))
4768 fatal_error ("spec %qs has invalid %<%%0%c%>", spec, *p);
4769 if (suffix_length == 0)
4770 suffix = TARGET_OBJECT_SUFFIX;
4771 else
4772 {
4773 saved_suffix
4774 = XNEWVEC (char, suffix_length
4775 + strlen (TARGET_OBJECT_SUFFIX));
4776 strncpy (saved_suffix, suffix, suffix_length);
4777 strcpy (saved_suffix + suffix_length,
4778 TARGET_OBJECT_SUFFIX);
4779 }
4780 suffix_length += strlen (TARGET_OBJECT_SUFFIX);
4781 }
4782
4783 if (compare_debug < 0)
4784 {
4785 suffix = concat (".gk", suffix, NULL);
4786 suffix_length += 3;
4787 }
4788
4789 /* If -save-temps=obj and -o were specified, use that for the
4790 temp file. */
4791 if (save_temps_length)
4792 {
4793 char *tmp;
4794 temp_filename_length
4795 = save_temps_length + suffix_length + 1;
4796 tmp = (char *) alloca (temp_filename_length);
4797 memcpy (tmp, save_temps_prefix, save_temps_length);
4798 memcpy (tmp + save_temps_length, suffix, suffix_length);
4799 tmp[save_temps_length + suffix_length] = '\0';
4800 temp_filename = save_string (tmp, save_temps_length
4801 + suffix_length);
4802 obstack_grow (&obstack, temp_filename,
4803 temp_filename_length);
4804 arg_going = 1;
4805 delete_this_arg = 0;
4806 break;
4807 }
4808
4809 /* If the gcc_input_filename has the same suffix specified
4810 for the %g, %u, or %U, and -save-temps is specified,
4811 we could end up using that file as an intermediate
4812 thus clobbering the user's source file (.e.g.,
4813 gcc -save-temps foo.s would clobber foo.s with the
4814 output of cpp0). So check for this condition and
4815 generate a temp file as the intermediate. */
4816
4817 if (save_temps_flag)
4818 {
4819 char *tmp;
4820 temp_filename_length = basename_length + suffix_length + 1;
4821 tmp = (char *) alloca (temp_filename_length);
4822 memcpy (tmp, input_basename, basename_length);
4823 memcpy (tmp + basename_length, suffix, suffix_length);
4824 tmp[basename_length + suffix_length] = '\0';
4825 temp_filename = tmp;
4826
4827 if (filename_cmp (temp_filename, gcc_input_filename) != 0)
4828 {
4829 #ifndef HOST_LACKS_INODE_NUMBERS
4830 struct stat st_temp;
4831
4832 /* Note, set_input() resets input_stat_set to 0. */
4833 if (input_stat_set == 0)
4834 {
4835 input_stat_set = stat (gcc_input_filename,
4836 &input_stat);
4837 if (input_stat_set >= 0)
4838 input_stat_set = 1;
4839 }
4840
4841 /* If we have the stat for the gcc_input_filename
4842 and we can do the stat for the temp_filename
4843 then the they could still refer to the same
4844 file if st_dev/st_ino's are the same. */
4845 if (input_stat_set != 1
4846 || stat (temp_filename, &st_temp) < 0
4847 || input_stat.st_dev != st_temp.st_dev
4848 || input_stat.st_ino != st_temp.st_ino)
4849 #else
4850 /* Just compare canonical pathnames. */
4851 char* input_realname = lrealpath (gcc_input_filename);
4852 char* temp_realname = lrealpath (temp_filename);
4853 bool files_differ = filename_cmp (input_realname, temp_realname);
4854 free (input_realname);
4855 free (temp_realname);
4856 if (files_differ)
4857 #endif
4858 {
4859 temp_filename = save_string (temp_filename,
4860 temp_filename_length + 1);
4861 obstack_grow (&obstack, temp_filename,
4862 temp_filename_length);
4863 arg_going = 1;
4864 delete_this_arg = 0;
4865 break;
4866 }
4867 }
4868 }
4869
4870 /* See if we already have an association of %g/%u/%U and
4871 suffix. */
4872 for (t = temp_names; t; t = t->next)
4873 if (t->length == suffix_length
4874 && strncmp (t->suffix, suffix, suffix_length) == 0
4875 && t->unique == (c == 'u' || c == 'U' || c == 'j'))
4876 break;
4877
4878 /* Make a new association if needed. %u and %j
4879 require one. */
4880 if (t == 0 || c == 'u' || c == 'j')
4881 {
4882 if (t == 0)
4883 {
4884 t = XNEW (struct temp_name);
4885 t->next = temp_names;
4886 temp_names = t;
4887 }
4888 t->length = suffix_length;
4889 if (saved_suffix)
4890 {
4891 t->suffix = saved_suffix;
4892 saved_suffix = NULL;
4893 }
4894 else
4895 t->suffix = save_string (suffix, suffix_length);
4896 t->unique = (c == 'u' || c == 'U' || c == 'j');
4897 temp_filename = make_temp_file (t->suffix);
4898 temp_filename_length = strlen (temp_filename);
4899 t->filename = temp_filename;
4900 t->filename_length = temp_filename_length;
4901 }
4902
4903 free (saved_suffix);
4904
4905 obstack_grow (&obstack, t->filename, t->filename_length);
4906 delete_this_arg = 1;
4907 }
4908 arg_going = 1;
4909 break;
4910
4911 case 'i':
4912 if (combine_inputs)
4913 {
4914 if (at_file_supplied)
4915 {
4916 /* We are going to expand `%i' to `@FILE', where FILE
4917 is a newly-created temporary filename. The filenames
4918 that would usually be expanded in place of %o will be
4919 written to the temporary file. */
4920 char **argv;
4921 int n_files = 0;
4922 int j;
4923
4924 for (i = 0; i < n_infiles; i++)
4925 if (compile_input_file_p (&infiles[i]))
4926 n_files++;
4927
4928 argv = (char **) alloca (sizeof (char *) * (n_files + 1));
4929
4930 /* Copy the strings over. */
4931 for (i = 0, j = 0; i < n_infiles; i++)
4932 if (compile_input_file_p (&infiles[i]))
4933 {
4934 argv[j] = CONST_CAST (char *, infiles[i].name);
4935 infiles[i].compiled = true;
4936 j++;
4937 }
4938 argv[j] = NULL;
4939
4940 create_at_file (argv);
4941 }
4942 else
4943 for (i = 0; (int) i < n_infiles; i++)
4944 if (compile_input_file_p (&infiles[i]))
4945 {
4946 store_arg (infiles[i].name, 0, 0);
4947 infiles[i].compiled = true;
4948 }
4949 }
4950 else
4951 {
4952 obstack_grow (&obstack, gcc_input_filename,
4953 input_filename_length);
4954 arg_going = 1;
4955 }
4956 break;
4957
4958 case 'I':
4959 {
4960 struct spec_path_info info;
4961
4962 if (multilib_dir)
4963 {
4964 do_spec_1 ("-imultilib", 1, NULL);
4965 /* Make this a separate argument. */
4966 do_spec_1 (" ", 0, NULL);
4967 do_spec_1 (multilib_dir, 1, NULL);
4968 do_spec_1 (" ", 0, NULL);
4969 }
4970
4971 if (multiarch_dir)
4972 {
4973 do_spec_1 ("-imultiarch", 1, NULL);
4974 /* Make this a separate argument. */
4975 do_spec_1 (" ", 0, NULL);
4976 do_spec_1 (multiarch_dir, 1, NULL);
4977 do_spec_1 (" ", 0, NULL);
4978 }
4979
4980 if (gcc_exec_prefix)
4981 {
4982 do_spec_1 ("-iprefix", 1, NULL);
4983 /* Make this a separate argument. */
4984 do_spec_1 (" ", 0, NULL);
4985 do_spec_1 (gcc_exec_prefix, 1, NULL);
4986 do_spec_1 (" ", 0, NULL);
4987 }
4988
4989 if (target_system_root_changed ||
4990 (target_system_root && target_sysroot_hdrs_suffix))
4991 {
4992 do_spec_1 ("-isysroot", 1, NULL);
4993 /* Make this a separate argument. */
4994 do_spec_1 (" ", 0, NULL);
4995 do_spec_1 (target_system_root, 1, NULL);
4996 if (target_sysroot_hdrs_suffix)
4997 do_spec_1 (target_sysroot_hdrs_suffix, 1, NULL);
4998 do_spec_1 (" ", 0, NULL);
4999 }
5000
5001 info.option = "-isystem";
5002 info.append = "include";
5003 info.append_len = strlen (info.append);
5004 info.omit_relative = false;
5005 info.separate_options = true;
5006
5007 for_each_path (&include_prefixes, false, info.append_len,
5008 spec_path, &info);
5009
5010 info.append = "include-fixed";
5011 if (*sysroot_hdrs_suffix_spec)
5012 info.append = concat (info.append, dir_separator_str,
5013 multilib_dir, NULL);
5014 info.append_len = strlen (info.append);
5015 for_each_path (&include_prefixes, false, info.append_len,
5016 spec_path, &info);
5017 }
5018 break;
5019
5020 case 'o':
5021 {
5022 int max = n_infiles;
5023 max += lang_specific_extra_outfiles;
5024
5025 if (HAVE_GNU_LD && at_file_supplied)
5026 {
5027 /* We are going to expand `%o' to `@FILE', where FILE
5028 is a newly-created temporary filename. The filenames
5029 that would usually be expanded in place of %o will be
5030 written to the temporary file. */
5031
5032 char **argv;
5033 int n_files, j;
5034
5035 /* Convert OUTFILES into a form suitable for writeargv. */
5036
5037 /* Determine how many are non-NULL. */
5038 for (n_files = 0, i = 0; i < max; i++)
5039 n_files += outfiles[i] != NULL;
5040
5041 argv = (char **) alloca (sizeof (char *) * (n_files + 1));
5042
5043 /* Copy the strings over. */
5044 for (i = 0, j = 0; i < max; i++)
5045 if (outfiles[i])
5046 {
5047 argv[j] = CONST_CAST (char *, outfiles[i]);
5048 j++;
5049 }
5050 argv[j] = NULL;
5051
5052 create_at_file (argv);
5053 }
5054 else
5055 for (i = 0; i < max; i++)
5056 if (outfiles[i])
5057 store_arg (outfiles[i], 0, 0);
5058 break;
5059 }
5060
5061 case 'O':
5062 obstack_grow (&obstack, TARGET_OBJECT_SUFFIX, strlen (TARGET_OBJECT_SUFFIX));
5063 arg_going = 1;
5064 break;
5065
5066 case 's':
5067 this_is_library_file = 1;
5068 break;
5069
5070 case 'T':
5071 this_is_linker_script = 1;
5072 break;
5073
5074 case 'V':
5075 outfiles[input_file_number] = NULL;
5076 break;
5077
5078 case 'w':
5079 this_is_output_file = 1;
5080 break;
5081
5082 case 'W':
5083 {
5084 unsigned int cur_index = argbuf.length ();
5085 /* Handle the {...} following the %W. */
5086 if (*p != '{')
5087 fatal_error ("spec %qs has invalid %<%%W%c%>", spec, *p);
5088 p = handle_braces (p + 1);
5089 if (p == 0)
5090 return -1;
5091 end_going_arg ();
5092 /* If any args were output, mark the last one for deletion
5093 on failure. */
5094 if (argbuf.length () != cur_index)
5095 record_temp_file (argbuf.last (), 0, 1);
5096 break;
5097 }
5098
5099 /* %x{OPTION} records OPTION for %X to output. */
5100 case 'x':
5101 {
5102 const char *p1 = p;
5103 char *string;
5104 char *opt;
5105 unsigned ix;
5106
5107 /* Skip past the option value and make a copy. */
5108 if (*p != '{')
5109 fatal_error ("spec %qs has invalid %<%%x%c%>", spec, *p);
5110 while (*p++ != '}')
5111 ;
5112 string = save_string (p1 + 1, p - p1 - 2);
5113
5114 /* See if we already recorded this option. */
5115 FOR_EACH_VEC_ELT (linker_options, ix, opt)
5116 if (! strcmp (string, opt))
5117 {
5118 free (string);
5119 return 0;
5120 }
5121
5122 /* This option is new; add it. */
5123 add_linker_option (string, strlen (string));
5124 free (string);
5125 }
5126 break;
5127
5128 /* Dump out the options accumulated previously using %x. */
5129 case 'X':
5130 do_specs_vec (linker_options);
5131 break;
5132
5133 /* Dump out the options accumulated previously using -Wa,. */
5134 case 'Y':
5135 do_specs_vec (assembler_options);
5136 break;
5137
5138 /* Dump out the options accumulated previously using -Wp,. */
5139 case 'Z':
5140 do_specs_vec (preprocessor_options);
5141 break;
5142
5143 /* Here are digits and numbers that just process
5144 a certain constant string as a spec. */
5145
5146 case '1':
5147 value = do_spec_1 (cc1_spec, 0, NULL);
5148 if (value != 0)
5149 return value;
5150 break;
5151
5152 case '2':
5153 value = do_spec_1 (cc1plus_spec, 0, NULL);
5154 if (value != 0)
5155 return value;
5156 break;
5157
5158 case 'a':
5159 value = do_spec_1 (asm_spec, 0, NULL);
5160 if (value != 0)
5161 return value;
5162 break;
5163
5164 case 'A':
5165 value = do_spec_1 (asm_final_spec, 0, NULL);
5166 if (value != 0)
5167 return value;
5168 break;
5169
5170 case 'C':
5171 {
5172 const char *const spec
5173 = (input_file_compiler->cpp_spec
5174 ? input_file_compiler->cpp_spec
5175 : cpp_spec);
5176 value = do_spec_1 (spec, 0, NULL);
5177 if (value != 0)
5178 return value;
5179 }
5180 break;
5181
5182 case 'E':
5183 value = do_spec_1 (endfile_spec, 0, NULL);
5184 if (value != 0)
5185 return value;
5186 break;
5187
5188 case 'l':
5189 value = do_spec_1 (link_spec, 0, NULL);
5190 if (value != 0)
5191 return value;
5192 break;
5193
5194 case 'L':
5195 value = do_spec_1 (lib_spec, 0, NULL);
5196 if (value != 0)
5197 return value;
5198 break;
5199
5200 case 'M':
5201 if (multilib_os_dir == NULL)
5202 obstack_1grow (&obstack, '.');
5203 else
5204 obstack_grow (&obstack, multilib_os_dir,
5205 strlen (multilib_os_dir));
5206 break;
5207
5208 case 'G':
5209 value = do_spec_1 (libgcc_spec, 0, NULL);
5210 if (value != 0)
5211 return value;
5212 break;
5213
5214 case 'R':
5215 /* We assume there is a directory
5216 separator at the end of this string. */
5217 if (target_system_root)
5218 {
5219 obstack_grow (&obstack, target_system_root,
5220 strlen (target_system_root));
5221 if (target_sysroot_suffix)
5222 obstack_grow (&obstack, target_sysroot_suffix,
5223 strlen (target_sysroot_suffix));
5224 }
5225 break;
5226
5227 case 'S':
5228 value = do_spec_1 (startfile_spec, 0, NULL);
5229 if (value != 0)
5230 return value;
5231 break;
5232
5233 /* Here we define characters other than letters and digits. */
5234
5235 case '{':
5236 p = handle_braces (p);
5237 if (p == 0)
5238 return -1;
5239 break;
5240
5241 case ':':
5242 p = handle_spec_function (p);
5243 if (p == 0)
5244 return -1;
5245 break;
5246
5247 case '%':
5248 obstack_1grow (&obstack, '%');
5249 break;
5250
5251 case '.':
5252 {
5253 unsigned len = 0;
5254
5255 while (p[len] && p[len] != ' ' && p[len] != '%')
5256 len++;
5257 suffix_subst = save_string (p - 1, len + 1);
5258 p += len;
5259 }
5260 break;
5261
5262 /* Henceforth ignore the option(s) matching the pattern
5263 after the %<. */
5264 case '<':
5265 case '>':
5266 {
5267 unsigned len = 0;
5268 int have_wildcard = 0;
5269 int i;
5270 int switch_option;
5271
5272 if (c == '>')
5273 switch_option = SWITCH_IGNORE | SWITCH_KEEP_FOR_GCC;
5274 else
5275 switch_option = SWITCH_IGNORE;
5276
5277 while (p[len] && p[len] != ' ' && p[len] != '\t')
5278 len++;
5279
5280 if (p[len-1] == '*')
5281 have_wildcard = 1;
5282
5283 for (i = 0; i < n_switches; i++)
5284 if (!strncmp (switches[i].part1, p, len - have_wildcard)
5285 && (have_wildcard || switches[i].part1[len] == '\0'))
5286 {
5287 switches[i].live_cond |= switch_option;
5288 /* User switch be validated from validate_all_switches.
5289 when the definition is seen from the spec file.
5290 If not defined anywhere, will be rejected. */
5291 if (switches[i].known)
5292 switches[i].validated = true;
5293 }
5294
5295 p += len;
5296 }
5297 break;
5298
5299 case '*':
5300 if (soft_matched_part)
5301 {
5302 if (soft_matched_part[0])
5303 do_spec_1 (soft_matched_part, 1, NULL);
5304 do_spec_1 (" ", 0, NULL);
5305 }
5306 else
5307 /* Catch the case where a spec string contains something like
5308 '%{foo:%*}'. i.e. there is no * in the pattern on the left
5309 hand side of the :. */
5310 error ("spec failure: %<%%*%> has not been initialized by pattern match");
5311 break;
5312
5313 /* Process a string found as the value of a spec given by name.
5314 This feature allows individual machine descriptions
5315 to add and use their own specs. */
5316 case '(':
5317 {
5318 const char *name = p;
5319 struct spec_list *sl;
5320 int len;
5321
5322 /* The string after the S/P is the name of a spec that is to be
5323 processed. */
5324 while (*p && *p != ')')
5325 p++;
5326
5327 /* See if it's in the list. */
5328 for (len = p - name, sl = specs; sl; sl = sl->next)
5329 if (sl->name_len == len && !strncmp (sl->name, name, len))
5330 {
5331 name = *(sl->ptr_spec);
5332 #ifdef DEBUG_SPECS
5333 fnotice (stderr, "Processing spec (%s), which is '%s'\n",
5334 sl->name, name);
5335 #endif
5336 break;
5337 }
5338
5339 if (sl)
5340 {
5341 value = do_spec_1 (name, 0, NULL);
5342 if (value != 0)
5343 return value;
5344 }
5345
5346 /* Discard the closing paren. */
5347 if (*p)
5348 p++;
5349 }
5350 break;
5351
5352 default:
5353 error ("spec failure: unrecognized spec option %qc", c);
5354 break;
5355 }
5356 break;
5357
5358 case '\\':
5359 /* Backslash: treat next character as ordinary. */
5360 c = *p++;
5361
5362 /* Fall through. */
5363 default:
5364 /* Ordinary character: put it into the current argument. */
5365 obstack_1grow (&obstack, c);
5366 arg_going = 1;
5367 }
5368
5369 /* End of string. If we are processing a spec function, we need to
5370 end any pending argument. */
5371 if (processing_spec_function)
5372 end_going_arg ();
5373
5374 return 0;
5375 }
5376
5377 /* Look up a spec function. */
5378
5379 static const struct spec_function *
5380 lookup_spec_function (const char *name)
5381 {
5382 const struct spec_function *sf;
5383
5384 for (sf = static_spec_functions; sf->name != NULL; sf++)
5385 if (strcmp (sf->name, name) == 0)
5386 return sf;
5387
5388 return NULL;
5389 }
5390
5391 /* Evaluate a spec function. */
5392
5393 static const char *
5394 eval_spec_function (const char *func, const char *args)
5395 {
5396 const struct spec_function *sf;
5397 const char *funcval;
5398
5399 /* Saved spec processing context. */
5400 vec<const_char_p> save_argbuf;
5401
5402 int save_arg_going;
5403 int save_delete_this_arg;
5404 int save_this_is_output_file;
5405 int save_this_is_library_file;
5406 int save_input_from_pipe;
5407 int save_this_is_linker_script;
5408 const char *save_suffix_subst;
5409
5410 int save_growing_size;
5411 void *save_growing_value;
5412
5413 sf = lookup_spec_function (func);
5414 if (sf == NULL)
5415 fatal_error ("unknown spec function %qs", func);
5416
5417 /* Push the spec processing context. */
5418 save_argbuf = argbuf;
5419
5420 save_arg_going = arg_going;
5421 save_delete_this_arg = delete_this_arg;
5422 save_this_is_output_file = this_is_output_file;
5423 save_this_is_library_file = this_is_library_file;
5424 save_this_is_linker_script = this_is_linker_script;
5425 save_input_from_pipe = input_from_pipe;
5426 save_suffix_subst = suffix_subst;
5427
5428 /* If we have some object growing now, finalize it so the args and function
5429 eval proceed from a cleared context. This is needed to prevent the first
5430 constructed arg from mistakenly including the growing value. We'll push
5431 this value back on the obstack once the function evaluation is done, to
5432 restore a consistent processing context for our caller. This is fine as
5433 the address of growing objects isn't guaranteed to remain stable until
5434 they are finalized, and we expect this situation to be rare enough for
5435 the extra copy not to be an issue. */
5436 save_growing_size = obstack_object_size (&obstack);
5437 if (save_growing_size > 0)
5438 save_growing_value = obstack_finish (&obstack);
5439
5440 /* Create a new spec processing context, and build the function
5441 arguments. */
5442
5443 alloc_args ();
5444 if (do_spec_2 (args) < 0)
5445 fatal_error ("error in args to spec function %qs", func);
5446
5447 /* argbuf_index is an index for the next argument to be inserted, and
5448 so contains the count of the args already inserted. */
5449
5450 funcval = (*sf->func) (argbuf.length (),
5451 argbuf.address ());
5452
5453 /* Pop the spec processing context. */
5454 argbuf.release ();
5455 argbuf = save_argbuf;
5456
5457 arg_going = save_arg_going;
5458 delete_this_arg = save_delete_this_arg;
5459 this_is_output_file = save_this_is_output_file;
5460 this_is_library_file = save_this_is_library_file;
5461 this_is_linker_script = save_this_is_linker_script;
5462 input_from_pipe = save_input_from_pipe;
5463 suffix_subst = save_suffix_subst;
5464
5465 if (save_growing_size > 0)
5466 obstack_grow (&obstack, save_growing_value, save_growing_size);
5467
5468 return funcval;
5469 }
5470
5471 /* Handle a spec function call of the form:
5472
5473 %:function(args)
5474
5475 ARGS is processed as a spec in a separate context and split into an
5476 argument vector in the normal fashion. The function returns a string
5477 containing a spec which we then process in the caller's context, or
5478 NULL if no processing is required. */
5479
5480 static const char *
5481 handle_spec_function (const char *p)
5482 {
5483 char *func, *args;
5484 const char *endp, *funcval;
5485 int count;
5486
5487 processing_spec_function++;
5488
5489 /* Get the function name. */
5490 for (endp = p; *endp != '\0'; endp++)
5491 {
5492 if (*endp == '(') /* ) */
5493 break;
5494 /* Only allow [A-Za-z0-9], -, and _ in function names. */
5495 if (!ISALNUM (*endp) && !(*endp == '-' || *endp == '_'))
5496 fatal_error ("malformed spec function name");
5497 }
5498 if (*endp != '(') /* ) */
5499 fatal_error ("no arguments for spec function");
5500 func = save_string (p, endp - p);
5501 p = ++endp;
5502
5503 /* Get the arguments. */
5504 for (count = 0; *endp != '\0'; endp++)
5505 {
5506 /* ( */
5507 if (*endp == ')')
5508 {
5509 if (count == 0)
5510 break;
5511 count--;
5512 }
5513 else if (*endp == '(') /* ) */
5514 count++;
5515 }
5516 /* ( */
5517 if (*endp != ')')
5518 fatal_error ("malformed spec function arguments");
5519 args = save_string (p, endp - p);
5520 p = ++endp;
5521
5522 /* p now points to just past the end of the spec function expression. */
5523
5524 funcval = eval_spec_function (func, args);
5525 if (funcval != NULL && do_spec_1 (funcval, 0, NULL) < 0)
5526 p = NULL;
5527
5528 free (func);
5529 free (args);
5530
5531 processing_spec_function--;
5532
5533 return p;
5534 }
5535
5536 /* Inline subroutine of handle_braces. Returns true if the current
5537 input suffix matches the atom bracketed by ATOM and END_ATOM. */
5538 static inline bool
5539 input_suffix_matches (const char *atom, const char *end_atom)
5540 {
5541 return (input_suffix
5542 && !strncmp (input_suffix, atom, end_atom - atom)
5543 && input_suffix[end_atom - atom] == '\0');
5544 }
5545
5546 /* Subroutine of handle_braces. Returns true if the current
5547 input file's spec name matches the atom bracketed by ATOM and END_ATOM. */
5548 static bool
5549 input_spec_matches (const char *atom, const char *end_atom)
5550 {
5551 return (input_file_compiler
5552 && input_file_compiler->suffix
5553 && input_file_compiler->suffix[0] != '\0'
5554 && !strncmp (input_file_compiler->suffix + 1, atom,
5555 end_atom - atom)
5556 && input_file_compiler->suffix[end_atom - atom + 1] == '\0');
5557 }
5558
5559 /* Subroutine of handle_braces. Returns true if a switch
5560 matching the atom bracketed by ATOM and END_ATOM appeared on the
5561 command line. */
5562 static bool
5563 switch_matches (const char *atom, const char *end_atom, int starred)
5564 {
5565 int i;
5566 int len = end_atom - atom;
5567 int plen = starred ? len : -1;
5568
5569 for (i = 0; i < n_switches; i++)
5570 if (!strncmp (switches[i].part1, atom, len)
5571 && (starred || switches[i].part1[len] == '\0')
5572 && check_live_switch (i, plen))
5573 return true;
5574
5575 /* Check if a switch with separated form matching the atom.
5576 We check -D and -U switches. */
5577 else if (switches[i].args != 0)
5578 {
5579 if ((*switches[i].part1 == 'D' || *switches[i].part1 == 'U')
5580 && *switches[i].part1 == atom[0])
5581 {
5582 if (!strncmp (switches[i].args[0], &atom[1], len - 1)
5583 && (starred || (switches[i].part1[1] == '\0'
5584 && switches[i].args[0][len - 1] == '\0'))
5585 && check_live_switch (i, (starred ? 1 : -1)))
5586 return true;
5587 }
5588 }
5589
5590 return false;
5591 }
5592
5593 /* Inline subroutine of handle_braces. Mark all of the switches which
5594 match ATOM (extends to END_ATOM; STARRED indicates whether there
5595 was a star after the atom) for later processing. */
5596 static inline void
5597 mark_matching_switches (const char *atom, const char *end_atom, int starred)
5598 {
5599 int i;
5600 int len = end_atom - atom;
5601 int plen = starred ? len : -1;
5602
5603 for (i = 0; i < n_switches; i++)
5604 if (!strncmp (switches[i].part1, atom, len)
5605 && (starred || switches[i].part1[len] == '\0')
5606 && check_live_switch (i, plen))
5607 switches[i].ordering = 1;
5608 }
5609
5610 /* Inline subroutine of handle_braces. Process all the currently
5611 marked switches through give_switch, and clear the marks. */
5612 static inline void
5613 process_marked_switches (void)
5614 {
5615 int i;
5616
5617 for (i = 0; i < n_switches; i++)
5618 if (switches[i].ordering == 1)
5619 {
5620 switches[i].ordering = 0;
5621 give_switch (i, 0);
5622 }
5623 }
5624
5625 /* Handle a %{ ... } construct. P points just inside the leading {.
5626 Returns a pointer one past the end of the brace block, or 0
5627 if we call do_spec_1 and that returns -1. */
5628
5629 static const char *
5630 handle_braces (const char *p)
5631 {
5632 const char *atom, *end_atom;
5633 const char *d_atom = NULL, *d_end_atom = NULL;
5634 const char *orig = p;
5635
5636 bool a_is_suffix;
5637 bool a_is_spectype;
5638 bool a_is_starred;
5639 bool a_is_negated;
5640 bool a_matched;
5641
5642 bool a_must_be_last = false;
5643 bool ordered_set = false;
5644 bool disjunct_set = false;
5645 bool disj_matched = false;
5646 bool disj_starred = true;
5647 bool n_way_choice = false;
5648 bool n_way_matched = false;
5649
5650 #define SKIP_WHITE() do { while (*p == ' ' || *p == '\t') p++; } while (0)
5651
5652 do
5653 {
5654 if (a_must_be_last)
5655 goto invalid;
5656
5657 /* Scan one "atom" (S in the description above of %{}, possibly
5658 with '!', '.', '@', ',', or '*' modifiers). */
5659 a_matched = false;
5660 a_is_suffix = false;
5661 a_is_starred = false;
5662 a_is_negated = false;
5663 a_is_spectype = false;
5664
5665 SKIP_WHITE();
5666 if (*p == '!')
5667 p++, a_is_negated = true;
5668
5669 SKIP_WHITE();
5670 if (*p == '.')
5671 p++, a_is_suffix = true;
5672 else if (*p == ',')
5673 p++, a_is_spectype = true;
5674
5675 atom = p;
5676 while (ISIDNUM(*p) || *p == '-' || *p == '+' || *p == '='
5677 || *p == ',' || *p == '.' || *p == '@')
5678 p++;
5679 end_atom = p;
5680
5681 if (*p == '*')
5682 p++, a_is_starred = 1;
5683
5684 SKIP_WHITE();
5685 switch (*p)
5686 {
5687 case '&': case '}':
5688 /* Substitute the switch(es) indicated by the current atom. */
5689 ordered_set = true;
5690 if (disjunct_set || n_way_choice || a_is_negated || a_is_suffix
5691 || a_is_spectype || atom == end_atom)
5692 goto invalid;
5693
5694 mark_matching_switches (atom, end_atom, a_is_starred);
5695
5696 if (*p == '}')
5697 process_marked_switches ();
5698 break;
5699
5700 case '|': case ':':
5701 /* Substitute some text if the current atom appears as a switch
5702 or suffix. */
5703 disjunct_set = true;
5704 if (ordered_set)
5705 goto invalid;
5706
5707 if (atom == end_atom)
5708 {
5709 if (!n_way_choice || disj_matched || *p == '|'
5710 || a_is_negated || a_is_suffix || a_is_spectype
5711 || a_is_starred)
5712 goto invalid;
5713
5714 /* An empty term may appear as the last choice of an
5715 N-way choice set; it means "otherwise". */
5716 a_must_be_last = true;
5717 disj_matched = !n_way_matched;
5718 disj_starred = false;
5719 }
5720 else
5721 {
5722 if ((a_is_suffix || a_is_spectype) && a_is_starred)
5723 goto invalid;
5724
5725 if (!a_is_starred)
5726 disj_starred = false;
5727
5728 /* Don't bother testing this atom if we already have a
5729 match. */
5730 if (!disj_matched && !n_way_matched)
5731 {
5732 if (a_is_suffix)
5733 a_matched = input_suffix_matches (atom, end_atom);
5734 else if (a_is_spectype)
5735 a_matched = input_spec_matches (atom, end_atom);
5736 else
5737 a_matched = switch_matches (atom, end_atom, a_is_starred);
5738
5739 if (a_matched != a_is_negated)
5740 {
5741 disj_matched = true;
5742 d_atom = atom;
5743 d_end_atom = end_atom;
5744 }
5745 }
5746 }
5747
5748 if (*p == ':')
5749 {
5750 /* Found the body, that is, the text to substitute if the
5751 current disjunction matches. */
5752 p = process_brace_body (p + 1, d_atom, d_end_atom, disj_starred,
5753 disj_matched && !n_way_matched);
5754 if (p == 0)
5755 return 0;
5756
5757 /* If we have an N-way choice, reset state for the next
5758 disjunction. */
5759 if (*p == ';')
5760 {
5761 n_way_choice = true;
5762 n_way_matched |= disj_matched;
5763 disj_matched = false;
5764 disj_starred = true;
5765 d_atom = d_end_atom = NULL;
5766 }
5767 }
5768 break;
5769
5770 default:
5771 goto invalid;
5772 }
5773 }
5774 while (*p++ != '}');
5775
5776 return p;
5777
5778 invalid:
5779 fatal_error ("braced spec %qs is invalid at %qc", orig, *p);
5780
5781 #undef SKIP_WHITE
5782 }
5783
5784 /* Subroutine of handle_braces. Scan and process a brace substitution body
5785 (X in the description of %{} syntax). P points one past the colon;
5786 ATOM and END_ATOM bracket the first atom which was found to be true
5787 (present) in the current disjunction; STARRED indicates whether all
5788 the atoms in the current disjunction were starred (for syntax validation);
5789 MATCHED indicates whether the disjunction matched or not, and therefore
5790 whether or not the body is to be processed through do_spec_1 or just
5791 skipped. Returns a pointer to the closing } or ;, or 0 if do_spec_1
5792 returns -1. */
5793
5794 static const char *
5795 process_brace_body (const char *p, const char *atom, const char *end_atom,
5796 int starred, int matched)
5797 {
5798 const char *body, *end_body;
5799 unsigned int nesting_level;
5800 bool have_subst = false;
5801
5802 /* Locate the closing } or ;, honoring nested braces.
5803 Trim trailing whitespace. */
5804 body = p;
5805 nesting_level = 1;
5806 for (;;)
5807 {
5808 if (*p == '{')
5809 nesting_level++;
5810 else if (*p == '}')
5811 {
5812 if (!--nesting_level)
5813 break;
5814 }
5815 else if (*p == ';' && nesting_level == 1)
5816 break;
5817 else if (*p == '%' && p[1] == '*' && nesting_level == 1)
5818 have_subst = true;
5819 else if (*p == '\0')
5820 goto invalid;
5821 p++;
5822 }
5823
5824 end_body = p;
5825 while (end_body[-1] == ' ' || end_body[-1] == '\t')
5826 end_body--;
5827
5828 if (have_subst && !starred)
5829 goto invalid;
5830
5831 if (matched)
5832 {
5833 /* Copy the substitution body to permanent storage and execute it.
5834 If have_subst is false, this is a simple matter of running the
5835 body through do_spec_1... */
5836 char *string = save_string (body, end_body - body);
5837 if (!have_subst)
5838 {
5839 if (do_spec_1 (string, 0, NULL) < 0)
5840 return 0;
5841 }
5842 else
5843 {
5844 /* ... but if have_subst is true, we have to process the
5845 body once for each matching switch, with %* set to the
5846 variant part of the switch. */
5847 unsigned int hard_match_len = end_atom - atom;
5848 int i;
5849
5850 for (i = 0; i < n_switches; i++)
5851 if (!strncmp (switches[i].part1, atom, hard_match_len)
5852 && check_live_switch (i, hard_match_len))
5853 {
5854 if (do_spec_1 (string, 0,
5855 &switches[i].part1[hard_match_len]) < 0)
5856 return 0;
5857 /* Pass any arguments this switch has. */
5858 give_switch (i, 1);
5859 suffix_subst = NULL;
5860 }
5861 }
5862 }
5863
5864 return p;
5865
5866 invalid:
5867 fatal_error ("braced spec body %qs is invalid", body);
5868 }
5869 \f
5870 /* Return 0 iff switch number SWITCHNUM is obsoleted by a later switch
5871 on the command line. PREFIX_LENGTH is the length of XXX in an {XXX*}
5872 spec, or -1 if either exact match or %* is used.
5873
5874 A -O switch is obsoleted by a later -O switch. A -f, -g, -m, or -W switch
5875 whose value does not begin with "no-" is obsoleted by the same value
5876 with the "no-", similarly for a switch with the "no-" prefix. */
5877
5878 static int
5879 check_live_switch (int switchnum, int prefix_length)
5880 {
5881 const char *name = switches[switchnum].part1;
5882 int i;
5883
5884 /* If we already processed this switch and determined if it was
5885 live or not, return our past determination. */
5886 if (switches[switchnum].live_cond != 0)
5887 return ((switches[switchnum].live_cond & SWITCH_LIVE) != 0
5888 && (switches[switchnum].live_cond & SWITCH_FALSE) == 0
5889 && (switches[switchnum].live_cond & SWITCH_IGNORE_PERMANENTLY)
5890 == 0);
5891
5892 /* In the common case of {<at-most-one-letter>*}, a negating
5893 switch would always match, so ignore that case. We will just
5894 send the conflicting switches to the compiler phase. */
5895 if (prefix_length >= 0 && prefix_length <= 1)
5896 return 1;
5897
5898 /* Now search for duplicate in a manner that depends on the name. */
5899 switch (*name)
5900 {
5901 case 'O':
5902 for (i = switchnum + 1; i < n_switches; i++)
5903 if (switches[i].part1[0] == 'O')
5904 {
5905 switches[switchnum].validated = true;
5906 switches[switchnum].live_cond = SWITCH_FALSE;
5907 return 0;
5908 }
5909 break;
5910
5911 case 'W': case 'f': case 'm': case 'g':
5912 if (! strncmp (name + 1, "no-", 3))
5913 {
5914 /* We have Xno-YYY, search for XYYY. */
5915 for (i = switchnum + 1; i < n_switches; i++)
5916 if (switches[i].part1[0] == name[0]
5917 && ! strcmp (&switches[i].part1[1], &name[4]))
5918 {
5919 /* --specs are validated with the validate_switches mechanism. */
5920 if (switches[switchnum].known)
5921 switches[switchnum].validated = true;
5922 switches[switchnum].live_cond = SWITCH_FALSE;
5923 return 0;
5924 }
5925 }
5926 else
5927 {
5928 /* We have XYYY, search for Xno-YYY. */
5929 for (i = switchnum + 1; i < n_switches; i++)
5930 if (switches[i].part1[0] == name[0]
5931 && switches[i].part1[1] == 'n'
5932 && switches[i].part1[2] == 'o'
5933 && switches[i].part1[3] == '-'
5934 && !strcmp (&switches[i].part1[4], &name[1]))
5935 {
5936 /* --specs are validated with the validate_switches mechanism. */
5937 if (switches[switchnum].known)
5938 switches[switchnum].validated = true;
5939 switches[switchnum].live_cond = SWITCH_FALSE;
5940 return 0;
5941 }
5942 }
5943 break;
5944 }
5945
5946 /* Otherwise the switch is live. */
5947 switches[switchnum].live_cond |= SWITCH_LIVE;
5948 return 1;
5949 }
5950 \f
5951 /* Pass a switch to the current accumulating command
5952 in the same form that we received it.
5953 SWITCHNUM identifies the switch; it is an index into
5954 the vector of switches gcc received, which is `switches'.
5955 This cannot fail since it never finishes a command line.
5956
5957 If OMIT_FIRST_WORD is nonzero, then we omit .part1 of the argument. */
5958
5959 static void
5960 give_switch (int switchnum, int omit_first_word)
5961 {
5962 if ((switches[switchnum].live_cond & SWITCH_IGNORE) != 0)
5963 return;
5964
5965 if (!omit_first_word)
5966 {
5967 do_spec_1 ("-", 0, NULL);
5968 do_spec_1 (switches[switchnum].part1, 1, NULL);
5969 }
5970
5971 if (switches[switchnum].args != 0)
5972 {
5973 const char **p;
5974 for (p = switches[switchnum].args; *p; p++)
5975 {
5976 const char *arg = *p;
5977
5978 do_spec_1 (" ", 0, NULL);
5979 if (suffix_subst)
5980 {
5981 unsigned length = strlen (arg);
5982 int dot = 0;
5983
5984 while (length-- && !IS_DIR_SEPARATOR (arg[length]))
5985 if (arg[length] == '.')
5986 {
5987 (CONST_CAST(char *, arg))[length] = 0;
5988 dot = 1;
5989 break;
5990 }
5991 do_spec_1 (arg, 1, NULL);
5992 if (dot)
5993 (CONST_CAST(char *, arg))[length] = '.';
5994 do_spec_1 (suffix_subst, 1, NULL);
5995 }
5996 else
5997 do_spec_1 (arg, 1, NULL);
5998 }
5999 }
6000
6001 do_spec_1 (" ", 0, NULL);
6002 switches[switchnum].validated = true;
6003 }
6004 \f
6005 /* Search for a file named NAME trying various prefixes including the
6006 user's -B prefix and some standard ones.
6007 Return the absolute file name found. If nothing is found, return NAME. */
6008
6009 static const char *
6010 find_file (const char *name)
6011 {
6012 char *newname = find_a_file (&startfile_prefixes, name, R_OK, true);
6013 return newname ? newname : name;
6014 }
6015
6016 /* Determine whether a directory exists. If LINKER, return 0 for
6017 certain fixed names not needed by the linker. */
6018
6019 static int
6020 is_directory (const char *path1, bool linker)
6021 {
6022 int len1;
6023 char *path;
6024 char *cp;
6025 struct stat st;
6026
6027 /* Ensure the string ends with "/.". The resulting path will be a
6028 directory even if the given path is a symbolic link. */
6029 len1 = strlen (path1);
6030 path = (char *) alloca (3 + len1);
6031 memcpy (path, path1, len1);
6032 cp = path + len1;
6033 if (!IS_DIR_SEPARATOR (cp[-1]))
6034 *cp++ = DIR_SEPARATOR;
6035 *cp++ = '.';
6036 *cp = '\0';
6037
6038 /* Exclude directories that the linker is known to search. */
6039 if (linker
6040 && IS_DIR_SEPARATOR (path[0])
6041 && ((cp - path == 6
6042 && filename_ncmp (path + 1, "lib", 3) == 0)
6043 || (cp - path == 10
6044 && filename_ncmp (path + 1, "usr", 3) == 0
6045 && IS_DIR_SEPARATOR (path[4])
6046 && filename_ncmp (path + 5, "lib", 3) == 0)))
6047 return 0;
6048
6049 return (stat (path, &st) >= 0 && S_ISDIR (st.st_mode));
6050 }
6051
6052 /* Set up the various global variables to indicate that we're processing
6053 the input file named FILENAME. */
6054
6055 void
6056 set_input (const char *filename)
6057 {
6058 const char *p;
6059
6060 gcc_input_filename = filename;
6061 input_filename_length = strlen (gcc_input_filename);
6062 input_basename = lbasename (gcc_input_filename);
6063
6064 /* Find a suffix starting with the last period,
6065 and set basename_length to exclude that suffix. */
6066 basename_length = strlen (input_basename);
6067 suffixed_basename_length = basename_length;
6068 p = input_basename + basename_length;
6069 while (p != input_basename && *p != '.')
6070 --p;
6071 if (*p == '.' && p != input_basename)
6072 {
6073 basename_length = p - input_basename;
6074 input_suffix = p + 1;
6075 }
6076 else
6077 input_suffix = "";
6078
6079 /* If a spec for 'g', 'u', or 'U' is seen with -save-temps then
6080 we will need to do a stat on the gcc_input_filename. The
6081 INPUT_STAT_SET signals that the stat is needed. */
6082 input_stat_set = 0;
6083 }
6084 \f
6085 /* On fatal signals, delete all the temporary files. */
6086
6087 static void
6088 fatal_signal (int signum)
6089 {
6090 signal (signum, SIG_DFL);
6091 delete_failure_queue ();
6092 delete_temp_files ();
6093 /* Get the same signal again, this time not handled,
6094 so its normal effect occurs. */
6095 kill (getpid (), signum);
6096 }
6097
6098 /* Compare the contents of the two files named CMPFILE[0] and
6099 CMPFILE[1]. Return zero if they're identical, nonzero
6100 otherwise. */
6101
6102 static int
6103 compare_files (char *cmpfile[])
6104 {
6105 int ret = 0;
6106 FILE *temp[2] = { NULL, NULL };
6107 int i;
6108
6109 #if HAVE_MMAP_FILE
6110 {
6111 size_t length[2];
6112 void *map[2] = { NULL, NULL };
6113
6114 for (i = 0; i < 2; i++)
6115 {
6116 struct stat st;
6117
6118 if (stat (cmpfile[i], &st) < 0 || !S_ISREG (st.st_mode))
6119 {
6120 error ("%s: could not determine length of compare-debug file %s",
6121 gcc_input_filename, cmpfile[i]);
6122 ret = 1;
6123 break;
6124 }
6125
6126 length[i] = st.st_size;
6127 }
6128
6129 if (!ret && length[0] != length[1])
6130 {
6131 error ("%s: -fcompare-debug failure (length)", gcc_input_filename);
6132 ret = 1;
6133 }
6134
6135 if (!ret)
6136 for (i = 0; i < 2; i++)
6137 {
6138 int fd = open (cmpfile[i], O_RDONLY);
6139 if (fd < 0)
6140 {
6141 error ("%s: could not open compare-debug file %s",
6142 gcc_input_filename, cmpfile[i]);
6143 ret = 1;
6144 break;
6145 }
6146
6147 map[i] = mmap (NULL, length[i], PROT_READ, MAP_PRIVATE, fd, 0);
6148 close (fd);
6149
6150 if (map[i] == (void *) MAP_FAILED)
6151 {
6152 ret = -1;
6153 break;
6154 }
6155 }
6156
6157 if (!ret)
6158 {
6159 if (memcmp (map[0], map[1], length[0]) != 0)
6160 {
6161 error ("%s: -fcompare-debug failure", gcc_input_filename);
6162 ret = 1;
6163 }
6164 }
6165
6166 for (i = 0; i < 2; i++)
6167 if (map[i])
6168 munmap ((caddr_t) map[i], length[i]);
6169
6170 if (ret >= 0)
6171 return ret;
6172
6173 ret = 0;
6174 }
6175 #endif
6176
6177 for (i = 0; i < 2; i++)
6178 {
6179 temp[i] = fopen (cmpfile[i], "r");
6180 if (!temp[i])
6181 {
6182 error ("%s: could not open compare-debug file %s",
6183 gcc_input_filename, cmpfile[i]);
6184 ret = 1;
6185 break;
6186 }
6187 }
6188
6189 if (!ret && temp[0] && temp[1])
6190 for (;;)
6191 {
6192 int c0, c1;
6193 c0 = fgetc (temp[0]);
6194 c1 = fgetc (temp[1]);
6195
6196 if (c0 != c1)
6197 {
6198 error ("%s: -fcompare-debug failure",
6199 gcc_input_filename);
6200 ret = 1;
6201 break;
6202 }
6203
6204 if (c0 == EOF)
6205 break;
6206 }
6207
6208 for (i = 1; i >= 0; i--)
6209 {
6210 if (temp[i])
6211 fclose (temp[i]);
6212 }
6213
6214 return ret;
6215 }
6216
6217 extern int main (int, char **);
6218
6219 int
6220 main (int argc, char **argv)
6221 {
6222 size_t i;
6223 int value;
6224 int linker_was_run = 0;
6225 int lang_n_infiles = 0;
6226 int num_linker_inputs = 0;
6227 char *explicit_link_files;
6228 char *specs_file;
6229 char *lto_wrapper_file;
6230 const char *p;
6231 struct user_specs *uptr;
6232 char **old_argv = argv;
6233 struct cl_decoded_option *decoded_options;
6234 unsigned int decoded_options_count;
6235
6236 p = argv[0] + strlen (argv[0]);
6237 while (p != argv[0] && !IS_DIR_SEPARATOR (p[-1]))
6238 --p;
6239 progname = p;
6240
6241 xmalloc_set_program_name (progname);
6242
6243 expandargv (&argc, &argv);
6244
6245 /* Determine if any expansions were made. */
6246 if (argv != old_argv)
6247 at_file_supplied = true;
6248
6249 /* Register the language-independent parameters. */
6250 global_init_params ();
6251 finish_params ();
6252
6253 init_options_struct (&global_options, &global_options_set);
6254
6255 decode_cmdline_options_to_array (argc, CONST_CAST2 (const char **, char **,
6256 argv),
6257 CL_DRIVER,
6258 &decoded_options, &decoded_options_count);
6259
6260 /* Unlock the stdio streams. */
6261 unlock_std_streams ();
6262
6263 gcc_init_libintl ();
6264
6265 diagnostic_initialize (global_dc, 0);
6266
6267 #ifdef GCC_DRIVER_HOST_INITIALIZATION
6268 /* Perform host dependent initialization when needed. */
6269 GCC_DRIVER_HOST_INITIALIZATION;
6270 #endif
6271
6272 if (atexit (delete_temp_files) != 0)
6273 fatal_error ("atexit failed");
6274
6275 if (signal (SIGINT, SIG_IGN) != SIG_IGN)
6276 signal (SIGINT, fatal_signal);
6277 #ifdef SIGHUP
6278 if (signal (SIGHUP, SIG_IGN) != SIG_IGN)
6279 signal (SIGHUP, fatal_signal);
6280 #endif
6281 if (signal (SIGTERM, SIG_IGN) != SIG_IGN)
6282 signal (SIGTERM, fatal_signal);
6283 #ifdef SIGPIPE
6284 if (signal (SIGPIPE, SIG_IGN) != SIG_IGN)
6285 signal (SIGPIPE, fatal_signal);
6286 #endif
6287 #ifdef SIGCHLD
6288 /* We *MUST* set SIGCHLD to SIG_DFL so that the wait4() call will
6289 receive the signal. A different setting is inheritable */
6290 signal (SIGCHLD, SIG_DFL);
6291 #endif
6292
6293 /* Parsing and gimplification sometimes need quite large stack.
6294 Increase stack size limits if possible. */
6295 stack_limit_increase (64 * 1024 * 1024);
6296
6297 /* Allocate the argument vector. */
6298 alloc_args ();
6299
6300 obstack_init (&obstack);
6301
6302 /* Build multilib_select, et. al from the separate lines that make up each
6303 multilib selection. */
6304 {
6305 const char *const *q = multilib_raw;
6306 int need_space;
6307
6308 obstack_init (&multilib_obstack);
6309 while ((p = *q++) != (char *) 0)
6310 obstack_grow (&multilib_obstack, p, strlen (p));
6311
6312 obstack_1grow (&multilib_obstack, 0);
6313 multilib_select = XOBFINISH (&multilib_obstack, const char *);
6314
6315 q = multilib_matches_raw;
6316 while ((p = *q++) != (char *) 0)
6317 obstack_grow (&multilib_obstack, p, strlen (p));
6318
6319 obstack_1grow (&multilib_obstack, 0);
6320 multilib_matches = XOBFINISH (&multilib_obstack, const char *);
6321
6322 q = multilib_exclusions_raw;
6323 while ((p = *q++) != (char *) 0)
6324 obstack_grow (&multilib_obstack, p, strlen (p));
6325
6326 obstack_1grow (&multilib_obstack, 0);
6327 multilib_exclusions = XOBFINISH (&multilib_obstack, const char *);
6328
6329 need_space = FALSE;
6330 for (i = 0; i < ARRAY_SIZE (multilib_defaults_raw); i++)
6331 {
6332 if (need_space)
6333 obstack_1grow (&multilib_obstack, ' ');
6334 obstack_grow (&multilib_obstack,
6335 multilib_defaults_raw[i],
6336 strlen (multilib_defaults_raw[i]));
6337 need_space = TRUE;
6338 }
6339
6340 obstack_1grow (&multilib_obstack, 0);
6341 multilib_defaults = XOBFINISH (&multilib_obstack, const char *);
6342 }
6343
6344 #ifdef INIT_ENVIRONMENT
6345 /* Set up any other necessary machine specific environment variables. */
6346 xputenv (INIT_ENVIRONMENT);
6347 #endif
6348
6349 /* Make a table of what switches there are (switches, n_switches).
6350 Make a table of specified input files (infiles, n_infiles).
6351 Decode switches that are handled locally. */
6352
6353 process_command (decoded_options_count, decoded_options);
6354
6355 /* Initialize the vector of specs to just the default.
6356 This means one element containing 0s, as a terminator. */
6357
6358 compilers = XNEWVAR (struct compiler, sizeof default_compilers);
6359 memcpy (compilers, default_compilers, sizeof default_compilers);
6360 n_compilers = n_default_compilers;
6361
6362 /* Read specs from a file if there is one. */
6363
6364 machine_suffix = concat (spec_machine, dir_separator_str,
6365 spec_version, dir_separator_str, NULL);
6366 just_machine_suffix = concat (spec_machine, dir_separator_str, NULL);
6367
6368 specs_file = find_a_file (&startfile_prefixes, "specs", R_OK, true);
6369 /* Read the specs file unless it is a default one. */
6370 if (specs_file != 0 && strcmp (specs_file, "specs"))
6371 read_specs (specs_file, true, false);
6372 else
6373 init_spec ();
6374
6375 /* We need to check standard_exec_prefix/just_machine_suffix/specs
6376 for any override of as, ld and libraries. */
6377 specs_file = (char *) alloca (strlen (standard_exec_prefix)
6378 + strlen (just_machine_suffix) + sizeof ("specs"));
6379
6380 strcpy (specs_file, standard_exec_prefix);
6381 strcat (specs_file, just_machine_suffix);
6382 strcat (specs_file, "specs");
6383 if (access (specs_file, R_OK) == 0)
6384 read_specs (specs_file, true, false);
6385
6386 /* Process any configure-time defaults specified for the command line
6387 options, via OPTION_DEFAULT_SPECS. */
6388 for (i = 0; i < ARRAY_SIZE (option_default_specs); i++)
6389 do_option_spec (option_default_specs[i].name,
6390 option_default_specs[i].spec);
6391
6392 /* Process DRIVER_SELF_SPECS, adding any new options to the end
6393 of the command line. */
6394
6395 for (i = 0; i < ARRAY_SIZE (driver_self_specs); i++)
6396 do_self_spec (driver_self_specs[i]);
6397
6398 /* If not cross-compiling, look for executables in the standard
6399 places. */
6400 if (*cross_compile == '0')
6401 {
6402 if (*md_exec_prefix)
6403 {
6404 add_prefix (&exec_prefixes, md_exec_prefix, "GCC",
6405 PREFIX_PRIORITY_LAST, 0, 0);
6406 }
6407 }
6408
6409 /* Process sysroot_suffix_spec. */
6410 if (*sysroot_suffix_spec != 0
6411 && !no_sysroot_suffix
6412 && do_spec_2 (sysroot_suffix_spec) == 0)
6413 {
6414 if (argbuf.length () > 1)
6415 error ("spec failure: more than one arg to SYSROOT_SUFFIX_SPEC");
6416 else if (argbuf.length () == 1)
6417 target_sysroot_suffix = xstrdup (argbuf.last ());
6418 }
6419
6420 #ifdef HAVE_LD_SYSROOT
6421 /* Pass the --sysroot option to the linker, if it supports that. If
6422 there is a sysroot_suffix_spec, it has already been processed by
6423 this point, so target_system_root really is the system root we
6424 should be using. */
6425 if (target_system_root)
6426 {
6427 obstack_grow (&obstack, "%(sysroot_spec) ", strlen ("%(sysroot_spec) "));
6428 obstack_grow0 (&obstack, link_spec, strlen (link_spec));
6429 set_spec ("link", XOBFINISH (&obstack, const char *), false);
6430 }
6431 #endif
6432
6433 /* Process sysroot_hdrs_suffix_spec. */
6434 if (*sysroot_hdrs_suffix_spec != 0
6435 && !no_sysroot_suffix
6436 && do_spec_2 (sysroot_hdrs_suffix_spec) == 0)
6437 {
6438 if (argbuf.length () > 1)
6439 error ("spec failure: more than one arg to SYSROOT_HEADERS_SUFFIX_SPEC");
6440 else if (argbuf.length () == 1)
6441 target_sysroot_hdrs_suffix = xstrdup (argbuf.last ());
6442 }
6443
6444 /* Look for startfiles in the standard places. */
6445 if (*startfile_prefix_spec != 0
6446 && do_spec_2 (startfile_prefix_spec) == 0
6447 && do_spec_1 (" ", 0, NULL) == 0)
6448 {
6449 const char *arg;
6450 int ndx;
6451 FOR_EACH_VEC_ELT (argbuf, ndx, arg)
6452 add_sysrooted_prefix (&startfile_prefixes, arg, "BINUTILS",
6453 PREFIX_PRIORITY_LAST, 0, 1);
6454 }
6455 /* We should eventually get rid of all these and stick to
6456 startfile_prefix_spec exclusively. */
6457 else if (*cross_compile == '0' || target_system_root)
6458 {
6459 if (*md_startfile_prefix)
6460 add_sysrooted_prefix (&startfile_prefixes, md_startfile_prefix,
6461 "GCC", PREFIX_PRIORITY_LAST, 0, 1);
6462
6463 if (*md_startfile_prefix_1)
6464 add_sysrooted_prefix (&startfile_prefixes, md_startfile_prefix_1,
6465 "GCC", PREFIX_PRIORITY_LAST, 0, 1);
6466
6467 /* If standard_startfile_prefix is relative, base it on
6468 standard_exec_prefix. This lets us move the installed tree
6469 as a unit. If GCC_EXEC_PREFIX is defined, base
6470 standard_startfile_prefix on that as well.
6471
6472 If the prefix is relative, only search it for native compilers;
6473 otherwise we will search a directory containing host libraries. */
6474 if (IS_ABSOLUTE_PATH (standard_startfile_prefix))
6475 add_sysrooted_prefix (&startfile_prefixes,
6476 standard_startfile_prefix, "BINUTILS",
6477 PREFIX_PRIORITY_LAST, 0, 1);
6478 else if (*cross_compile == '0')
6479 {
6480 add_prefix (&startfile_prefixes,
6481 concat (gcc_exec_prefix
6482 ? gcc_exec_prefix : standard_exec_prefix,
6483 machine_suffix,
6484 standard_startfile_prefix, NULL),
6485 NULL, PREFIX_PRIORITY_LAST, 0, 1);
6486 }
6487
6488 /* Sysrooted prefixes are relocated because target_system_root is
6489 also relocated by gcc_exec_prefix. */
6490 if (*standard_startfile_prefix_1)
6491 add_sysrooted_prefix (&startfile_prefixes,
6492 standard_startfile_prefix_1, "BINUTILS",
6493 PREFIX_PRIORITY_LAST, 0, 1);
6494 if (*standard_startfile_prefix_2)
6495 add_sysrooted_prefix (&startfile_prefixes,
6496 standard_startfile_prefix_2, "BINUTILS",
6497 PREFIX_PRIORITY_LAST, 0, 1);
6498 }
6499
6500 /* Process any user specified specs in the order given on the command
6501 line. */
6502 for (uptr = user_specs_head; uptr; uptr = uptr->next)
6503 {
6504 char *filename = find_a_file (&startfile_prefixes, uptr->filename,
6505 R_OK, true);
6506 read_specs (filename ? filename : uptr->filename, false, true);
6507 }
6508
6509 /* Process any user self specs. */
6510 {
6511 struct spec_list *sl;
6512 for (sl = specs; sl; sl = sl->next)
6513 if (sl->name_len == sizeof "self_spec" - 1
6514 && !strcmp (sl->name, "self_spec"))
6515 do_self_spec (*sl->ptr_spec);
6516 }
6517
6518 if (compare_debug)
6519 {
6520 enum save_temps save;
6521
6522 if (!compare_debug_second)
6523 {
6524 n_switches_debug_check[1] = n_switches;
6525 n_switches_alloc_debug_check[1] = n_switches_alloc;
6526 switches_debug_check[1] = XDUPVEC (struct switchstr, switches,
6527 n_switches_alloc);
6528
6529 do_self_spec ("%:compare-debug-self-opt()");
6530 n_switches_debug_check[0] = n_switches;
6531 n_switches_alloc_debug_check[0] = n_switches_alloc;
6532 switches_debug_check[0] = switches;
6533
6534 n_switches = n_switches_debug_check[1];
6535 n_switches_alloc = n_switches_alloc_debug_check[1];
6536 switches = switches_debug_check[1];
6537 }
6538
6539 /* Avoid crash when computing %j in this early. */
6540 save = save_temps_flag;
6541 save_temps_flag = SAVE_TEMPS_NONE;
6542
6543 compare_debug = -compare_debug;
6544 do_self_spec ("%:compare-debug-self-opt()");
6545
6546 save_temps_flag = save;
6547
6548 if (!compare_debug_second)
6549 {
6550 n_switches_debug_check[1] = n_switches;
6551 n_switches_alloc_debug_check[1] = n_switches_alloc;
6552 switches_debug_check[1] = switches;
6553 compare_debug = -compare_debug;
6554 n_switches = n_switches_debug_check[0];
6555 n_switches_alloc = n_switches_debug_check[0];
6556 switches = switches_debug_check[0];
6557 }
6558 }
6559
6560
6561 /* If we have a GCC_EXEC_PREFIX envvar, modify it for cpp's sake. */
6562 if (gcc_exec_prefix)
6563 gcc_exec_prefix = concat (gcc_exec_prefix, spec_machine, dir_separator_str,
6564 spec_version, dir_separator_str, NULL);
6565
6566 /* Now we have the specs.
6567 Set the `valid' bits for switches that match anything in any spec. */
6568
6569 validate_all_switches ();
6570
6571 /* Now that we have the switches and the specs, set
6572 the subdirectory based on the options. */
6573 set_multilib_dir ();
6574
6575 /* Set up to remember the pathname of gcc and any options
6576 needed for collect. We use argv[0] instead of progname because
6577 we need the complete pathname. */
6578 obstack_init (&collect_obstack);
6579 obstack_grow (&collect_obstack, "COLLECT_GCC=", sizeof ("COLLECT_GCC=") - 1);
6580 obstack_grow (&collect_obstack, argv[0], strlen (argv[0]) + 1);
6581 xputenv (XOBFINISH (&collect_obstack, char *));
6582
6583 /* Set up to remember the pathname of the lto wrapper. */
6584
6585 if (have_c)
6586 lto_wrapper_file = NULL;
6587 else
6588 lto_wrapper_file = find_a_file (&exec_prefixes, "lto-wrapper",
6589 X_OK, false);
6590 if (lto_wrapper_file)
6591 {
6592 lto_wrapper_spec = lto_wrapper_file;
6593 obstack_init (&collect_obstack);
6594 obstack_grow (&collect_obstack, "COLLECT_LTO_WRAPPER=",
6595 sizeof ("COLLECT_LTO_WRAPPER=") - 1);
6596 obstack_grow (&collect_obstack, lto_wrapper_spec,
6597 strlen (lto_wrapper_spec) + 1);
6598 xputenv (XOBFINISH (&collect_obstack, char *));
6599 }
6600
6601 /* Reject switches that no pass was interested in. */
6602
6603 for (i = 0; (int) i < n_switches; i++)
6604 if (! switches[i].validated)
6605 error ("unrecognized command line option %<-%s%>", switches[i].part1);
6606
6607 /* Obey some of the options. */
6608
6609 if (print_search_dirs)
6610 {
6611 printf (_("install: %s%s\n"),
6612 gcc_exec_prefix ? gcc_exec_prefix : standard_exec_prefix,
6613 gcc_exec_prefix ? "" : machine_suffix);
6614 printf (_("programs: %s\n"),
6615 build_search_list (&exec_prefixes, "", false, false));
6616 printf (_("libraries: %s\n"),
6617 build_search_list (&startfile_prefixes, "", false, true));
6618 return (0);
6619 }
6620
6621 if (print_file_name)
6622 {
6623 printf ("%s\n", find_file (print_file_name));
6624 return (0);
6625 }
6626
6627 if (print_prog_name)
6628 {
6629 char *newname = find_a_file (&exec_prefixes, print_prog_name, X_OK, 0);
6630 printf ("%s\n", (newname ? newname : print_prog_name));
6631 return (0);
6632 }
6633
6634 if (print_multi_lib)
6635 {
6636 print_multilib_info ();
6637 return (0);
6638 }
6639
6640 if (print_multi_directory)
6641 {
6642 if (multilib_dir == NULL)
6643 printf (".\n");
6644 else
6645 printf ("%s\n", multilib_dir);
6646 return (0);
6647 }
6648
6649 if (print_multiarch)
6650 {
6651 if (multiarch_dir == NULL)
6652 printf ("\n");
6653 else
6654 printf ("%s\n", multiarch_dir);
6655 return (0);
6656 }
6657
6658 if (print_sysroot)
6659 {
6660 if (target_system_root)
6661 {
6662 if (target_sysroot_suffix)
6663 printf ("%s%s\n", target_system_root, target_sysroot_suffix);
6664 else
6665 printf ("%s\n", target_system_root);
6666 }
6667 return (0);
6668 }
6669
6670 if (print_multi_os_directory)
6671 {
6672 if (multilib_os_dir == NULL)
6673 printf (".\n");
6674 else
6675 printf ("%s\n", multilib_os_dir);
6676 return (0);
6677 }
6678
6679 if (print_sysroot_headers_suffix)
6680 {
6681 if (*sysroot_hdrs_suffix_spec)
6682 {
6683 printf("%s\n", (target_sysroot_hdrs_suffix
6684 ? target_sysroot_hdrs_suffix
6685 : ""));
6686 return (0);
6687 }
6688 else
6689 /* The error status indicates that only one set of fixed
6690 headers should be built. */
6691 fatal_error ("not configured with sysroot headers suffix");
6692 }
6693
6694 if (print_help_list)
6695 {
6696 display_help ();
6697
6698 if (! verbose_flag)
6699 {
6700 printf (_("\nFor bug reporting instructions, please see:\n"));
6701 printf ("%s.\n", bug_report_url);
6702
6703 return (0);
6704 }
6705
6706 /* We do not exit here. Instead we have created a fake input file
6707 called 'help-dummy' which needs to be compiled, and we pass this
6708 on the various sub-processes, along with the --help switch.
6709 Ensure their output appears after ours. */
6710 fputc ('\n', stdout);
6711 fflush (stdout);
6712 }
6713
6714 if (print_version)
6715 {
6716 printf (_("%s %s%s\n"), progname, pkgversion_string,
6717 version_string);
6718 printf ("Copyright %s 2013 Free Software Foundation, Inc.\n",
6719 _("(C)"));
6720 fputs (_("This is free software; see the source for copying conditions. There is NO\n\
6721 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n"),
6722 stdout);
6723 if (! verbose_flag)
6724 return 0;
6725
6726 /* We do not exit here. We use the same mechanism of --help to print
6727 the version of the sub-processes. */
6728 fputc ('\n', stdout);
6729 fflush (stdout);
6730 }
6731
6732 if (verbose_flag)
6733 {
6734 int n;
6735 const char *thrmod;
6736
6737 fnotice (stderr, "Target: %s\n", spec_machine);
6738 fnotice (stderr, "Configured with: %s\n", configuration_arguments);
6739
6740 #ifdef THREAD_MODEL_SPEC
6741 /* We could have defined THREAD_MODEL_SPEC to "%*" by default,
6742 but there's no point in doing all this processing just to get
6743 thread_model back. */
6744 obstack_init (&obstack);
6745 do_spec_1 (THREAD_MODEL_SPEC, 0, thread_model);
6746 obstack_1grow (&obstack, '\0');
6747 thrmod = XOBFINISH (&obstack, const char *);
6748 #else
6749 thrmod = thread_model;
6750 #endif
6751
6752 fnotice (stderr, "Thread model: %s\n", thrmod);
6753
6754 /* compiler_version is truncated at the first space when initialized
6755 from version string, so truncate version_string at the first space
6756 before comparing. */
6757 for (n = 0; version_string[n]; n++)
6758 if (version_string[n] == ' ')
6759 break;
6760
6761 if (! strncmp (version_string, compiler_version, n)
6762 && compiler_version[n] == 0)
6763 fnotice (stderr, "gcc version %s %s\n", version_string,
6764 pkgversion_string);
6765 else
6766 fnotice (stderr, "gcc driver version %s %sexecuting gcc version %s\n",
6767 version_string, pkgversion_string, compiler_version);
6768
6769 if (n_infiles == 0)
6770 return (0);
6771 }
6772
6773 if (n_infiles == added_libraries)
6774 fatal_error ("no input files");
6775
6776 if (seen_error ())
6777 goto out;
6778
6779 /* Make a place to record the compiler output file names
6780 that correspond to the input files. */
6781
6782 i = n_infiles;
6783 i += lang_specific_extra_outfiles;
6784 outfiles = XCNEWVEC (const char *, i);
6785
6786 /* Record which files were specified explicitly as link input. */
6787
6788 explicit_link_files = XCNEWVEC (char, n_infiles);
6789
6790 combine_inputs = have_o || flag_wpa;
6791
6792 for (i = 0; (int) i < n_infiles; i++)
6793 {
6794 const char *name = infiles[i].name;
6795 struct compiler *compiler = lookup_compiler (name,
6796 strlen (name),
6797 infiles[i].language);
6798
6799 if (compiler && !(compiler->combinable))
6800 combine_inputs = false;
6801
6802 if (lang_n_infiles > 0 && compiler != input_file_compiler
6803 && infiles[i].language && infiles[i].language[0] != '*')
6804 infiles[i].incompiler = compiler;
6805 else if (compiler)
6806 {
6807 lang_n_infiles++;
6808 input_file_compiler = compiler;
6809 infiles[i].incompiler = compiler;
6810 }
6811 else
6812 {
6813 /* Since there is no compiler for this input file, assume it is a
6814 linker file. */
6815 explicit_link_files[i] = 1;
6816 infiles[i].incompiler = NULL;
6817 }
6818 infiles[i].compiled = false;
6819 infiles[i].preprocessed = false;
6820 }
6821
6822 if (!combine_inputs && have_c && have_o && lang_n_infiles > 1)
6823 fatal_error ("cannot specify -o with -c, -S or -E with multiple files");
6824
6825 for (i = 0; (int) i < n_infiles; i++)
6826 {
6827 int this_file_error = 0;
6828
6829 /* Tell do_spec what to substitute for %i. */
6830
6831 input_file_number = i;
6832 set_input (infiles[i].name);
6833
6834 if (infiles[i].compiled)
6835 continue;
6836
6837 /* Use the same thing in %o, unless cp->spec says otherwise. */
6838
6839 outfiles[i] = gcc_input_filename;
6840
6841 /* Figure out which compiler from the file's suffix. */
6842
6843 input_file_compiler
6844 = lookup_compiler (infiles[i].name, input_filename_length,
6845 infiles[i].language);
6846
6847 if (input_file_compiler)
6848 {
6849 /* Ok, we found an applicable compiler. Run its spec. */
6850
6851 if (input_file_compiler->spec[0] == '#')
6852 {
6853 error ("%s: %s compiler not installed on this system",
6854 gcc_input_filename, &input_file_compiler->spec[1]);
6855 this_file_error = 1;
6856 }
6857 else
6858 {
6859 if (compare_debug)
6860 {
6861 free (debug_check_temp_file[0]);
6862 debug_check_temp_file[0] = NULL;
6863
6864 free (debug_check_temp_file[1]);
6865 debug_check_temp_file[1] = NULL;
6866 }
6867
6868 value = do_spec (input_file_compiler->spec);
6869 infiles[i].compiled = true;
6870 if (value < 0)
6871 this_file_error = 1;
6872 else if (compare_debug && debug_check_temp_file[0])
6873 {
6874 if (verbose_flag)
6875 inform (0, "recompiling with -fcompare-debug");
6876
6877 compare_debug = -compare_debug;
6878 n_switches = n_switches_debug_check[1];
6879 n_switches_alloc = n_switches_alloc_debug_check[1];
6880 switches = switches_debug_check[1];
6881
6882 value = do_spec (input_file_compiler->spec);
6883
6884 compare_debug = -compare_debug;
6885 n_switches = n_switches_debug_check[0];
6886 n_switches_alloc = n_switches_alloc_debug_check[0];
6887 switches = switches_debug_check[0];
6888
6889 if (value < 0)
6890 {
6891 error ("during -fcompare-debug recompilation");
6892 this_file_error = 1;
6893 }
6894
6895 gcc_assert (debug_check_temp_file[1]
6896 && filename_cmp (debug_check_temp_file[0],
6897 debug_check_temp_file[1]));
6898
6899 if (verbose_flag)
6900 inform (0, "comparing final insns dumps");
6901
6902 if (compare_files (debug_check_temp_file))
6903 this_file_error = 1;
6904 }
6905
6906 if (compare_debug)
6907 {
6908 free (debug_check_temp_file[0]);
6909 debug_check_temp_file[0] = NULL;
6910
6911 free (debug_check_temp_file[1]);
6912 debug_check_temp_file[1] = NULL;
6913 }
6914 }
6915 }
6916
6917 /* If this file's name does not contain a recognized suffix,
6918 record it as explicit linker input. */
6919
6920 else
6921 explicit_link_files[i] = 1;
6922
6923 /* Clear the delete-on-failure queue, deleting the files in it
6924 if this compilation failed. */
6925
6926 if (this_file_error)
6927 {
6928 delete_failure_queue ();
6929 errorcount++;
6930 }
6931 /* If this compilation succeeded, don't delete those files later. */
6932 clear_failure_queue ();
6933 }
6934
6935 /* Reset the input file name to the first compile/object file name, for use
6936 with %b in LINK_SPEC. We use the first input file that we can find
6937 a compiler to compile it instead of using infiles.language since for
6938 languages other than C we use aliases that we then lookup later. */
6939 if (n_infiles > 0)
6940 {
6941 int i;
6942
6943 for (i = 0; i < n_infiles ; i++)
6944 if (infiles[i].incompiler
6945 || (infiles[i].language && infiles[i].language[0] != '*'))
6946 {
6947 set_input (infiles[i].name);
6948 break;
6949 }
6950 }
6951
6952 if (!seen_error ())
6953 {
6954 /* Make sure INPUT_FILE_NUMBER points to first available open
6955 slot. */
6956 input_file_number = n_infiles;
6957 if (lang_specific_pre_link ())
6958 errorcount++;
6959 }
6960
6961 /* Determine if there are any linker input files. */
6962 num_linker_inputs = 0;
6963 for (i = 0; (int) i < n_infiles; i++)
6964 if (explicit_link_files[i] || outfiles[i] != NULL)
6965 num_linker_inputs++;
6966
6967 /* Run ld to link all the compiler output files. */
6968
6969 if (num_linker_inputs > 0 && !seen_error () && print_subprocess_help < 2)
6970 {
6971 int tmp = execution_count;
6972
6973 if (! have_c)
6974 {
6975 #if HAVE_LTO_PLUGIN > 0
6976 #if HAVE_LTO_PLUGIN == 2
6977 const char *fno_use_linker_plugin = "fno-use-linker-plugin";
6978 #else
6979 const char *fuse_linker_plugin = "fuse-linker-plugin";
6980 #endif
6981 #endif
6982
6983 /* We'll use ld if we can't find collect2. */
6984 if (! strcmp (linker_name_spec, "collect2"))
6985 {
6986 char *s = find_a_file (&exec_prefixes, "collect2", X_OK, false);
6987 if (s == NULL)
6988 linker_name_spec = "ld";
6989 }
6990
6991 #if HAVE_LTO_PLUGIN > 0
6992 #if HAVE_LTO_PLUGIN == 2
6993 if (!switch_matches (fno_use_linker_plugin,
6994 fno_use_linker_plugin
6995 + strlen (fno_use_linker_plugin), 0))
6996 #else
6997 if (switch_matches (fuse_linker_plugin,
6998 fuse_linker_plugin
6999 + strlen (fuse_linker_plugin), 0))
7000 #endif
7001 {
7002 linker_plugin_file_spec = find_a_file (&exec_prefixes,
7003 LTOPLUGINSONAME, R_OK,
7004 false);
7005 if (!linker_plugin_file_spec)
7006 fatal_error ("-fuse-linker-plugin, but %s not found",
7007 LTOPLUGINSONAME);
7008 }
7009 #endif
7010 lto_gcc_spec = argv[0];
7011 }
7012
7013 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
7014 for collect. */
7015 putenv_from_prefixes (&exec_prefixes, "COMPILER_PATH", false);
7016 putenv_from_prefixes (&startfile_prefixes, LIBRARY_PATH_ENV, true);
7017
7018 if (print_subprocess_help == 1)
7019 {
7020 printf (_("\nLinker options\n==============\n\n"));
7021 printf (_("Use \"-Wl,OPTION\" to pass \"OPTION\""
7022 " to the linker.\n\n"));
7023 fflush (stdout);
7024 }
7025 value = do_spec (link_command_spec);
7026 if (value < 0)
7027 errorcount = 1;
7028 linker_was_run = (tmp != execution_count);
7029 }
7030
7031 /* If options said don't run linker,
7032 complain about input files to be given to the linker. */
7033
7034 if (! linker_was_run && !seen_error ())
7035 for (i = 0; (int) i < n_infiles; i++)
7036 if (explicit_link_files[i]
7037 && !(infiles[i].language && infiles[i].language[0] == '*'))
7038 warning (0, "%s: linker input file unused because linking not done",
7039 outfiles[i]);
7040
7041 /* Delete some or all of the temporary files we made. */
7042
7043 if (seen_error ())
7044 delete_failure_queue ();
7045 delete_temp_files ();
7046
7047 if (print_help_list)
7048 {
7049 printf (("\nFor bug reporting instructions, please see:\n"));
7050 printf ("%s\n", bug_report_url);
7051 }
7052
7053 out:
7054 return (signal_count != 0 ? 2
7055 : seen_error () ? (pass_exit_codes ? greatest_status : 1)
7056 : 0);
7057 }
7058
7059 /* Find the proper compilation spec for the file name NAME,
7060 whose length is LENGTH. LANGUAGE is the specified language,
7061 or 0 if this file is to be passed to the linker. */
7062
7063 static struct compiler *
7064 lookup_compiler (const char *name, size_t length, const char *language)
7065 {
7066 struct compiler *cp;
7067
7068 /* If this was specified by the user to be a linker input, indicate that. */
7069 if (language != 0 && language[0] == '*')
7070 return 0;
7071
7072 /* Otherwise, look for the language, if one is spec'd. */
7073 if (language != 0)
7074 {
7075 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
7076 if (cp->suffix[0] == '@' && !strcmp (cp->suffix + 1, language))
7077 return cp;
7078
7079 error ("language %s not recognized", language);
7080 return 0;
7081 }
7082
7083 /* Look for a suffix. */
7084 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
7085 {
7086 if (/* The suffix `-' matches only the file name `-'. */
7087 (!strcmp (cp->suffix, "-") && !strcmp (name, "-"))
7088 || (strlen (cp->suffix) < length
7089 /* See if the suffix matches the end of NAME. */
7090 && !strcmp (cp->suffix,
7091 name + length - strlen (cp->suffix))
7092 ))
7093 break;
7094 }
7095
7096 #if defined (OS2) ||defined (HAVE_DOS_BASED_FILE_SYSTEM)
7097 /* Look again, but case-insensitively this time. */
7098 if (cp < compilers)
7099 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
7100 {
7101 if (/* The suffix `-' matches only the file name `-'. */
7102 (!strcmp (cp->suffix, "-") && !strcmp (name, "-"))
7103 || (strlen (cp->suffix) < length
7104 /* See if the suffix matches the end of NAME. */
7105 && ((!strcmp (cp->suffix,
7106 name + length - strlen (cp->suffix))
7107 || !strpbrk (cp->suffix, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"))
7108 && !strcasecmp (cp->suffix,
7109 name + length - strlen (cp->suffix)))
7110 ))
7111 break;
7112 }
7113 #endif
7114
7115 if (cp >= compilers)
7116 {
7117 if (cp->spec[0] != '@')
7118 /* A non-alias entry: return it. */
7119 return cp;
7120
7121 /* An alias entry maps a suffix to a language.
7122 Search for the language; pass 0 for NAME and LENGTH
7123 to avoid infinite recursion if language not found. */
7124 return lookup_compiler (NULL, 0, cp->spec + 1);
7125 }
7126 return 0;
7127 }
7128 \f
7129 static char *
7130 save_string (const char *s, int len)
7131 {
7132 char *result = XNEWVEC (char, len + 1);
7133
7134 memcpy (result, s, len);
7135 result[len] = 0;
7136 return result;
7137 }
7138
7139 void
7140 pfatal_with_name (const char *name)
7141 {
7142 perror_with_name (name);
7143 delete_temp_files ();
7144 exit (1);
7145 }
7146
7147 static void
7148 perror_with_name (const char *name)
7149 {
7150 error ("%s: %m", name);
7151 }
7152 \f
7153 static inline void
7154 validate_switches_from_spec (const char *spec, bool user)
7155 {
7156 const char *p = spec;
7157 char c;
7158 while ((c = *p++))
7159 if (c == '%' && (*p == '{' || *p == '<' || (*p == 'W' && *++p == '{')))
7160 /* We have a switch spec. */
7161 p = validate_switches (p + 1, user);
7162 }
7163
7164 static void
7165 validate_all_switches (void)
7166 {
7167 struct compiler *comp;
7168 struct spec_list *spec;
7169
7170 for (comp = compilers; comp->spec; comp++)
7171 validate_switches_from_spec (comp->spec, false);
7172
7173 /* Look through the linked list of specs read from the specs file. */
7174 for (spec = specs; spec; spec = spec->next)
7175 validate_switches_from_spec (*spec->ptr_spec, spec->user_p);
7176
7177 validate_switches_from_spec (link_command_spec, false);
7178 }
7179
7180 /* Look at the switch-name that comes after START
7181 and mark as valid all supplied switches that match it. */
7182
7183 static const char *
7184 validate_switches (const char *start, bool user_spec)
7185 {
7186 const char *p = start;
7187 const char *atom;
7188 size_t len;
7189 int i;
7190 bool suffix = false;
7191 bool starred = false;
7192
7193 #define SKIP_WHITE() do { while (*p == ' ' || *p == '\t') p++; } while (0)
7194
7195 next_member:
7196 SKIP_WHITE ();
7197
7198 if (*p == '!')
7199 p++;
7200
7201 SKIP_WHITE ();
7202 if (*p == '.' || *p == ',')
7203 suffix = true, p++;
7204
7205 atom = p;
7206 while (ISIDNUM (*p) || *p == '-' || *p == '+' || *p == '='
7207 || *p == ',' || *p == '.' || *p == '@')
7208 p++;
7209 len = p - atom;
7210
7211 if (*p == '*')
7212 starred = true, p++;
7213
7214 SKIP_WHITE ();
7215
7216 if (!suffix)
7217 {
7218 /* Mark all matching switches as valid. */
7219 for (i = 0; i < n_switches; i++)
7220 if (!strncmp (switches[i].part1, atom, len)
7221 && (starred || switches[i].part1[len] == '\0')
7222 && (switches[i].known || user_spec))
7223 switches[i].validated = true;
7224 }
7225
7226 if (*p) p++;
7227 if (*p && (p[-1] == '|' || p[-1] == '&'))
7228 goto next_member;
7229
7230 if (*p && p[-1] == ':')
7231 {
7232 while (*p && *p != ';' && *p != '}')
7233 {
7234 if (*p == '%')
7235 {
7236 p++;
7237 if (*p == '{' || *p == '<')
7238 p = validate_switches (p+1, user_spec);
7239 else if (p[0] == 'W' && p[1] == '{')
7240 p = validate_switches (p+2, user_spec);
7241 }
7242 else
7243 p++;
7244 }
7245
7246 if (*p) p++;
7247 if (*p && p[-1] == ';')
7248 goto next_member;
7249 }
7250
7251 return p;
7252 #undef SKIP_WHITE
7253 }
7254 \f
7255 struct mdswitchstr
7256 {
7257 const char *str;
7258 int len;
7259 };
7260
7261 static struct mdswitchstr *mdswitches;
7262 static int n_mdswitches;
7263
7264 /* Check whether a particular argument was used. The first time we
7265 canonicalize the switches to keep only the ones we care about. */
7266
7267 static int
7268 used_arg (const char *p, int len)
7269 {
7270 struct mswitchstr
7271 {
7272 const char *str;
7273 const char *replace;
7274 int len;
7275 int rep_len;
7276 };
7277
7278 static struct mswitchstr *mswitches;
7279 static int n_mswitches;
7280 int i, j;
7281
7282 if (!mswitches)
7283 {
7284 struct mswitchstr *matches;
7285 const char *q;
7286 int cnt = 0;
7287
7288 /* Break multilib_matches into the component strings of string
7289 and replacement string. */
7290 for (q = multilib_matches; *q != '\0'; q++)
7291 if (*q == ';')
7292 cnt++;
7293
7294 matches
7295 = (struct mswitchstr *) alloca ((sizeof (struct mswitchstr)) * cnt);
7296 i = 0;
7297 q = multilib_matches;
7298 while (*q != '\0')
7299 {
7300 matches[i].str = q;
7301 while (*q != ' ')
7302 {
7303 if (*q == '\0')
7304 {
7305 invalid_matches:
7306 fatal_error ("multilib spec %qs is invalid",
7307 multilib_matches);
7308 }
7309 q++;
7310 }
7311 matches[i].len = q - matches[i].str;
7312
7313 matches[i].replace = ++q;
7314 while (*q != ';' && *q != '\0')
7315 {
7316 if (*q == ' ')
7317 goto invalid_matches;
7318 q++;
7319 }
7320 matches[i].rep_len = q - matches[i].replace;
7321 i++;
7322 if (*q == ';')
7323 q++;
7324 }
7325
7326 /* Now build a list of the replacement string for switches that we care
7327 about. Make sure we allocate at least one entry. This prevents
7328 xmalloc from calling fatal, and prevents us from re-executing this
7329 block of code. */
7330 mswitches
7331 = XNEWVEC (struct mswitchstr, n_mdswitches + (n_switches ? n_switches : 1));
7332 for (i = 0; i < n_switches; i++)
7333 if ((switches[i].live_cond & SWITCH_IGNORE) == 0)
7334 {
7335 int xlen = strlen (switches[i].part1);
7336 for (j = 0; j < cnt; j++)
7337 if (xlen == matches[j].len
7338 && ! strncmp (switches[i].part1, matches[j].str, xlen))
7339 {
7340 mswitches[n_mswitches].str = matches[j].replace;
7341 mswitches[n_mswitches].len = matches[j].rep_len;
7342 mswitches[n_mswitches].replace = (char *) 0;
7343 mswitches[n_mswitches].rep_len = 0;
7344 n_mswitches++;
7345 break;
7346 }
7347 }
7348
7349 /* Add MULTILIB_DEFAULTS switches too, as long as they were not present
7350 on the command line nor any options mutually incompatible with
7351 them. */
7352 for (i = 0; i < n_mdswitches; i++)
7353 {
7354 const char *r;
7355
7356 for (q = multilib_options; *q != '\0'; q++)
7357 {
7358 while (*q == ' ')
7359 q++;
7360
7361 r = q;
7362 while (strncmp (q, mdswitches[i].str, mdswitches[i].len) != 0
7363 || strchr (" /", q[mdswitches[i].len]) == NULL)
7364 {
7365 while (*q != ' ' && *q != '/' && *q != '\0')
7366 q++;
7367 if (*q != '/')
7368 break;
7369 q++;
7370 }
7371
7372 if (*q != ' ' && *q != '\0')
7373 {
7374 while (*r != ' ' && *r != '\0')
7375 {
7376 q = r;
7377 while (*q != ' ' && *q != '/' && *q != '\0')
7378 q++;
7379
7380 if (used_arg (r, q - r))
7381 break;
7382
7383 if (*q != '/')
7384 {
7385 mswitches[n_mswitches].str = mdswitches[i].str;
7386 mswitches[n_mswitches].len = mdswitches[i].len;
7387 mswitches[n_mswitches].replace = (char *) 0;
7388 mswitches[n_mswitches].rep_len = 0;
7389 n_mswitches++;
7390 break;
7391 }
7392
7393 r = q + 1;
7394 }
7395 break;
7396 }
7397 }
7398 }
7399 }
7400
7401 for (i = 0; i < n_mswitches; i++)
7402 if (len == mswitches[i].len && ! strncmp (p, mswitches[i].str, len))
7403 return 1;
7404
7405 return 0;
7406 }
7407
7408 static int
7409 default_arg (const char *p, int len)
7410 {
7411 int i;
7412
7413 for (i = 0; i < n_mdswitches; i++)
7414 if (len == mdswitches[i].len && ! strncmp (p, mdswitches[i].str, len))
7415 return 1;
7416
7417 return 0;
7418 }
7419
7420 /* Work out the subdirectory to use based on the options. The format of
7421 multilib_select is a list of elements. Each element is a subdirectory
7422 name followed by a list of options followed by a semicolon. The format
7423 of multilib_exclusions is the same, but without the preceding
7424 directory. First gcc will check the exclusions, if none of the options
7425 beginning with an exclamation point are present, and all of the other
7426 options are present, then we will ignore this completely. Passing
7427 that, gcc will consider each multilib_select in turn using the same
7428 rules for matching the options. If a match is found, that subdirectory
7429 will be used.
7430 A subdirectory name is optionally followed by a colon and the corresponding
7431 multiarch name. */
7432
7433 static void
7434 set_multilib_dir (void)
7435 {
7436 const char *p;
7437 unsigned int this_path_len;
7438 const char *this_path, *this_arg;
7439 const char *start, *end;
7440 int not_arg;
7441 int ok, ndfltok, first;
7442
7443 n_mdswitches = 0;
7444 start = multilib_defaults;
7445 while (*start == ' ' || *start == '\t')
7446 start++;
7447 while (*start != '\0')
7448 {
7449 n_mdswitches++;
7450 while (*start != ' ' && *start != '\t' && *start != '\0')
7451 start++;
7452 while (*start == ' ' || *start == '\t')
7453 start++;
7454 }
7455
7456 if (n_mdswitches)
7457 {
7458 int i = 0;
7459
7460 mdswitches = XNEWVEC (struct mdswitchstr, n_mdswitches);
7461 for (start = multilib_defaults; *start != '\0'; start = end + 1)
7462 {
7463 while (*start == ' ' || *start == '\t')
7464 start++;
7465
7466 if (*start == '\0')
7467 break;
7468
7469 for (end = start + 1;
7470 *end != ' ' && *end != '\t' && *end != '\0'; end++)
7471 ;
7472
7473 obstack_grow (&multilib_obstack, start, end - start);
7474 obstack_1grow (&multilib_obstack, 0);
7475 mdswitches[i].str = XOBFINISH (&multilib_obstack, const char *);
7476 mdswitches[i++].len = end - start;
7477
7478 if (*end == '\0')
7479 break;
7480 }
7481 }
7482
7483 p = multilib_exclusions;
7484 while (*p != '\0')
7485 {
7486 /* Ignore newlines. */
7487 if (*p == '\n')
7488 {
7489 ++p;
7490 continue;
7491 }
7492
7493 /* Check the arguments. */
7494 ok = 1;
7495 while (*p != ';')
7496 {
7497 if (*p == '\0')
7498 {
7499 invalid_exclusions:
7500 fatal_error ("multilib exclusions %qs is invalid",
7501 multilib_exclusions);
7502 }
7503
7504 if (! ok)
7505 {
7506 ++p;
7507 continue;
7508 }
7509
7510 this_arg = p;
7511 while (*p != ' ' && *p != ';')
7512 {
7513 if (*p == '\0')
7514 goto invalid_exclusions;
7515 ++p;
7516 }
7517
7518 if (*this_arg != '!')
7519 not_arg = 0;
7520 else
7521 {
7522 not_arg = 1;
7523 ++this_arg;
7524 }
7525
7526 ok = used_arg (this_arg, p - this_arg);
7527 if (not_arg)
7528 ok = ! ok;
7529
7530 if (*p == ' ')
7531 ++p;
7532 }
7533
7534 if (ok)
7535 return;
7536
7537 ++p;
7538 }
7539
7540 first = 1;
7541 p = multilib_select;
7542 while (*p != '\0')
7543 {
7544 /* Ignore newlines. */
7545 if (*p == '\n')
7546 {
7547 ++p;
7548 continue;
7549 }
7550
7551 /* Get the initial path. */
7552 this_path = p;
7553 while (*p != ' ')
7554 {
7555 if (*p == '\0')
7556 {
7557 invalid_select:
7558 fatal_error ("multilib select %qs is invalid",
7559 multilib_select);
7560 }
7561 ++p;
7562 }
7563 this_path_len = p - this_path;
7564
7565 /* Check the arguments. */
7566 ok = 1;
7567 ndfltok = 1;
7568 ++p;
7569 while (*p != ';')
7570 {
7571 if (*p == '\0')
7572 goto invalid_select;
7573
7574 if (! ok)
7575 {
7576 ++p;
7577 continue;
7578 }
7579
7580 this_arg = p;
7581 while (*p != ' ' && *p != ';')
7582 {
7583 if (*p == '\0')
7584 goto invalid_select;
7585 ++p;
7586 }
7587
7588 if (*this_arg != '!')
7589 not_arg = 0;
7590 else
7591 {
7592 not_arg = 1;
7593 ++this_arg;
7594 }
7595
7596 /* If this is a default argument, we can just ignore it.
7597 This is true even if this_arg begins with '!'. Beginning
7598 with '!' does not mean that this argument is necessarily
7599 inappropriate for this library: it merely means that
7600 there is a more specific library which uses this
7601 argument. If this argument is a default, we need not
7602 consider that more specific library. */
7603 ok = used_arg (this_arg, p - this_arg);
7604 if (not_arg)
7605 ok = ! ok;
7606
7607 if (! ok)
7608 ndfltok = 0;
7609
7610 if (default_arg (this_arg, p - this_arg))
7611 ok = 1;
7612
7613 if (*p == ' ')
7614 ++p;
7615 }
7616
7617 if (ok && first)
7618 {
7619 if (this_path_len != 1
7620 || this_path[0] != '.')
7621 {
7622 char *new_multilib_dir = XNEWVEC (char, this_path_len + 1);
7623 char *q;
7624
7625 strncpy (new_multilib_dir, this_path, this_path_len);
7626 new_multilib_dir[this_path_len] = '\0';
7627 q = strchr (new_multilib_dir, ':');
7628 if (q != NULL)
7629 *q = '\0';
7630 multilib_dir = new_multilib_dir;
7631 }
7632 first = 0;
7633 }
7634
7635 if (ndfltok)
7636 {
7637 const char *q = this_path, *end = this_path + this_path_len;
7638
7639 while (q < end && *q != ':')
7640 q++;
7641 if (q < end)
7642 {
7643 const char *q2 = q + 1, *ml_end = end;
7644 char *new_multilib_os_dir;
7645
7646 while (q2 < end && *q2 != ':')
7647 q2++;
7648 if (*q2 == ':')
7649 ml_end = q2;
7650 new_multilib_os_dir = XNEWVEC (char, ml_end - q);
7651 memcpy (new_multilib_os_dir, q + 1, ml_end - q - 1);
7652 new_multilib_os_dir[ml_end - q - 1] = '\0';
7653 multilib_os_dir = *new_multilib_os_dir ? new_multilib_os_dir : ".";
7654
7655 if (q2 < end && *q2 == ':')
7656 {
7657 char *new_multiarch_dir = XNEWVEC (char, end - q2);
7658 memcpy (new_multiarch_dir, q2 + 1, end - q2 - 1);
7659 new_multiarch_dir[end - q2 - 1] = '\0';
7660 multiarch_dir = new_multiarch_dir;
7661 }
7662 break;
7663 }
7664 }
7665
7666 ++p;
7667 }
7668
7669 if (multilib_dir == NULL && multilib_os_dir != NULL
7670 && strcmp (multilib_os_dir, ".") == 0)
7671 {
7672 free (CONST_CAST (char *, multilib_os_dir));
7673 multilib_os_dir = NULL;
7674 }
7675 else if (multilib_dir != NULL && multilib_os_dir == NULL)
7676 multilib_os_dir = multilib_dir;
7677 }
7678
7679 /* Print out the multiple library subdirectory selection
7680 information. This prints out a series of lines. Each line looks
7681 like SUBDIRECTORY;@OPTION@OPTION, with as many options as is
7682 required. Only the desired options are printed out, the negative
7683 matches. The options are print without a leading dash. There are
7684 no spaces to make it easy to use the information in the shell.
7685 Each subdirectory is printed only once. This assumes the ordering
7686 generated by the genmultilib script. Also, we leave out ones that match
7687 the exclusions. */
7688
7689 static void
7690 print_multilib_info (void)
7691 {
7692 const char *p = multilib_select;
7693 const char *last_path = 0, *this_path;
7694 int skip;
7695 unsigned int last_path_len = 0;
7696
7697 while (*p != '\0')
7698 {
7699 skip = 0;
7700 /* Ignore newlines. */
7701 if (*p == '\n')
7702 {
7703 ++p;
7704 continue;
7705 }
7706
7707 /* Get the initial path. */
7708 this_path = p;
7709 while (*p != ' ')
7710 {
7711 if (*p == '\0')
7712 {
7713 invalid_select:
7714 fatal_error ("multilib select %qs is invalid", multilib_select);
7715 }
7716
7717 ++p;
7718 }
7719
7720 /* When --disable-multilib was used but target defines
7721 MULTILIB_OSDIRNAMES, entries starting with .: (and not starting
7722 with .:: for multiarch configurations) are there just to find
7723 multilib_os_dir, so skip them from output. */
7724 if (this_path[0] == '.' && this_path[1] == ':' && this_path[2] != ':')
7725 skip = 1;
7726
7727 /* Check for matches with the multilib_exclusions. We don't bother
7728 with the '!' in either list. If any of the exclusion rules match
7729 all of its options with the select rule, we skip it. */
7730 {
7731 const char *e = multilib_exclusions;
7732 const char *this_arg;
7733
7734 while (*e != '\0')
7735 {
7736 int m = 1;
7737 /* Ignore newlines. */
7738 if (*e == '\n')
7739 {
7740 ++e;
7741 continue;
7742 }
7743
7744 /* Check the arguments. */
7745 while (*e != ';')
7746 {
7747 const char *q;
7748 int mp = 0;
7749
7750 if (*e == '\0')
7751 {
7752 invalid_exclusion:
7753 fatal_error ("multilib exclusion %qs is invalid",
7754 multilib_exclusions);
7755 }
7756
7757 if (! m)
7758 {
7759 ++e;
7760 continue;
7761 }
7762
7763 this_arg = e;
7764
7765 while (*e != ' ' && *e != ';')
7766 {
7767 if (*e == '\0')
7768 goto invalid_exclusion;
7769 ++e;
7770 }
7771
7772 q = p + 1;
7773 while (*q != ';')
7774 {
7775 const char *arg;
7776 int len = e - this_arg;
7777
7778 if (*q == '\0')
7779 goto invalid_select;
7780
7781 arg = q;
7782
7783 while (*q != ' ' && *q != ';')
7784 {
7785 if (*q == '\0')
7786 goto invalid_select;
7787 ++q;
7788 }
7789
7790 if (! strncmp (arg, this_arg,
7791 (len < q - arg) ? q - arg : len)
7792 || default_arg (this_arg, e - this_arg))
7793 {
7794 mp = 1;
7795 break;
7796 }
7797
7798 if (*q == ' ')
7799 ++q;
7800 }
7801
7802 if (! mp)
7803 m = 0;
7804
7805 if (*e == ' ')
7806 ++e;
7807 }
7808
7809 if (m)
7810 {
7811 skip = 1;
7812 break;
7813 }
7814
7815 if (*e != '\0')
7816 ++e;
7817 }
7818 }
7819
7820 if (! skip)
7821 {
7822 /* If this is a duplicate, skip it. */
7823 skip = (last_path != 0
7824 && (unsigned int) (p - this_path) == last_path_len
7825 && ! filename_ncmp (last_path, this_path, last_path_len));
7826
7827 last_path = this_path;
7828 last_path_len = p - this_path;
7829 }
7830
7831 /* If this directory requires any default arguments, we can skip
7832 it. We will already have printed a directory identical to
7833 this one which does not require that default argument. */
7834 if (! skip)
7835 {
7836 const char *q;
7837
7838 q = p + 1;
7839 while (*q != ';')
7840 {
7841 const char *arg;
7842
7843 if (*q == '\0')
7844 goto invalid_select;
7845
7846 if (*q == '!')
7847 arg = NULL;
7848 else
7849 arg = q;
7850
7851 while (*q != ' ' && *q != ';')
7852 {
7853 if (*q == '\0')
7854 goto invalid_select;
7855 ++q;
7856 }
7857
7858 if (arg != NULL
7859 && default_arg (arg, q - arg))
7860 {
7861 skip = 1;
7862 break;
7863 }
7864
7865 if (*q == ' ')
7866 ++q;
7867 }
7868 }
7869
7870 if (! skip)
7871 {
7872 const char *p1;
7873
7874 for (p1 = last_path; p1 < p && *p1 != ':'; p1++)
7875 putchar (*p1);
7876 putchar (';');
7877 }
7878
7879 ++p;
7880 while (*p != ';')
7881 {
7882 int use_arg;
7883
7884 if (*p == '\0')
7885 goto invalid_select;
7886
7887 if (skip)
7888 {
7889 ++p;
7890 continue;
7891 }
7892
7893 use_arg = *p != '!';
7894
7895 if (use_arg)
7896 putchar ('@');
7897
7898 while (*p != ' ' && *p != ';')
7899 {
7900 if (*p == '\0')
7901 goto invalid_select;
7902 if (use_arg)
7903 putchar (*p);
7904 ++p;
7905 }
7906
7907 if (*p == ' ')
7908 ++p;
7909 }
7910
7911 if (! skip)
7912 {
7913 /* If there are extra options, print them now. */
7914 if (multilib_extra && *multilib_extra)
7915 {
7916 int print_at = TRUE;
7917 const char *q;
7918
7919 for (q = multilib_extra; *q != '\0'; q++)
7920 {
7921 if (*q == ' ')
7922 print_at = TRUE;
7923 else
7924 {
7925 if (print_at)
7926 putchar ('@');
7927 putchar (*q);
7928 print_at = FALSE;
7929 }
7930 }
7931 }
7932
7933 putchar ('\n');
7934 }
7935
7936 ++p;
7937 }
7938 }
7939 \f
7940 /* getenv built-in spec function.
7941
7942 Returns the value of the environment variable given by its first
7943 argument, concatenated with the second argument. If the
7944 environment variable is not defined, a fatal error is issued. */
7945
7946 static const char *
7947 getenv_spec_function (int argc, const char **argv)
7948 {
7949 char *value;
7950 char *result;
7951 char *ptr;
7952 size_t len;
7953
7954 if (argc != 2)
7955 return NULL;
7956
7957 value = getenv (argv[0]);
7958 if (!value)
7959 fatal_error ("environment variable %qs not defined", argv[0]);
7960
7961 /* We have to escape every character of the environment variable so
7962 they are not interpreted as active spec characters. A
7963 particularly painful case is when we are reading a variable
7964 holding a windows path complete with \ separators. */
7965 len = strlen (value) * 2 + strlen (argv[1]) + 1;
7966 result = XNEWVAR (char, len);
7967 for (ptr = result; *value; ptr += 2)
7968 {
7969 ptr[0] = '\\';
7970 ptr[1] = *value++;
7971 }
7972
7973 strcpy (ptr, argv[1]);
7974
7975 return result;
7976 }
7977
7978 /* if-exists built-in spec function.
7979
7980 Checks to see if the file specified by the absolute pathname in
7981 ARGS exists. Returns that pathname if found.
7982
7983 The usual use for this function is to check for a library file
7984 (whose name has been expanded with %s). */
7985
7986 static const char *
7987 if_exists_spec_function (int argc, const char **argv)
7988 {
7989 /* Must have only one argument. */
7990 if (argc == 1 && IS_ABSOLUTE_PATH (argv[0]) && ! access (argv[0], R_OK))
7991 return argv[0];
7992
7993 return NULL;
7994 }
7995
7996 /* if-exists-else built-in spec function.
7997
7998 This is like if-exists, but takes an additional argument which
7999 is returned if the first argument does not exist. */
8000
8001 static const char *
8002 if_exists_else_spec_function (int argc, const char **argv)
8003 {
8004 /* Must have exactly two arguments. */
8005 if (argc != 2)
8006 return NULL;
8007
8008 if (IS_ABSOLUTE_PATH (argv[0]) && ! access (argv[0], R_OK))
8009 return argv[0];
8010
8011 return argv[1];
8012 }
8013
8014 /* replace-outfile built-in spec function.
8015
8016 This looks for the first argument in the outfiles array's name and
8017 replaces it with the second argument. */
8018
8019 static const char *
8020 replace_outfile_spec_function (int argc, const char **argv)
8021 {
8022 int i;
8023 /* Must have exactly two arguments. */
8024 if (argc != 2)
8025 abort ();
8026
8027 for (i = 0; i < n_infiles; i++)
8028 {
8029 if (outfiles[i] && !filename_cmp (outfiles[i], argv[0]))
8030 outfiles[i] = xstrdup (argv[1]);
8031 }
8032 return NULL;
8033 }
8034
8035 /* remove-outfile built-in spec function.
8036 *
8037 * This looks for the first argument in the outfiles array's name and
8038 * removes it. */
8039
8040 static const char *
8041 remove_outfile_spec_function (int argc, const char **argv)
8042 {
8043 int i;
8044 /* Must have exactly one argument. */
8045 if (argc != 1)
8046 abort ();
8047
8048 for (i = 0; i < n_infiles; i++)
8049 {
8050 if (outfiles[i] && !filename_cmp (outfiles[i], argv[0]))
8051 outfiles[i] = NULL;
8052 }
8053 return NULL;
8054 }
8055
8056 /* Given two version numbers, compares the two numbers.
8057 A version number must match the regular expression
8058 ([1-9][0-9]*|0)(\.([1-9][0-9]*|0))*
8059 */
8060 static int
8061 compare_version_strings (const char *v1, const char *v2)
8062 {
8063 int rresult;
8064 regex_t r;
8065
8066 if (regcomp (&r, "^([1-9][0-9]*|0)(\\.([1-9][0-9]*|0))*$",
8067 REG_EXTENDED | REG_NOSUB) != 0)
8068 abort ();
8069 rresult = regexec (&r, v1, 0, NULL, 0);
8070 if (rresult == REG_NOMATCH)
8071 fatal_error ("invalid version number %qs", v1);
8072 else if (rresult != 0)
8073 abort ();
8074 rresult = regexec (&r, v2, 0, NULL, 0);
8075 if (rresult == REG_NOMATCH)
8076 fatal_error ("invalid version number %qs", v2);
8077 else if (rresult != 0)
8078 abort ();
8079
8080 return strverscmp (v1, v2);
8081 }
8082
8083
8084 /* version_compare built-in spec function.
8085
8086 This takes an argument of the following form:
8087
8088 <comparison-op> <arg1> [<arg2>] <switch> <result>
8089
8090 and produces "result" if the comparison evaluates to true,
8091 and nothing if it doesn't.
8092
8093 The supported <comparison-op> values are:
8094
8095 >= true if switch is a later (or same) version than arg1
8096 !> opposite of >=
8097 < true if switch is an earlier version than arg1
8098 !< opposite of <
8099 >< true if switch is arg1 or later, and earlier than arg2
8100 <> true if switch is earlier than arg1 or is arg2 or later
8101
8102 If the switch is not present, the condition is false unless
8103 the first character of the <comparison-op> is '!'.
8104
8105 For example,
8106 %:version-compare(>= 10.3 mmacosx-version-min= -lmx)
8107 adds -lmx if -mmacosx-version-min=10.3.9 was passed. */
8108
8109 static const char *
8110 version_compare_spec_function (int argc, const char **argv)
8111 {
8112 int comp1, comp2;
8113 size_t switch_len;
8114 const char *switch_value = NULL;
8115 int nargs = 1, i;
8116 bool result;
8117
8118 if (argc < 3)
8119 fatal_error ("too few arguments to %%:version-compare");
8120 if (argv[0][0] == '\0')
8121 abort ();
8122 if ((argv[0][1] == '<' || argv[0][1] == '>') && argv[0][0] != '!')
8123 nargs = 2;
8124 if (argc != nargs + 3)
8125 fatal_error ("too many arguments to %%:version-compare");
8126
8127 switch_len = strlen (argv[nargs + 1]);
8128 for (i = 0; i < n_switches; i++)
8129 if (!strncmp (switches[i].part1, argv[nargs + 1], switch_len)
8130 && check_live_switch (i, switch_len))
8131 switch_value = switches[i].part1 + switch_len;
8132
8133 if (switch_value == NULL)
8134 comp1 = comp2 = -1;
8135 else
8136 {
8137 comp1 = compare_version_strings (switch_value, argv[1]);
8138 if (nargs == 2)
8139 comp2 = compare_version_strings (switch_value, argv[2]);
8140 else
8141 comp2 = -1; /* This value unused. */
8142 }
8143
8144 switch (argv[0][0] << 8 | argv[0][1])
8145 {
8146 case '>' << 8 | '=':
8147 result = comp1 >= 0;
8148 break;
8149 case '!' << 8 | '<':
8150 result = comp1 >= 0 || switch_value == NULL;
8151 break;
8152 case '<' << 8:
8153 result = comp1 < 0;
8154 break;
8155 case '!' << 8 | '>':
8156 result = comp1 < 0 || switch_value == NULL;
8157 break;
8158 case '>' << 8 | '<':
8159 result = comp1 >= 0 && comp2 < 0;
8160 break;
8161 case '<' << 8 | '>':
8162 result = comp1 < 0 || comp2 >= 0;
8163 break;
8164
8165 default:
8166 fatal_error ("unknown operator %qs in %%:version-compare", argv[0]);
8167 }
8168 if (! result)
8169 return NULL;
8170
8171 return argv[nargs + 2];
8172 }
8173
8174 /* %:include builtin spec function. This differs from %include in that it
8175 can be nested inside a spec, and thus be conditionalized. It takes
8176 one argument, the filename, and looks for it in the startfile path.
8177 The result is always NULL, i.e. an empty expansion. */
8178
8179 static const char *
8180 include_spec_function (int argc, const char **argv)
8181 {
8182 char *file;
8183
8184 if (argc != 1)
8185 abort ();
8186
8187 file = find_a_file (&startfile_prefixes, argv[0], R_OK, true);
8188 read_specs (file ? file : argv[0], false, false);
8189
8190 return NULL;
8191 }
8192
8193 /* %:find-file spec function. This function replaces its argument by
8194 the file found through find_file, that is the -print-file-name gcc
8195 program option. */
8196 static const char *
8197 find_file_spec_function (int argc, const char **argv)
8198 {
8199 const char *file;
8200
8201 if (argc != 1)
8202 abort ();
8203
8204 file = find_file (argv[0]);
8205 return file;
8206 }
8207
8208
8209 /* %:find-plugindir spec function. This function replaces its argument
8210 by the -iplugindir=<dir> option. `dir' is found through find_file, that
8211 is the -print-file-name gcc program option. */
8212 static const char *
8213 find_plugindir_spec_function (int argc, const char **argv ATTRIBUTE_UNUSED)
8214 {
8215 const char *option;
8216
8217 if (argc != 0)
8218 abort ();
8219
8220 option = concat ("-iplugindir=", find_file ("plugin"), NULL);
8221 return option;
8222 }
8223
8224
8225 /* %:print-asm-header spec function. Print a banner to say that the
8226 following output is from the assembler. */
8227
8228 static const char *
8229 print_asm_header_spec_function (int arg ATTRIBUTE_UNUSED,
8230 const char **argv ATTRIBUTE_UNUSED)
8231 {
8232 printf (_("Assembler options\n=================\n\n"));
8233 printf (_("Use \"-Wa,OPTION\" to pass \"OPTION\" to the assembler.\n\n"));
8234 fflush (stdout);
8235 return NULL;
8236 }
8237
8238 /* Get a random number for -frandom-seed */
8239
8240 static unsigned HOST_WIDE_INT
8241 get_random_number (void)
8242 {
8243 unsigned HOST_WIDE_INT ret = 0;
8244 int fd;
8245
8246 fd = open ("/dev/urandom", O_RDONLY);
8247 if (fd >= 0)
8248 {
8249 read (fd, &ret, sizeof (HOST_WIDE_INT));
8250 close (fd);
8251 if (ret)
8252 return ret;
8253 }
8254
8255 /* Get some more or less random data. */
8256 #ifdef HAVE_GETTIMEOFDAY
8257 {
8258 struct timeval tv;
8259
8260 gettimeofday (&tv, NULL);
8261 ret = tv.tv_sec * 1000 + tv.tv_usec / 1000;
8262 }
8263 #else
8264 {
8265 time_t now = time (NULL);
8266
8267 if (now != (time_t)-1)
8268 ret = (unsigned) now;
8269 }
8270 #endif
8271
8272 return ret ^ getpid();
8273 }
8274
8275 /* %:compare-debug-dump-opt spec function. Save the last argument,
8276 expected to be the last -fdump-final-insns option, or generate a
8277 temporary. */
8278
8279 static const char *
8280 compare_debug_dump_opt_spec_function (int arg,
8281 const char **argv ATTRIBUTE_UNUSED)
8282 {
8283 char *ret;
8284 char *name;
8285 int which;
8286 static char random_seed[HOST_BITS_PER_WIDE_INT / 4 + 3];
8287
8288 if (arg != 0)
8289 fatal_error ("too many arguments to %%:compare-debug-dump-opt");
8290
8291 do_spec_2 ("%{fdump-final-insns=*:%*}");
8292 do_spec_1 (" ", 0, NULL);
8293
8294 if (argbuf.length () > 0
8295 && strcmp (argv[argbuf.length () - 1], "."))
8296 {
8297 if (!compare_debug)
8298 return NULL;
8299
8300 name = xstrdup (argv[argbuf.length () - 1]);
8301 ret = NULL;
8302 }
8303 else
8304 {
8305 const char *ext = NULL;
8306
8307 if (argbuf.length () > 0)
8308 {
8309 do_spec_2 ("%{o*:%*}%{!o:%{!S:%b%O}%{S:%b.s}}");
8310 ext = ".gkd";
8311 }
8312 else if (!compare_debug)
8313 return NULL;
8314 else
8315 do_spec_2 ("%g.gkd");
8316
8317 do_spec_1 (" ", 0, NULL);
8318
8319 gcc_assert (argbuf.length () > 0);
8320
8321 name = concat (argbuf.last (), ext, NULL);
8322
8323 ret = concat ("-fdump-final-insns=", name, NULL);
8324 }
8325
8326 which = compare_debug < 0;
8327 debug_check_temp_file[which] = name;
8328
8329 if (!which)
8330 {
8331 unsigned HOST_WIDE_INT value = get_random_number ();
8332
8333 sprintf (random_seed, HOST_WIDE_INT_PRINT_HEX, value);
8334 }
8335
8336 if (*random_seed)
8337 {
8338 char *tmp = ret;
8339 ret = concat ("%{!frandom-seed=*:-frandom-seed=", random_seed, "} ",
8340 ret, NULL);
8341 free (tmp);
8342 }
8343
8344 if (which)
8345 *random_seed = 0;
8346
8347 return ret;
8348 }
8349
8350 static const char *debug_auxbase_opt;
8351
8352 /* %:compare-debug-self-opt spec function. Expands to the options
8353 that are to be passed in the second compilation of
8354 compare-debug. */
8355
8356 static const char *
8357 compare_debug_self_opt_spec_function (int arg,
8358 const char **argv ATTRIBUTE_UNUSED)
8359 {
8360 if (arg != 0)
8361 fatal_error ("too many arguments to %%:compare-debug-self-opt");
8362
8363 if (compare_debug >= 0)
8364 return NULL;
8365
8366 do_spec_2 ("%{c|S:%{o*:%*}}");
8367 do_spec_1 (" ", 0, NULL);
8368
8369 if (argbuf.length () > 0)
8370 debug_auxbase_opt = concat ("-auxbase-strip ",
8371 argbuf.last (),
8372 NULL);
8373 else
8374 debug_auxbase_opt = NULL;
8375
8376 return concat ("\
8377 %<o %<MD %<MMD %<MF* %<MG %<MP %<MQ* %<MT* \
8378 %<fdump-final-insns=* -w -S -o %j \
8379 %{!fcompare-debug-second:-fcompare-debug-second} \
8380 ", compare_debug_opt, NULL);
8381 }
8382
8383 /* %:compare-debug-auxbase-opt spec function. Expands to the auxbase
8384 options that are to be passed in the second compilation of
8385 compare-debug. It expects, as an argument, the basename of the
8386 current input file name, with the .gk suffix appended to it. */
8387
8388 static const char *
8389 compare_debug_auxbase_opt_spec_function (int arg,
8390 const char **argv)
8391 {
8392 char *name;
8393 int len;
8394
8395 if (arg == 0)
8396 fatal_error ("too few arguments to %%:compare-debug-auxbase-opt");
8397
8398 if (arg != 1)
8399 fatal_error ("too many arguments to %%:compare-debug-auxbase-opt");
8400
8401 if (compare_debug >= 0)
8402 return NULL;
8403
8404 len = strlen (argv[0]);
8405 if (len < 3 || strcmp (argv[0] + len - 3, ".gk") != 0)
8406 fatal_error ("argument to %%:compare-debug-auxbase-opt "
8407 "does not end in .gk");
8408
8409 if (debug_auxbase_opt)
8410 return debug_auxbase_opt;
8411
8412 #define OPT "-auxbase "
8413
8414 len -= 3;
8415 name = (char*) xmalloc (sizeof (OPT) + len);
8416 memcpy (name, OPT, sizeof (OPT) - 1);
8417 memcpy (name + sizeof (OPT) - 1, argv[0], len);
8418 name[sizeof (OPT) - 1 + len] = '\0';
8419
8420 #undef OPT
8421
8422 return name;
8423 }
8424
8425 /* %:pass-through-libs spec function. Finds all -l options and input
8426 file names in the lib spec passed to it, and makes a list of them
8427 prepended with the plugin option to cause them to be passed through
8428 to the final link after all the new object files have been added. */
8429
8430 const char *
8431 pass_through_libs_spec_func (int argc, const char **argv)
8432 {
8433 char *prepended = xstrdup (" ");
8434 int n;
8435 /* Shlemiel the painter's algorithm. Innately horrible, but at least
8436 we know that there will never be more than a handful of strings to
8437 concat, and it's only once per run, so it's not worth optimising. */
8438 for (n = 0; n < argc; n++)
8439 {
8440 char *old = prepended;
8441 /* Anything that isn't an option is a full path to an output
8442 file; pass it through if it ends in '.a'. Among options,
8443 pass only -l. */
8444 if (argv[n][0] == '-' && argv[n][1] == 'l')
8445 {
8446 const char *lopt = argv[n] + 2;
8447 /* Handle both joined and non-joined -l options. If for any
8448 reason there's a trailing -l with no joined or following
8449 arg just discard it. */
8450 if (!*lopt && ++n >= argc)
8451 break;
8452 else if (!*lopt)
8453 lopt = argv[n];
8454 prepended = concat (prepended, "-plugin-opt=-pass-through=-l",
8455 lopt, " ", NULL);
8456 }
8457 else if (!strcmp (".a", argv[n] + strlen (argv[n]) - 2))
8458 {
8459 prepended = concat (prepended, "-plugin-opt=-pass-through=",
8460 argv[n], " ", NULL);
8461 }
8462 if (prepended != old)
8463 free (old);
8464 }
8465 return prepended;
8466 }
8467
8468 /* %:replace-extension spec function. Replaces the extension of the
8469 first argument with the second argument. */
8470
8471 const char *
8472 replace_extension_spec_func (int argc, const char **argv)
8473 {
8474 char *name;
8475 char *p;
8476 char *result;
8477 int i;
8478
8479 if (argc != 2)
8480 fatal_error ("too few arguments to %%:replace-extension");
8481
8482 name = xstrdup (argv[0]);
8483
8484 for (i = strlen(name) - 1; i >= 0; i--)
8485 if (IS_DIR_SEPARATOR (name[i]))
8486 break;
8487
8488 p = strrchr (name + i + 1, '.');
8489 if (p != NULL)
8490 *p = '\0';
8491
8492 result = concat (name, argv[1], NULL);
8493
8494 free (name);
8495 return result;
8496 }