OSDN Git Service

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