OSDN Git Service

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