OSDN Git Service

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