OSDN Git Service

* gcc.c: Revert previous patch for now.
[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 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING.  If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.
21
22 This paragraph is here to try to keep Sun CC from dying.
23 The number of chars here seems crucial!!!!  */
24
25 /* This program is the user interface to the C compiler and possibly to
26 other compilers.  It is used because compilation is a complicated procedure
27 which involves running several programs and passing temporary files between
28 them, forwarding the users switches to those programs selectively,
29 and deleting the temporary files at the end.
30
31 CC recognizes how to compile each input file by suffixes in the file names.
32 Once it knows which kind of compilation to perform, the procedure for
33 compilation is specified by a string called a "spec".  */
34
35 /* A Short Introduction to Adding a Command-Line Option.
36
37    Before adding a command-line option, consider if it is really
38    necessary.  Each additional command-line option adds complexity and
39    is difficult to remove in subsequent versions.
40
41    In the following, consider adding the command-line argument
42    `--bar'.
43
44    1. Each command-line option is specified in the specs file.  The
45    notation is described below in the comment entitled "The Specs
46    Language".  Read it.
47
48    2. In this file, add an entry to "option_map" equating the long
49    `--' argument version and any shorter, single letter version.  Read
50    the comments in the declaration of "struct option_map" for an
51    explanation.  Do not omit the first `-'.
52
53    3. Look in the "specs" file to determine which program or option
54    list should be given the argument, e.g., "cc1_options".  Add the
55    appropriate syntax for the shorter option version to the
56    corresponding "const char *" entry in this file.  Omit the first
57    `-' from the option.  For example, use `-bar', rather than `--bar'.
58
59    4. If the argument takes an argument, e.g., `--baz argument1',
60    modify either DEFAULT_SWITCH_TAKES_ARG or
61    DEFAULT_WORD_SWITCH_TAKES_ARG in this file.  Omit the first `-'
62    from `--baz'.
63
64    5. Document the option in this file's display_help().  If the
65    option is passed to a subprogram, modify its corresponding
66    function, e.g., cppinit.c:print_help() or toplev.c:display_help(),
67    instead.
68
69    6. Compile and test.  Make sure that your new specs file is being
70    read.  For example, use a debugger to investigate the value of
71    "specs_file" in main().  */
72
73 #include "config.h"
74 #include "system.h"
75 #include <signal.h>
76 #if ! defined( SIGCHLD ) && defined( SIGCLD )
77 #  define SIGCHLD SIGCLD
78 #endif
79 #include "obstack.h"
80 #include "intl.h"
81 #include "prefix.h"
82 #include "gcc.h"
83 #include "flags.h"
84
85 #ifdef HAVE_SYS_RESOURCE_H
86 #include <sys/resource.h>
87 #endif
88 #if defined (HAVE_DECL_GETRUSAGE) && !HAVE_DECL_GETRUSAGE
89 extern int getrusage PARAMS ((int, struct rusage *));
90 #endif
91
92 /* By default there is no special suffix for target executables.  */
93 /* FIXME: when autoconf is fixed, remove the host check - dj */
94 #if defined(TARGET_EXECUTABLE_SUFFIX) && defined(HOST_EXECUTABLE_SUFFIX)
95 #define HAVE_TARGET_EXECUTABLE_SUFFIX
96 #else
97 #undef TARGET_EXECUTABLE_SUFFIX
98 #define TARGET_EXECUTABLE_SUFFIX ""
99 #endif
100
101 /* By default there is no special suffix for host executables.  */
102 #ifdef HOST_EXECUTABLE_SUFFIX
103 #define HAVE_HOST_EXECUTABLE_SUFFIX
104 #else
105 #define HOST_EXECUTABLE_SUFFIX ""
106 #endif
107
108 /* By default, the suffix for target object files is ".o".  */
109 #ifdef TARGET_OBJECT_SUFFIX
110 #define HAVE_TARGET_OBJECT_SUFFIX
111 #else
112 #define TARGET_OBJECT_SUFFIX ".o"
113 #endif
114
115 #ifndef VMS
116 /* FIXME: the location independence code for VMS is hairier than this,
117    and hasn't been written.  */
118 #ifndef DIR_UP
119 #define DIR_UP ".."
120 #endif /* DIR_UP */
121 #endif /* VMS */
122
123 static const char dir_separator_str[] = { DIR_SEPARATOR, 0 };
124
125 #define obstack_chunk_alloc xmalloc
126 #define obstack_chunk_free free
127
128 #ifndef GET_ENV_PATH_LIST
129 #define GET_ENV_PATH_LIST(VAR,NAME)     do { (VAR) = getenv (NAME); } while (0)
130 #endif
131
132 /* Most every one is fine with LIBRARY_PATH.  For some, it conflicts.  */
133 #ifndef LIBRARY_PATH_ENV
134 #define LIBRARY_PATH_ENV "LIBRARY_PATH"
135 #endif
136
137 #ifndef HAVE_KILL
138 #define kill(p,s) raise(s)
139 #endif
140
141 /* If a stage of compilation returns an exit status >= 1,
142    compilation of that file ceases.  */
143
144 #define MIN_FATAL_STATUS 1
145
146 /* Flag set by cppspec.c to 1.  */
147 int is_cpp_driver;
148
149 /* Flag saying to pass the greatest exit code returned by a sub-process
150    to the calling program.  */
151 static int pass_exit_codes;
152
153 /* Definition of string containing the arguments given to configure.  */
154 #include "configargs.h"
155
156 /* Flag saying to print the directories gcc will search through looking for
157    programs, libraries, etc.  */
158
159 static int print_search_dirs;
160
161 /* Flag saying to print the full filename of this file
162    as found through our usual search mechanism.  */
163
164 static const char *print_file_name = NULL;
165
166 /* As print_file_name, but search for executable file.  */
167
168 static const char *print_prog_name = NULL;
169
170 /* Flag saying to print the relative path we'd use to
171    find libgcc.a given the current compiler flags.  */
172
173 static int print_multi_directory;
174
175 /* Flag saying to print the list of subdirectories and
176    compiler flags used to select them in a standard form.  */
177
178 static int print_multi_lib;
179
180 /* Flag saying to print the command line options understood by gcc and its
181    sub-processes.  */
182
183 static int print_help_list;
184
185 /* Flag indicating whether we should print the command and arguments */
186
187 static int verbose_flag;
188
189 /* Flag indicating whether we should ONLY print the command and
190    arguments (like verbose_flag) without executing the command.
191    Displayed arguments are quoted so that the generated command
192    line is suitable for execution.  This is intended for use in
193    shell scripts to capture the driver-generated command line.  */
194 static int verbose_only_flag;
195
196 /* Flag indicating to print target specific command line options.  */
197
198 static int target_help_flag;
199
200 /* Flag indicating whether we should report subprocess execution times
201    (if this is supported by the system - see pexecute.c).  */
202
203 static int report_times;
204
205 /* Nonzero means write "temp" files in source directory
206    and use the source file's name in them, and don't delete them.  */
207
208 static int save_temps_flag;
209
210 /* The compiler version.  */
211
212 static const char *compiler_version;
213
214 /* The target version specified with -V */
215
216 static const char *spec_version = DEFAULT_TARGET_VERSION;
217
218 /* The target machine specified with -b.  */
219
220 static const char *spec_machine = DEFAULT_TARGET_MACHINE;
221
222 /* Nonzero if cross-compiling.
223    When -b is used, the value comes from the `specs' file.  */
224
225 #ifdef CROSS_COMPILE
226 static const char *cross_compile = "1";
227 #else
228 static const char *cross_compile = "0";
229 #endif
230
231 #ifdef MODIFY_TARGET_NAME
232
233 /* Information on how to alter the target name based on a command-line
234    switch.  The only case we support now is simply appending or deleting a
235    string to or from the end of the first part of the configuration name.  */
236
237 static const struct modify_target
238 {
239   const char *const sw;
240   const enum add_del {ADD, DELETE} add_del;
241   const char *const str;
242 }
243 modify_target[] = MODIFY_TARGET_NAME;
244 #endif
245  
246 /* The number of errors that have occurred; the link phase will not be
247    run if this is non-zero.  */
248 static int error_count = 0;
249
250 /* Greatest exit code of sub-processes that has been encountered up to
251    now.  */
252 static int greatest_status = 1;
253
254 /* This is the obstack which we use to allocate many strings.  */
255
256 static struct obstack obstack;
257
258 /* This is the obstack to build an environment variable to pass to
259    collect2 that describes all of the relevant switches of what to
260    pass the compiler in building the list of pointers to constructors
261    and destructors.  */
262
263 static struct obstack collect_obstack;
264
265 /* These structs are used to collect resource usage information for
266    subprocesses.  */
267 #ifdef HAVE_GETRUSAGE
268 static struct rusage rus, prus;
269 #endif
270
271 /* Forward declaration for prototypes.  */
272 struct path_prefix;
273
274 static void init_spec           PARAMS ((void));
275 #ifndef VMS
276 static char **split_directories PARAMS ((const char *, int *));
277 static void free_split_directories PARAMS ((char **));
278 static char *make_relative_prefix PARAMS ((const char *, const char *, const char *));
279 #endif /* VMS */
280 static void store_arg           PARAMS ((const char *, int, int));
281 static char *load_specs         PARAMS ((const char *));
282 static void read_specs          PARAMS ((const char *, int));
283 static void set_spec            PARAMS ((const char *, const char *));
284 static struct compiler *lookup_compiler PARAMS ((const char *, size_t, const char *));
285 static char *build_search_list  PARAMS ((struct path_prefix *, const char *, int));
286 static void putenv_from_prefixes PARAMS ((struct path_prefix *, const char *));
287 static int access_check         PARAMS ((const char *, int));
288 static char *find_a_file        PARAMS ((struct path_prefix *, const char *, int));
289 static void add_prefix          PARAMS ((struct path_prefix *, const char *,
290                                          const char *, int, int, int *));
291 static void translate_options   PARAMS ((int *, const char *const **));
292 static char *skip_whitespace    PARAMS ((char *));
293 static void delete_if_ordinary  PARAMS ((const char *));
294 static void delete_temp_files   PARAMS ((void));
295 static void delete_failure_queue PARAMS ((void));
296 static void clear_failure_queue PARAMS ((void));
297 static int check_live_switch    PARAMS ((int, int));
298 static const char *handle_braces PARAMS ((const char *));
299 static char *save_string        PARAMS ((const char *, int));
300 static void set_collect_gcc_options PARAMS ((void));
301 static int do_spec_1            PARAMS ((const char *, int, const char *));
302 static const char *find_file    PARAMS ((const char *));
303 static int is_directory         PARAMS ((const char *, const char *, int));
304 static void validate_switches   PARAMS ((const char *));
305 static void validate_all_switches PARAMS ((void));
306 static void give_switch         PARAMS ((int, int, int));
307 static int used_arg             PARAMS ((const char *, int));
308 static int default_arg          PARAMS ((const char *, int));
309 static void set_multilib_dir    PARAMS ((void));
310 static void print_multilib_info PARAMS ((void));
311 static void perror_with_name    PARAMS ((const char *));
312 static void pfatal_pexecute     PARAMS ((const char *, const char *))
313   ATTRIBUTE_NORETURN;
314 static void notice              PARAMS ((const char *, ...))
315   ATTRIBUTE_PRINTF_1;
316 static void display_help        PARAMS ((void));
317 static void add_preprocessor_option     PARAMS ((const char *, int));
318 static void add_assembler_option        PARAMS ((const char *, int));
319 static void add_linker_option           PARAMS ((const char *, int));
320 static void process_command             PARAMS ((int, const char *const *));
321 static int execute                      PARAMS ((void));
322 static void clear_args                  PARAMS ((void));
323 static void fatal_error                 PARAMS ((int));
324 #ifdef ENABLE_SHARED_LIBGCC
325 static void init_gcc_specs              PARAMS ((struct obstack *,
326                                                  const char *, const char *,
327                                                  const char *));
328 #endif
329 #if defined(HAVE_TARGET_OBJECT_SUFFIX) || defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
330 static const char *convert_filename     PARAMS ((const char *, int, int));
331 #endif
332 \f
333 /* The Specs Language
334
335 Specs are strings containing lines, each of which (if not blank)
336 is made up of a program name, and arguments separated by spaces.
337 The program name must be exact and start from root, since no path
338 is searched and it is unreliable to depend on the current working directory.
339 Redirection of input or output is not supported; the subprograms must
340 accept filenames saying what files to read and write.
341
342 In addition, the specs can contain %-sequences to substitute variable text
343 or for conditional text.  Here is a table of all defined %-sequences.
344 Note that spaces are not generated automatically around the results of
345 expanding these sequences; therefore, you can concatenate them together
346 or with constant text in a single argument.
347
348  %%     substitute one % into the program name or argument.
349  %i     substitute the name of the input file being processed.
350  %b     substitute the basename of the input file being processed.
351         This is the substring up to (and not including) the last period
352         and not including the directory.
353  %B     same as %b, but include the file suffix (text after the last period).
354  %gSUFFIX
355         substitute a file name that has suffix SUFFIX and is chosen
356         once per compilation, and mark the argument a la %d.  To reduce
357         exposure to denial-of-service attacks, the file name is now
358         chosen in a way that is hard to predict even when previously
359         chosen file names are known.  For example, `%g.s ... %g.o ... %g.s'
360         might turn into `ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s'.  SUFFIX matches
361         the regexp "[.A-Za-z]*%O"; "%O" is treated exactly as if it
362         had been pre-processed.  Previously, %g was simply substituted
363         with a file name chosen once per compilation, without regard
364         to any appended suffix (which was therefore treated just like
365         ordinary text), making such attacks more likely to succeed.
366  %uSUFFIX
367         like %g, but generates a new temporary file name even if %uSUFFIX
368         was already seen.
369  %USUFFIX
370         substitutes the last file name generated with %uSUFFIX, generating a
371         new one if there is no such last file name.  In the absence of any
372         %uSUFFIX, this is just like %gSUFFIX, except they don't share
373         the same suffix "space", so `%g.s ... %U.s ... %g.s ... %U.s'
374         would involve the generation of two distinct file names, one
375         for each `%g.s' and another for each `%U.s'.  Previously, %U was
376         simply substituted with a file name chosen for the previous %u,
377         without regard to any appended suffix.
378  %jSUFFIX
379         substitutes the name of the HOST_BIT_BUCKET, if any, and if it is
380         writable, and if save-temps is off; otherwise, substitute the name
381         of a temporary file, just like %u.  This temporary file is not
382         meant for communication between processes, but rather as a junk
383         disposal mechanism.
384  %.SUFFIX
385         substitutes .SUFFIX for the suffixes of a matched switch's args when
386         it is subsequently output with %*. SUFFIX is terminated by the next
387         space or %.
388  %d     marks the argument containing or following the %d as a
389         temporary file name, so that that file will be deleted if CC exits
390         successfully.  Unlike %g, this contributes no text to the argument.
391  %w     marks the argument containing or following the %w as the
392         "output file" of this compilation.  This puts the argument
393         into the sequence of arguments that %o will substitute later.
394  %W{...}
395         like %{...} but mark last argument supplied within
396         as a file to be deleted on failure.
397  %o     substitutes the names of all the output files, with spaces
398         automatically placed around them.  You should write spaces
399         around the %o as well or the results are undefined.
400         %o is for use in the specs for running the linker.
401         Input files whose names have no recognized suffix are not compiled
402         at all, but they are included among the output files, so they will
403         be linked.
404  %O     substitutes the suffix for object files.  Note that this is
405         handled specially when it immediately follows %g, %u, or %U
406         (with or without a suffix argument) because of the need for
407         those to form complete file names.  The handling is such that
408         %O is treated exactly as if it had already been substituted,
409         except that %g, %u, and %U do not currently support additional
410         SUFFIX characters following %O as they would following, for
411         example, `.o'.
412  %p     substitutes the standard macro predefinitions for the
413         current target machine.  Use this when running cpp.
414  %P     like %p, but puts `__' before and after the name of each macro.
415         (Except macros that already have __.)
416         This is for ANSI C.
417  %I     Substitute a -iprefix option made from GCC_EXEC_PREFIX.
418  %s     current argument is the name of a library or startup file of some sort.
419         Search for that file in a standard list of directories
420         and substitute the full name found.
421  %eSTR  Print STR as an error message.  STR is terminated by a newline.
422         Use this when inconsistent options are detected.
423  %nSTR  Print STR as an notice.  STR is terminated by a newline.
424  %x{OPTION}     Accumulate an option for %X.
425  %X     Output the accumulated linker options specified by compilations.
426  %Y     Output the accumulated assembler options specified by compilations.
427  %Z     Output the accumulated preprocessor options specified by compilations.
428  %v1    Substitute the major version number of GCC.
429         (For version 2.5.3, this is 2.)
430  %v2    Substitute the minor version number of GCC.
431         (For version 2.5.3, this is 5.)
432  %v3    Substitute the patch level number of GCC.
433         (For version 2.5.3, this is 3.)
434  %a     process ASM_SPEC as a spec.
435         This allows config.h to specify part of the spec for running as.
436  %A     process ASM_FINAL_SPEC as a spec.  A capital A is actually
437         used here.  This can be used to run a post-processor after the
438         assembler has done its job.
439  %D     Dump out a -L option for each directory in startfile_prefixes.
440         If multilib_dir is set, extra entries are generated with it affixed.
441  %l     process LINK_SPEC as a spec.
442  %L     process LIB_SPEC as a spec.
443  %G     process LIBGCC_SPEC as a spec.
444  %M     output multilib_dir with directory separators replaced with "_";
445         if multilib_dir is not set or is ".", output "".
446  %S     process STARTFILE_SPEC as a spec.  A capital S is actually used here.
447  %E     process ENDFILE_SPEC as a spec.  A capital E is actually used here.
448  %C     process CPP_SPEC as a spec.
449  %1     process CC1_SPEC as a spec.
450  %2     process CC1PLUS_SPEC as a spec.
451  %|     output "-" if the input for the current command is coming from a pipe.
452  %*     substitute the variable part of a matched option.  (See below.)
453         Note that each comma in the substituted string is replaced by
454         a single space.
455  %{S}   substitutes the -S switch, if that switch was given to CC.
456         If that switch was not specified, this substitutes nothing.
457         Here S is a metasyntactic variable.
458  %{S*}  substitutes all the switches specified to CC whose names start
459         with -S.  This is used for -o, -I, etc; switches that take
460         arguments.  CC considers `-o foo' as being one switch whose
461         name starts with `o'.  %{o*} would substitute this text,
462         including the space; thus, two arguments would be generated.
463  %{^S*} likewise, but don't put a blank between a switch and any args.
464  %{S*&T*} likewise, but preserve order of S and T options (the order
465         of S and T in the spec is not significant).  Can be any number
466         of ampersand-separated variables; for each the wild card is
467         optional.  Useful for CPP as %{D*&U*&A*}.
468  %{S*:X} substitutes X if one or more switches whose names start with -S are
469         specified to CC.  Note that the tail part of the -S option
470         (i.e. the part matched by the `*') will be substituted for each
471         occurrence of %* within X.
472  %{<S}  remove all occurrences of -S from the command line.
473         Note - this option is position dependent.  % commands in the
474         spec string before this option will see -S, % commands in the
475         spec string after this option will not.
476  %{S:X} substitutes X, but only if the -S switch was given to CC.
477  %{!S:X} substitutes X, but only if the -S switch was NOT given to CC.
478  %{|S:X} like %{S:X}, but if no S switch, substitute `-'.
479  %{|!S:X} like %{!S:X}, but if there is an S switch, substitute `-'.
480  %{.S:X} substitutes X, but only if processing a file with suffix S.
481  %{!.S:X} substitutes X, but only if NOT processing a file with suffix S.
482  %{S|P:X} substitutes X if either -S or -P was given to CC.  This may be
483           combined with ! and . as above binding stronger than the OR.
484  %(Spec) processes a specification defined in a specs file as *Spec:
485  %[Spec] as above, but put __ around -D arguments
486
487 The conditional text X in a %{S:X} or %{!S:X} construct may contain
488 other nested % constructs or spaces, or even newlines.  They are
489 processed as usual, as described above.
490
491 The -O, -f, -m, and -W switches are handled specifically in these
492 constructs.  If another value of -O or the negated form of a -f, -m, or
493 -W switch is found later in the command line, the earlier switch
494 value is ignored, except with {S*} where S is just one letter; this
495 passes all matching options.
496
497 The character | at the beginning of the predicate text is used to indicate
498 that a command should be piped to the following command, but only if -pipe
499 is specified.
500
501 Note that it is built into CC which switches take arguments and which
502 do not.  You might think it would be useful to generalize this to
503 allow each compiler's spec to say which switches take arguments.  But
504 this cannot be done in a consistent fashion.  CC cannot even decide
505 which input files have been specified without knowing which switches
506 take arguments, and it must know which input files to compile in order
507 to tell which compilers to run.
508
509 CC also knows implicitly that arguments starting in `-l' are to be
510 treated as compiler output files, and passed to the linker in their
511 proper position among the other output files.  */
512 \f
513 /* Define the macros used for specs %a, %l, %L, %S, %C, %1.  */
514
515 /* config.h can define ASM_SPEC to provide extra args to the assembler
516    or extra switch-translations.  */
517 #ifndef ASM_SPEC
518 #define ASM_SPEC ""
519 #endif
520
521 /* config.h can define ASM_FINAL_SPEC to run a post processor after
522    the assembler has run.  */
523 #ifndef ASM_FINAL_SPEC
524 #define ASM_FINAL_SPEC ""
525 #endif
526
527 /* config.h can define CPP_SPEC to provide extra args to the C preprocessor
528    or extra switch-translations.  */
529 #ifndef CPP_SPEC
530 #define CPP_SPEC ""
531 #endif
532
533 /* config.h can define CC1_SPEC to provide extra args to cc1 and cc1plus
534    or extra switch-translations.  */
535 #ifndef CC1_SPEC
536 #define CC1_SPEC ""
537 #endif
538
539 /* config.h can define CC1PLUS_SPEC to provide extra args to cc1plus
540    or extra switch-translations.  */
541 #ifndef CC1PLUS_SPEC
542 #define CC1PLUS_SPEC ""
543 #endif
544
545 /* config.h can define LINK_SPEC to provide extra args to the linker
546    or extra switch-translations.  */
547 #ifndef LINK_SPEC
548 #define LINK_SPEC ""
549 #endif
550
551 /* config.h can define LIB_SPEC to override the default libraries.  */
552 #ifndef LIB_SPEC
553 #define LIB_SPEC "%{!shared:%{g*:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}}"
554 #endif
555
556 /* config.h can define LIBGCC_SPEC to override how and when libgcc.a is
557    included.  */
558 #ifndef LIBGCC_SPEC
559 #if defined(LINK_LIBGCC_SPECIAL) || defined(LINK_LIBGCC_SPECIAL_1)
560 /* Have gcc do the search for libgcc.a.  */
561 #define LIBGCC_SPEC "libgcc.a%s"
562 #else
563 #define LIBGCC_SPEC "-lgcc"
564 #endif
565 #endif
566
567 /* config.h can define STARTFILE_SPEC to override the default crt0 files.  */
568 #ifndef STARTFILE_SPEC
569 #define STARTFILE_SPEC  \
570   "%{!shared:%{pg:gcrt0%O%s}%{!pg:%{p:mcrt0%O%s}%{!p:crt0%O%s}}}"
571 #endif
572
573 /* config.h can define SWITCHES_NEED_SPACES to control which options
574    require spaces between the option and the argument.  */
575 #ifndef SWITCHES_NEED_SPACES
576 #define SWITCHES_NEED_SPACES ""
577 #endif
578
579 /* config.h can define ENDFILE_SPEC to override the default crtn files.  */
580 #ifndef ENDFILE_SPEC
581 #define ENDFILE_SPEC ""
582 #endif
583
584 #ifndef LINKER_NAME
585 #define LINKER_NAME "collect2"
586 #endif
587
588 /* Define ASM_DEBUG_SPEC to be a spec suitable for translating '-g'
589    to the assembler.  */
590 #ifndef ASM_DEBUG_SPEC
591 # if defined(DBX_DEBUGGING_INFO) && defined(DWARF2_DEBUGGING_INFO) \
592      && defined(HAVE_AS_GDWARF2_DEBUG_FLAG) && defined(HAVE_AS_GSTABS_DEBUG_FLAG)
593 #  define ASM_DEBUG_SPEC                                        \
594       (PREFERRED_DEBUGGING_TYPE == DBX_DEBUG                    \
595        ? "%{gdwarf-2*:--gdwarf2}%{!gdwarf-2*:%{g*:--gstabs}}"   \
596        : "%{gstabs*:--gstabs}%{!gstabs*:%{g*:--gdwarf2}}")
597 # else
598 #  if defined(DBX_DEBUGGING_INFO) && defined(HAVE_AS_GSTABS_DEBUG_FLAG)
599 #   define ASM_DEBUG_SPEC "%{g*:--gstabs}"
600 #  endif
601 #  if defined(DWARF2_DEBUGGING_INFO) && defined(HAVE_AS_GDWARF2_DEBUG_FLAG)
602 #   define ASM_DEBUG_SPEC "%{g*:--gdwarf2}"
603 #  endif
604 # endif
605 #endif
606 #ifndef ASM_DEBUG_SPEC
607 # define ASM_DEBUG_SPEC ""
608 #endif
609
610 /* Here is the spec for running the linker, after compiling all files.  */
611
612 /* -u* was put back because both BSD and SysV seem to support it.  */
613 /* %{static:} simply prevents an error message if the target machine
614    doesn't handle -static.  */
615 /* We want %{T*} after %{L*} and %D so that it can be used to specify linker
616    scripts which exist in user specified directories, or in standard
617    directories.  */
618 #ifndef LINK_COMMAND_SPEC
619 #define LINK_COMMAND_SPEC "\
620 %{!fsyntax-only:%{!c:%{!M:%{!MM:%{!E:%{!S:\
621     %(linker) %l %X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} %{r} %{s} %{t}\
622     %{u*} %{x} %{z} %{Z} %{!A:%{!nostdlib:%{!nostartfiles:%S}}}\
623     %{static:} %{L*} %(link_libgcc) %o %{!nostdlib:%{!nodefaultlibs:%G %L %G}}\
624     %{!A:%{!nostdlib:%{!nostartfiles:%E}}} %{T*} }}}}}}"
625 #endif
626
627 #ifndef LINK_LIBGCC_SPEC
628 # ifdef LINK_LIBGCC_SPECIAL
629 /* Don't generate -L options for startfile prefix list.  */
630 #  define LINK_LIBGCC_SPEC ""
631 # else
632 /* Do generate them.  */
633 #  define LINK_LIBGCC_SPEC "%D"
634 # endif
635 #endif
636
637 static const char *asm_debug = ASM_DEBUG_SPEC;
638 static const char *cpp_spec = CPP_SPEC;
639 static const char *cpp_predefines = CPP_PREDEFINES;
640 static const char *cc1_spec = CC1_SPEC;
641 static const char *cc1plus_spec = CC1PLUS_SPEC;
642 static const char *asm_spec = ASM_SPEC;
643 static const char *asm_final_spec = ASM_FINAL_SPEC;
644 static const char *link_spec = LINK_SPEC;
645 static const char *lib_spec = LIB_SPEC;
646 static const char *libgcc_spec = LIBGCC_SPEC;
647 static const char *endfile_spec = ENDFILE_SPEC;
648 static const char *startfile_spec = STARTFILE_SPEC;
649 static const char *switches_need_spaces = SWITCHES_NEED_SPACES;
650 static const char *linker_name_spec = LINKER_NAME;
651 static const char *link_command_spec = LINK_COMMAND_SPEC;
652 static const char *link_libgcc_spec = LINK_LIBGCC_SPEC;
653
654 /* Standard options to cpp, cc1, and as, to reduce duplication in specs.
655    There should be no need to override these in target dependent files,
656    but we need to copy them to the specs file so that newer versions
657    of the GCC driver can correctly drive older tool chains with the
658    appropriate -B options.  */
659
660 static const char *trad_capable_cpp =
661 "%{traditional|ftraditional|traditional-cpp:tradcpp0}\
662  %{!traditional:%{!ftraditional:%{!traditional-cpp:cc1 -E}}}";
663
664 static const char *cpp_unique_options =
665 "%{C:%{!E:%eGNU C does not support -C without using -E}}\
666  %{!Q:-quiet} %{nostdinc*} %{C} %{v} %{I*} %{P} %{$} %I\
667  %{MD:-MD %W{!o: %b.d}%W{o*:%.d%*}}\
668  %{MMD:-MMD %W{!o: %b.d}%W{o*:%.d%*}}\
669  %{M} %{MM} %W{MF*} %{MG} %{MP} %{MQ*} %{MT*}\
670  %{!E:%{!M:%{!MM:%{MD|MMD:%{o*:-MQ %*}}}}}\
671  %{!no-gcc:-D__GNUC__=%v1 -D__GNUC_MINOR__=%v2 -D__GNUC_PATCHLEVEL__=%v3}\
672  %{!undef:%{!ansi:%{!std=*:%p}%{std=gnu*:%p}} %P} %{trigraphs}\
673  %{Os:-D__OPTIMIZE_SIZE__} %{O*:%{!O0:-D__OPTIMIZE__}}\
674  %{fno-inline|O0|!O*:-D__NO_INLINE__} %{ffast-math:-D__FAST_MATH__}\
675  %{fshort-wchar:-U__WCHAR_TYPE__ -D__WCHAR_TYPE__=short\\ unsigned\\ int}\
676  %{ffreestanding:-D__STDC_HOSTED__=0} %{fno-hosted:-D__STDC_HOSTED__=0}\
677  %{!ffreestanding:%{!fno-hosted:-D__STDC_HOSTED__=1}} %{remap}\
678  %{g3:-dD} %{H} %C %{D*&U*&A*} %{i*} %Z %i\
679  %{E|M|MM:%W{o*}}";
680
681 /* This contains cpp options which are common with cc1_options and are passed
682    only when preprocessing only to avoid duplication.  */
683 static const char *cpp_options =
684 "%(cpp_unique_options) %{std*} %{d*} %{W*&pedantic*} %{w}\
685  %{fshow-column} %{fno-show-column}\
686  %{fsigned-char&funsigned-char}\
687  %{fleading-underscore} %{fno-leading-underscore}\
688  %{fno-operator-names} %{ftabstop=*}";
689
690 /* NB: This is shared amongst all front-ends.  */
691 static const char *cc1_options =
692 "%{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
693  %1 %{!Q:-quiet} -dumpbase %B %{d*} %{m*} %{a*}\
694  %{g*} %{O*} %{W*&pedantic*} %{w} %{std*} %{ansi}\
695  %{v:-version} %{pg:-p} %{p} %{f*}\
696  %{Qn:-fno-ident} %{--help:--help}\
697  %{--target-help:--target-help}\
698  %{!fsyntax-only:%{S:%W{o*}%{!o*:-o %b.s}}}\
699  %{fsyntax-only:-o %j} %{-param*}";
700
701 static const char *asm_options =
702 "%a %Y %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}";
703
704 static const char *invoke_as =
705 "%{!S:-o %{|!pipe:%g.s} |\n as %(asm_options) %{!pipe:%g.s} %A }";
706
707 /* Some compilers have limits on line lengths, and the multilib_select
708    and/or multilib_matches strings can be very long, so we build them at
709    run time.  */
710 static struct obstack multilib_obstack;
711 static const char *multilib_select;
712 static const char *multilib_matches;
713 static const char *multilib_defaults;
714 static const char *multilib_exclusions;
715 #include "multilib.h"
716
717 /* Check whether a particular argument is a default argument.  */
718
719 #ifndef MULTILIB_DEFAULTS
720 #define MULTILIB_DEFAULTS { "" }
721 #endif
722
723 static const char *const multilib_defaults_raw[] = MULTILIB_DEFAULTS;
724
725 struct user_specs
726 {
727   struct user_specs *next;
728   const char *filename;
729 };
730
731 static struct user_specs *user_specs_head, *user_specs_tail;
732
733 /* This defines which switch letters take arguments.  */
734
735 #define DEFAULT_SWITCH_TAKES_ARG(CHAR) \
736   ((CHAR) == 'D' || (CHAR) == 'U' || (CHAR) == 'o' \
737    || (CHAR) == 'e' || (CHAR) == 'T' || (CHAR) == 'u' \
738    || (CHAR) == 'I' || (CHAR) == 'm' || (CHAR) == 'x' \
739    || (CHAR) == 'L' || (CHAR) == 'A' || (CHAR) == 'V' \
740    || (CHAR) == 'B' || (CHAR) == 'b')
741
742 #ifndef SWITCH_TAKES_ARG
743 #define SWITCH_TAKES_ARG(CHAR) DEFAULT_SWITCH_TAKES_ARG(CHAR)
744 #endif
745
746 /* This defines which multi-letter switches take arguments.  */
747
748 #define DEFAULT_WORD_SWITCH_TAKES_ARG(STR)              \
749  (!strcmp (STR, "Tdata") || !strcmp (STR, "Ttext")      \
750   || !strcmp (STR, "Tbss") || !strcmp (STR, "include")  \
751   || !strcmp (STR, "imacros") || !strcmp (STR, "aux-info") \
752   || !strcmp (STR, "idirafter") || !strcmp (STR, "iprefix") \
753   || !strcmp (STR, "iwithprefix") || !strcmp (STR, "iwithprefixbefore") \
754   || !strcmp (STR, "isystem") || !strcmp (STR, "-param") \
755   || !strcmp (STR, "specs") \
756   || !strcmp (STR, "MF") || !strcmp (STR, "MT") || !strcmp (STR, "MQ"))
757
758 #ifndef WORD_SWITCH_TAKES_ARG
759 #define WORD_SWITCH_TAKES_ARG(STR) DEFAULT_WORD_SWITCH_TAKES_ARG (STR)
760 #endif
761 \f
762 #ifdef HAVE_TARGET_EXECUTABLE_SUFFIX
763 /* This defines which switches stop a full compilation.  */
764 #define DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR) \
765   ((CHAR) == 'c' || (CHAR) == 'S')
766
767 #ifndef SWITCH_CURTAILS_COMPILATION
768 #define SWITCH_CURTAILS_COMPILATION(CHAR) \
769   DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR)
770 #endif
771 #endif
772
773 /* Record the mapping from file suffixes for compilation specs.  */
774
775 struct compiler
776 {
777   const char *suffix;           /* Use this compiler for input files
778                                    whose names end in this suffix.  */
779
780   const char *spec;             /* To use this compiler, run this spec.  */
781
782   const char *cpp_spec;         /* If non-NULL, substitute this spec
783                                    for `%C', rather than the usual
784                                    cpp_spec.  */
785 };
786
787 /* Pointer to a vector of `struct compiler' that gives the spec for
788    compiling a file, based on its suffix.
789    A file that does not end in any of these suffixes will be passed
790    unchanged to the loader and nothing else will be done to it.
791
792    An entry containing two 0s is used to terminate the vector.
793
794    If multiple entries match a file, the last matching one is used.  */
795
796 static struct compiler *compilers;
797
798 /* Number of entries in `compilers', not counting the null terminator.  */
799
800 static int n_compilers;
801
802 /* The default list of file name suffixes and their compilation specs.  */
803
804 static const struct compiler default_compilers[] =
805 {
806   /* Add lists of suffixes of known languages here.  If those languages
807      were not present when we built the driver, we will hit these copies
808      and be given a more meaningful error than "file not used since
809      linking is not done".  */
810   {".m",  "#Objective-C", 0}, {".mi",  "#Objective-C", 0},
811   {".cc", "#C++", 0}, {".cxx", "#C++", 0}, {".cpp", "#C++", 0},
812   {".cp", "#C++", 0}, {".c++", "#C++", 0}, {".C", "#C++", 0},
813   {".ii", "#C++", 0},
814   {".ads", "#Ada", 0}, {".adb", "#Ada", 0},
815   {".f", "#Fortran", 0}, {".for", "#Fortran", 0}, {".fpp", "#Fortran", 0},
816   {".F", "#Fortran", 0}, {".FOR", "#Fortran", 0}, {".FPP", "#Fortran", 0},
817   {".r", "#Ratfor", 0},
818   {".p", "#Pascal", 0}, {".pas", "#Pascal", 0},
819   {".ch", "#Chill", 0}, {".chi", "#Chill", 0},
820   {".java", "#Java", 0}, {".class", "#Java", 0},
821   {".zip", "#Java", 0}, {".jar", "#Java", 0},
822   /* Next come the entries for C.  */
823   {".c", "@c", 0},
824   {"@c",
825    /* cc1 has an integrated ISO C preprocessor.  We should invoke the
826       external preprocessor if -save-temps is given.  */
827      "%{E|M|MM:%(trad_capable_cpp) -lang-c %{ansi:-std=c89} %(cpp_options)}\
828       %{!E:%{!M:%{!MM:\
829           %{traditional|ftraditional:\
830 %eGNU C no longer supports -traditional without -E}\
831           %{save-temps|traditional-cpp:%(trad_capable_cpp) \
832                 -lang-c %{ansi:-std=c89} %(cpp_options) %b.i \n\
833                     cc1 -fpreprocessed %b.i %(cc1_options)}\
834           %{!save-temps:%{!traditional-cpp:\
835                 cc1 -lang-c %{ansi:-std=c89} %(cpp_unique_options) %(cc1_options)}}\
836         %{!fsyntax-only:%(invoke_as)}}}}", 0},
837   {"-",
838    "%{!E:%e-E required when input is from standard input}\
839     %(trad_capable_cpp) -lang-c %{ansi:-std=c89} %(cpp_options)", 0},
840   {".h", "@c-header", 0},
841   {"@c-header",
842    "%{!E:%ecompilation of header file requested} \
843     %(trad_capable_cpp) -lang-c %{ansi:-std=c89} %(cpp_options)", 0},
844   {".i", "@cpp-output", 0},
845   {"@cpp-output",
846    "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0},
847   {".s", "@assembler", 0},
848   {"@assembler",
849    "%{!M:%{!MM:%{!E:%{!S:as %(asm_debug) %(asm_options) %i %A }}}}", 0},
850   {".S", "@assembler-with-cpp", 0},
851   {"@assembler-with-cpp",
852    "%(trad_capable_cpp) -lang-asm %(cpp_options)\
853       %{!M:%{!MM:%{!E:%{!S:-o %{|!pipe:%g.s} |\n\
854        as %(asm_debug) %(asm_options) %{!pipe:%g.s} %A }}}}", 0},
855 #include "specs.h"
856   /* Mark end of table */
857   {0, 0, 0}
858 };
859
860 /* Number of elements in default_compilers, not counting the terminator.  */
861
862 static const int n_default_compilers = ARRAY_SIZE (default_compilers) - 1;
863
864 /* A vector of options to give to the linker.
865    These options are accumulated by %x,
866    and substituted into the linker command with %X.  */
867 static int n_linker_options;
868 static char **linker_options;
869
870 /* A vector of options to give to the assembler.
871    These options are accumulated by -Wa,
872    and substituted into the assembler command with %Y.  */
873 static int n_assembler_options;
874 static char **assembler_options;
875
876 /* A vector of options to give to the preprocessor.
877    These options are accumulated by -Wp,
878    and substituted into the preprocessor command with %Z.  */
879 static int n_preprocessor_options;
880 static char **preprocessor_options;
881 \f
882 /* Define how to map long options into short ones.  */
883
884 /* This structure describes one mapping.  */
885 struct option_map
886 {
887   /* The long option's name.  */
888   const char *const name;
889   /* The equivalent short option.  */
890   const char *const equivalent;
891   /* Argument info.  A string of flag chars; NULL equals no options.
892      a => argument required.
893      o => argument optional.
894      j => join argument to equivalent, making one word.
895      * => require other text after NAME as an argument.  */
896   const char *const arg_info;
897 };
898
899 /* This is the table of mappings.  Mappings are tried sequentially
900    for each option encountered; the first one that matches, wins.  */
901
902 static const struct option_map option_map[] =
903  {
904    {"--all-warnings", "-Wall", 0},
905    {"--ansi", "-ansi", 0},
906    {"--assemble", "-S", 0},
907    {"--assert", "-A", "a"},
908    {"--classpath", "-fclasspath=", "aj"},
909    {"--bootclasspath", "-fbootclasspath=", "aj"},
910    {"--CLASSPATH", "-fclasspath=", "aj"},
911    {"--comments", "-C", 0},
912    {"--compile", "-c", 0},
913    {"--debug", "-g", "oj"},
914    {"--define-macro", "-D", "aj"},
915    {"--dependencies", "-M", 0},
916    {"--dump", "-d", "a"},
917    {"--dumpbase", "-dumpbase", "a"},
918    {"--entry", "-e", 0},
919    {"--extra-warnings", "-W", 0},
920    {"--for-assembler", "-Wa", "a"},
921    {"--for-linker", "-Xlinker", "a"},
922    {"--force-link", "-u", "a"},
923    {"--imacros", "-imacros", "a"},
924    {"--include", "-include", "a"},
925    {"--include-barrier", "-I-", 0},
926    {"--include-directory", "-I", "aj"},
927    {"--include-directory-after", "-idirafter", "a"},
928    {"--include-prefix", "-iprefix", "a"},
929    {"--include-with-prefix", "-iwithprefix", "a"},
930    {"--include-with-prefix-before", "-iwithprefixbefore", "a"},
931    {"--include-with-prefix-after", "-iwithprefix", "a"},
932    {"--language", "-x", "a"},
933    {"--library-directory", "-L", "a"},
934    {"--machine", "-m", "aj"},
935    {"--machine-", "-m", "*j"},
936    {"--no-line-commands", "-P", 0},
937    {"--no-precompiled-includes", "-noprecomp", 0},
938    {"--no-standard-includes", "-nostdinc", 0},
939    {"--no-standard-libraries", "-nostdlib", 0},
940    {"--no-warnings", "-w", 0},
941    {"--optimize", "-O", "oj"},
942    {"--output", "-o", "a"},
943    {"--output-class-directory", "-foutput-class-dir=", "ja"},
944    {"--param", "--param", "a"},
945    {"--pedantic", "-pedantic", 0},
946    {"--pedantic-errors", "-pedantic-errors", 0},
947    {"--pipe", "-pipe", 0},
948    {"--prefix", "-B", "a"},
949    {"--preprocess", "-E", 0},
950    {"--print-search-dirs", "-print-search-dirs", 0},
951    {"--print-file-name", "-print-file-name=", "aj"},
952    {"--print-libgcc-file-name", "-print-libgcc-file-name", 0},
953    {"--print-missing-file-dependencies", "-MG", 0},
954    {"--print-multi-lib", "-print-multi-lib", 0},
955    {"--print-multi-directory", "-print-multi-directory", 0},
956    {"--print-prog-name", "-print-prog-name=", "aj"},
957    {"--profile", "-p", 0},
958    {"--profile-blocks", "-a", 0},
959    {"--quiet", "-q", 0},
960    {"--save-temps", "-save-temps", 0},
961    {"--shared", "-shared", 0},
962    {"--silent", "-q", 0},
963    {"--specs", "-specs=", "aj"},
964    {"--static", "-static", 0},
965    {"--std", "-std=", "aj"},
966    {"--symbolic", "-symbolic", 0},
967    {"--target", "-b", "a"},
968    {"--time", "-time", 0},
969    {"--trace-includes", "-H", 0},
970    {"--traditional", "-traditional", 0},
971    {"--traditional-cpp", "-traditional-cpp", 0},
972    {"--trigraphs", "-trigraphs", 0},
973    {"--undefine-macro", "-U", "aj"},
974    {"--use-version", "-V", "a"},
975    {"--user-dependencies", "-MM", 0},
976    {"--verbose", "-v", 0},
977    {"--warn-", "-W", "*j"},
978    {"--write-dependencies", "-MD", 0},
979    {"--write-user-dependencies", "-MMD", 0},
980    {"--", "-f", "*j"}
981  };
982 \f
983
984 #ifdef TARGET_OPTION_TRANSLATE_TABLE
985 static const struct {
986   const char *const option_found;
987   const char *const replacements;
988 } target_option_translations[] =
989 {
990   TARGET_OPTION_TRANSLATE_TABLE,
991   { 0, 0 }
992 };
993 #endif
994
995 /* Translate the options described by *ARGCP and *ARGVP.
996    Make a new vector and store it back in *ARGVP,
997    and store its length in *ARGVC.  */
998
999 static void
1000 translate_options (argcp, argvp)
1001      int *argcp;
1002      const char *const **argvp;
1003 {
1004   int i;
1005   int argc = *argcp;
1006   const char *const *argv = *argvp;
1007   int newvsize = (argc + 2) * 2 * sizeof (const char *);
1008   const char **newv =
1009     (const char **) xmalloc (newvsize);
1010   int newindex = 0;
1011
1012   i = 0;
1013   newv[newindex++] = argv[i++];
1014
1015   while (i < argc)
1016     {
1017 #ifdef TARGET_OPTION_TRANSLATE_TABLE
1018       int tott_idx;
1019
1020       for (tott_idx = 0;
1021            target_option_translations[tott_idx].option_found;
1022            tott_idx++)
1023         {
1024           if (strcmp (target_option_translations[tott_idx].option_found,
1025                       argv[i]) == 0)
1026             {
1027               int spaces = 1;
1028               const char *sp;
1029               char *np;
1030
1031               for (sp = target_option_translations[tott_idx].replacements;
1032                    *sp; sp++)
1033                 {
1034                   if (*sp == ' ')
1035                     spaces ++;
1036                 }
1037
1038               newvsize += spaces * sizeof (const char *);
1039               newv = (const char **) xrealloc (newv, newvsize);
1040
1041               sp = target_option_translations[tott_idx].replacements;
1042               np = xstrdup (sp);
1043
1044               while (1)
1045                 {
1046                   while (*np == ' ')
1047                     np++;
1048                   if (*np == 0)
1049                     break;
1050                   newv[newindex++] = np;
1051                   while (*np != ' ' && *np)
1052                     np++;
1053                   if (*np == 0)
1054                     break;
1055                   *np++ = 0;
1056                 }
1057
1058               i ++;
1059               break;
1060             }
1061         }
1062       if (target_option_translations[tott_idx].option_found)
1063         continue;
1064 #endif
1065
1066       /* Translate -- options.  */
1067       if (argv[i][0] == '-' && argv[i][1] == '-')
1068         {
1069           size_t j;
1070           /* Find a mapping that applies to this option.  */
1071           for (j = 0; j < ARRAY_SIZE (option_map); j++)
1072             {
1073               size_t optlen = strlen (option_map[j].name);
1074               size_t arglen = strlen (argv[i]);
1075               size_t complen = arglen > optlen ? optlen : arglen;
1076               const char *arginfo = option_map[j].arg_info;
1077
1078               if (arginfo == 0)
1079                 arginfo = "";
1080
1081               if (!strncmp (argv[i], option_map[j].name, complen))
1082                 {
1083                   const char *arg = 0;
1084
1085                   if (arglen < optlen)
1086                     {
1087                       size_t k;
1088                       for (k = j + 1; k < ARRAY_SIZE (option_map); k++)
1089                         if (strlen (option_map[k].name) >= arglen
1090                             && !strncmp (argv[i], option_map[k].name, arglen))
1091                           {
1092                             error ("ambiguous abbreviation %s", argv[i]);
1093                             break;
1094                           }
1095
1096                       if (k != ARRAY_SIZE (option_map))
1097                         break;
1098                     }
1099
1100                   if (arglen > optlen)
1101                     {
1102                       /* If the option has an argument, accept that.  */
1103                       if (argv[i][optlen] == '=')
1104                         arg = argv[i] + optlen + 1;
1105
1106                       /* If this mapping requires extra text at end of name,
1107                          accept that as "argument".  */
1108                       else if (strchr (arginfo, '*') != 0)
1109                         arg = argv[i] + optlen;
1110
1111                       /* Otherwise, extra text at end means mismatch.
1112                          Try other mappings.  */
1113                       else
1114                         continue;
1115                     }
1116
1117                   else if (strchr (arginfo, '*') != 0)
1118                     {
1119                       error ("incomplete `%s' option", option_map[j].name);
1120                       break;
1121                     }
1122
1123                   /* Handle arguments.  */
1124                   if (strchr (arginfo, 'a') != 0)
1125                     {
1126                       if (arg == 0)
1127                         {
1128                           if (i + 1 == argc)
1129                             {
1130                               error ("missing argument to `%s' option",
1131                                      option_map[j].name);
1132                               break;
1133                             }
1134
1135                           arg = argv[++i];
1136                         }
1137                     }
1138                   else if (strchr (arginfo, '*') != 0)
1139                     ;
1140                   else if (strchr (arginfo, 'o') == 0)
1141                     {
1142                       if (arg != 0)
1143                         error ("extraneous argument to `%s' option",
1144                                option_map[j].name);
1145                       arg = 0;
1146                     }
1147
1148                   /* Store the translation as one argv elt or as two.  */
1149                   if (arg != 0 && strchr (arginfo, 'j') != 0)
1150                     newv[newindex++] = concat (option_map[j].equivalent, arg,
1151                                                NULL);
1152                   else if (arg != 0)
1153                     {
1154                       newv[newindex++] = option_map[j].equivalent;
1155                       newv[newindex++] = arg;
1156                     }
1157                   else
1158                     newv[newindex++] = option_map[j].equivalent;
1159
1160                   break;
1161                 }
1162             }
1163           i++;
1164         }
1165
1166       /* Handle old-fashioned options--just copy them through,
1167          with their arguments.  */
1168       else if (argv[i][0] == '-')
1169         {
1170           const char *p = argv[i] + 1;
1171           int c = *p;
1172           int nskip = 1;
1173
1174           if (SWITCH_TAKES_ARG (c) > (p[1] != 0))
1175             nskip += SWITCH_TAKES_ARG (c) - (p[1] != 0);
1176           else if (WORD_SWITCH_TAKES_ARG (p))
1177             nskip += WORD_SWITCH_TAKES_ARG (p);
1178           else if ((c == 'B' || c == 'b' || c == 'V' || c == 'x')
1179                    && p[1] == 0)
1180             nskip += 1;
1181           else if (! strcmp (p, "Xlinker"))
1182             nskip += 1;
1183
1184           /* Watch out for an option at the end of the command line that
1185              is missing arguments, and avoid skipping past the end of the
1186              command line.  */
1187           if (nskip + i > argc)
1188             nskip = argc - i;
1189
1190           while (nskip > 0)
1191             {
1192               newv[newindex++] = argv[i++];
1193               nskip--;
1194             }
1195         }
1196       else
1197         /* Ordinary operands, or +e options.  */
1198         newv[newindex++] = argv[i++];
1199     }
1200
1201   newv[newindex] = 0;
1202
1203   *argvp = newv;
1204   *argcp = newindex;
1205 }
1206 \f
1207 static char *
1208 skip_whitespace (p)
1209      char *p;
1210 {
1211   while (1)
1212     {
1213       /* A fully-blank line is a delimiter in the SPEC file and shouldn't
1214          be considered whitespace.  */
1215       if (p[0] == '\n' && p[1] == '\n' && p[2] == '\n')
1216         return p + 1;
1217       else if (*p == '\n' || *p == ' ' || *p == '\t')
1218         p++;
1219       else if (*p == '#')
1220         {
1221           while (*p != '\n')
1222             p++;
1223           p++;
1224         }
1225       else
1226         break;
1227     }
1228
1229   return p;
1230 }
1231 /* Structures to keep track of prefixes to try when looking for files.  */
1232
1233 struct prefix_list
1234 {
1235   const char *prefix;         /* String to prepend to the path.  */
1236   struct prefix_list *next;   /* Next in linked list.  */
1237   int require_machine_suffix; /* Don't use without machine_suffix.  */
1238   /* 2 means try both machine_suffix and just_machine_suffix.  */
1239   int *used_flag_ptr;         /* 1 if a file was found with this prefix.  */
1240   int priority;               /* Sort key - priority within list */
1241 };
1242
1243 struct path_prefix
1244 {
1245   struct prefix_list *plist;  /* List of prefixes to try */
1246   int max_len;                /* Max length of a prefix in PLIST */
1247   const char *name;           /* Name of this list (used in config stuff) */
1248 };
1249
1250 /* List of prefixes to try when looking for executables.  */
1251
1252 static struct path_prefix exec_prefixes = { 0, 0, "exec" };
1253
1254 /* List of prefixes to try when looking for startup (crt0) files.  */
1255
1256 static struct path_prefix startfile_prefixes = { 0, 0, "startfile" };
1257
1258 /* List of prefixes to try when looking for include files.  */
1259
1260 static struct path_prefix include_prefixes = { 0, 0, "include" };
1261
1262 /* Suffix to attach to directories searched for commands.
1263    This looks like `MACHINE/VERSION/'.  */
1264
1265 static const char *machine_suffix = 0;
1266
1267 /* Suffix to attach to directories searched for commands.
1268    This is just `MACHINE/'.  */
1269
1270 static const char *just_machine_suffix = 0;
1271
1272 /* Adjusted value of GCC_EXEC_PREFIX envvar.  */
1273
1274 static const char *gcc_exec_prefix;
1275
1276 /* Default prefixes to attach to command names.  */
1277
1278 #ifdef CROSS_COMPILE  /* Don't use these prefixes for a cross compiler.  */
1279 #undef MD_EXEC_PREFIX
1280 #undef MD_STARTFILE_PREFIX
1281 #undef MD_STARTFILE_PREFIX_1
1282 #endif
1283
1284 /* If no prefixes defined, use the null string, which will disable them.  */
1285 #ifndef MD_EXEC_PREFIX
1286 #define MD_EXEC_PREFIX ""
1287 #endif
1288 #ifndef MD_STARTFILE_PREFIX
1289 #define MD_STARTFILE_PREFIX ""
1290 #endif
1291 #ifndef MD_STARTFILE_PREFIX_1
1292 #define MD_STARTFILE_PREFIX_1 ""
1293 #endif
1294
1295 /* Supply defaults for the standard prefixes.  */
1296
1297 #ifndef STANDARD_EXEC_PREFIX
1298 #define STANDARD_EXEC_PREFIX "/usr/local/lib/gcc-lib/"
1299 #endif
1300 #ifndef STANDARD_STARTFILE_PREFIX
1301 #define STANDARD_STARTFILE_PREFIX "/usr/local/lib/"
1302 #endif
1303 #ifndef TOOLDIR_BASE_PREFIX
1304 #define TOOLDIR_BASE_PREFIX "/usr/local/"
1305 #endif
1306 #ifndef STANDARD_BINDIR_PREFIX
1307 #define STANDARD_BINDIR_PREFIX "/usr/local/bin"
1308 #endif
1309
1310 static const char *const standard_exec_prefix = STANDARD_EXEC_PREFIX;
1311 static const char *const standard_exec_prefix_1 = "/usr/lib/gcc/";
1312 static const char *md_exec_prefix = MD_EXEC_PREFIX;
1313
1314 static const char *md_startfile_prefix = MD_STARTFILE_PREFIX;
1315 static const char *md_startfile_prefix_1 = MD_STARTFILE_PREFIX_1;
1316 static const char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
1317 static const char *const standard_startfile_prefix_1 = "/lib/";
1318 static const char *const standard_startfile_prefix_2 = "/usr/lib/";
1319
1320 static const char *const tooldir_base_prefix = TOOLDIR_BASE_PREFIX;
1321 static const char *tooldir_prefix;
1322
1323 static const char *const standard_bindir_prefix = STANDARD_BINDIR_PREFIX;
1324
1325 /* Subdirectory to use for locating libraries.  Set by
1326    set_multilib_dir based on the compilation options.  */
1327
1328 static const char *multilib_dir;
1329 \f
1330 /* Structure to keep track of the specs that have been defined so far.
1331    These are accessed using %(specname) or %[specname] in a compiler
1332    or link spec.  */
1333
1334 struct spec_list
1335 {
1336                                 /* The following 2 fields must be first */
1337                                 /* to allow EXTRA_SPECS to be initialized */
1338   const char *name;             /* name of the spec.  */
1339   const char *ptr;              /* available ptr if no static pointer */
1340
1341                                 /* The following fields are not initialized */
1342                                 /* by EXTRA_SPECS */
1343   const char **ptr_spec;        /* pointer to the spec itself.  */
1344   struct spec_list *next;       /* Next spec in linked list.  */
1345   int name_len;                 /* length of the name */
1346   int alloc_p;                  /* whether string was allocated */
1347 };
1348
1349 #define INIT_STATIC_SPEC(NAME,PTR) \
1350 { NAME, NULL, PTR, (struct spec_list *) 0, sizeof (NAME) - 1, 0 }
1351
1352 /* List of statically defined specs.  */
1353 static struct spec_list static_specs[] =
1354 {
1355   INIT_STATIC_SPEC ("asm",                      &asm_spec),
1356   INIT_STATIC_SPEC ("asm_debug",                &asm_debug),
1357   INIT_STATIC_SPEC ("asm_final",                &asm_final_spec),
1358   INIT_STATIC_SPEC ("asm_options",              &asm_options),
1359   INIT_STATIC_SPEC ("invoke_as",                &invoke_as),
1360   INIT_STATIC_SPEC ("cpp",                      &cpp_spec),
1361   INIT_STATIC_SPEC ("cpp_options",              &cpp_options),
1362   INIT_STATIC_SPEC ("cpp_unique_options",       &cpp_unique_options),
1363   INIT_STATIC_SPEC ("trad_capable_cpp",         &trad_capable_cpp),
1364   INIT_STATIC_SPEC ("cc1",                      &cc1_spec),
1365   INIT_STATIC_SPEC ("cc1_options",              &cc1_options),
1366   INIT_STATIC_SPEC ("cc1plus",                  &cc1plus_spec),
1367   INIT_STATIC_SPEC ("endfile",                  &endfile_spec),
1368   INIT_STATIC_SPEC ("link",                     &link_spec),
1369   INIT_STATIC_SPEC ("lib",                      &lib_spec),
1370   INIT_STATIC_SPEC ("libgcc",                   &libgcc_spec),
1371   INIT_STATIC_SPEC ("startfile",                &startfile_spec),
1372   INIT_STATIC_SPEC ("switches_need_spaces",     &switches_need_spaces),
1373   INIT_STATIC_SPEC ("predefines",               &cpp_predefines),
1374   INIT_STATIC_SPEC ("cross_compile",            &cross_compile),
1375   INIT_STATIC_SPEC ("version",                  &compiler_version),
1376   INIT_STATIC_SPEC ("multilib",                 &multilib_select),
1377   INIT_STATIC_SPEC ("multilib_defaults",        &multilib_defaults),
1378   INIT_STATIC_SPEC ("multilib_extra",           &multilib_extra),
1379   INIT_STATIC_SPEC ("multilib_matches",         &multilib_matches),
1380   INIT_STATIC_SPEC ("multilib_exclusions",      &multilib_exclusions),
1381   INIT_STATIC_SPEC ("linker",                   &linker_name_spec),
1382   INIT_STATIC_SPEC ("link_libgcc",              &link_libgcc_spec),
1383   INIT_STATIC_SPEC ("md_exec_prefix",           &md_exec_prefix),
1384   INIT_STATIC_SPEC ("md_startfile_prefix",      &md_startfile_prefix),
1385   INIT_STATIC_SPEC ("md_startfile_prefix_1",    &md_startfile_prefix_1),
1386 };
1387
1388 #ifdef EXTRA_SPECS              /* additional specs needed */
1389 /* Structure to keep track of just the first two args of a spec_list.
1390    That is all that the EXTRA_SPECS macro gives us.  */
1391 struct spec_list_1
1392 {
1393   const char *const name;
1394   const char *const ptr;
1395 };
1396
1397 static const struct spec_list_1 extra_specs_1[] = { EXTRA_SPECS };
1398 static struct spec_list *extra_specs = (struct spec_list *) 0;
1399 #endif
1400
1401 /* List of dynamically allocates specs that have been defined so far.  */
1402
1403 static struct spec_list *specs = (struct spec_list *) 0;
1404 \f
1405 /* Add appropriate libgcc specs to OBSTACK, taking into account
1406    various permutations of -shared-libgcc, -shared, and such.  */
1407
1408 #ifdef ENABLE_SHARED_LIBGCC
1409 static void
1410 init_gcc_specs (obstack, shared_name, static_name, eh_name)
1411      struct obstack *obstack;
1412      const char *shared_name;
1413      const char *static_name;
1414      const char *eh_name;
1415 {
1416   char *buf;
1417
1418   buf = concat ("%{static|static-libgcc:", static_name, " ", eh_name,
1419                 "}%{!static:%{!static-libgcc:",
1420                 "%{!shared:%{!shared-libgcc:", static_name, " ",
1421                 eh_name, "}%{shared-libgcc:", shared_name, " ",
1422                 static_name, "}}%{shared:",
1423 #ifdef LINK_EH_SPEC
1424                 "%{shared-libgcc:", shared_name,
1425                 "}%{!shared-libgcc:", static_name, "}",
1426 #else
1427                 shared_name,
1428 #endif
1429                 "}}}", NULL);
1430
1431   obstack_grow (obstack, buf, strlen (buf));
1432   free (buf);
1433 }
1434 #endif /* ENABLE_SHARED_LIBGCC */
1435
1436 /* Initialize the specs lookup routines.  */
1437
1438 static void
1439 init_spec ()
1440 {
1441   struct spec_list *next = (struct spec_list *) 0;
1442   struct spec_list *sl   = (struct spec_list *) 0;
1443   int i;
1444
1445   if (specs)
1446     return;                     /* Already initialized.  */
1447
1448   if (verbose_flag)
1449     notice ("Using built-in specs.\n");
1450
1451 #ifdef EXTRA_SPECS
1452   extra_specs = (struct spec_list *)
1453     xcalloc (sizeof (struct spec_list), ARRAY_SIZE (extra_specs_1));
1454
1455   for (i = ARRAY_SIZE (extra_specs_1) - 1; i >= 0; i--)
1456     {
1457       sl = &extra_specs[i];
1458       sl->name = extra_specs_1[i].name;
1459       sl->ptr = extra_specs_1[i].ptr;
1460       sl->next = next;
1461       sl->name_len = strlen (sl->name);
1462       sl->ptr_spec = &sl->ptr;
1463       next = sl;
1464     }
1465 #endif
1466
1467   for (i = ARRAY_SIZE (static_specs) - 1; i >= 0; i--)
1468     {
1469       sl = &static_specs[i];
1470       sl->next = next;
1471       next = sl;
1472     }
1473
1474 #ifdef ENABLE_SHARED_LIBGCC
1475   /* ??? If neither -shared-libgcc nor --static-libgcc was
1476      seen, then we should be making an educated guess.  Some proposed
1477      heuristics for ELF include:
1478
1479         (1) If "-Wl,--export-dynamic", then it's a fair bet that the
1480             program will be doing dynamic loading, which will likely
1481             need the shared libgcc.
1482
1483         (2) If "-ldl", then it's also a fair bet that we're doing
1484             dynamic loading.
1485
1486         (3) For each ET_DYN we're linking against (either through -lfoo
1487             or /some/path/foo.so), check to see whether it or one of
1488             its dependencies depends on a shared libgcc.
1489
1490         (4) If "-shared"
1491
1492             If the runtime is fixed to look for program headers instead
1493             of calling __register_frame_info at all, for each object,
1494             use the shared libgcc if any EH symbol referenced.
1495
1496             If crtstuff is fixed to not invoke __register_frame_info
1497             automatically, for each object, use the shared libgcc if
1498             any non-empty unwind section found.
1499
1500      Doing any of this probably requires invoking an external program to
1501      do the actual object file scanning.  */
1502   {
1503     const char *p = libgcc_spec;
1504     int in_sep = 1;
1505  
1506     /* Transform the extant libgcc_spec into one that uses the shared libgcc
1507        when given the proper command line arguments.  */
1508     while (*p)
1509       {
1510         if (in_sep && *p == '-' && strncmp (p, "-lgcc", 5) == 0)
1511           {
1512             init_gcc_specs (&obstack,
1513 #ifdef NO_SHARED_LIBGCC_MULTILIB
1514                             "-lgcc_s"
1515 #else
1516                             "-lgcc_s%M"
1517 #endif
1518                             ,
1519                             "-lgcc",
1520                             "-lgcc_eh");
1521             p += 5;
1522             in_sep = 0;
1523           }
1524         else if (in_sep && *p == 'l' && strncmp (p, "libgcc.a%s", 10) == 0)
1525           {
1526             /* Ug.  We don't know shared library extensions.  Hope that
1527                systems that use this form don't do shared libraries.  */
1528             init_gcc_specs (&obstack,
1529 #ifdef NO_SHARED_LIBGCC_MULTILIB
1530                             "-lgcc_s"
1531 #else
1532                             "-lgcc_s%M"
1533 #endif
1534                             ,
1535                             "libgcc.a%s",
1536                             "libgcc_eh.a%s");
1537             p += 10;
1538             in_sep = 0;
1539           }
1540         else
1541           {
1542             obstack_1grow (&obstack, *p);
1543             in_sep = (*p == ' ');
1544             p += 1;
1545           }
1546       }
1547
1548     obstack_1grow (&obstack, '\0');
1549     libgcc_spec = obstack_finish (&obstack);
1550   }
1551 #endif
1552 #ifdef USE_AS_TRADITIONAL_FORMAT
1553   /* Prepend "--traditional-format" to whatever asm_spec we had before.  */
1554   {
1555     static const char tf[] = "--traditional-format ";
1556     obstack_grow (&obstack, tf, sizeof(tf) - 1);
1557     obstack_grow0 (&obstack, asm_spec, strlen (asm_spec));
1558     asm_spec = obstack_finish (&obstack);
1559   }
1560 #endif
1561 #ifdef LINK_EH_SPEC
1562   /* Prepend LINK_EH_SPEC to whatever link_spec we had before.  */
1563   obstack_grow (&obstack, LINK_EH_SPEC, sizeof(LINK_EH_SPEC) - 1);
1564   obstack_grow0 (&obstack, link_spec, strlen (link_spec));
1565   link_spec = obstack_finish (&obstack);
1566 #endif
1567
1568   specs = sl;
1569 }
1570 \f
1571 /* Change the value of spec NAME to SPEC.  If SPEC is empty, then the spec is
1572    removed; If the spec starts with a + then SPEC is added to the end of the
1573    current spec.  */
1574
1575 static void
1576 set_spec (name, spec)
1577      const char *name;
1578      const char *spec;
1579 {
1580   struct spec_list *sl;
1581   const char *old_spec;
1582   int name_len = strlen (name);
1583   int i;
1584
1585   /* If this is the first call, initialize the statically allocated specs.  */
1586   if (!specs)
1587     {
1588       struct spec_list *next = (struct spec_list *) 0;
1589       for (i = ARRAY_SIZE (static_specs) - 1; i >= 0; i--)
1590         {
1591           sl = &static_specs[i];
1592           sl->next = next;
1593           next = sl;
1594         }
1595       specs = sl;
1596     }
1597
1598   /* See if the spec already exists.  */
1599   for (sl = specs; sl; sl = sl->next)
1600     if (name_len == sl->name_len && !strcmp (sl->name, name))
1601       break;
1602
1603   if (!sl)
1604     {
1605       /* Not found - make it.  */
1606       sl = (struct spec_list *) xmalloc (sizeof (struct spec_list));
1607       sl->name = xstrdup (name);
1608       sl->name_len = name_len;
1609       sl->ptr_spec = &sl->ptr;
1610       sl->alloc_p = 0;
1611       *(sl->ptr_spec) = "";
1612       sl->next = specs;
1613       specs = sl;
1614     }
1615
1616   old_spec = *(sl->ptr_spec);
1617   *(sl->ptr_spec) = ((spec[0] == '+' && ISSPACE ((unsigned char)spec[1]))
1618                      ? concat (old_spec, spec + 1, NULL)
1619                      : xstrdup (spec));
1620
1621 #ifdef DEBUG_SPECS
1622   if (verbose_flag)
1623     notice ("Setting spec %s to '%s'\n\n", name, *(sl->ptr_spec));
1624 #endif
1625
1626   /* Free the old spec.  */
1627   if (old_spec && sl->alloc_p)
1628     free ((PTR) old_spec);
1629
1630   sl->alloc_p = 1;
1631 }
1632 \f
1633 /* Accumulate a command (program name and args), and run it.  */
1634
1635 /* Vector of pointers to arguments in the current line of specifications.  */
1636
1637 static const char **argbuf;
1638
1639 /* Number of elements allocated in argbuf.  */
1640
1641 static int argbuf_length;
1642
1643 /* Number of elements in argbuf currently in use (containing args).  */
1644
1645 static int argbuf_index;
1646
1647 /* This is the list of suffixes and codes (%g/%u/%U/%j) and the associated
1648    temp file.  If the HOST_BIT_BUCKET is used for %j, no entry is made for
1649    it here.  */
1650
1651 static struct temp_name {
1652   const char *suffix;   /* suffix associated with the code.  */
1653   int length;           /* strlen (suffix).  */
1654   int unique;           /* Indicates whether %g or %u/%U was used.  */
1655   const char *filename; /* associated filename.  */
1656   int filename_length;  /* strlen (filename).  */
1657   struct temp_name *next;
1658 } *temp_names;
1659
1660 /* Number of commands executed so far.  */
1661
1662 static int execution_count;
1663
1664 /* Number of commands that exited with a signal.  */
1665
1666 static int signal_count;
1667
1668 /* Name with which this program was invoked.  */
1669
1670 static const char *programname;
1671 \f
1672 /* Clear out the vector of arguments (after a command is executed).  */
1673
1674 static void
1675 clear_args ()
1676 {
1677   argbuf_index = 0;
1678 }
1679
1680 /* Add one argument to the vector at the end.
1681    This is done when a space is seen or at the end of the line.
1682    If DELETE_ALWAYS is nonzero, the arg is a filename
1683     and the file should be deleted eventually.
1684    If DELETE_FAILURE is nonzero, the arg is a filename
1685     and the file should be deleted if this compilation fails.  */
1686
1687 static void
1688 store_arg (arg, delete_always, delete_failure)
1689      const char *arg;
1690      int delete_always, delete_failure;
1691 {
1692   if (argbuf_index + 1 == argbuf_length)
1693     argbuf
1694       = (const char **) xrealloc (argbuf,
1695                                   (argbuf_length *= 2) * sizeof (const char *));
1696
1697   argbuf[argbuf_index++] = arg;
1698   argbuf[argbuf_index] = 0;
1699
1700   if (delete_always || delete_failure)
1701     record_temp_file (arg, delete_always, delete_failure);
1702 }
1703 \f
1704 /* Load specs from a file name named FILENAME, replacing occurrences of
1705    various different types of line-endings, \r\n, \n\r and just \r, with
1706    a single \n.  */
1707
1708 static char *
1709 load_specs (filename)
1710      const char *filename;
1711 {
1712   int desc;
1713   int readlen;
1714   struct stat statbuf;
1715   char *buffer;
1716   char *buffer_p;
1717   char *specs;
1718   char *specs_p;
1719
1720   if (verbose_flag)
1721     notice ("Reading specs from %s\n", filename);
1722
1723   /* Open and stat the file.  */
1724   desc = open (filename, O_RDONLY, 0);
1725   if (desc < 0)
1726     pfatal_with_name (filename);
1727   if (stat (filename, &statbuf) < 0)
1728     pfatal_with_name (filename);
1729
1730   /* Read contents of file into BUFFER.  */
1731   buffer = xmalloc ((unsigned) statbuf.st_size + 1);
1732   readlen = read (desc, buffer, (unsigned) statbuf.st_size);
1733   if (readlen < 0)
1734     pfatal_with_name (filename);
1735   buffer[readlen] = 0;
1736   close (desc);
1737
1738   specs = xmalloc (readlen + 1);
1739   specs_p = specs;
1740   for (buffer_p = buffer; buffer_p && *buffer_p; buffer_p++)
1741     {
1742       int skip = 0;
1743       char c = *buffer_p;
1744       if (c == '\r')
1745         {
1746           if (buffer_p > buffer && *(buffer_p - 1) == '\n')     /* \n\r */
1747             skip = 1;
1748           else if (*(buffer_p + 1) == '\n')                     /* \r\n */
1749             skip = 1;
1750           else                                                  /* \r */
1751             c = '\n';
1752         }
1753       if (! skip)
1754         *specs_p++ = c;
1755     }
1756   *specs_p = '\0';
1757
1758   free (buffer);
1759   return (specs);
1760 }
1761
1762 /* Read compilation specs from a file named FILENAME,
1763    replacing the default ones.
1764
1765    A suffix which starts with `*' is a definition for
1766    one of the machine-specific sub-specs.  The "suffix" should be
1767    *asm, *cc1, *cpp, *link, *startfile, etc.
1768    The corresponding spec is stored in asm_spec, etc.,
1769    rather than in the `compilers' vector.
1770
1771    Anything invalid in the file is a fatal error.  */
1772
1773 static void
1774 read_specs (filename, main_p)
1775      const char *filename;
1776      int main_p;
1777 {
1778   char *buffer;
1779   char *p;
1780
1781   buffer = load_specs (filename);
1782
1783   /* Scan BUFFER for specs, putting them in the vector.  */
1784   p = buffer;
1785   while (1)
1786     {
1787       char *suffix;
1788       char *spec;
1789       char *in, *out, *p1, *p2, *p3;
1790
1791       /* Advance P in BUFFER to the next nonblank nocomment line.  */
1792       p = skip_whitespace (p);
1793       if (*p == 0)
1794         break;
1795
1796       /* Is this a special command that starts with '%'? */
1797       /* Don't allow this for the main specs file, since it would
1798          encourage people to overwrite it.  */
1799       if (*p == '%' && !main_p)
1800         {
1801           p1 = p;
1802           while (*p && *p != '\n')
1803             p++;
1804
1805           /* Skip '\n'.  */
1806           p++;
1807
1808           if (!strncmp (p1, "%include", sizeof ("%include") - 1)
1809               && (p1[sizeof "%include" - 1] == ' '
1810                   || p1[sizeof "%include" - 1] == '\t'))
1811             {
1812               char *new_filename;
1813
1814               p1 += sizeof ("%include");
1815               while (*p1 == ' ' || *p1 == '\t')
1816                 p1++;
1817
1818               if (*p1++ != '<' || p[-2] != '>')
1819                 fatal ("specs %%include syntax malformed after %ld characters",
1820                        (long) (p1 - buffer + 1));
1821
1822               p[-2] = '\0';
1823               new_filename = find_a_file (&startfile_prefixes, p1, R_OK);
1824               read_specs (new_filename ? new_filename : p1, FALSE);
1825               continue;
1826             }
1827           else if (!strncmp (p1, "%include_noerr", sizeof "%include_noerr" - 1)
1828                    && (p1[sizeof "%include_noerr" - 1] == ' '
1829                        || p1[sizeof "%include_noerr" - 1] == '\t'))
1830             {
1831               char *new_filename;
1832
1833               p1 += sizeof "%include_noerr";
1834               while (*p1 == ' ' || *p1 == '\t')
1835                 p1++;
1836
1837               if (*p1++ != '<' || p[-2] != '>')
1838                 fatal ("specs %%include syntax malformed after %ld characters",
1839                        (long) (p1 - buffer + 1));
1840
1841               p[-2] = '\0';
1842               new_filename = find_a_file (&startfile_prefixes, p1, R_OK);
1843               if (new_filename)
1844                 read_specs (new_filename, FALSE);
1845               else if (verbose_flag)
1846                 notice ("could not find specs file %s\n", p1);
1847               continue;
1848             }
1849           else if (!strncmp (p1, "%rename", sizeof "%rename" - 1)
1850                    && (p1[sizeof "%rename" - 1] == ' '
1851                        || p1[sizeof "%rename" - 1] == '\t'))
1852             {
1853               int name_len;
1854               struct spec_list *sl;
1855
1856               /* Get original name */
1857               p1 += sizeof "%rename";
1858               while (*p1 == ' ' || *p1 == '\t')
1859                 p1++;
1860
1861               if (! ISALPHA ((unsigned char) *p1))
1862                 fatal ("specs %%rename syntax malformed after %ld characters",
1863                        (long) (p1 - buffer));
1864
1865               p2 = p1;
1866               while (*p2 && !ISSPACE ((unsigned char) *p2))
1867                 p2++;
1868
1869               if (*p2 != ' ' && *p2 != '\t')
1870                 fatal ("specs %%rename syntax malformed after %ld characters",
1871                        (long) (p2 - buffer));
1872
1873               name_len = p2 - p1;
1874               *p2++ = '\0';
1875               while (*p2 == ' ' || *p2 == '\t')
1876                 p2++;
1877
1878               if (! ISALPHA ((unsigned char) *p2))
1879                 fatal ("specs %%rename syntax malformed after %ld characters",
1880                        (long) (p2 - buffer));
1881
1882               /* Get new spec name.  */
1883               p3 = p2;
1884               while (*p3 && !ISSPACE ((unsigned char) *p3))
1885                 p3++;
1886
1887               if (p3 != p - 1)
1888                 fatal ("specs %%rename syntax malformed after %ld characters",
1889                        (long) (p3 - buffer));
1890               *p3 = '\0';
1891
1892               for (sl = specs; sl; sl = sl->next)
1893                 if (name_len == sl->name_len && !strcmp (sl->name, p1))
1894                   break;
1895
1896               if (!sl)
1897                 fatal ("specs %s spec was not found to be renamed", p1);
1898
1899               if (strcmp (p1, p2) == 0)
1900                 continue;
1901
1902               if (verbose_flag)
1903                 {
1904                   notice ("rename spec %s to %s\n", p1, p2);
1905 #ifdef DEBUG_SPECS
1906                   notice ("spec is '%s'\n\n", *(sl->ptr_spec));
1907 #endif
1908                 }
1909
1910               set_spec (p2, *(sl->ptr_spec));
1911               if (sl->alloc_p)
1912                 free ((PTR) *(sl->ptr_spec));
1913
1914               *(sl->ptr_spec) = "";
1915               sl->alloc_p = 0;
1916               continue;
1917             }
1918           else
1919             fatal ("specs unknown %% command after %ld characters",
1920                    (long) (p1 - buffer));
1921         }
1922
1923       /* Find the colon that should end the suffix.  */
1924       p1 = p;
1925       while (*p1 && *p1 != ':' && *p1 != '\n')
1926         p1++;
1927
1928       /* The colon shouldn't be missing.  */
1929       if (*p1 != ':')
1930         fatal ("specs file malformed after %ld characters",
1931                (long) (p1 - buffer));
1932
1933       /* Skip back over trailing whitespace.  */
1934       p2 = p1;
1935       while (p2 > buffer && (p2[-1] == ' ' || p2[-1] == '\t'))
1936         p2--;
1937
1938       /* Copy the suffix to a string.  */
1939       suffix = save_string (p, p2 - p);
1940       /* Find the next line.  */
1941       p = skip_whitespace (p1 + 1);
1942       if (p[1] == 0)
1943         fatal ("specs file malformed after %ld characters",
1944                (long) (p - buffer));
1945
1946       p1 = p;
1947       /* Find next blank line or end of string.  */
1948       while (*p1 && !(*p1 == '\n' && (p1[1] == '\n' || p1[1] == '\0')))
1949         p1++;
1950
1951       /* Specs end at the blank line and do not include the newline.  */
1952       spec = save_string (p, p1 - p);
1953       p = p1;
1954
1955       /* Delete backslash-newline sequences from the spec.  */
1956       in = spec;
1957       out = spec;
1958       while (*in != 0)
1959         {
1960           if (in[0] == '\\' && in[1] == '\n')
1961             in += 2;
1962           else if (in[0] == '#')
1963             while (*in && *in != '\n')
1964               in++;
1965
1966           else
1967             *out++ = *in++;
1968         }
1969       *out = 0;
1970
1971       if (suffix[0] == '*')
1972         {
1973           if (! strcmp (suffix, "*link_command"))
1974             link_command_spec = spec;
1975           else
1976             set_spec (suffix + 1, spec);
1977         }
1978       else
1979         {
1980           /* Add this pair to the vector.  */
1981           compilers
1982             = ((struct compiler *)
1983                xrealloc (compilers,
1984                          (n_compilers + 2) * sizeof (struct compiler)));
1985
1986           compilers[n_compilers].suffix = suffix;
1987           compilers[n_compilers].spec = spec;
1988           n_compilers++;
1989           memset (&compilers[n_compilers], 0, sizeof compilers[n_compilers]);
1990         }
1991
1992       if (*suffix == 0)
1993         link_command_spec = spec;
1994     }
1995
1996   if (link_command_spec == 0)
1997     fatal ("spec file has no spec for linking");
1998 }
1999 \f
2000 /* Record the names of temporary files we tell compilers to write,
2001    and delete them at the end of the run.  */
2002
2003 /* This is the common prefix we use to make temp file names.
2004    It is chosen once for each run of this program.
2005    It is substituted into a spec by %g or %j.
2006    Thus, all temp file names contain this prefix.
2007    In practice, all temp file names start with this prefix.
2008
2009    This prefix comes from the envvar TMPDIR if it is defined;
2010    otherwise, from the P_tmpdir macro if that is defined;
2011    otherwise, in /usr/tmp or /tmp;
2012    or finally the current directory if all else fails.  */
2013
2014 static const char *temp_filename;
2015
2016 /* Length of the prefix.  */
2017
2018 static int temp_filename_length;
2019
2020 /* Define the list of temporary files to delete.  */
2021
2022 struct temp_file
2023 {
2024   const char *name;
2025   struct temp_file *next;
2026 };
2027
2028 /* Queue of files to delete on success or failure of compilation.  */
2029 static struct temp_file *always_delete_queue;
2030 /* Queue of files to delete on failure of compilation.  */
2031 static struct temp_file *failure_delete_queue;
2032
2033 /* Record FILENAME as a file to be deleted automatically.
2034    ALWAYS_DELETE nonzero means delete it if all compilation succeeds;
2035    otherwise delete it in any case.
2036    FAIL_DELETE nonzero means delete it if a compilation step fails;
2037    otherwise delete it in any case.  */
2038
2039 void
2040 record_temp_file (filename, always_delete, fail_delete)
2041      const char *filename;
2042      int always_delete;
2043      int fail_delete;
2044 {
2045   char *const name = xstrdup (filename);
2046
2047   if (always_delete)
2048     {
2049       struct temp_file *temp;
2050       for (temp = always_delete_queue; temp; temp = temp->next)
2051         if (! strcmp (name, temp->name))
2052           goto already1;
2053
2054       temp = (struct temp_file *) xmalloc (sizeof (struct temp_file));
2055       temp->next = always_delete_queue;
2056       temp->name = name;
2057       always_delete_queue = temp;
2058
2059     already1:;
2060     }
2061
2062   if (fail_delete)
2063     {
2064       struct temp_file *temp;
2065       for (temp = failure_delete_queue; temp; temp = temp->next)
2066         if (! strcmp (name, temp->name))
2067           goto already2;
2068
2069       temp = (struct temp_file *) xmalloc (sizeof (struct temp_file));
2070       temp->next = failure_delete_queue;
2071       temp->name = name;
2072       failure_delete_queue = temp;
2073
2074     already2:;
2075     }
2076 }
2077
2078 /* Delete all the temporary files whose names we previously recorded.  */
2079
2080 static void
2081 delete_if_ordinary (name)
2082      const char *name;
2083 {
2084   struct stat st;
2085 #ifdef DEBUG
2086   int i, c;
2087
2088   printf ("Delete %s? (y or n) ", name);
2089   fflush (stdout);
2090   i = getchar ();
2091   if (i != '\n')
2092     while ((c = getchar ()) != '\n' && c != EOF)
2093       ;
2094
2095   if (i == 'y' || i == 'Y')
2096 #endif /* DEBUG */
2097     if (stat (name, &st) >= 0 && S_ISREG (st.st_mode))
2098       if (unlink (name) < 0)
2099         if (verbose_flag)
2100           perror_with_name (name);
2101 }
2102
2103 static void
2104 delete_temp_files ()
2105 {
2106   struct temp_file *temp;
2107
2108   for (temp = always_delete_queue; temp; temp = temp->next)
2109     delete_if_ordinary (temp->name);
2110   always_delete_queue = 0;
2111 }
2112
2113 /* Delete all the files to be deleted on error.  */
2114
2115 static void
2116 delete_failure_queue ()
2117 {
2118   struct temp_file *temp;
2119
2120   for (temp = failure_delete_queue; temp; temp = temp->next)
2121     delete_if_ordinary (temp->name);
2122 }
2123
2124 static void
2125 clear_failure_queue ()
2126 {
2127   failure_delete_queue = 0;
2128 }
2129 \f
2130 /* Build a list of search directories from PATHS.
2131    PREFIX is a string to prepend to the list.
2132    If CHECK_DIR_P is non-zero we ensure the directory exists.
2133    This is used mostly by putenv_from_prefixes so we use `collect_obstack'.
2134    It is also used by the --print-search-dirs flag.  */
2135
2136 static char *
2137 build_search_list (paths, prefix, check_dir_p)
2138      struct path_prefix *paths;
2139      const char *prefix;
2140      int check_dir_p;
2141 {
2142   int suffix_len = (machine_suffix) ? strlen (machine_suffix) : 0;
2143   int just_suffix_len
2144     = (just_machine_suffix) ? strlen (just_machine_suffix) : 0;
2145   int first_time = TRUE;
2146   struct prefix_list *pprefix;
2147
2148   obstack_grow (&collect_obstack, prefix, strlen (prefix));
2149   obstack_1grow (&collect_obstack, '=');
2150
2151   for (pprefix = paths->plist; pprefix != 0; pprefix = pprefix->next)
2152     {
2153       int len = strlen (pprefix->prefix);
2154
2155       if (machine_suffix
2156           && (! check_dir_p
2157               || is_directory (pprefix->prefix, machine_suffix, 0)))
2158         {
2159           if (!first_time)
2160             obstack_1grow (&collect_obstack, PATH_SEPARATOR);
2161
2162           first_time = FALSE;
2163           obstack_grow (&collect_obstack, pprefix->prefix, len);
2164           obstack_grow (&collect_obstack, machine_suffix, suffix_len);
2165         }
2166
2167       if (just_machine_suffix
2168           && pprefix->require_machine_suffix == 2
2169           && (! check_dir_p
2170               || is_directory (pprefix->prefix, just_machine_suffix, 0)))
2171         {
2172           if (! first_time)
2173             obstack_1grow (&collect_obstack, PATH_SEPARATOR);
2174
2175           first_time = FALSE;
2176           obstack_grow (&collect_obstack, pprefix->prefix, len);
2177           obstack_grow (&collect_obstack, just_machine_suffix,
2178                         just_suffix_len);
2179         }
2180
2181       if (! pprefix->require_machine_suffix)
2182         {
2183           if (! first_time)
2184             obstack_1grow (&collect_obstack, PATH_SEPARATOR);
2185
2186           first_time = FALSE;
2187           obstack_grow (&collect_obstack, pprefix->prefix, len);
2188         }
2189     }
2190
2191   obstack_1grow (&collect_obstack, '\0');
2192   return obstack_finish (&collect_obstack);
2193 }
2194
2195 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
2196    for collect.  */
2197
2198 static void
2199 putenv_from_prefixes (paths, env_var)
2200      struct path_prefix *paths;
2201      const char *env_var;
2202 {
2203   putenv (build_search_list (paths, env_var, 1));
2204 }
2205 \f
2206 #ifndef VMS
2207
2208 /* FIXME: the location independence code for VMS is hairier than this,
2209    and hasn't been written.  */
2210
2211 /* Split a filename into component directories.  */
2212
2213 static char **
2214 split_directories (name, ptr_num_dirs)
2215      const char *name;
2216      int *ptr_num_dirs;
2217 {
2218   int num_dirs = 0;
2219   char **dirs;
2220   const char *p, *q;
2221   int ch;
2222
2223   /* Count the number of directories.  Special case MSDOS disk names as part
2224      of the initial directory.  */
2225   p = name;
2226 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
2227   if (name[1] == ':' && IS_DIR_SEPARATOR (name[2]))
2228     {
2229       p += 3;
2230       num_dirs++;
2231     }
2232 #endif /* HAVE_DOS_BASED_FILE_SYSTEM */
2233
2234   while ((ch = *p++) != '\0')
2235     {
2236       if (IS_DIR_SEPARATOR (ch))
2237         {
2238           num_dirs++;
2239           while (IS_DIR_SEPARATOR (*p))
2240             p++;
2241         }
2242     }
2243
2244   dirs = (char **) xmalloc (sizeof (char *) * (num_dirs + 2));
2245
2246   /* Now copy the directory parts.  */
2247   num_dirs = 0;
2248   p = name;
2249 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
2250   if (name[1] == ':' && IS_DIR_SEPARATOR (name[2]))
2251     {
2252       dirs[num_dirs++] = save_string (p, 3);
2253       p += 3;
2254     }
2255 #endif /* HAVE_DOS_BASED_FILE_SYSTEM */
2256
2257   q = p;
2258   while ((ch = *p++) != '\0')
2259     {
2260       if (IS_DIR_SEPARATOR (ch))
2261         {
2262           while (IS_DIR_SEPARATOR (*p))
2263             p++;
2264
2265           dirs[num_dirs++] = save_string (q, p - q);
2266           q = p;
2267         }
2268     }
2269
2270   if (p - 1 - q > 0)
2271     dirs[num_dirs++] = save_string (q, p - 1 - q);
2272
2273   dirs[num_dirs] = NULL;
2274   if (ptr_num_dirs)
2275     *ptr_num_dirs = num_dirs;
2276
2277   return dirs;
2278 }
2279
2280 /* Release storage held by split directories.  */
2281
2282 static void
2283 free_split_directories (dirs)
2284      char **dirs;
2285 {
2286   int i = 0;
2287
2288   while (dirs[i] != NULL)
2289     free (dirs[i++]);
2290
2291   free ((char *) dirs);
2292 }
2293
2294 /* Given three strings PROGNAME, BIN_PREFIX, PREFIX, return a string that gets
2295    to PREFIX starting with the directory portion of PROGNAME and a relative
2296    pathname of the difference between BIN_PREFIX and PREFIX.
2297
2298    For example, if BIN_PREFIX is /alpha/beta/gamma/gcc/delta, PREFIX is
2299    /alpha/beta/gamma/omega/, and PROGNAME is /red/green/blue/gcc, then this
2300    function will return /red/green/blue/../omega.
2301
2302    If no relative prefix can be found, return NULL.  */
2303
2304 static char *
2305 make_relative_prefix (progname, bin_prefix, prefix)
2306      const char *progname;
2307      const char *bin_prefix;
2308      const char *prefix;
2309 {
2310   char **prog_dirs, **bin_dirs, **prefix_dirs;
2311   int prog_num, bin_num, prefix_num, std_loc_p;
2312   int i, n, common;
2313
2314   prog_dirs = split_directories (progname, &prog_num);
2315   bin_dirs = split_directories (bin_prefix, &bin_num);
2316
2317   /* If there is no full pathname, try to find the program by checking in each
2318      of the directories specified in the PATH environment variable.  */
2319   if (prog_num == 1)
2320     {
2321       char *temp;
2322
2323       GET_ENV_PATH_LIST (temp, "PATH");
2324       if (temp)
2325         {
2326           char *startp, *endp, *nstore;
2327           size_t prefixlen = strlen (temp) + 1;
2328           if (prefixlen < 2)
2329             prefixlen = 2;
2330
2331           nstore = (char *) alloca (prefixlen + strlen (progname) + 1);
2332
2333           startp = endp = temp;
2334           while (1)
2335             {
2336               if (*endp == PATH_SEPARATOR || *endp == 0)
2337                 {
2338                   if (endp == startp)
2339                     {
2340                       nstore[0] = '.';
2341                       nstore[1] = DIR_SEPARATOR;
2342                       nstore[2] = '\0';
2343                     }
2344                   else
2345                     {
2346                       strncpy (nstore, startp, endp - startp);
2347                       if (! IS_DIR_SEPARATOR (endp[-1]))
2348                         {
2349                           nstore[endp - startp] = DIR_SEPARATOR;
2350                           nstore[endp - startp + 1] = 0;
2351                         }
2352                       else
2353                         nstore[endp - startp] = 0;
2354                     }
2355                   strcat (nstore, progname);
2356                   if (! access (nstore, X_OK)
2357 #ifdef HAVE_HOST_EXECUTABLE_SUFFIX
2358                       || ! access (strcat (nstore, HOST_EXECUTABLE_SUFFIX), X_OK)
2359 #endif
2360                       )
2361                     {
2362                       free_split_directories (prog_dirs);
2363                       progname = nstore;
2364                       prog_dirs = split_directories (progname, &prog_num);
2365                       break;
2366                     }
2367
2368                   if (*endp == 0)
2369                     break;
2370                   endp = startp = endp + 1;
2371                 }
2372               else
2373                 endp++;
2374             }
2375         }
2376     }
2377
2378   /* Remove the program name from comparison of directory names.  */
2379   prog_num--;
2380
2381   /* Determine if the compiler is installed in the standard location, and if
2382      so, we don't need to specify relative directories.  Also, if argv[0]
2383      doesn't contain any directory specifiers, there is not much we can do.  */
2384   std_loc_p = 0;
2385   if (prog_num == bin_num)
2386     {
2387       for (i = 0; i < bin_num; i++)
2388         {
2389           if (strcmp (prog_dirs[i], bin_dirs[i]) != 0)
2390             break;
2391         }
2392
2393       if (prog_num <= 0 || i == bin_num)
2394         {
2395           std_loc_p = 1;
2396           free_split_directories (prog_dirs);
2397           free_split_directories (bin_dirs);
2398           prog_dirs = bin_dirs = (char **) 0;
2399           return NULL;
2400         }
2401     }
2402
2403   prefix_dirs = split_directories (prefix, &prefix_num);
2404
2405   /* Find how many directories are in common between bin_prefix & prefix.  */
2406   n = (prefix_num < bin_num) ? prefix_num : bin_num;
2407   for (common = 0; common < n; common++)
2408     {
2409       if (strcmp (bin_dirs[common], prefix_dirs[common]) != 0)
2410         break;
2411     }
2412
2413   /* If there are no common directories, there can be no relative prefix.  */
2414   if (common == 0)
2415     {
2416       free_split_directories (prog_dirs);
2417       free_split_directories (bin_dirs);
2418       free_split_directories (prefix_dirs);
2419       return NULL;
2420     }
2421
2422   /* Build up the pathnames in argv[0].  */
2423   for (i = 0; i < prog_num; i++)
2424     obstack_grow (&obstack, prog_dirs[i], strlen (prog_dirs[i]));
2425
2426   /* Now build up the ..'s.  */
2427   for (i = common; i < n; i++)
2428     {
2429       obstack_grow (&obstack, DIR_UP, sizeof (DIR_UP) - 1);
2430       obstack_1grow (&obstack, DIR_SEPARATOR);
2431     }
2432
2433   /* Put in directories to move over to prefix.  */
2434   for (i = common; i < prefix_num; i++)
2435     obstack_grow (&obstack, prefix_dirs[i], strlen (prefix_dirs[i]));
2436
2437   free_split_directories (prog_dirs);
2438   free_split_directories (bin_dirs);
2439   free_split_directories (prefix_dirs);
2440
2441   obstack_1grow (&obstack, '\0');
2442   return obstack_finish (&obstack);
2443 }
2444 #endif /* VMS */
2445 \f
2446 /* Check whether NAME can be accessed in MODE.  This is like access,
2447    except that it never considers directories to be executable.  */
2448
2449 static int
2450 access_check (name, mode)
2451      const char *name;
2452      int mode;
2453 {
2454   if (mode == X_OK)
2455     {
2456       struct stat st;
2457
2458       if (stat (name, &st) < 0
2459           || S_ISDIR (st.st_mode))
2460         return -1;
2461     }
2462
2463   return access (name, mode);
2464 }
2465
2466 /* Search for NAME using the prefix list PREFIXES.  MODE is passed to
2467    access to check permissions.
2468    Return 0 if not found, otherwise return its name, allocated with malloc.  */
2469
2470 static char *
2471 find_a_file (pprefix, name, mode)
2472      struct path_prefix *pprefix;
2473      const char *name;
2474      int mode;
2475 {
2476   char *temp;
2477   const char *const file_suffix =
2478     ((mode & X_OK) != 0 ? HOST_EXECUTABLE_SUFFIX : "");
2479   struct prefix_list *pl;
2480   int len = pprefix->max_len + strlen (name) + strlen (file_suffix) + 1;
2481
2482 #ifdef DEFAULT_ASSEMBLER
2483   if (! strcmp (name, "as") && access (DEFAULT_ASSEMBLER, mode) == 0)
2484     return xstrdup (DEFAULT_ASSEMBLER);
2485 #endif
2486
2487 #ifdef DEFAULT_LINKER
2488   if (! strcmp(name, "ld") && access (DEFAULT_LINKER, mode) == 0)
2489     return xstrdup (DEFAULT_LINKER);
2490 #endif
2491
2492   if (machine_suffix)
2493     len += strlen (machine_suffix);
2494
2495   temp = xmalloc (len);
2496
2497   /* Determine the filename to execute (special case for absolute paths).  */
2498
2499   if (IS_ABSOLUTE_PATHNAME (name))
2500     {
2501       if (access (name, mode) == 0)
2502         {
2503           strcpy (temp, name);
2504           return temp;
2505         }
2506     }
2507   else
2508     for (pl = pprefix->plist; pl; pl = pl->next)
2509       {
2510         if (machine_suffix)
2511           {
2512             /* Some systems have a suffix for executable files.
2513                So try appending that first.  */
2514             if (file_suffix[0] != 0)
2515               {
2516                 strcpy (temp, pl->prefix);
2517                 strcat (temp, machine_suffix);
2518                 strcat (temp, name);
2519                 strcat (temp, file_suffix);
2520                 if (access_check (temp, mode) == 0)
2521                   {
2522                     if (pl->used_flag_ptr != 0)
2523                       *pl->used_flag_ptr = 1;
2524                     return temp;
2525                   }
2526               }
2527
2528             /* Now try just the name.  */
2529             strcpy (temp, pl->prefix);
2530             strcat (temp, machine_suffix);
2531             strcat (temp, name);
2532             if (access_check (temp, mode) == 0)
2533               {
2534                 if (pl->used_flag_ptr != 0)
2535                   *pl->used_flag_ptr = 1;
2536                 return temp;
2537               }
2538           }
2539
2540         /* Certain prefixes are tried with just the machine type,
2541            not the version.  This is used for finding as, ld, etc.  */
2542         if (just_machine_suffix && pl->require_machine_suffix == 2)
2543           {
2544             /* Some systems have a suffix for executable files.
2545                So try appending that first.  */
2546             if (file_suffix[0] != 0)
2547               {
2548                 strcpy (temp, pl->prefix);
2549                 strcat (temp, just_machine_suffix);
2550                 strcat (temp, name);
2551                 strcat (temp, file_suffix);
2552                 if (access_check (temp, mode) == 0)
2553                   {
2554                     if (pl->used_flag_ptr != 0)
2555                       *pl->used_flag_ptr = 1;
2556                     return temp;
2557                   }
2558               }
2559
2560             strcpy (temp, pl->prefix);
2561             strcat (temp, just_machine_suffix);
2562             strcat (temp, name);
2563             if (access_check (temp, mode) == 0)
2564               {
2565                 if (pl->used_flag_ptr != 0)
2566                   *pl->used_flag_ptr = 1;
2567                 return temp;
2568               }
2569           }
2570
2571         /* Certain prefixes can't be used without the machine suffix
2572            when the machine or version is explicitly specified.  */
2573         if (! pl->require_machine_suffix)
2574           {
2575             /* Some systems have a suffix for executable files.
2576                So try appending that first.  */
2577             if (file_suffix[0] != 0)
2578               {
2579                 strcpy (temp, pl->prefix);
2580                 strcat (temp, name);
2581                 strcat (temp, file_suffix);
2582                 if (access_check (temp, mode) == 0)
2583                   {
2584                     if (pl->used_flag_ptr != 0)
2585                       *pl->used_flag_ptr = 1;
2586                     return temp;
2587                   }
2588               }
2589
2590             strcpy (temp, pl->prefix);
2591             strcat (temp, name);
2592             if (access_check (temp, mode) == 0)
2593               {
2594                 if (pl->used_flag_ptr != 0)
2595                   *pl->used_flag_ptr = 1;
2596                 return temp;
2597               }
2598           }
2599       }
2600
2601   free (temp);
2602   return 0;
2603 }
2604
2605 /* Ranking of prefixes in the sort list. -B prefixes are put before
2606    all others.  */
2607
2608 enum path_prefix_priority
2609 {
2610   PREFIX_PRIORITY_B_OPT,
2611   PREFIX_PRIORITY_LAST
2612 };
2613
2614 /* Add an entry for PREFIX in PLIST.  The PLIST is kept in assending
2615    order according to PRIORITY.  Within each PRIORITY, new entries are
2616    appended.
2617
2618    If WARN is nonzero, we will warn if no file is found
2619    through this prefix.  WARN should point to an int
2620    which will be set to 1 if this entry is used.
2621
2622    COMPONENT is the value to be passed to update_path.
2623
2624    REQUIRE_MACHINE_SUFFIX is 1 if this prefix can't be used without
2625    the complete value of machine_suffix.
2626    2 means try both machine_suffix and just_machine_suffix.  */
2627
2628 static void
2629 add_prefix (pprefix, prefix, component, priority, require_machine_suffix, warn)
2630      struct path_prefix *pprefix;
2631      const char *prefix;
2632      const char *component;
2633      /* enum prefix_priority */ int priority;
2634      int require_machine_suffix;
2635      int *warn;
2636 {
2637   struct prefix_list *pl, **prev;
2638   int len;
2639
2640   for (prev = &pprefix->plist;
2641        (*prev) != NULL && (*prev)->priority <= priority;
2642        prev = &(*prev)->next)
2643     ;
2644
2645   /* Keep track of the longest prefix */
2646
2647   prefix = update_path (prefix, component);
2648   len = strlen (prefix);
2649   if (len > pprefix->max_len)
2650     pprefix->max_len = len;
2651
2652   pl = (struct prefix_list *) xmalloc (sizeof (struct prefix_list));
2653   pl->prefix = prefix;
2654   pl->require_machine_suffix = require_machine_suffix;
2655   pl->used_flag_ptr = warn;
2656   pl->priority = priority;
2657   if (warn)
2658     *warn = 0;
2659
2660   /* Insert after PREV */
2661   pl->next = (*prev);
2662   (*prev) = pl;
2663 }
2664 \f
2665 /* Execute the command specified by the arguments on the current line of spec.
2666    When using pipes, this includes several piped-together commands
2667    with `|' between them.
2668
2669    Return 0 if successful, -1 if failed.  */
2670
2671 static int
2672 execute ()
2673 {
2674   int i;
2675   int n_commands;               /* # of command.  */
2676   char *string;
2677   struct command
2678   {
2679     const char *prog;           /* program name.  */
2680     const char **argv;          /* vector of args.  */
2681     int pid;                    /* pid of process for this command.  */
2682   };
2683
2684   struct command *commands;     /* each command buffer with above info.  */
2685
2686   /* Count # of piped commands.  */
2687   for (n_commands = 1, i = 0; i < argbuf_index; i++)
2688     if (strcmp (argbuf[i], "|") == 0)
2689       n_commands++;
2690
2691   /* Get storage for each command.  */
2692   commands = (struct command *) alloca (n_commands * sizeof (struct command));
2693
2694   /* Split argbuf into its separate piped processes,
2695      and record info about each one.
2696      Also search for the programs that are to be run.  */
2697
2698   commands[0].prog = argbuf[0]; /* first command.  */
2699   commands[0].argv = &argbuf[0];
2700   string = find_a_file (&exec_prefixes, commands[0].prog, X_OK);
2701
2702   if (string)
2703     commands[0].argv[0] = string;
2704
2705   for (n_commands = 1, i = 0; i < argbuf_index; i++)
2706     if (strcmp (argbuf[i], "|") == 0)
2707       {                         /* each command.  */
2708 #if defined (__MSDOS__) || defined (OS2) || defined (VMS)
2709         fatal ("-pipe not supported");
2710 #endif
2711         argbuf[i] = 0;  /* termination of command args.  */
2712         commands[n_commands].prog = argbuf[i + 1];
2713         commands[n_commands].argv = &argbuf[i + 1];
2714         string = find_a_file (&exec_prefixes, commands[n_commands].prog, X_OK);
2715         if (string)
2716           commands[n_commands].argv[0] = string;
2717         n_commands++;
2718       }
2719
2720   argbuf[argbuf_index] = 0;
2721
2722   /* If -v, print what we are about to do, and maybe query.  */
2723
2724   if (verbose_flag)
2725     {
2726       /* For help listings, put a blank line between sub-processes.  */
2727       if (print_help_list)
2728         fputc ('\n', stderr);
2729
2730       /* Print each piped command as a separate line.  */
2731       for (i = 0; i < n_commands; i++)
2732         {
2733           const char *const *j;
2734
2735           if (verbose_only_flag)
2736             {
2737               for (j = commands[i].argv; *j; j++)
2738                 {
2739                   const char *p;
2740                   fprintf (stderr, " \"");
2741                   for (p = *j; *p; ++p)
2742                     {
2743                       if (*p == '"' || *p == '\\' || *p == '$')
2744                         fputc ('\\', stderr);
2745                       fputc (*p, stderr);
2746                     }
2747                   fputc ('"', stderr);
2748                 }
2749             }
2750           else
2751             for (j = commands[i].argv; *j; j++)
2752               fprintf (stderr, " %s", *j);
2753
2754           /* Print a pipe symbol after all but the last command.  */
2755           if (i + 1 != n_commands)
2756             fprintf (stderr, " |");
2757           fprintf (stderr, "\n");
2758         }
2759       fflush (stderr);
2760       if (verbose_only_flag != 0)
2761         return 0;
2762 #ifdef DEBUG
2763       notice ("\nGo ahead? (y or n) ");
2764       fflush (stderr);
2765       i = getchar ();
2766       if (i != '\n')
2767         while (getchar () != '\n')
2768           ;
2769
2770       if (i != 'y' && i != 'Y')
2771         return 0;
2772 #endif /* DEBUG */
2773     }
2774
2775   /* Run each piped subprocess.  */
2776
2777   for (i = 0; i < n_commands; i++)
2778     {
2779       char *errmsg_fmt, *errmsg_arg;
2780       const char *string = commands[i].argv[0];
2781
2782       /* For some bizarre reason, the second argument of execvp() is
2783          char *const *, not const char *const *.  */
2784       commands[i].pid = pexecute (string, (char *const *) commands[i].argv,
2785                                   programname, temp_filename,
2786                                   &errmsg_fmt, &errmsg_arg,
2787                                   ((i == 0 ? PEXECUTE_FIRST : 0)
2788                                    | (i + 1 == n_commands ? PEXECUTE_LAST : 0)
2789                                    | (string == commands[i].prog
2790                                       ? PEXECUTE_SEARCH : 0)
2791                                    | (verbose_flag ? PEXECUTE_VERBOSE : 0)));
2792
2793       if (commands[i].pid == -1)
2794         pfatal_pexecute (errmsg_fmt, errmsg_arg);
2795
2796       if (string != commands[i].prog)
2797         free ((PTR) string);
2798     }
2799
2800   execution_count++;
2801
2802   /* Wait for all the subprocesses to finish.
2803      We don't care what order they finish in;
2804      we know that N_COMMANDS waits will get them all.
2805      Ignore subprocesses that we don't know about,
2806      since they can be spawned by the process that exec'ed us.  */
2807
2808   {
2809     int ret_code = 0;
2810 #ifdef HAVE_GETRUSAGE
2811     struct timeval d;
2812     double ut = 0.0, st = 0.0;
2813 #endif
2814
2815     for (i = 0; i < n_commands;)
2816       {
2817         int j;
2818         int status;
2819         int pid;
2820
2821         pid = pwait (commands[i].pid, &status, 0);
2822         if (pid < 0)
2823           abort ();
2824
2825 #ifdef HAVE_GETRUSAGE
2826         if (report_times)
2827           {
2828             /* getrusage returns the total resource usage of all children
2829                up to now.  Copy the previous values into prus, get the
2830                current statistics, then take the difference.  */
2831
2832             prus = rus;
2833             getrusage (RUSAGE_CHILDREN, &rus);
2834             d.tv_sec = rus.ru_utime.tv_sec - prus.ru_utime.tv_sec;
2835             d.tv_usec = rus.ru_utime.tv_usec - prus.ru_utime.tv_usec;
2836             ut = (double) d.tv_sec + (double) d.tv_usec / 1.0e6;
2837
2838             d.tv_sec = rus.ru_stime.tv_sec - prus.ru_stime.tv_sec;
2839             d.tv_usec = rus.ru_stime.tv_usec - prus.ru_stime.tv_usec;
2840             st = (double) d.tv_sec + (double) d.tv_usec / 1.0e6;
2841           }
2842 #endif
2843
2844         for (j = 0; j < n_commands; j++)
2845           if (commands[j].pid == pid)
2846             {
2847               i++;
2848               if (WIFSIGNALED (status))
2849                 {
2850 #ifdef SIGPIPE
2851                   /* SIGPIPE is a special case.  It happens in -pipe mode
2852                      when the compiler dies before the preprocessor is
2853                      done, or the assembler dies before the compiler is
2854                      done.  There's generally been an error already, and
2855                      this is just fallout.  So don't generate another error
2856                      unless we would otherwise have succeeded.  */
2857                   if (WTERMSIG (status) == SIGPIPE
2858                       && (signal_count || greatest_status >= MIN_FATAL_STATUS))
2859                     ;
2860                   else
2861 #endif
2862                     fatal ("\
2863 Internal error: %s (program %s)\n\
2864 Please submit a full bug report.\n\
2865 See %s for instructions.",
2866                            strsignal (WTERMSIG (status)), commands[j].prog,
2867                            GCCBUGURL);
2868                   signal_count++;
2869                   ret_code = -1;
2870                 }
2871               else if (WIFEXITED (status)
2872                        && WEXITSTATUS (status) >= MIN_FATAL_STATUS)
2873                 {
2874                   if (WEXITSTATUS (status) > greatest_status)
2875                     greatest_status = WEXITSTATUS (status);
2876                   ret_code = -1;
2877                 }
2878 #ifdef HAVE_GETRUSAGE
2879               if (report_times && ut + st != 0)
2880                 notice ("# %s %.2f %.2f\n", commands[j].prog, ut, st);
2881 #endif
2882               break;
2883             }
2884       }
2885     return ret_code;
2886   }
2887 }
2888 \f
2889 /* Find all the switches given to us
2890    and make a vector describing them.
2891    The elements of the vector are strings, one per switch given.
2892    If a switch uses following arguments, then the `part1' field
2893    is the switch itself and the `args' field
2894    is a null-terminated vector containing the following arguments.
2895    The `live_cond' field is:
2896    0 when initialized
2897    1 if the switch is true in a conditional spec,
2898    -1 if false (overridden by a later switch)
2899    -2 if this switch should be ignored (used in %{<S})
2900    The `validated' field is nonzero if any spec has looked at this switch;
2901    if it remains zero at the end of the run, it must be meaningless.  */
2902
2903 #define SWITCH_OK       0
2904 #define SWITCH_FALSE   -1
2905 #define SWITCH_IGNORE  -2
2906 #define SWITCH_LIVE     1
2907
2908 struct switchstr
2909 {
2910   const char *part1;
2911   const char **args;
2912   int live_cond;
2913   unsigned char validated;
2914   unsigned char ordering;
2915 };
2916
2917 static struct switchstr *switches;
2918
2919 static int n_switches;
2920
2921 struct infile
2922 {
2923   const char *name;
2924   const char *language;
2925 };
2926
2927 /* Also a vector of input files specified.  */
2928
2929 static struct infile *infiles;
2930
2931 int n_infiles;
2932
2933 /* This counts the number of libraries added by lang_specific_driver, so that
2934    we can tell if there were any user supplied any files or libraries.  */
2935
2936 static int added_libraries;
2937
2938 /* And a vector of corresponding output files is made up later.  */
2939
2940 const char **outfiles;
2941
2942 /* Used to track if none of the -B paths are used.  */
2943 static int warn_B;
2944
2945 /* Used to track if standard path isn't used and -b or -V is specified.  */
2946 static int warn_std;
2947
2948 /* Gives value to pass as "warn" to add_prefix for standard prefixes.  */
2949 static int *warn_std_ptr = 0;
2950 \f
2951 #if defined(HAVE_TARGET_OBJECT_SUFFIX) || defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
2952
2953 /* Convert NAME to a new name if it is the standard suffix.  DO_EXE
2954    is true if we should look for an executable suffix.  DO_OBJ
2955    is true if we should look for an object suffix.  */
2956
2957 static const char *
2958 convert_filename (name, do_exe, do_obj)
2959      const char *name;
2960      int do_exe ATTRIBUTE_UNUSED;
2961      int do_obj ATTRIBUTE_UNUSED;
2962 {
2963 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
2964   int i;
2965 #endif
2966   int len;
2967
2968   if (name == NULL)
2969     return NULL;
2970
2971   len = strlen (name);
2972
2973 #ifdef HAVE_TARGET_OBJECT_SUFFIX
2974   /* Convert x.o to x.obj if TARGET_OBJECT_SUFFIX is ".obj".  */
2975   if (do_obj && len > 2
2976       && name[len - 2] == '.'
2977       && name[len - 1] == 'o')
2978     {
2979       obstack_grow (&obstack, name, len - 2);
2980       obstack_grow0 (&obstack, TARGET_OBJECT_SUFFIX, strlen (TARGET_OBJECT_SUFFIX));
2981       name = obstack_finish (&obstack);
2982     }
2983 #endif
2984
2985 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
2986   /* If there is no filetype, make it the executable suffix (which includes
2987      the ".").  But don't get confused if we have just "-o".  */
2988   if (! do_exe || TARGET_EXECUTABLE_SUFFIX[0] == 0 || (len == 2 && name[0] == '-'))
2989     return name;
2990
2991   for (i = len - 1; i >= 0; i--)
2992     if (IS_DIR_SEPARATOR (name[i]))
2993       break;
2994
2995   for (i++; i < len; i++)
2996     if (name[i] == '.')
2997       return name;
2998
2999   obstack_grow (&obstack, name, len);
3000   obstack_grow0 (&obstack, TARGET_EXECUTABLE_SUFFIX,
3001                  strlen (TARGET_EXECUTABLE_SUFFIX));
3002   name = obstack_finish (&obstack);
3003 #endif
3004
3005   return name;
3006 }
3007 #endif
3008 \f
3009 /* Display the command line switches accepted by gcc.  */
3010 static void
3011 display_help ()
3012 {
3013   printf (_("Usage: %s [options] file...\n"), programname);
3014   fputs (_("Options:\n"), stdout);
3015
3016   fputs (_("  -pass-exit-codes         Exit with highest error code from a phase\n"), stdout);
3017   fputs (_("  --help                   Display this information\n"), stdout);
3018   fputs (_("  --target-help            Display target specific command line options\n"), stdout);
3019   if (! verbose_flag)
3020     fputs (_("  (Use '-v --help' to display command line options of sub-processes)\n"), stdout);
3021   fputs (_("  -dumpspecs               Display all of the built in spec strings\n"), stdout);
3022   fputs (_("  -dumpversion             Display the version of the compiler\n"), stdout);
3023   fputs (_("  -dumpmachine             Display the compiler's target processor\n"), stdout);
3024   fputs (_("  -print-search-dirs       Display the directories in the compiler's search path\n"), stdout);
3025   fputs (_("  -print-libgcc-file-name  Display the name of the compiler's companion library\n"), stdout);
3026   fputs (_("  -print-file-name=<lib>   Display the full path to library <lib>\n"), stdout);
3027   fputs (_("  -print-prog-name=<prog>  Display the full path to compiler component <prog>\n"), stdout);
3028   fputs (_("  -print-multi-directory   Display the root directory for versions of libgcc\n"), stdout);
3029   fputs (_("\
3030   -print-multi-lib         Display the mapping between command line options and\n\
3031                            multiple library search directories\n"), stdout);
3032   fputs (_("  -Wa,<options>            Pass comma-separated <options> on to the assembler\n"), stdout);
3033   fputs (_("  -Wp,<options>            Pass comma-separated <options> on to the preprocessor\n"), stdout);
3034   fputs (_("  -Wl,<options>            Pass comma-separated <options> on to the linker\n"), stdout);
3035   fputs (_("  -Xlinker <arg>           Pass <arg> on to the linker\n"), stdout);
3036   fputs (_("  -save-temps              Do not delete intermediate files\n"), stdout);
3037   fputs (_("  -pipe                    Use pipes rather than intermediate files\n"), stdout);
3038   fputs (_("  -time                    Time the execution of each subprocess\n"), stdout);
3039   fputs (_("  -specs=<file>            Override built-in specs with the contents of <file>\n"), stdout);
3040   fputs (_("  -std=<standard>          Assume that the input sources are for <standard>\n"), stdout);
3041   fputs (_("  -B <directory>           Add <directory> to the compiler's search paths\n"), stdout);
3042   fputs (_("  -b <machine>             Run gcc for target <machine>, if installed\n"), stdout);
3043   fputs (_("  -V <version>             Run gcc version number <version>, if installed\n"), stdout);
3044   fputs (_("  -v                       Display the programs invoked by the compiler\n"), stdout);
3045   fputs (_("  -###                     Like -v but options quoted and commands not executed\n"), stdout);
3046   fputs (_("  -E                       Preprocess only; do not compile, assemble or link\n"), stdout);
3047   fputs (_("  -S                       Compile only; do not assemble or link\n"), stdout);
3048   fputs (_("  -c                       Compile and assemble, but do not link\n"), stdout);
3049   fputs (_("  -o <file>                Place the output into <file>\n"), stdout);
3050   fputs (_("\
3051   -x <language>            Specify the language of the following input files\n\
3052                            Permissable languages include: c c++ assembler none\n\
3053                            'none' means revert to the default behavior of\n\
3054                            guessing the language based on the file's extension\n\
3055 "), stdout);
3056
3057   printf (_("\
3058 \nOptions starting with -g, -f, -m, -O, -W, or --param are automatically\n\
3059  passed on to the various sub-processes invoked by %s.  In order to pass\n\
3060  other options on to these processes the -W<letter> options must be used.\n\
3061 "), programname);
3062
3063   /* The rest of the options are displayed by invocations of the various
3064      sub-processes.  */
3065 }
3066
3067 static void
3068 add_preprocessor_option (option, len)
3069      const char *option;
3070      int len;
3071 {
3072   n_preprocessor_options++;
3073
3074   if (! preprocessor_options)
3075     preprocessor_options
3076       = (char **) xmalloc (n_preprocessor_options * sizeof (char *));
3077   else
3078     preprocessor_options
3079       = (char **) xrealloc (preprocessor_options,
3080                             n_preprocessor_options * sizeof (char *));
3081
3082   preprocessor_options [n_preprocessor_options - 1] =
3083     save_string (option, len);
3084 }
3085
3086 static void
3087 add_assembler_option (option, len)
3088      const char *option;
3089      int len;
3090 {
3091   n_assembler_options++;
3092
3093   if (! assembler_options)
3094     assembler_options
3095       = (char **) xmalloc (n_assembler_options * sizeof (char *));
3096   else
3097     assembler_options
3098       = (char **) xrealloc (assembler_options,
3099                             n_assembler_options * sizeof (char *));
3100
3101   assembler_options [n_assembler_options - 1] = save_string (option, len);
3102 }
3103
3104 static void
3105 add_linker_option (option, len)
3106      const char *option;
3107      int len;
3108 {
3109   n_linker_options++;
3110
3111   if (! linker_options)
3112     linker_options
3113       = (char **) xmalloc (n_linker_options * sizeof (char *));
3114   else
3115     linker_options
3116       = (char **) xrealloc (linker_options,
3117                             n_linker_options * sizeof (char *));
3118
3119   linker_options [n_linker_options - 1] = save_string (option, len);
3120 }
3121 \f
3122 /* Create the vector `switches' and its contents.
3123    Store its length in `n_switches'.  */
3124
3125 static void
3126 process_command (argc, argv)
3127      int argc;
3128      const char *const *argv;
3129 {
3130   int i;
3131   const char *temp;
3132   char *temp1;
3133   const char *spec_lang = 0;
3134   int last_language_n_infiles;
3135   int have_c = 0;
3136   int have_o = 0;
3137   int lang_n_infiles = 0;
3138 #ifdef MODIFY_TARGET_NAME
3139   int is_modify_target_name;
3140   int j;
3141 #endif
3142
3143   GET_ENV_PATH_LIST (gcc_exec_prefix, "GCC_EXEC_PREFIX");
3144
3145   n_switches = 0;
3146   n_infiles = 0;
3147   added_libraries = 0;
3148
3149   /* Figure compiler version from version string.  */
3150
3151   compiler_version = temp1 = xstrdup (version_string);
3152
3153   for (; *temp1; ++temp1)
3154     {
3155       if (*temp1 == ' ')
3156         {
3157           *temp1 = '\0';
3158           break;
3159         }
3160     }
3161
3162   /* Set up the default search paths.  If there is no GCC_EXEC_PREFIX,
3163      see if we can create it from the pathname specified in argv[0].  */
3164
3165 #ifndef VMS
3166   /* FIXME: make_relative_prefix doesn't yet work for VMS.  */
3167   if (!gcc_exec_prefix)
3168     {
3169       gcc_exec_prefix = make_relative_prefix (argv[0], standard_bindir_prefix,
3170                                               standard_exec_prefix);
3171       if (gcc_exec_prefix)
3172         putenv (concat ("GCC_EXEC_PREFIX=", gcc_exec_prefix, NULL));
3173     }
3174 #endif
3175
3176   if (gcc_exec_prefix)
3177     {
3178       int len = strlen (gcc_exec_prefix);
3179
3180       if (len > (int) sizeof ("/lib/gcc-lib/") - 1
3181           && (IS_DIR_SEPARATOR (gcc_exec_prefix[len-1])))
3182         {
3183           temp = gcc_exec_prefix + len - sizeof ("/lib/gcc-lib/") + 1;
3184           if (IS_DIR_SEPARATOR (*temp)
3185               && strncmp (temp + 1, "lib", 3) == 0
3186               && IS_DIR_SEPARATOR (temp[4])
3187               && strncmp (temp + 5, "gcc-lib", 7) == 0)
3188             len -= sizeof ("/lib/gcc-lib/") - 1;
3189         }
3190
3191       set_std_prefix (gcc_exec_prefix, len);
3192       add_prefix (&exec_prefixes, gcc_exec_prefix, "GCC",
3193                   PREFIX_PRIORITY_LAST, 0, NULL);
3194       add_prefix (&startfile_prefixes, gcc_exec_prefix, "GCC",
3195                   PREFIX_PRIORITY_LAST, 0, NULL);
3196     }
3197
3198   /* COMPILER_PATH and LIBRARY_PATH have values
3199      that are lists of directory names with colons.  */
3200
3201   GET_ENV_PATH_LIST (temp, "COMPILER_PATH");
3202   if (temp)
3203     {
3204       const char *startp, *endp;
3205       char *nstore = (char *) alloca (strlen (temp) + 3);
3206
3207       startp = endp = temp;
3208       while (1)
3209         {
3210           if (*endp == PATH_SEPARATOR || *endp == 0)
3211             {
3212               strncpy (nstore, startp, endp - startp);
3213               if (endp == startp)
3214                 strcpy (nstore, concat (".", dir_separator_str, NULL));
3215               else if (!IS_DIR_SEPARATOR (endp[-1]))
3216                 {
3217                   nstore[endp - startp] = DIR_SEPARATOR;
3218                   nstore[endp - startp + 1] = 0;
3219                 }
3220               else
3221                 nstore[endp - startp] = 0;
3222               add_prefix (&exec_prefixes, nstore, 0,
3223                           PREFIX_PRIORITY_LAST, 0, NULL);
3224               add_prefix (&include_prefixes,
3225                           concat (nstore, "include", NULL),
3226                           0, PREFIX_PRIORITY_LAST, 0, NULL);
3227               if (*endp == 0)
3228                 break;
3229               endp = startp = endp + 1;
3230             }
3231           else
3232             endp++;
3233         }
3234     }
3235
3236   GET_ENV_PATH_LIST (temp, LIBRARY_PATH_ENV);
3237   if (temp && *cross_compile == '0')
3238     {
3239       const char *startp, *endp;
3240       char *nstore = (char *) alloca (strlen (temp) + 3);
3241
3242       startp = endp = temp;
3243       while (1)
3244         {
3245           if (*endp == PATH_SEPARATOR || *endp == 0)
3246             {
3247               strncpy (nstore, startp, endp - startp);
3248               if (endp == startp)
3249                 strcpy (nstore, concat (".", dir_separator_str, NULL));
3250               else if (!IS_DIR_SEPARATOR (endp[-1]))
3251                 {
3252                   nstore[endp - startp] = DIR_SEPARATOR;
3253                   nstore[endp - startp + 1] = 0;
3254                 }
3255               else
3256                 nstore[endp - startp] = 0;
3257               add_prefix (&startfile_prefixes, nstore, NULL,
3258                           PREFIX_PRIORITY_LAST, 0, NULL);
3259               if (*endp == 0)
3260                 break;
3261               endp = startp = endp + 1;
3262             }
3263           else
3264             endp++;
3265         }
3266     }
3267
3268   /* Use LPATH like LIBRARY_PATH (for the CMU build program).  */
3269   GET_ENV_PATH_LIST (temp, "LPATH");
3270   if (temp && *cross_compile == '0')
3271     {
3272       const char *startp, *endp;
3273       char *nstore = (char *) alloca (strlen (temp) + 3);
3274
3275       startp = endp = temp;
3276       while (1)
3277         {
3278           if (*endp == PATH_SEPARATOR || *endp == 0)
3279             {
3280               strncpy (nstore, startp, endp - startp);
3281               if (endp == startp)
3282                 strcpy (nstore, concat (".", dir_separator_str, NULL));
3283               else if (!IS_DIR_SEPARATOR (endp[-1]))
3284                 {
3285                   nstore[endp - startp] = DIR_SEPARATOR;
3286                   nstore[endp - startp + 1] = 0;
3287                 }
3288               else
3289                 nstore[endp - startp] = 0;
3290               add_prefix (&startfile_prefixes, nstore, NULL,
3291                           PREFIX_PRIORITY_LAST, 0, NULL);
3292               if (*endp == 0)
3293                 break;
3294               endp = startp = endp + 1;
3295             }
3296           else
3297             endp++;
3298         }
3299     }
3300
3301   /* Convert new-style -- options to old-style.  */
3302   translate_options (&argc, &argv);
3303
3304   /* Do language-specific adjustment/addition of flags.  */
3305   lang_specific_driver (&argc, &argv, &added_libraries);
3306
3307   /* Scan argv twice.  Here, the first time, just count how many switches
3308      there will be in their vector, and how many input files in theirs.
3309      Also parse any switches that determine the configuration name, such as -b.
3310      Here we also parse the switches that cc itself uses (e.g. -v).  */
3311
3312   for (i = 1; i < argc; i++)
3313     {
3314       if (! strcmp (argv[i], "-dumpspecs"))
3315         {
3316           struct spec_list *sl;
3317           init_spec ();
3318           for (sl = specs; sl; sl = sl->next)
3319             printf ("*%s:\n%s\n\n", sl->name, *(sl->ptr_spec));
3320           if (link_command_spec)
3321             printf ("*link_command:\n%s\n\n", link_command_spec);
3322           exit (0);
3323         }
3324       else if (! strcmp (argv[i], "-dumpversion"))
3325         {
3326           printf ("%s\n", spec_version);
3327           exit (0);
3328         }
3329       else if (! strcmp (argv[i], "-dumpmachine"))
3330         {
3331           printf ("%s\n", spec_machine);
3332           exit (0);
3333         }
3334       else if (strcmp (argv[i], "-fversion") == 0)
3335         {
3336           /* translate_options () has turned --version into -fversion.  */
3337           printf (_("%s (GCC) %s\n"), programname, version_string);
3338           fputs (_("Copyright (C) 2002 Free Software Foundation, Inc.\n"),
3339                  stdout);
3340           fputs (_("This is free software; see the source for copying conditions.  There is NO\n\
3341 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n"),
3342                  stdout);
3343           exit (0);
3344         }
3345       else if (strcmp (argv[i], "-fhelp") == 0)
3346         {
3347           /* translate_options () has turned --help into -fhelp.  */
3348           print_help_list = 1;
3349
3350           /* We will be passing a dummy file on to the sub-processes.  */
3351           n_infiles++;
3352           n_switches++;
3353
3354           /* CPP driver cannot obtain switch from cc1_options.  */
3355           if (is_cpp_driver)
3356             add_preprocessor_option ("--help", 6);
3357           add_assembler_option ("--help", 6);
3358           add_linker_option ("--help", 6);
3359         }
3360       else if (strcmp (argv[i], "-ftarget-help") == 0)
3361         {
3362           /* translate_options() has turned --target-help into -ftarget-help.  */
3363           target_help_flag = 1;
3364
3365           /* We will be passing a dummy file on to the sub-processes.  */
3366           n_infiles++;
3367           n_switches++;
3368
3369           /* CPP driver cannot obtain switch from cc1_options.  */
3370           if (is_cpp_driver)
3371             add_preprocessor_option ("--target-help", 13);
3372           add_assembler_option ("--target-help", 13);
3373           add_linker_option ("--target-help", 13);
3374         }
3375       else if (! strcmp (argv[i], "-pass-exit-codes"))
3376         {
3377           pass_exit_codes = 1;
3378           n_switches++;
3379         }
3380       else if (! strcmp (argv[i], "-print-search-dirs"))
3381         print_search_dirs = 1;
3382       else if (! strcmp (argv[i], "-print-libgcc-file-name"))
3383         print_file_name = "libgcc.a";
3384       else if (! strncmp (argv[i], "-print-file-name=", 17))
3385         print_file_name = argv[i] + 17;
3386       else if (! strncmp (argv[i], "-print-prog-name=", 17))
3387         print_prog_name = argv[i] + 17;
3388       else if (! strcmp (argv[i], "-print-multi-lib"))
3389         print_multi_lib = 1;
3390       else if (! strcmp (argv[i], "-print-multi-directory"))
3391         print_multi_directory = 1;
3392       else if (! strncmp (argv[i], "-Wa,", 4))
3393         {
3394           int prev, j;
3395           /* Pass the rest of this option to the assembler.  */
3396
3397           /* Split the argument at commas.  */
3398           prev = 4;
3399           for (j = 4; argv[i][j]; j++)
3400             if (argv[i][j] == ',')
3401               {
3402                 add_assembler_option (argv[i] + prev, j - prev);
3403                 prev = j + 1;
3404               }
3405
3406           /* Record the part after the last comma.  */
3407           add_assembler_option (argv[i] + prev, j - prev);
3408         }
3409       else if (! strncmp (argv[i], "-Wp,", 4))
3410         {
3411           int prev, j;
3412           /* Pass the rest of this option to the preprocessor.  */
3413
3414           /* Split the argument at commas.  */
3415           prev = 4;
3416           for (j = 4; argv[i][j]; j++)
3417             if (argv[i][j] == ',')
3418               {
3419                 add_preprocessor_option (argv[i] + prev, j - prev);
3420                 prev = j + 1;
3421               }
3422
3423           /* Record the part after the last comma.  */
3424           add_preprocessor_option (argv[i] + prev, j - prev);
3425         }
3426       else if (argv[i][0] == '+' && argv[i][1] == 'e')
3427         /* The +e options to the C++ front-end.  */
3428         n_switches++;
3429       else if (strncmp (argv[i], "-Wl,", 4) == 0)
3430         {
3431           int j;
3432           /* Split the argument at commas.  */
3433           for (j = 3; argv[i][j]; j++)
3434             n_infiles += (argv[i][j] == ',');
3435         }
3436       else if (strcmp (argv[i], "-Xlinker") == 0)
3437         {
3438           if (i + 1 == argc)
3439             fatal ("argument to `-Xlinker' is missing");
3440
3441           n_infiles++;
3442           i++;
3443         }
3444       else if (strcmp (argv[i], "-l") == 0)
3445         {
3446           if (i + 1 == argc)
3447             fatal ("argument to `-l' is missing");
3448
3449           n_infiles++;
3450           i++;
3451         }
3452       else if (strncmp (argv[i], "-l", 2) == 0)
3453         n_infiles++;
3454       else if (strcmp (argv[i], "-save-temps") == 0)
3455         {
3456           save_temps_flag = 1;
3457           n_switches++;
3458         }
3459       else if (strcmp (argv[i], "-specs") == 0)
3460         {
3461           struct user_specs *user = (struct user_specs *)
3462             xmalloc (sizeof (struct user_specs));
3463           if (++i >= argc)
3464             fatal ("argument to `-specs' is missing");
3465
3466           user->next = (struct user_specs *) 0;
3467           user->filename = argv[i];
3468           if (user_specs_tail)
3469             user_specs_tail->next = user;
3470           else
3471             user_specs_head = user;
3472           user_specs_tail = user;
3473         }
3474       else if (strncmp (argv[i], "-specs=", 7) == 0)
3475         {
3476           struct user_specs *user = (struct user_specs *)
3477             xmalloc (sizeof (struct user_specs));
3478           if (strlen (argv[i]) == 7)
3479             fatal ("argument to `-specs=' is missing");
3480
3481           user->next = (struct user_specs *) 0;
3482           user->filename = argv[i] + 7;
3483           if (user_specs_tail)
3484             user_specs_tail->next = user;
3485           else
3486             user_specs_head = user;
3487           user_specs_tail = user;
3488         }
3489       else if (strcmp (argv[i], "-time") == 0)
3490         report_times = 1;
3491       else if (strcmp (argv[i], "-###") == 0)
3492         {
3493           /* This is similar to -v except that there is no execution
3494              of the commands and the echoed arguments are quoted.  It
3495              is intended for use in shell scripts to capture the
3496              driver-generated command line.  */
3497           verbose_only_flag++;
3498           verbose_flag++;
3499         }
3500       else if (argv[i][0] == '-' && argv[i][1] != 0)
3501         {
3502           const char *p = &argv[i][1];
3503           int c = *p;
3504
3505           switch (c)
3506             {
3507             case 'b':
3508               n_switches++;
3509               if (p[1] == 0 && i + 1 == argc)
3510                 fatal ("argument to `-b' is missing");
3511               if (p[1] == 0)
3512                 spec_machine = argv[++i];
3513               else
3514                 spec_machine = p + 1;
3515
3516               warn_std_ptr = &warn_std;
3517               break;
3518
3519             case 'B':
3520               {
3521                 const char *value;
3522                 int len;
3523
3524                 if (p[1] == 0 && i + 1 == argc)
3525                   fatal ("argument to `-B' is missing");
3526                 if (p[1] == 0)
3527                   value = argv[++i];
3528                 else
3529                   value = p + 1;
3530
3531                 len = strlen (value);
3532
3533                 /* Catch the case where the user has forgotten to append a
3534                    directory separator to the path.  Note, they may be using
3535                    -B to add an executable name prefix, eg "i386-elf-", in
3536                    order to distinguish between multiple installations of
3537                    GCC in the same directory.  Hence we must check to see
3538                    if appending a directory separator actually makes a
3539                    valid directory name.  */
3540                 if (! IS_DIR_SEPARATOR (value [len - 1])
3541                     && is_directory (value, "", 0))
3542                   {
3543                     char *tmp = xmalloc (len + 2);
3544                     strcpy (tmp, value);
3545                     tmp[len] = DIR_SEPARATOR;
3546                     tmp[++ len] = 0;
3547                     value = tmp;
3548                   }
3549                 
3550                 /* As a kludge, if the arg is "[foo/]stageN/", just
3551                    add "[foo/]include" to the include prefix.  */
3552                 if ((len == 7
3553                      || (len > 7
3554                          && (IS_DIR_SEPARATOR (value[len - 8]))))
3555                     && strncmp (value + len - 7, "stage", 5) == 0
3556                     && ISDIGIT (value[len - 2])
3557                     && (IS_DIR_SEPARATOR (value[len - 1])))
3558                   {
3559                     if (len == 7)
3560                       add_prefix (&include_prefixes, "include", NULL,
3561                                   PREFIX_PRIORITY_B_OPT, 0, NULL);
3562                     else
3563                       {
3564                         char * string = xmalloc (len + 1);
3565
3566                         strncpy (string, value, len - 7);
3567                         strcpy (string + len - 7, "include");
3568                         add_prefix (&include_prefixes, string, NULL,
3569                                     PREFIX_PRIORITY_B_OPT, 0, NULL);
3570                       }
3571                   }
3572
3573                 add_prefix (&exec_prefixes, value, NULL,
3574                             PREFIX_PRIORITY_B_OPT, 0, &warn_B);
3575                 add_prefix (&startfile_prefixes, value, NULL,
3576                             PREFIX_PRIORITY_B_OPT, 0, &warn_B);
3577                 add_prefix (&include_prefixes, concat (value, "include", NULL),
3578                             NULL, PREFIX_PRIORITY_B_OPT, 0, NULL);
3579                 n_switches++;
3580               }
3581               break;
3582
3583             case 'v':   /* Print our subcommands and print versions.  */
3584               n_switches++;
3585               /* If they do anything other than exactly `-v', don't set
3586                  verbose_flag; rather, continue on to give the error.  */
3587               if (p[1] != 0)
3588                 break;
3589               verbose_flag++;
3590               break;
3591
3592             case 'V':
3593               n_switches++;
3594               if (p[1] == 0 && i + 1 == argc)
3595                 fatal ("argument to `-V' is missing");
3596               if (p[1] == 0)
3597                 spec_version = argv[++i];
3598               else
3599                 spec_version = p + 1;
3600               compiler_version = spec_version;
3601               warn_std_ptr = &warn_std;
3602
3603               /* Validate the version number.  Use the same checks
3604                  done when inserting it into a spec.
3605
3606                  The format of the version string is
3607                  ([^0-9]*-)?[0-9]+[.][0-9]+([.][0-9]+)?([- ].*)?  */
3608               {
3609                 const char *v = compiler_version;
3610
3611                 /* Ignore leading non-digits.  i.e. "foo-" in "foo-2.7.2".  */
3612                 while (! ISDIGIT (*v))
3613                   v++;
3614
3615                 if (v > compiler_version && v[-1] != '-')
3616                   fatal ("invalid version number format");
3617
3618                 /* Set V after the first period.  */
3619                 while (ISDIGIT (*v))
3620                   v++;
3621
3622                 if (*v != '.')
3623                   fatal ("invalid version number format");
3624
3625                 v++;
3626                 while (ISDIGIT (*v))
3627                   v++;
3628
3629                 if (*v != 0 && *v != ' ' && *v != '.' && *v != '-')
3630                   fatal ("invalid version number format");
3631               }
3632               break;
3633
3634             case 'S':
3635             case 'c':
3636               if (p[1] == 0)
3637                 {
3638                   have_c = 1;
3639                   n_switches++;
3640                   break;
3641                 }
3642               goto normal_switch;
3643
3644             case 'o':
3645               have_o = 1;
3646 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
3647               if (! have_c)
3648                 {
3649                   int skip;
3650
3651                   /* Forward scan, just in case -S or -c is specified
3652                      after -o.  */
3653                   int j = i + 1;
3654                   if (p[1] == 0)
3655                     ++j;
3656                   while (j < argc)
3657                     {
3658                       if (argv[j][0] == '-')
3659                         {
3660                           if (SWITCH_CURTAILS_COMPILATION (argv[j][1])
3661                               && argv[j][2] == 0)
3662                             {
3663                               have_c = 1;
3664                               break;
3665                             }
3666                           else if ((skip = SWITCH_TAKES_ARG (argv[j][1])))
3667                             j += skip - (argv[j][2] != 0);
3668                           else if ((skip = WORD_SWITCH_TAKES_ARG (argv[j] + 1)))
3669                             j += skip;
3670                         }
3671                       j++;
3672                     }
3673                 }
3674 #endif
3675 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX) || defined(HAVE_TARGET_OBJECT_SUFFIX)
3676               if (p[1] == 0)
3677                 argv[i + 1] = convert_filename (argv[i + 1], ! have_c, 0);
3678               else
3679                 argv[i] = convert_filename (argv[i], ! have_c, 0);
3680 #endif
3681               goto normal_switch;
3682
3683             default:
3684             normal_switch:
3685
3686 #ifdef MODIFY_TARGET_NAME
3687               is_modify_target_name = 0;
3688
3689               for (j = 0; j < ARRAY_SIZE (modify_target); j++)
3690                 if (! strcmp (argv[i], modify_target[j].sw))
3691                   {
3692                     char *new_name
3693                       = (char *) xmalloc (strlen (modify_target[j].str)
3694                                           + strlen (spec_machine));
3695                     const char *p, *r;
3696                     char *q;
3697                     int made_addition = 0;
3698
3699                     is_modify_target_name = 1;
3700                     for (p = spec_machine, q = new_name; *p != 0; )
3701                       {
3702                         if (modify_target[j].add_del == DELETE
3703                             && (! strncmp (q, modify_target[j].str,
3704                                            strlen (modify_target[j].str))))
3705                           p += strlen (modify_target[j].str);
3706                         else if (modify_target[j].add_del == ADD
3707                                  && ! made_addition && *p == '-')
3708                           {
3709                             for (r = modify_target[j].str; *r != 0; )
3710                               *q++ = *r++;
3711                             made_addition = 1;
3712                           }
3713
3714                         *q++ = *p++;
3715                       }
3716
3717                     spec_machine = new_name;
3718                   }
3719
3720               if (is_modify_target_name)
3721                 break;
3722 #endif                
3723
3724               n_switches++;
3725
3726               if (SWITCH_TAKES_ARG (c) > (p[1] != 0))
3727                 i += SWITCH_TAKES_ARG (c) - (p[1] != 0);
3728               else if (WORD_SWITCH_TAKES_ARG (p))
3729                 i += WORD_SWITCH_TAKES_ARG (p);
3730             }
3731         }
3732       else
3733         {
3734           n_infiles++;
3735           lang_n_infiles++;
3736         }
3737     }
3738
3739   if (have_c && have_o && lang_n_infiles > 1)
3740     fatal ("cannot specify -o with -c or -S and multiple compilations");
3741
3742   /* Set up the search paths before we go looking for config files.  */
3743
3744   /* These come before the md prefixes so that we will find gcc's subcommands
3745      (such as cpp) rather than those of the host system.  */
3746   /* Use 2 as fourth arg meaning try just the machine as a suffix,
3747      as well as trying the machine and the version.  */
3748 #ifndef OS2
3749   add_prefix (&exec_prefixes, standard_exec_prefix, "GCC",
3750               PREFIX_PRIORITY_LAST, 1, warn_std_ptr);
3751   add_prefix (&exec_prefixes, standard_exec_prefix, "BINUTILS",
3752               PREFIX_PRIORITY_LAST, 2, warn_std_ptr);
3753   add_prefix (&exec_prefixes, standard_exec_prefix_1, "BINUTILS",
3754               PREFIX_PRIORITY_LAST, 2, warn_std_ptr);
3755 #endif
3756
3757   add_prefix (&startfile_prefixes, standard_exec_prefix, "BINUTILS",
3758               PREFIX_PRIORITY_LAST, 1, warn_std_ptr);
3759   add_prefix (&startfile_prefixes, standard_exec_prefix_1, "BINUTILS",
3760               PREFIX_PRIORITY_LAST, 1, warn_std_ptr);
3761
3762   tooldir_prefix = concat (tooldir_base_prefix, spec_machine,
3763                            dir_separator_str, NULL);
3764
3765   /* If tooldir is relative, base it on exec_prefixes.  A relative
3766      tooldir lets us move the installed tree as a unit.
3767
3768      If GCC_EXEC_PREFIX is defined, then we want to add two relative
3769      directories, so that we can search both the user specified directory
3770      and the standard place.  */
3771
3772   if (!IS_ABSOLUTE_PATHNAME (tooldir_prefix))
3773     {
3774       if (gcc_exec_prefix)
3775         {
3776           char *gcc_exec_tooldir_prefix
3777             = concat (gcc_exec_prefix, spec_machine, dir_separator_str,
3778                       spec_version, dir_separator_str, tooldir_prefix, NULL);
3779
3780           add_prefix (&exec_prefixes,
3781                       concat (gcc_exec_tooldir_prefix, "bin",
3782                               dir_separator_str, NULL),
3783                       NULL, PREFIX_PRIORITY_LAST, 0, NULL);
3784           add_prefix (&startfile_prefixes,
3785                       concat (gcc_exec_tooldir_prefix, "lib",
3786                               dir_separator_str, NULL),
3787                       NULL, PREFIX_PRIORITY_LAST, 0, NULL);
3788         }
3789
3790       tooldir_prefix = concat (standard_exec_prefix, spec_machine,
3791                                dir_separator_str, spec_version,
3792                                dir_separator_str, tooldir_prefix, NULL);
3793     }
3794
3795   add_prefix (&exec_prefixes,
3796               concat (tooldir_prefix, "bin", dir_separator_str, NULL),
3797               "BINUTILS", PREFIX_PRIORITY_LAST, 0, NULL);
3798   add_prefix (&startfile_prefixes,
3799               concat (tooldir_prefix, "lib", dir_separator_str, NULL),
3800               "BINUTILS", PREFIX_PRIORITY_LAST, 0, NULL);
3801
3802   /* More prefixes are enabled in main, after we read the specs file
3803      and determine whether this is cross-compilation or not.  */
3804
3805   /* Then create the space for the vectors and scan again.  */
3806
3807   switches = ((struct switchstr *)
3808               xmalloc ((n_switches + 1) * sizeof (struct switchstr)));
3809   infiles = (struct infile *) xmalloc ((n_infiles + 1) * sizeof (struct infile));
3810   n_switches = 0;
3811   n_infiles = 0;
3812   last_language_n_infiles = -1;
3813
3814   /* This, time, copy the text of each switch and store a pointer
3815      to the copy in the vector of switches.
3816      Store all the infiles in their vector.  */
3817
3818   for (i = 1; i < argc; i++)
3819     {
3820       /* Just skip the switches that were handled by the preceding loop.  */
3821 #ifdef MODIFY_TARGET_NAME
3822       is_modify_target_name = 0;
3823
3824       for (j = 0; j < ARRAY_SIZE (modify_target); j++)
3825         if (! strcmp (argv[i], modify_target[j].sw))
3826           is_modify_target_name = 1;
3827
3828       if (is_modify_target_name)
3829         ;
3830       else
3831 #endif
3832       if (! strncmp (argv[i], "-Wa,", 4))
3833         ;
3834       else if (! strncmp (argv[i], "-Wp,", 4))
3835         ;
3836       else if (! strcmp (argv[i], "-pass-exit-codes"))
3837         ;
3838       else if (! strcmp (argv[i], "-print-search-dirs"))
3839         ;
3840       else if (! strcmp (argv[i], "-print-libgcc-file-name"))
3841         ;
3842       else if (! strncmp (argv[i], "-print-file-name=", 17))
3843         ;
3844       else if (! strncmp (argv[i], "-print-prog-name=", 17))
3845         ;
3846       else if (! strcmp (argv[i], "-print-multi-lib"))
3847         ;
3848       else if (! strcmp (argv[i], "-print-multi-directory"))
3849         ;
3850       else if (! strcmp (argv[i], "-ftarget-help"))
3851         ;
3852       else if (! strcmp (argv[i], "-fhelp"))
3853         ;
3854       else if (argv[i][0] == '+' && argv[i][1] == 'e')
3855         {
3856           /* Compensate for the +e options to the C++ front-end;
3857              they're there simply for cfront call-compatibility.  We do
3858              some magic in default_compilers to pass them down properly.
3859              Note we deliberately start at the `+' here, to avoid passing
3860              -e0 or -e1 down into the linker.  */
3861           switches[n_switches].part1 = &argv[i][0];
3862           switches[n_switches].args = 0;
3863           switches[n_switches].live_cond = SWITCH_OK;
3864           switches[n_switches].validated = 0;
3865           n_switches++;
3866         }
3867       else if (strncmp (argv[i], "-Wl,", 4) == 0)
3868         {
3869           int prev, j;
3870           /* Split the argument at commas.  */
3871           prev = 4;
3872           for (j = 4; argv[i][j]; j++)
3873             if (argv[i][j] == ',')
3874               {
3875                 infiles[n_infiles].language = "*";
3876                 infiles[n_infiles++].name
3877                   = save_string (argv[i] + prev, j - prev);
3878                 prev = j + 1;
3879               }
3880           /* Record the part after the last comma.  */
3881           infiles[n_infiles].language = "*";
3882           infiles[n_infiles++].name = argv[i] + prev;
3883         }
3884       else if (strcmp (argv[i], "-Xlinker") == 0)
3885         {
3886           infiles[n_infiles].language = "*";
3887           infiles[n_infiles++].name = argv[++i];
3888         }
3889       else if (strcmp (argv[i], "-l") == 0)
3890         { /* POSIX allows separation of -l and the lib arg;
3891              canonicalize by concatenating -l with its arg */
3892           infiles[n_infiles].language = "*";
3893           infiles[n_infiles++].name = concat ("-l", argv[++i], NULL);
3894         }
3895       else if (strncmp (argv[i], "-l", 2) == 0)
3896         {
3897           infiles[n_infiles].language = "*";
3898           infiles[n_infiles++].name = argv[i];
3899         }
3900       else if (strcmp (argv[i], "-specs") == 0)
3901         i++;
3902       else if (strncmp (argv[i], "-specs=", 7) == 0)
3903         ;
3904       else if (strcmp (argv[i], "-time") == 0)
3905         ;
3906       else if ((save_temps_flag || report_times)
3907                && strcmp (argv[i], "-pipe") == 0)
3908         {
3909           /* -save-temps overrides -pipe, so that temp files are produced */
3910           if (save_temps_flag)
3911             error ("warning: -pipe ignored because -save-temps specified");
3912           /* -time overrides -pipe because we can't get correct stats when
3913              multiple children are running at once.  */
3914           else if (report_times)
3915             error ("warning: -pipe ignored because -time specified");
3916         }
3917       else if (strcmp (argv[i], "-###") == 0)
3918         ;
3919       else if (argv[i][0] == '-' && argv[i][1] != 0)
3920         {
3921           const char *p = &argv[i][1];
3922           int c = *p;
3923
3924           if (c == 'x')
3925             {
3926               if (p[1] == 0 && i + 1 == argc)
3927                 fatal ("argument to `-x' is missing");
3928               if (p[1] == 0)
3929                 spec_lang = argv[++i];
3930               else
3931                 spec_lang = p + 1;
3932               if (! strcmp (spec_lang, "none"))
3933                 /* Suppress the warning if -xnone comes after the last input
3934                    file, because alternate command interfaces like g++ might
3935                    find it useful to place -xnone after each input file.  */
3936                 spec_lang = 0;
3937               else
3938                 last_language_n_infiles = n_infiles;
3939               continue;
3940             }
3941           switches[n_switches].part1 = p;
3942           /* Deal with option arguments in separate argv elements.  */
3943           if ((SWITCH_TAKES_ARG (c) > (p[1] != 0))
3944               || WORD_SWITCH_TAKES_ARG (p))
3945             {
3946               int j = 0;
3947               int n_args = WORD_SWITCH_TAKES_ARG (p);
3948
3949               if (n_args == 0)
3950                 {
3951                   /* Count only the option arguments in separate argv elements.  */
3952                   n_args = SWITCH_TAKES_ARG (c) - (p[1] != 0);
3953                 }
3954               if (i + n_args >= argc)
3955                 fatal ("argument to `-%s' is missing", p);
3956               switches[n_switches].args
3957                 = (const char **) xmalloc ((n_args + 1) * sizeof(const char *));
3958               while (j < n_args)
3959                 switches[n_switches].args[j++] = argv[++i];
3960               /* Null-terminate the vector.  */
3961               switches[n_switches].args[j] = 0;
3962             }
3963           else if (strchr (switches_need_spaces, c))
3964             {
3965               /* On some systems, ld cannot handle some options without
3966                  a space.  So split the option from its argument.  */
3967               char *part1 = (char *) xmalloc (2);
3968               part1[0] = c;
3969               part1[1] = '\0';
3970
3971               switches[n_switches].part1 = part1;
3972               switches[n_switches].args
3973                 = (const char **) xmalloc (2 * sizeof (const char *));
3974               switches[n_switches].args[0] = xstrdup (p+1);
3975               switches[n_switches].args[1] = 0;
3976             }
3977           else
3978             switches[n_switches].args = 0;
3979
3980           switches[n_switches].live_cond = SWITCH_OK;
3981           switches[n_switches].validated = 0;
3982           switches[n_switches].ordering = 0;
3983           /* These are always valid, since gcc.c itself understands it.  */
3984           if (!strcmp (p, "save-temps")
3985               || !strcmp (p, "static-libgcc")
3986               || !strcmp (p, "shared-libgcc"))
3987             switches[n_switches].validated = 1;
3988           else
3989             {
3990               char ch = switches[n_switches].part1[0];
3991               if (ch == 'V' || ch == 'b' || ch == 'B')
3992                 switches[n_switches].validated = 1;
3993             }
3994           n_switches++;
3995         }
3996       else
3997         {
3998 #ifdef HAVE_TARGET_OBJECT_SUFFIX
3999           argv[i] = convert_filename (argv[i], 0, access (argv[i], F_OK));
4000 #endif
4001
4002           if (strcmp (argv[i], "-") != 0 && access (argv[i], F_OK) < 0)
4003             {
4004               perror_with_name (argv[i]);
4005               error_count++;
4006             }
4007           else
4008             {
4009               infiles[n_infiles].language = spec_lang;
4010               infiles[n_infiles++].name = argv[i];
4011             }
4012         }
4013     }
4014
4015   if (n_infiles == last_language_n_infiles && spec_lang != 0)
4016     error ("warning: `-x %s' after last input file has no effect", spec_lang);
4017
4018   /* Ensure we only invoke each subprocess once.  */
4019   if (target_help_flag || print_help_list)
4020     {
4021       n_infiles = 1;
4022
4023       /* Create a dummy input file, so that we can pass --target-help on to
4024          the various sub-processes.  */
4025       infiles[0].language = "c";
4026       infiles[0].name   = "help-dummy";
4027
4028       if (target_help_flag)
4029         {
4030           switches[n_switches].part1     = "--target-help";
4031           switches[n_switches].args      = 0;
4032           switches[n_switches].live_cond = SWITCH_OK;
4033           switches[n_switches].validated = 0;
4034
4035           n_switches++;
4036         }
4037
4038       if (print_help_list)
4039         {
4040           switches[n_switches].part1     = "--help";
4041           switches[n_switches].args      = 0;
4042           switches[n_switches].live_cond = SWITCH_OK;
4043           switches[n_switches].validated = 0;
4044
4045           n_switches++;
4046         }
4047     }
4048
4049   switches[n_switches].part1 = 0;
4050   infiles[n_infiles].name = 0;
4051 }
4052
4053 /* Store switches not filtered out by %{<S} in spec in COLLECT_GCC_OPTIONS
4054    and place that in the environment.  */
4055
4056 static void
4057 set_collect_gcc_options ()
4058 {
4059   int i;
4060   int first_time;
4061
4062   /* Build COLLECT_GCC_OPTIONS to have all of the options specified to
4063      the compiler.  */
4064   obstack_grow (&collect_obstack, "COLLECT_GCC_OPTIONS=",
4065                 sizeof ("COLLECT_GCC_OPTIONS=") - 1);
4066
4067   first_time = TRUE;
4068   for (i = 0; (int) i < n_switches; i++)
4069     {
4070       const char *const *args;
4071       const char *p, *q;
4072       if (!first_time)
4073         obstack_grow (&collect_obstack, " ", 1);
4074
4075       first_time = FALSE;
4076
4077       /* Ignore elided switches.  */
4078       if (switches[i].live_cond == SWITCH_IGNORE)
4079         continue;
4080
4081       obstack_grow (&collect_obstack, "'-", 2);
4082       q = switches[i].part1;
4083       while ((p = strchr (q, '\'')))
4084         {
4085           obstack_grow (&collect_obstack, q, p - q);
4086           obstack_grow (&collect_obstack, "'\\''", 4);
4087           q = ++p;
4088         }
4089       obstack_grow (&collect_obstack, q, strlen (q));
4090       obstack_grow (&collect_obstack, "'", 1);
4091
4092       for (args = switches[i].args; args && *args; args++)
4093         {
4094           obstack_grow (&collect_obstack, " '", 2);
4095           q = *args;
4096           while ((p = strchr (q, '\'')))
4097             {
4098               obstack_grow (&collect_obstack, q, p - q);
4099               obstack_grow (&collect_obstack, "'\\''", 4);
4100               q = ++p;
4101             }
4102           obstack_grow (&collect_obstack, q, strlen (q));
4103           obstack_grow (&collect_obstack, "'", 1);
4104         }
4105     }
4106   obstack_grow (&collect_obstack, "\0", 1);
4107   putenv (obstack_finish (&collect_obstack));
4108 }
4109 \f
4110 /* Process a spec string, accumulating and running commands.  */
4111
4112 /* These variables describe the input file name.
4113    input_file_number is the index on outfiles of this file,
4114    so that the output file name can be stored for later use by %o.
4115    input_basename is the start of the part of the input file
4116    sans all directory names, and basename_length is the number
4117    of characters starting there excluding the suffix .c or whatever.  */
4118
4119 const char *input_filename;
4120 static int input_file_number;
4121 size_t input_filename_length;
4122 static int basename_length;
4123 static int suffixed_basename_length;
4124 static const char *input_basename;
4125 static const char *input_suffix;
4126 static struct stat input_stat;
4127 static int input_stat_set;
4128
4129 /* The compiler used to process the current input file.  */
4130 static struct compiler *input_file_compiler;
4131
4132 /* These are variables used within do_spec and do_spec_1.  */
4133
4134 /* Nonzero if an arg has been started and not yet terminated
4135    (with space, tab or newline).  */
4136 static int arg_going;
4137
4138 /* Nonzero means %d or %g has been seen; the next arg to be terminated
4139    is a temporary file name.  */
4140 static int delete_this_arg;
4141
4142 /* Nonzero means %w has been seen; the next arg to be terminated
4143    is the output file name of this compilation.  */
4144 static int this_is_output_file;
4145
4146 /* Nonzero means %s has been seen; the next arg to be terminated
4147    is the name of a library file and we should try the standard
4148    search dirs for it.  */
4149 static int this_is_library_file;
4150
4151 /* Nonzero means that the input of this command is coming from a pipe.  */
4152 static int input_from_pipe;
4153
4154 /* Nonnull means substitute this for any suffix when outputting a switches
4155    arguments.  */
4156 static const char *suffix_subst;
4157
4158 /* Process the spec SPEC and run the commands specified therein.
4159    Returns 0 if the spec is successfully processed; -1 if failed.  */
4160
4161 int
4162 do_spec (spec)
4163      const char *spec;
4164 {
4165   int value;
4166
4167   clear_args ();
4168   arg_going = 0;
4169   delete_this_arg = 0;
4170   this_is_output_file = 0;
4171   this_is_library_file = 0;
4172   input_from_pipe = 0;
4173   suffix_subst = NULL;
4174
4175   value = do_spec_1 (spec, 0, NULL);
4176
4177   /* Force out any unfinished command.
4178      If -pipe, this forces out the last command if it ended in `|'.  */
4179   if (value == 0)
4180     {
4181       if (argbuf_index > 0 && !strcmp (argbuf[argbuf_index - 1], "|"))
4182         argbuf_index--;
4183
4184       set_collect_gcc_options ();
4185
4186       if (argbuf_index > 0)
4187         value = execute ();
4188     }
4189
4190   return value;
4191 }
4192
4193 /* Process the sub-spec SPEC as a portion of a larger spec.
4194    This is like processing a whole spec except that we do
4195    not initialize at the beginning and we do not supply a
4196    newline by default at the end.
4197    INSWITCH nonzero means don't process %-sequences in SPEC;
4198    in this case, % is treated as an ordinary character.
4199    This is used while substituting switches.
4200    INSWITCH nonzero also causes SPC not to terminate an argument.
4201
4202    Value is zero unless a line was finished
4203    and the command on that line reported an error.  */
4204
4205 static int
4206 do_spec_1 (spec, inswitch, soft_matched_part)
4207      const char *spec;
4208      int inswitch;
4209      const char *soft_matched_part;
4210 {
4211   const char *p = spec;
4212   int c;
4213   int i;
4214   const char *string;
4215   int value;
4216
4217   while ((c = *p++))
4218     /* If substituting a switch, treat all chars like letters.
4219        Otherwise, NL, SPC, TAB and % are special.  */
4220     switch (inswitch ? 'a' : c)
4221       {
4222       case '\n':
4223         /* End of line: finish any pending argument,
4224            then run the pending command if one has been started.  */
4225         if (arg_going)
4226           {
4227             obstack_1grow (&obstack, 0);
4228             string = obstack_finish (&obstack);
4229             if (this_is_library_file)
4230               string = find_file (string);
4231             store_arg (string, delete_this_arg, this_is_output_file);
4232             if (this_is_output_file)
4233               outfiles[input_file_number] = string;
4234           }
4235         arg_going = 0;
4236
4237         if (argbuf_index > 0 && !strcmp (argbuf[argbuf_index - 1], "|"))
4238           {
4239             for (i = 0; i < n_switches; i++)
4240               if (!strcmp (switches[i].part1, "pipe"))
4241                 break;
4242
4243             /* A `|' before the newline means use a pipe here,
4244                but only if -pipe was specified.
4245                Otherwise, execute now and don't pass the `|' as an arg.  */
4246             if (i < n_switches)
4247               {
4248                 input_from_pipe = 1;
4249                 switches[i].validated = 1;
4250                 break;
4251               }
4252             else
4253               argbuf_index--;
4254           }
4255
4256         set_collect_gcc_options ();
4257
4258         if (argbuf_index > 0)
4259           {
4260             value = execute ();
4261             if (value)
4262               return value;
4263           }
4264         /* Reinitialize for a new command, and for a new argument.  */
4265         clear_args ();
4266         arg_going = 0;
4267         delete_this_arg = 0;
4268         this_is_output_file = 0;
4269         this_is_library_file = 0;
4270         input_from_pipe = 0;
4271         break;
4272
4273       case '|':
4274         /* End any pending argument.  */
4275         if (arg_going)
4276           {
4277             obstack_1grow (&obstack, 0);
4278             string = obstack_finish (&obstack);
4279             if (this_is_library_file)
4280               string = find_file (string);
4281             store_arg (string, delete_this_arg, this_is_output_file);
4282             if (this_is_output_file)
4283               outfiles[input_file_number] = string;
4284           }
4285
4286         /* Use pipe */
4287         obstack_1grow (&obstack, c);
4288         arg_going = 1;
4289         break;
4290
4291       case '\t':
4292       case ' ':
4293         /* Space or tab ends an argument if one is pending.  */
4294         if (arg_going)
4295           {
4296             obstack_1grow (&obstack, 0);
4297             string = obstack_finish (&obstack);
4298             if (this_is_library_file)
4299               string = find_file (string);
4300             store_arg (string, delete_this_arg, this_is_output_file);
4301             if (this_is_output_file)
4302               outfiles[input_file_number] = string;
4303           }
4304         /* Reinitialize for a new argument.  */
4305         arg_going = 0;
4306         delete_this_arg = 0;
4307         this_is_output_file = 0;
4308         this_is_library_file = 0;
4309         break;
4310
4311       case '%':
4312         switch (c = *p++)
4313           {
4314           case 0:
4315             fatal ("invalid specification!  Bug in cc");
4316
4317           case 'b':
4318             obstack_grow (&obstack, input_basename, basename_length);
4319             arg_going = 1;
4320             break;
4321
4322           case 'B':
4323             obstack_grow (&obstack, input_basename, suffixed_basename_length);
4324             arg_going = 1;
4325             break;
4326
4327           case 'd':
4328             delete_this_arg = 2;
4329             break;
4330
4331           /* Dump out the directories specified with LIBRARY_PATH,
4332              followed by the absolute directories
4333              that we search for startfiles.  */
4334           case 'D':
4335             {
4336               struct prefix_list *pl = startfile_prefixes.plist;
4337               size_t bufsize = 100;
4338               char *buffer = (char *) xmalloc (bufsize);
4339               int idx;
4340
4341               for (; pl; pl = pl->next)
4342                 {
4343 #ifdef RELATIVE_PREFIX_NOT_LINKDIR
4344                   /* Used on systems which record the specified -L dirs
4345                      and use them to search for dynamic linking.  */
4346                   /* Relative directories always come from -B,
4347                      and it is better not to use them for searching
4348                      at run time.  In particular, stage1 loses.  */
4349                   if (!IS_ABSOLUTE_PATHNAME (pl->prefix))
4350                     continue;
4351 #endif
4352                   /* Try subdirectory if there is one.  */
4353                   if (multilib_dir != NULL)
4354                     {
4355                       if (machine_suffix)
4356                         {
4357                           if (strlen (pl->prefix) + strlen (machine_suffix)
4358                               >= bufsize)
4359                             bufsize = (strlen (pl->prefix)
4360                                        + strlen (machine_suffix)) * 2 + 1;
4361                           buffer = (char *) xrealloc (buffer, bufsize);
4362                           strcpy (buffer, pl->prefix);
4363                           strcat (buffer, machine_suffix);
4364                           if (is_directory (buffer, multilib_dir, 1))
4365                             {
4366                               do_spec_1 ("-L", 0, NULL);
4367 #ifdef SPACE_AFTER_L_OPTION
4368                               do_spec_1 (" ", 0, NULL);
4369 #endif
4370                               do_spec_1 (buffer, 1, NULL);
4371                               do_spec_1 (multilib_dir, 1, NULL);
4372                               /* Make this a separate argument.  */
4373                               do_spec_1 (" ", 0, NULL);
4374                             }
4375                         }
4376                       if (!pl->require_machine_suffix)
4377                         {
4378                           if (is_directory (pl->prefix, multilib_dir, 1))
4379                             {
4380                               do_spec_1 ("-L", 0, NULL);
4381 #ifdef SPACE_AFTER_L_OPTION
4382                               do_spec_1 (" ", 0, NULL);
4383 #endif
4384                               do_spec_1 (pl->prefix, 1, NULL);
4385                               do_spec_1 (multilib_dir, 1, NULL);
4386                               /* Make this a separate argument.  */
4387                               do_spec_1 (" ", 0, NULL);
4388                             }
4389                         }
4390                     }
4391                   if (machine_suffix)
4392                     {
4393                       if (is_directory (pl->prefix, machine_suffix, 1))
4394                         {
4395                           do_spec_1 ("-L", 0, NULL);
4396 #ifdef SPACE_AFTER_L_OPTION
4397                           do_spec_1 (" ", 0, NULL);
4398 #endif
4399                           do_spec_1 (pl->prefix, 1, NULL);
4400                           /* Remove slash from machine_suffix.  */
4401                           if (strlen (machine_suffix) >= bufsize)
4402                             bufsize = strlen (machine_suffix) * 2 + 1;
4403                           buffer = (char *) xrealloc (buffer, bufsize);
4404                           strcpy (buffer, machine_suffix);
4405                           idx = strlen (buffer);
4406                           if (IS_DIR_SEPARATOR (buffer[idx - 1]))
4407                             buffer[idx - 1] = 0;
4408                           do_spec_1 (buffer, 1, NULL);
4409                           /* Make this a separate argument.  */
4410                           do_spec_1 (" ", 0, NULL);
4411                         }
4412                     }
4413                   if (!pl->require_machine_suffix)
4414                     {
4415                       if (is_directory (pl->prefix, "", 1))
4416                         {
4417                           do_spec_1 ("-L", 0, NULL);
4418 #ifdef SPACE_AFTER_L_OPTION
4419                           do_spec_1 (" ", 0, NULL);
4420 #endif
4421                           /* Remove slash from pl->prefix.  */
4422                           if (strlen (pl->prefix) >= bufsize)
4423                             bufsize = strlen (pl->prefix) * 2 + 1;
4424                           buffer = (char *) xrealloc (buffer, bufsize);
4425                           strcpy (buffer, pl->prefix);
4426                           idx = strlen (buffer);
4427                           if (IS_DIR_SEPARATOR (buffer[idx - 1]))
4428                             buffer[idx - 1] = 0;
4429                           do_spec_1 (buffer, 1, NULL);
4430                           /* Make this a separate argument.  */
4431                           do_spec_1 (" ", 0, NULL);
4432                         }
4433                     }
4434                 }
4435               free (buffer);
4436             }
4437             break;
4438
4439           case 'e':
4440             /* %efoo means report an error with `foo' as error message
4441                and don't execute any more commands for this file.  */
4442             {
4443               const char *q = p;
4444               char *buf;
4445               while (*p != 0 && *p != '\n')
4446                 p++;
4447               buf = (char *) alloca (p - q + 1);
4448               strncpy (buf, q, p - q);
4449               buf[p - q] = 0;
4450               error ("%s", buf);
4451               return -1;
4452             }
4453             break;
4454           case 'n':
4455             /* %nfoo means report an notice with `foo' on stderr.  */
4456             {
4457               const char *q = p;
4458               char *buf;
4459               while (*p != 0 && *p != '\n')
4460                 p++;
4461               buf = (char *) alloca (p - q + 1);
4462               strncpy (buf, q, p - q);
4463               buf[p - q] = 0;
4464               notice ("%s\n", buf);
4465               if (*p)
4466                 p++;
4467             }
4468             break;
4469
4470           case 'j':
4471             {
4472               struct stat st;
4473
4474               /* If save_temps_flag is off, and the HOST_BIT_BUCKET is defined,
4475                  and it is not a directory, and it is writable, use it.
4476                  Otherwise, fall through and treat this like any other
4477                  temporary file.  */
4478
4479               if ((!save_temps_flag)
4480                   && (stat (HOST_BIT_BUCKET, &st) == 0) && (!S_ISDIR (st.st_mode))
4481                   && (access (HOST_BIT_BUCKET, W_OK) == 0))
4482                 {
4483                   obstack_grow (&obstack, HOST_BIT_BUCKET,
4484                                 strlen (HOST_BIT_BUCKET));
4485                   delete_this_arg = 0;
4486                   arg_going = 1;
4487                   break;
4488                 }
4489             }
4490           case 'g':
4491           case 'u':
4492           case 'U':
4493               {
4494                 struct temp_name *t;
4495                 int suffix_length;
4496                 const char *suffix = p;
4497                 char *saved_suffix = NULL;
4498
4499                 while (*p == '.' || ISALPHA ((unsigned char) *p))
4500                   p++;
4501                 suffix_length = p - suffix;
4502                 if (p[0] == '%' && p[1] == 'O')
4503                   {
4504                     p += 2;
4505                     /* We don't support extra suffix characters after %O.  */
4506                     if (*p == '.' || ISALPHA ((unsigned char) *p))
4507                       abort ();
4508                     if (suffix_length == 0)
4509                       suffix = TARGET_OBJECT_SUFFIX;
4510                     else
4511                       {
4512                         saved_suffix
4513                           = (char *) xmalloc (suffix_length
4514                                               + strlen (TARGET_OBJECT_SUFFIX));
4515                         strncpy (saved_suffix, suffix, suffix_length);
4516                         strcpy (saved_suffix + suffix_length,
4517                                 TARGET_OBJECT_SUFFIX);
4518                       }
4519                     suffix_length += strlen (TARGET_OBJECT_SUFFIX);
4520                   }
4521                 
4522                 /* If the input_filename has the same suffix specified
4523                    for the %g, %u, or %U, and -save-temps is specified,
4524                    we could end up using that file as an intermediate
4525                    thus clobbering the user's source file (.e.g.,
4526                    gcc -save-temps foo.s would clobber foo.s with the
4527                    output of cpp0).  So check for this condition and
4528                    generate a temp file as the intermediate.  */
4529                    
4530                 if (save_temps_flag)
4531                   {
4532                     temp_filename_length = basename_length + suffix_length;
4533                     temp_filename = alloca (temp_filename_length + 1);
4534                     strncpy ((char *) temp_filename, input_basename, basename_length);
4535                     strncpy ((char *) temp_filename + basename_length, suffix,
4536                              suffix_length);
4537                     *((char *) temp_filename + temp_filename_length) = '\0';
4538                     if (strcmp (temp_filename, input_filename) != 0)
4539                       {
4540                         struct stat st_temp;
4541                         
4542                         /* Note, set_input() resets input_stat_set to 0.  */
4543                         if (input_stat_set == 0)
4544                           {
4545                             input_stat_set = stat (input_filename, &input_stat);
4546                             if (input_stat_set >= 0)
4547                               input_stat_set = 1;
4548                           }
4549                           
4550                         /* If we have the stat for the input_filename
4551                            and we can do the stat for the temp_filename
4552                            then the they could still refer to the same
4553                            file if st_dev/st_ino's are the same.  */
4554                         
4555                         if (input_stat_set != 1
4556                             || stat (temp_filename, &st_temp) < 0
4557                             || input_stat.st_dev != st_temp.st_dev
4558                             || input_stat.st_ino != st_temp.st_ino)
4559                           {
4560                             temp_filename = save_string (temp_filename,
4561                                                          temp_filename_length + 1);
4562                             obstack_grow (&obstack, temp_filename,
4563                                                     temp_filename_length);
4564                             arg_going = 1;
4565                             break;
4566                           }
4567                       }
4568                   }
4569
4570                 /* See if we already have an association of %g/%u/%U and
4571                    suffix.  */
4572                 for (t = temp_names; t; t = t->next)
4573                   if (t->length == suffix_length
4574                       && strncmp (t->suffix, suffix, suffix_length) == 0
4575                       && t->unique == (c != 'g'))
4576                     break;
4577
4578                 /* Make a new association if needed.  %u and %j
4579                    require one.  */
4580                 if (t == 0 || c == 'u' || c == 'j')
4581                   {
4582                     if (t == 0)
4583                       {
4584                         t = (struct temp_name *) xmalloc (sizeof (struct temp_name));
4585                         t->next = temp_names;
4586                         temp_names = t;
4587                       }
4588                     t->length = suffix_length;
4589                     if (saved_suffix)
4590                       {
4591                         t->suffix = saved_suffix;
4592                         saved_suffix = NULL;
4593                       }
4594                     else
4595                       t->suffix = save_string (suffix, suffix_length);
4596                     t->unique = (c != 'g');
4597                     temp_filename = make_temp_file (t->suffix);
4598                     temp_filename_length = strlen (temp_filename);
4599                     t->filename = temp_filename;
4600                     t->filename_length = temp_filename_length;
4601                   }
4602
4603                 if (saved_suffix)
4604                   free (saved_suffix);
4605
4606                 obstack_grow (&obstack, t->filename, t->filename_length);
4607                 delete_this_arg = 1;
4608               }
4609             arg_going = 1;
4610             break;
4611
4612           case 'i':
4613             obstack_grow (&obstack, input_filename, input_filename_length);
4614             arg_going = 1;
4615             break;
4616
4617           case 'I':
4618             {
4619               struct prefix_list *pl = include_prefixes.plist;
4620
4621               if (gcc_exec_prefix)
4622                 {
4623                   do_spec_1 ("-iprefix", 1, NULL);
4624                   /* Make this a separate argument.  */
4625                   do_spec_1 (" ", 0, NULL);
4626                   do_spec_1 (gcc_exec_prefix, 1, NULL);
4627                   do_spec_1 (" ", 0, NULL);
4628                 }
4629
4630               for (; pl; pl = pl->next)
4631                 {
4632                   do_spec_1 ("-isystem", 1, NULL);
4633                   /* Make this a separate argument.  */
4634                   do_spec_1 (" ", 0, NULL);
4635                   do_spec_1 (pl->prefix, 1, NULL);
4636                   do_spec_1 (" ", 0, NULL);
4637                 }
4638             }
4639             break;
4640
4641           case 'o':
4642             {
4643               int max = n_infiles;
4644               max += lang_specific_extra_outfiles;
4645
4646               for (i = 0; i < max; i++)
4647                 if (outfiles[i])
4648                   store_arg (outfiles[i], 0, 0);
4649               break;
4650             }
4651
4652           case 'O':
4653             obstack_grow (&obstack, TARGET_OBJECT_SUFFIX, strlen (TARGET_OBJECT_SUFFIX));
4654             arg_going = 1;
4655             break;
4656
4657           case 's':
4658             this_is_library_file = 1;
4659             break;
4660
4661           case 'w':
4662             this_is_output_file = 1;
4663             break;
4664
4665           case 'W':
4666             {
4667               int cur_index = argbuf_index;
4668               /* Handle the {...} following the %W.  */
4669               if (*p != '{')
4670                 abort ();
4671               p = handle_braces (p + 1);
4672               if (p == 0)
4673                 return -1;
4674               /* If any args were output, mark the last one for deletion
4675                  on failure.  */
4676               if (argbuf_index != cur_index)
4677                 record_temp_file (argbuf[argbuf_index - 1], 0, 1);
4678               break;
4679             }
4680
4681           /* %x{OPTION} records OPTION for %X to output.  */
4682           case 'x':
4683             {
4684               const char *p1 = p;
4685               char *string;
4686
4687               /* Skip past the option value and make a copy.  */
4688               if (*p != '{')
4689                 abort ();
4690               while (*p++ != '}')
4691                 ;
4692               string = save_string (p1 + 1, p - p1 - 2);
4693
4694               /* See if we already recorded this option.  */
4695               for (i = 0; i < n_linker_options; i++)
4696                 if (! strcmp (string, linker_options[i]))
4697                   {
4698                     free (string);
4699                     return 0;
4700                   }
4701
4702               /* This option is new; add it.  */
4703               add_linker_option (string, strlen (string));
4704             }
4705             break;
4706
4707           /* Dump out the options accumulated previously using %x.  */
4708           case 'X':
4709             for (i = 0; i < n_linker_options; i++)
4710               {
4711                 do_spec_1 (linker_options[i], 1, NULL);
4712                 /* Make each accumulated option a separate argument.  */
4713                 do_spec_1 (" ", 0, NULL);
4714               }
4715             break;
4716
4717           /* Dump out the options accumulated previously using -Wa,.  */
4718           case 'Y':
4719             for (i = 0; i < n_assembler_options; i++)
4720               {
4721                 do_spec_1 (assembler_options[i], 1, NULL);
4722                 /* Make each accumulated option a separate argument.  */
4723                 do_spec_1 (" ", 0, NULL);
4724               }
4725             break;
4726
4727           /* Dump out the options accumulated previously using -Wp,.  */
4728           case 'Z':
4729             for (i = 0; i < n_preprocessor_options; i++)
4730               {
4731                 do_spec_1 (preprocessor_options[i], 1, NULL);
4732                 /* Make each accumulated option a separate argument.  */
4733                 do_spec_1 (" ", 0, NULL);
4734               }
4735             break;
4736
4737             /* Here are digits and numbers that just process
4738                a certain constant string as a spec.  */
4739
4740           case '1':
4741             value = do_spec_1 (cc1_spec, 0, NULL);
4742             if (value != 0)
4743               return value;
4744             break;
4745
4746           case '2':
4747             value = do_spec_1 (cc1plus_spec, 0, NULL);
4748             if (value != 0)
4749               return value;
4750             break;
4751
4752           case 'a':
4753             value = do_spec_1 (asm_spec, 0, NULL);
4754             if (value != 0)
4755               return value;
4756             break;
4757
4758           case 'A':
4759             value = do_spec_1 (asm_final_spec, 0, NULL);
4760             if (value != 0)
4761               return value;
4762             break;
4763
4764           case 'C':
4765             {
4766               const char *const spec
4767                 = (input_file_compiler->cpp_spec 
4768                    ? input_file_compiler->cpp_spec 
4769                    : cpp_spec);
4770               value = do_spec_1 (spec, 0, NULL);
4771               if (value != 0)
4772                 return value;
4773             }
4774             break;
4775
4776           case 'E':
4777             value = do_spec_1 (endfile_spec, 0, NULL);
4778             if (value != 0)
4779               return value;
4780             break;
4781
4782           case 'l':
4783             value = do_spec_1 (link_spec, 0, NULL);
4784             if (value != 0)
4785               return value;
4786             break;
4787
4788           case 'L':
4789             value = do_spec_1 (lib_spec, 0, NULL);
4790             if (value != 0)
4791               return value;
4792             break;
4793
4794           case 'G':
4795             value = do_spec_1 (libgcc_spec, 0, NULL);
4796             if (value != 0)
4797               return value;
4798             break;
4799
4800           case 'M':
4801             if (multilib_dir && strcmp (multilib_dir, ".") != 0)
4802               {
4803                 char *p;
4804                 const char *q;
4805                 size_t len;
4806
4807                 len = strlen (multilib_dir);
4808                 obstack_blank (&obstack, len + 1);
4809                 p = obstack_next_free (&obstack) - (len + 1);
4810
4811                 *p++ = '_';
4812                 for (q = multilib_dir; *q ; ++q, ++p)
4813                   *p = (IS_DIR_SEPARATOR (*q) ? '_' : *q);
4814               }
4815             break;
4816
4817           case 'p':
4818             {
4819               char *x = (char *) alloca (strlen (cpp_predefines) + 1);
4820               char *buf = x;
4821               const char *y;
4822
4823               /* Copy all of the -D options in CPP_PREDEFINES into BUF.  */
4824               y = cpp_predefines;
4825               while (*y != 0)
4826                 {
4827                   if (! strncmp (y, "-D", 2))
4828                     /* Copy the whole option.  */
4829                     while (*y && *y != ' ' && *y != '\t')
4830                       *x++ = *y++;
4831                   else if (*y == ' ' || *y == '\t')
4832                     /* Copy whitespace to the result.  */
4833                     *x++ = *y++;
4834                   /* Don't copy other options.  */
4835                   else
4836                     y++;
4837                 }
4838
4839               *x = 0;
4840
4841               value = do_spec_1 (buf, 0, NULL);
4842               if (value != 0)
4843                 return value;
4844             }
4845             break;
4846
4847           case 'P':
4848             {
4849               char *x = (char *) alloca (strlen (cpp_predefines) * 4 + 1);
4850               char *buf = x;
4851               const char *y;
4852
4853               /* Copy all of CPP_PREDEFINES into BUF,
4854                  but force them all into the reserved name space if they
4855                  aren't already there.  The reserved name space is all
4856                  identifiers beginning with two underscores or with one
4857                  underscore and a capital letter.  We do the forcing by
4858                  adding up to two underscores to the beginning and end
4859                  of each symbol. e.g. mips, _mips, mips_, and _mips_ all
4860                  become __mips__.  */
4861               y = cpp_predefines;
4862               while (*y != 0)
4863                 {
4864                   if (! strncmp (y, "-D", 2))
4865                     {
4866                       int flag = 0;
4867
4868                       *x++ = *y++;
4869                       *x++ = *y++;
4870
4871                       if (*y != '_'
4872                           || (*(y + 1) != '_'
4873                               && ! ISUPPER ((unsigned char) *(y + 1))))
4874                         {
4875                           /* Stick __ at front of macro name.  */
4876                           if (*y != '_')
4877                             *x++ = '_';
4878                           *x++ = '_';
4879                           /* Arrange to stick __ at the end as well.  */
4880                           flag = 1;
4881                         }
4882
4883                       /* Copy the macro name.  */
4884                       while (*y && *y != '=' && *y != ' ' && *y != '\t')
4885                         *x++ = *y++;
4886
4887                       if (flag)
4888                         {
4889                           if (x[-1] != '_')
4890                             {
4891                               if (x[-2] != '_')
4892                                 *x++ = '_';
4893                               *x++ = '_';
4894                             }
4895                         }
4896
4897                       /* Copy the value given, if any.  */
4898                       while (*y && *y != ' ' && *y != '\t')
4899                         *x++ = *y++;
4900                     }
4901                   else if (*y == ' ' || *y == '\t')
4902                     /* Copy whitespace to the result.  */
4903                     *x++ = *y++;
4904                   /* Don't copy -A options  */
4905                   else
4906                     y++;
4907                 }
4908               *x++ = ' ';
4909
4910               /* Copy all of CPP_PREDEFINES into BUF,
4911                  but put __ after every -D.  */
4912               y = cpp_predefines;
4913               while (*y != 0)
4914                 {
4915                   if (! strncmp (y, "-D", 2))
4916                     {
4917                       y += 2;
4918
4919                       if (*y != '_'
4920                           || (*(y + 1) != '_'
4921                               && ! ISUPPER ((unsigned char) *(y + 1))))
4922                         {
4923                           /* Stick -D__ at front of macro name.  */
4924                           *x++ = '-';
4925                           *x++ = 'D';
4926                           if (*y != '_')
4927                             *x++ = '_';
4928                           *x++ = '_';
4929
4930                           /* Copy the macro name.  */
4931                           while (*y && *y != '=' && *y != ' ' && *y != '\t')
4932                             *x++ = *y++;
4933
4934                           /* Copy the value given, if any.  */
4935                           while (*y && *y != ' ' && *y != '\t')
4936                             *x++ = *y++;
4937                         }
4938                       else
4939                         {
4940                           /* Do not copy this macro - we have just done it before */
4941                           while (*y && *y != ' ' && *y != '\t')
4942                             y++;
4943                         }
4944                     }
4945                   else if (*y == ' ' || *y == '\t')
4946                     /* Copy whitespace to the result.  */
4947                     *x++ = *y++;
4948                   /* Don't copy -A options.  */
4949                   else
4950                     y++;
4951                 }
4952               *x++ = ' ';
4953
4954               /* Copy all of the -A options in CPP_PREDEFINES into BUF.  */
4955               y = cpp_predefines;
4956               while (*y != 0)
4957                 {
4958                   if (! strncmp (y, "-A", 2))
4959                     /* Copy the whole option.  */
4960                     while (*y && *y != ' ' && *y != '\t')
4961                       *x++ = *y++;
4962                   else if (*y == ' ' || *y == '\t')
4963                     /* Copy whitespace to the result.  */
4964                     *x++ = *y++;
4965                   /* Don't copy other options.  */
4966                   else
4967                     y++;
4968                 }
4969
4970               *x = 0;
4971
4972               value = do_spec_1 (buf, 0, NULL);
4973               if (value != 0)
4974                 return value;
4975             }
4976             break;
4977
4978           case 'S':
4979             value = do_spec_1 (startfile_spec, 0, NULL);
4980             if (value != 0)
4981               return value;
4982             break;
4983
4984             /* Here we define characters other than letters and digits.  */
4985
4986           case '{':
4987             p = handle_braces (p);
4988             if (p == 0)
4989               return -1;
4990             break;
4991
4992           case '%':
4993             obstack_1grow (&obstack, '%');
4994             break;
4995
4996          case '.':
4997            {
4998              unsigned len = 0;
4999
5000              while (p[len] && p[len] != ' ' && p[len] != '%')
5001                len++;
5002              suffix_subst = save_string (p - 1, len + 1);
5003              p += len;
5004            }
5005            break;
5006           
5007           case '*':
5008             if (soft_matched_part)
5009               {
5010                 do_spec_1 (soft_matched_part, 1, NULL);
5011                 do_spec_1 (" ", 0, NULL);
5012               }
5013             else
5014               /* Catch the case where a spec string contains something like
5015                  '%{foo:%*}'.  ie there is no * in the pattern on the left
5016                  hand side of the :.  */
5017               error ("spec failure: '%%*' has not been initialized by pattern match");
5018             break;
5019
5020             /* Process a string found as the value of a spec given by name.
5021                This feature allows individual machine descriptions
5022                to add and use their own specs.
5023                %[...] modifies -D options the way %P does;
5024                %(...) uses the spec unmodified.  */
5025           case '[':
5026             error ("warning: use of obsolete %%[ operator in specs");
5027           case '(':
5028             {
5029               const char *name = p;
5030               struct spec_list *sl;
5031               int len;
5032
5033               /* The string after the S/P is the name of a spec that is to be
5034                  processed.  */
5035               while (*p && *p != ')' && *p != ']')
5036                 p++;
5037
5038               /* See if it's in the list.  */
5039               for (len = p - name, sl = specs; sl; sl = sl->next)
5040                 if (sl->name_len == len && !strncmp (sl->name, name, len))
5041                   {
5042                     name = *(sl->ptr_spec);
5043 #ifdef DEBUG_SPECS
5044                     notice ("Processing spec %c%s%c, which is '%s'\n",
5045                             c, sl->name, (c == '(') ? ')' : ']', name);
5046 #endif
5047                     break;
5048                   }
5049
5050               if (sl)
5051                 {
5052                   if (c == '(')
5053                     {
5054                       value = do_spec_1 (name, 0, NULL);
5055                       if (value != 0)
5056                         return value;
5057                     }
5058                   else
5059                     {
5060                       char *x = (char *) alloca (strlen (name) * 2 + 1);
5061                       char *buf = x;
5062                       const char *y = name;
5063                       int flag = 0;
5064
5065                       /* Copy all of NAME into BUF, but put __ after
5066                          every -D and at the end of each arg.  */
5067                       while (1)
5068                         {
5069                           if (! strncmp (y, "-D", 2))
5070                             {
5071                               *x++ = '-';
5072                               *x++ = 'D';
5073                               *x++ = '_';
5074                               *x++ = '_';
5075                               y += 2;
5076                               flag = 1;
5077                               continue;
5078                             }
5079                           else if (flag
5080                                    && (*y == ' ' || *y == '\t' || *y == '='
5081                                        || *y == '}' || *y == 0))
5082                             {
5083                               *x++ = '_';
5084                               *x++ = '_';
5085                               flag = 0;
5086                             }
5087                           if (*y == 0)
5088                             break;
5089                           else
5090                             *x++ = *y++;
5091                         }
5092                       *x = 0;
5093
5094                       value = do_spec_1 (buf, 0, NULL);
5095                       if (value != 0)
5096                         return value;
5097                     }
5098                 }
5099
5100               /* Discard the closing paren or bracket.  */
5101               if (*p)
5102                 p++;
5103             }
5104             break;
5105
5106           case 'v':
5107             {
5108               int c1 = *p++;  /* Select first or second version number.  */
5109               const char *v = compiler_version;
5110               const char *q;
5111               static const char zeroc = '0';
5112
5113               /* The format of the version string is
5114                  ([^0-9]*-)?[0-9]+[.][0-9]+([.][0-9]+)?([- ].*)?  */
5115
5116               /* Ignore leading non-digits.  i.e. "foo-" in "foo-2.7.2".  */
5117               while (! ISDIGIT (*v))
5118                 v++;
5119               if (v > compiler_version && v[-1] != '-')
5120                 abort ();
5121
5122               /* If desired, advance to second version number.  */
5123               if (c1 >= '2')
5124                 {
5125                   /* Set V after the first period.  */
5126                   while (ISDIGIT (*v))
5127                     v++;
5128                   if (*v != '.')
5129                     abort ();
5130                   v++;
5131                 }
5132
5133               /* If desired, advance to third version number.
5134                  But don't complain if it's not present */
5135               if (c1 == '3')
5136                 {
5137                   /* Set V after the second period.  */
5138                   while (ISDIGIT (*v))
5139                     v++;
5140                   if ((*v != 0) && (*v != ' ') && (*v != '.') && (*v != '-'))
5141                     abort ();
5142                   if (*v != 0)
5143                     v++;
5144                 }
5145
5146               /* Set Q at the next period or at the end.  */
5147               q = v;
5148               while (ISDIGIT (*q))
5149                 q++;
5150               if (*q != 0 && q > v && *q != ' ' && *q != '.' && *q != '-')
5151                 abort ();
5152
5153               if (q > v)
5154                 /* Put that part into the command.  */
5155                 obstack_grow (&obstack, v, q - v);
5156               else
5157                 /* Default to "0" */
5158                 obstack_grow (&obstack, &zeroc, 1);
5159               arg_going = 1;
5160             }
5161             break;
5162
5163           case '|':
5164             if (input_from_pipe)
5165               do_spec_1 ("-", 0, NULL);
5166             break;
5167
5168           default:
5169             error ("spec failure: unrecognized spec option '%c'", c);
5170             break;
5171           }
5172         break;
5173
5174       case '\\':
5175         /* Backslash: treat next character as ordinary.  */
5176         c = *p++;
5177
5178         /* fall through */
5179       default:
5180         /* Ordinary character: put it into the current argument.  */
5181         obstack_1grow (&obstack, c);
5182         arg_going = 1;
5183       }
5184
5185   /* End of string.  */
5186   return 0;
5187 }
5188
5189 /* Return 0 if we call do_spec_1 and that returns -1.  */
5190
5191 static const char *
5192 handle_braces (p)
5193      const char *p;
5194 {
5195   const char *filter, *body = NULL, *endbody = NULL;
5196   int pipe_p = 0;
5197   int true_once = 0;    /* If, in %{a|b:d}, at least one of a,b was seen.  */
5198   int negate;
5199   int suffix;
5200   int include_blanks = 1;
5201   int elide_switch = 0;
5202   int ordered = 0;
5203
5204   if (*p == '^')
5205     {
5206       /* A '^' after the open-brace means to not give blanks before args.  */
5207       include_blanks = 0;
5208       ++p;
5209     }
5210
5211   if (*p == '|')
5212     {
5213       /* A `|' after the open-brace means,
5214          if the test fails, output a single minus sign rather than nothing.
5215          This is used in %{|!pipe:...}.  */
5216       pipe_p = 1;
5217       ++p;
5218     }
5219
5220   if (*p == '<')
5221     {
5222       /* A `<' after the open-brace means that the switch should be
5223          removed from the command-line.  */
5224       elide_switch = 1;
5225       ++p;
5226     }
5227
5228 next_member:
5229   negate = suffix = 0;
5230
5231   if (*p == '!')
5232     /* A `!' after the open-brace negates the condition:
5233        succeed if the specified switch is not present.  */
5234     negate = 1, ++p;
5235
5236   if (*p == '.')
5237     /* A `.' after the open-brace means test against the current suffix.  */
5238     {
5239       if (pipe_p)
5240         abort ();
5241
5242       suffix = 1;
5243       ++p;
5244     }
5245
5246   if (elide_switch && (negate || pipe_p || suffix))
5247     {
5248       /* It doesn't make sense to mix elision with other flags.  We
5249          could fatal() here, but the standard seems to be to abort.  */
5250       abort ();
5251     }
5252
5253  next_ampersand:
5254   filter = p;
5255   while (*p != ':' && *p != '}' && *p != '|' && *p != '&')
5256     p++;
5257
5258   if (*p == '|' && (pipe_p || ordered))
5259     abort ();
5260
5261   if (!body)
5262     {
5263       if (*p != '}' && *p != '&')
5264         {
5265           int count = 1;
5266           const char *q = p;
5267
5268           while (*q++ != ':')
5269             continue;
5270           body = q;
5271
5272           while (count > 0)
5273             {
5274               if (*q == '{')
5275                 count++;
5276               else if (*q == '}')
5277                 count--;
5278               else if (*q == 0)
5279                 fatal ("mismatched braces in specs");
5280               q++;
5281             }
5282           endbody = q;
5283         }
5284       else
5285         body = p, endbody = p + 1;
5286     }
5287
5288   if (suffix)
5289     {
5290       int found = (input_suffix != 0
5291                    && (long) strlen (input_suffix) == (long) (p - filter)
5292                    && strncmp (input_suffix, filter, p - filter) == 0);
5293
5294       if (body[0] == '}')
5295         abort ();
5296
5297       if (negate != found
5298           && do_spec_1 (save_string (body, endbody-body-1), 0, NULL) < 0)
5299         return 0;
5300     }
5301   else if (p[-1] == '*' && (p[0] == '}' || p[0] == '&'))
5302     {
5303       /* Substitute all matching switches as separate args.  */
5304       int i;
5305
5306       for (i = 0; i < n_switches; i++)
5307         if (!strncmp (switches[i].part1, filter, p - 1 - filter)
5308             && check_live_switch (i, p - 1 - filter))
5309           {
5310             if (elide_switch)
5311               {
5312                 switches[i].live_cond = SWITCH_IGNORE;
5313                 switches[i].validated = 1;
5314               }
5315             else
5316               ordered = 1, switches[i].ordering = 1;
5317           }
5318     }
5319   else
5320     {
5321       /* Test for presence of the specified switch.  */
5322       int i;
5323       int present = 0;
5324
5325       /* If name specified ends in *, as in {x*:...},
5326          check for %* and handle that case.  */
5327       if (p[-1] == '*' && !negate)
5328         {
5329           int substitution;
5330           const char *r = body;
5331
5332           /* First see whether we have %*.  */
5333           substitution = 0;
5334           while (r < endbody)
5335             {
5336               if (*r == '%' && r[1] == '*')
5337                 substitution = 1;
5338               r++;
5339             }
5340           /* If we do, handle that case.  */
5341           if (substitution)
5342             {
5343               /* Substitute all matching switches as separate args.
5344                  But do this by substituting for %*
5345                  in the text that follows the colon.  */
5346
5347               unsigned hard_match_len = p - filter - 1;
5348               char *string = save_string (body, endbody - body - 1);
5349
5350               for (i = 0; i < n_switches; i++)
5351                 if (!strncmp (switches[i].part1, filter, hard_match_len)
5352                     && check_live_switch (i, -1))
5353                   {
5354                     do_spec_1 (string, 0, &switches[i].part1[hard_match_len]);
5355                     /* Pass any arguments this switch has.  */
5356                     give_switch (i, 1, 1);
5357                     suffix_subst = NULL;
5358                   }
5359
5360               /* We didn't match.  Try again.  */
5361               if (*p++ == '|')
5362                 goto next_member;
5363               return endbody;
5364             }
5365         }
5366
5367       /* If name specified ends in *, as in {x*:...},
5368          check for presence of any switch name starting with x.  */
5369       if (p[-1] == '*')
5370         {
5371           for (i = 0; i < n_switches; i++)
5372             {
5373               unsigned hard_match_len = p - filter - 1;
5374
5375               if (!strncmp (switches[i].part1, filter, hard_match_len)
5376                   && check_live_switch (i, hard_match_len))
5377                 {
5378                   present = 1;
5379                   break;
5380                 }
5381             }
5382         }
5383       /* Otherwise, check for presence of exact name specified.  */
5384       else
5385         {
5386           for (i = 0; i < n_switches; i++)
5387             {
5388               if (!strncmp (switches[i].part1, filter, p - filter)
5389                   && switches[i].part1[p - filter] == 0
5390                   && check_live_switch (i, -1))
5391                 {
5392                   present = 1;
5393                   break;
5394                 }
5395             }
5396         }
5397
5398       /* If it is as desired (present for %{s...}, absent for %{!s...})
5399          then substitute either the switch or the specified
5400          conditional text.  */
5401       if (present != negate)
5402         {
5403           if (elide_switch)
5404             {
5405               switches[i].live_cond = SWITCH_IGNORE;
5406               switches[i].validated = 1;
5407             }
5408           else if (ordered || *p == '&')
5409             ordered = 1, switches[i].ordering = 1;
5410           else if (*p == '}')
5411             give_switch (i, 0, include_blanks);
5412           else
5413             /* Even if many alternatives are matched, only output once.  */
5414             true_once = 1;
5415         }
5416       else if (pipe_p)
5417         {
5418           /* Here if a %{|...} conditional fails: output a minus sign,
5419              which means "standard output" or "standard input".  */
5420           do_spec_1 ("-", 0, NULL);
5421           return endbody;
5422         }
5423     }
5424
5425   /* We didn't match; try again.  */
5426   if (*p++ == '|')
5427     goto next_member;
5428
5429   if (p[-1] == '&')
5430     {
5431       body = 0;
5432       goto next_ampersand;
5433     }
5434
5435   if (ordered)
5436     {
5437       int i;
5438       /* Doing this set of switches later preserves their command-line
5439          ordering.  This is needed for e.g. -U, -D and -A.  */
5440       for (i = 0; i < n_switches; i++)
5441         if (switches[i].ordering == 1)
5442           {
5443             switches[i].ordering = 0;
5444             give_switch (i, 0, include_blanks);
5445           }
5446     }
5447   /* Process the spec just once, regardless of match count.  */
5448   else if (true_once)
5449     {
5450       if (do_spec_1 (save_string (body, endbody - body - 1),
5451                      0, NULL) < 0)
5452         return 0;
5453     }
5454
5455   return endbody;
5456 }
5457 \f
5458 /* Return 0 iff switch number SWITCHNUM is obsoleted by a later switch
5459    on the command line.  PREFIX_LENGTH is the length of XXX in an {XXX*}
5460    spec, or -1 if either exact match or %* is used.
5461
5462    A -O switch is obsoleted by a later -O switch.  A -f, -m, or -W switch
5463    whose value does not begin with "no-" is obsoleted by the same value
5464    with the "no-", similarly for a switch with the "no-" prefix.  */
5465
5466 static int
5467 check_live_switch (switchnum, prefix_length)
5468      int switchnum;
5469      int prefix_length;
5470 {
5471   const char *name = switches[switchnum].part1;
5472   int i;
5473
5474   /* In the common case of {<at-most-one-letter>*}, a negating
5475      switch would always match, so ignore that case.  We will just
5476      send the conflicting switches to the compiler phase.  */
5477   if (prefix_length >= 0 && prefix_length <= 1)
5478     return 1;
5479
5480   /* If we already processed this switch and determined if it was
5481      live or not, return our past determination.  */
5482   if (switches[switchnum].live_cond != 0)
5483     return switches[switchnum].live_cond > 0;
5484
5485   /* Now search for duplicate in a manner that depends on the name.  */
5486   switch (*name)
5487     {
5488     case 'O':
5489       for (i = switchnum + 1; i < n_switches; i++)
5490         if (switches[i].part1[0] == 'O')
5491           {
5492             switches[switchnum].validated = 1;
5493             switches[switchnum].live_cond = SWITCH_FALSE;
5494             return 0;
5495           }
5496       break;
5497
5498     case 'W':  case 'f':  case 'm':
5499       if (! strncmp (name + 1, "no-", 3))
5500         {
5501           /* We have Xno-YYY, search for XYYY.  */
5502           for (i = switchnum + 1; i < n_switches; i++)
5503             if (switches[i].part1[0] == name[0]
5504                 && ! strcmp (&switches[i].part1[1], &name[4]))
5505               {
5506                 switches[switchnum].validated = 1;
5507                 switches[switchnum].live_cond = SWITCH_FALSE;
5508                 return 0;
5509               }
5510         }
5511       else
5512         {
5513           /* We have XYYY, search for Xno-YYY.  */
5514           for (i = switchnum + 1; i < n_switches; i++)
5515             if (switches[i].part1[0] == name[0]
5516                 && switches[i].part1[1] == 'n'
5517                 && switches[i].part1[2] == 'o'
5518                 && switches[i].part1[3] == '-'
5519                 && !strcmp (&switches[i].part1[4], &name[1]))
5520               {
5521                 switches[switchnum].validated = 1;
5522                 switches[switchnum].live_cond = SWITCH_FALSE;
5523                 return 0;
5524               }
5525         }
5526       break;
5527     }
5528
5529   /* Otherwise the switch is live.  */
5530   switches[switchnum].live_cond = SWITCH_LIVE;
5531   return 1;
5532 }
5533 \f
5534 /* Pass a switch to the current accumulating command
5535    in the same form that we received it.
5536    SWITCHNUM identifies the switch; it is an index into
5537    the vector of switches gcc received, which is `switches'.
5538    This cannot fail since it never finishes a command line.
5539
5540    If OMIT_FIRST_WORD is nonzero, then we omit .part1 of the argument.
5541
5542    If INCLUDE_BLANKS is nonzero, then we include blanks before each argument
5543    of the switch.  */
5544
5545 static void
5546 give_switch (switchnum, omit_first_word, include_blanks)
5547      int switchnum;
5548      int omit_first_word;
5549      int include_blanks;
5550 {
5551   if (switches[switchnum].live_cond == SWITCH_IGNORE)
5552     return;
5553
5554   if (!omit_first_word)
5555     {
5556       do_spec_1 ("-", 0, NULL);
5557       do_spec_1 (switches[switchnum].part1, 1, NULL);
5558     }
5559
5560   if (switches[switchnum].args != 0)
5561     {
5562       const char **p;
5563       for (p = switches[switchnum].args; *p; p++)
5564         {
5565           const char *arg = *p;
5566
5567           if (include_blanks)
5568             do_spec_1 (" ", 0, NULL);
5569           if (suffix_subst)
5570             {
5571               unsigned length = strlen (arg);
5572               int dot = 0;
5573
5574               while (length-- && !IS_DIR_SEPARATOR (arg[length]))
5575                 if (arg[length] == '.')
5576                   {
5577                     ((char *)arg)[length] = 0;
5578                     dot = 1;
5579                     break;
5580                   }
5581               do_spec_1 (arg, 1, NULL);
5582               if (dot)
5583                 ((char *)arg)[length] = '.';
5584               do_spec_1 (suffix_subst, 1, NULL);
5585             }
5586           else
5587             do_spec_1 (arg, 1, NULL);
5588         }
5589     }
5590
5591   do_spec_1 (" ", 0, NULL);
5592   switches[switchnum].validated = 1;
5593 }
5594 \f
5595 /* Search for a file named NAME trying various prefixes including the
5596    user's -B prefix and some standard ones.
5597    Return the absolute file name found.  If nothing is found, return NAME.  */
5598
5599 static const char *
5600 find_file (name)
5601      const char *name;
5602 {
5603   char *newname;
5604
5605   /* Try multilib_dir if it is defined.  */
5606   if (multilib_dir != NULL)
5607     {
5608       const char *const try = ACONCAT ((multilib_dir, dir_separator_str, name, NULL));
5609
5610       newname = find_a_file (&startfile_prefixes, try, R_OK);
5611
5612       /* If we don't find it in the multi library dir, then fall
5613          through and look for it in the normal places.  */
5614       if (newname != NULL)
5615         return newname;
5616     }
5617
5618   newname = find_a_file (&startfile_prefixes, name, R_OK);
5619   return newname ? newname : name;
5620 }
5621
5622 /* Determine whether a directory exists.  If LINKER, return 0 for
5623    certain fixed names not needed by the linker.  If not LINKER, it is
5624    only important to return 0 if the host machine has a small ARG_MAX
5625    limit.  */
5626
5627 static int
5628 is_directory (path1, path2, linker)
5629      const char *path1;
5630      const char *path2;
5631      int linker;
5632 {
5633   int len1 = strlen (path1);
5634   int len2 = strlen (path2);
5635   char *path = (char *) alloca (3 + len1 + len2);
5636   char *cp;
5637   struct stat st;
5638
5639 #ifndef SMALL_ARG_MAX
5640   if (! linker)
5641     return 1;
5642 #endif
5643
5644   /* Construct the path from the two parts.  Ensure the string ends with "/.".
5645      The resulting path will be a directory even if the given path is a
5646      symbolic link.  */
5647   memcpy (path, path1, len1);
5648   memcpy (path + len1, path2, len2);
5649   cp = path + len1 + len2;
5650   if (!IS_DIR_SEPARATOR (cp[-1]))
5651     *cp++ = DIR_SEPARATOR;
5652   *cp++ = '.';
5653   *cp = '\0';
5654
5655   /* Exclude directories that the linker is known to search.  */
5656   if (linker
5657       && ((cp - path == 6
5658            && strcmp (path, concat (dir_separator_str, "lib",
5659                                     dir_separator_str, ".", NULL)) == 0)
5660           || (cp - path == 10
5661               && strcmp (path, concat (dir_separator_str, "usr",
5662                                        dir_separator_str, "lib",
5663                                        dir_separator_str, ".", NULL)) == 0)))
5664     return 0;
5665
5666   return (stat (path, &st) >= 0 && S_ISDIR (st.st_mode));
5667 }
5668
5669 /* Set up the various global variables to indicate that we're processing
5670    the input file named FILENAME.  */
5671
5672 void
5673 set_input (filename)
5674      const char *filename;
5675 {
5676   const char *p;
5677
5678   input_filename = filename;
5679   input_filename_length = strlen (input_filename);
5680
5681   input_basename = input_filename;
5682 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
5683   /* Skip drive name so 'x:foo' is handled properly.  */
5684   if (input_basename[1] == ':')
5685     input_basename += 2;
5686 #endif
5687   for (p = input_basename; *p; p++)
5688     if (IS_DIR_SEPARATOR (*p))
5689       input_basename = p + 1;
5690
5691   /* Find a suffix starting with the last period,
5692      and set basename_length to exclude that suffix.  */
5693   basename_length = strlen (input_basename);
5694   suffixed_basename_length = basename_length;
5695   p = input_basename + basename_length;
5696   while (p != input_basename && *p != '.')
5697     --p;
5698   if (*p == '.' && p != input_basename)
5699     {
5700       basename_length = p - input_basename;
5701       input_suffix = p + 1;
5702     }
5703   else
5704     input_suffix = "";
5705   
5706   /* If a spec for 'g', 'u', or 'U' is seen with -save-temps then
5707      we will need to do a stat on the input_filename.  The
5708      INPUT_STAT_SET signals that the stat is needed.  */
5709   input_stat_set = 0;
5710 }
5711 \f
5712 /* On fatal signals, delete all the temporary files.  */
5713
5714 static void
5715 fatal_error (signum)
5716      int signum;
5717 {
5718   signal (signum, SIG_DFL);
5719   delete_failure_queue ();
5720   delete_temp_files ();
5721   /* Get the same signal again, this time not handled,
5722      so its normal effect occurs.  */
5723   kill (getpid (), signum);
5724 }
5725
5726 extern int main PARAMS ((int, const char *const *));
5727
5728 int
5729 main (argc, argv)
5730      int argc;
5731      const char *const *argv;
5732 {
5733   size_t i;
5734   int value;
5735   int linker_was_run = 0;
5736   char *explicit_link_files;
5737   char *specs_file;
5738   const char *p;
5739   struct user_specs *uptr;
5740
5741   p = argv[0] + strlen (argv[0]);
5742   while (p != argv[0] && !IS_DIR_SEPARATOR (p[-1]))
5743     --p;
5744   programname = p;
5745
5746   xmalloc_set_program_name (programname);
5747
5748 #ifdef GCC_DRIVER_HOST_INITIALIZATION
5749   /* Perform host dependent initialization when needed.  */
5750   GCC_DRIVER_HOST_INITIALIZATION;
5751 #endif
5752
5753   gcc_init_libintl ();
5754
5755   if (signal (SIGINT, SIG_IGN) != SIG_IGN)
5756     signal (SIGINT, fatal_error);
5757 #ifdef SIGHUP
5758   if (signal (SIGHUP, SIG_IGN) != SIG_IGN)
5759     signal (SIGHUP, fatal_error);
5760 #endif
5761   if (signal (SIGTERM, SIG_IGN) != SIG_IGN)
5762     signal (SIGTERM, fatal_error);
5763 #ifdef SIGPIPE
5764   if (signal (SIGPIPE, SIG_IGN) != SIG_IGN)
5765     signal (SIGPIPE, fatal_error);
5766 #endif
5767 #ifdef SIGCHLD
5768   /* We *MUST* set SIGCHLD to SIG_DFL so that the wait4() call will
5769      receive the signal.  A different setting is inheritable */
5770   signal (SIGCHLD, SIG_DFL);
5771 #endif
5772
5773   argbuf_length = 10;
5774   argbuf = (const char **) xmalloc (argbuf_length * sizeof (const char *));
5775
5776   obstack_init (&obstack);
5777
5778   /* Build multilib_select, et. al from the separate lines that make up each
5779      multilib selection.  */
5780   {
5781     const char *const *q = multilib_raw;
5782     int need_space;
5783
5784     obstack_init (&multilib_obstack);
5785     while ((p = *q++) != (char *) 0)
5786       obstack_grow (&multilib_obstack, p, strlen (p));
5787
5788     obstack_1grow (&multilib_obstack, 0);
5789     multilib_select = obstack_finish (&multilib_obstack);
5790
5791     q = multilib_matches_raw;
5792     while ((p = *q++) != (char *) 0)
5793       obstack_grow (&multilib_obstack, p, strlen (p));
5794
5795     obstack_1grow (&multilib_obstack, 0);
5796     multilib_matches = obstack_finish (&multilib_obstack);
5797
5798     q = multilib_exclusions_raw;
5799     while ((p = *q++) != (char *) 0)
5800       obstack_grow (&multilib_obstack, p, strlen (p));
5801
5802     obstack_1grow (&multilib_obstack, 0);
5803     multilib_exclusions = obstack_finish (&multilib_obstack);
5804
5805     need_space = FALSE;
5806     for (i = 0; i < ARRAY_SIZE (multilib_defaults_raw); i++)
5807       {
5808         if (need_space)
5809           obstack_1grow (&multilib_obstack, ' ');
5810         obstack_grow (&multilib_obstack,
5811                       multilib_defaults_raw[i],
5812                       strlen (multilib_defaults_raw[i]));
5813         need_space = TRUE;
5814       }
5815
5816     obstack_1grow (&multilib_obstack, 0);
5817     multilib_defaults = obstack_finish (&multilib_obstack);
5818   }
5819
5820   /* Set up to remember the pathname of gcc and any options
5821      needed for collect.  We use argv[0] instead of programname because
5822      we need the complete pathname.  */
5823   obstack_init (&collect_obstack);
5824   obstack_grow (&collect_obstack, "COLLECT_GCC=", sizeof ("COLLECT_GCC=") - 1);
5825   obstack_grow (&collect_obstack, argv[0], strlen (argv[0]) + 1);
5826   putenv (obstack_finish (&collect_obstack));
5827
5828 #ifdef INIT_ENVIRONMENT
5829   /* Set up any other necessary machine specific environment variables.  */
5830   putenv (INIT_ENVIRONMENT);
5831 #endif
5832
5833   /* Make a table of what switches there are (switches, n_switches).
5834      Make a table of specified input files (infiles, n_infiles).
5835      Decode switches that are handled locally.  */
5836
5837   process_command (argc, argv);
5838
5839   /* Initialize the vector of specs to just the default.
5840      This means one element containing 0s, as a terminator.  */
5841
5842   compilers = (struct compiler *) xmalloc (sizeof default_compilers);
5843   memcpy ((char *) compilers, (char *) default_compilers,
5844           sizeof default_compilers);
5845   n_compilers = n_default_compilers;
5846
5847   /* Read specs from a file if there is one.  */
5848
5849   machine_suffix = concat (spec_machine, dir_separator_str,
5850                            spec_version, dir_separator_str, NULL);
5851   just_machine_suffix = concat (spec_machine, dir_separator_str, NULL);
5852
5853   specs_file = find_a_file (&startfile_prefixes, "specs", R_OK);
5854   /* Read the specs file unless it is a default one.  */
5855   if (specs_file != 0 && strcmp (specs_file, "specs"))
5856     read_specs (specs_file, TRUE);
5857   else
5858     init_spec ();
5859
5860   /* We need to check standard_exec_prefix/just_machine_suffix/specs
5861      for any override of as, ld and libraries.  */
5862   specs_file = (char *) alloca (strlen (standard_exec_prefix)
5863                                 + strlen (just_machine_suffix)
5864                                 + sizeof ("specs"));
5865
5866   strcpy (specs_file, standard_exec_prefix);
5867   strcat (specs_file, just_machine_suffix);
5868   strcat (specs_file, "specs");
5869   if (access (specs_file, R_OK) == 0)
5870     read_specs (specs_file, TRUE);
5871
5872   /* If not cross-compiling, look for startfiles in the standard places.  */
5873   if (*cross_compile == '0')
5874     {
5875       if (*md_exec_prefix)
5876         {
5877           add_prefix (&exec_prefixes, md_exec_prefix, "GCC",
5878                       PREFIX_PRIORITY_LAST, 0, NULL);
5879           add_prefix (&startfile_prefixes, md_exec_prefix, "GCC",
5880                       PREFIX_PRIORITY_LAST, 0, NULL);
5881         }
5882
5883       if (*md_startfile_prefix)
5884         add_prefix (&startfile_prefixes, md_startfile_prefix, "GCC",
5885                     PREFIX_PRIORITY_LAST, 0, NULL);
5886
5887       if (*md_startfile_prefix_1)
5888         add_prefix (&startfile_prefixes, md_startfile_prefix_1, "GCC",
5889                     PREFIX_PRIORITY_LAST, 0, NULL);
5890
5891       /* If standard_startfile_prefix is relative, base it on
5892          standard_exec_prefix.  This lets us move the installed tree
5893          as a unit.  If GCC_EXEC_PREFIX is defined, base
5894          standard_startfile_prefix on that as well.  */
5895       if (IS_ABSOLUTE_PATHNAME (standard_startfile_prefix))
5896         add_prefix (&startfile_prefixes, standard_startfile_prefix, "BINUTILS",
5897                     PREFIX_PRIORITY_LAST, 0, NULL);
5898       else
5899         {
5900           if (gcc_exec_prefix)
5901             add_prefix (&startfile_prefixes,
5902                         concat (gcc_exec_prefix, machine_suffix,
5903                                 standard_startfile_prefix, NULL),
5904                         NULL, PREFIX_PRIORITY_LAST, 0, NULL);
5905           add_prefix (&startfile_prefixes,
5906                       concat (standard_exec_prefix,
5907                               machine_suffix,
5908                               standard_startfile_prefix, NULL),
5909                       NULL, PREFIX_PRIORITY_LAST, 0, NULL);
5910         }
5911
5912       add_prefix (&startfile_prefixes, standard_startfile_prefix_1,
5913                   "BINUTILS", PREFIX_PRIORITY_LAST, 0, NULL);
5914       add_prefix (&startfile_prefixes, standard_startfile_prefix_2,
5915                   "BINUTILS", PREFIX_PRIORITY_LAST, 0, NULL);
5916 #if 0 /* Can cause surprises, and one can use -B./ instead.  */
5917       add_prefix (&startfile_prefixes, "./", NULL,
5918                   PREFIX_PRIORITY_LAST, 1, NULL);
5919 #endif
5920     }
5921   else
5922     {
5923       if (!IS_ABSOLUTE_PATHNAME (standard_startfile_prefix)
5924           && gcc_exec_prefix)
5925         add_prefix (&startfile_prefixes,
5926                     concat (gcc_exec_prefix, machine_suffix,
5927                             standard_startfile_prefix, NULL),
5928                     "BINUTILS", PREFIX_PRIORITY_LAST, 0, NULL);
5929     }
5930
5931   /* Process any user specified specs in the order given on the command
5932      line.  */
5933   for (uptr = user_specs_head; uptr; uptr = uptr->next)
5934     {
5935       char *filename = find_a_file (&startfile_prefixes, uptr->filename, R_OK);
5936       read_specs (filename ? filename : uptr->filename, FALSE);
5937     }
5938
5939   /* If we have a GCC_EXEC_PREFIX envvar, modify it for cpp's sake.  */
5940   if (gcc_exec_prefix)
5941     gcc_exec_prefix = concat (gcc_exec_prefix, spec_machine, dir_separator_str,
5942                               spec_version, dir_separator_str, NULL);
5943
5944   /* Now we have the specs.
5945      Set the `valid' bits for switches that match anything in any spec.  */
5946
5947   validate_all_switches ();
5948
5949   /* Now that we have the switches and the specs, set
5950      the subdirectory based on the options.  */
5951   set_multilib_dir ();
5952
5953   /* Warn about any switches that no pass was interested in.  */
5954
5955   for (i = 0; (int) i < n_switches; i++)
5956     if (! switches[i].validated)
5957       error ("unrecognized option `-%s'", switches[i].part1);
5958
5959   /* Obey some of the options.  */
5960
5961   if (print_search_dirs)
5962     {
5963       printf (_("install: %s%s\n"), standard_exec_prefix, machine_suffix);
5964       printf (_("programs: %s\n"), build_search_list (&exec_prefixes, "", 0));
5965       printf (_("libraries: %s\n"), build_search_list (&startfile_prefixes, "", 0));
5966       return (0);
5967     }
5968
5969   if (print_file_name)
5970     {
5971       printf ("%s\n", find_file (print_file_name));
5972       return (0);
5973     }
5974
5975   if (print_prog_name)
5976     {
5977       char *newname = find_a_file (&exec_prefixes, print_prog_name, X_OK);
5978       printf ("%s\n", (newname ? newname : print_prog_name));
5979       return (0);
5980     }
5981
5982   if (print_multi_lib)
5983     {
5984       print_multilib_info ();
5985       return (0);
5986     }
5987
5988   if (print_multi_directory)
5989     {
5990       if (multilib_dir == NULL)
5991         printf (".\n");
5992       else
5993         printf ("%s\n", multilib_dir);
5994       return (0);
5995     }
5996
5997   if (target_help_flag)
5998    {
5999       /* Print if any target specific options.  */
6000
6001       /* We do not exit here. Instead we have created a fake input file
6002          called 'target-dummy' which needs to be compiled, and we pass this
6003          on to the various sub-processes, along with the --target-help
6004          switch.  */
6005     }
6006
6007   if (print_help_list)
6008     {
6009       display_help ();
6010
6011       if (! verbose_flag)
6012         {
6013           printf (_("\nFor bug reporting instructions, please see:\n"));
6014           printf ("%s.\n", GCCBUGURL);
6015
6016           return (0);
6017         }
6018
6019       /* We do not exit here.  Instead we have created a fake input file
6020          called 'help-dummy' which needs to be compiled, and we pass this
6021          on the various sub-processes, along with the --help switch.  */
6022     }
6023
6024   if (verbose_flag)
6025     {
6026       int n;
6027       const char *thrmod;
6028
6029       notice ("Configured with: %s\n", configuration_arguments);
6030
6031 #ifdef THREAD_MODEL_SPEC
6032       /* We could have defined THREAD_MODEL_SPEC to "%*" by default,
6033          but there's no point in doing all this processing just to get
6034          thread_model back.  */
6035       obstack_init (&obstack);
6036       do_spec_1 (THREAD_MODEL_SPEC, 0, thread_model);
6037       obstack_1grow (&obstack, '\0');
6038       thrmod = obstack_finish (&obstack);
6039 #else
6040       thrmod = thread_model;
6041 #endif
6042
6043       notice ("Thread model: %s\n", thrmod);
6044
6045       /* compiler_version is truncated at the first space when initialized
6046          from version string, so truncate version_string at the first space
6047          before comparing.  */
6048       for (n = 0; version_string[n]; n++)
6049         if (version_string[n] == ' ')
6050           break;
6051
6052       if (! strncmp (version_string, compiler_version, n)
6053           && compiler_version[n] == 0)
6054         notice ("gcc version %s\n", version_string);
6055       else
6056         notice ("gcc driver version %s executing gcc version %s\n",
6057                 version_string, compiler_version);
6058
6059       if (n_infiles == 0)
6060         return (0);
6061     }
6062
6063   if (n_infiles == added_libraries)
6064     fatal ("no input files");
6065
6066   /* Make a place to record the compiler output file names
6067      that correspond to the input files.  */
6068
6069   i = n_infiles;
6070   i += lang_specific_extra_outfiles;
6071   outfiles = (const char **) xcalloc (i, sizeof (char *));
6072
6073   /* Record which files were specified explicitly as link input.  */
6074
6075   explicit_link_files = xcalloc (1, n_infiles);
6076
6077   for (i = 0; (int) i < n_infiles; i++)
6078     {
6079       int this_file_error = 0;
6080
6081       /* Tell do_spec what to substitute for %i.  */
6082
6083       input_file_number = i;
6084       set_input (infiles[i].name);
6085
6086       /* Use the same thing in %o, unless cp->spec says otherwise.  */
6087
6088       outfiles[i] = input_filename;
6089
6090       /* Figure out which compiler from the file's suffix.  */
6091
6092       input_file_compiler
6093         = lookup_compiler (infiles[i].name, input_filename_length,
6094                            infiles[i].language);
6095       
6096       if (input_file_compiler)
6097         {
6098           /* Ok, we found an applicable compiler.  Run its spec.  */
6099
6100           if (input_file_compiler->spec[0] == '#')
6101             {
6102               error ("%s: %s compiler not installed on this system",
6103                      input_filename, &input_file_compiler->spec[1]);
6104               this_file_error = 1;
6105             }
6106           else
6107             {
6108               value = do_spec (input_file_compiler->spec);
6109               if (value < 0)
6110                 this_file_error = 1;
6111             }
6112         }
6113
6114       /* If this file's name does not contain a recognized suffix,
6115          record it as explicit linker input.  */
6116
6117       else
6118         explicit_link_files[i] = 1;
6119
6120       /* Clear the delete-on-failure queue, deleting the files in it
6121          if this compilation failed.  */
6122
6123       if (this_file_error)
6124         {
6125           delete_failure_queue ();
6126           error_count++;
6127         }
6128       /* If this compilation succeeded, don't delete those files later.  */
6129       clear_failure_queue ();
6130     }
6131
6132   /* Reset the output file name to the first input file name, for use
6133      with %b in LINK_SPEC on a target that prefers not to emit a.out
6134      by default.  */
6135   if (n_infiles > 0)
6136     set_input (infiles[0].name);
6137
6138   if (error_count == 0)
6139     {
6140       /* Make sure INPUT_FILE_NUMBER points to first available open
6141          slot.  */
6142       input_file_number = n_infiles;
6143       if (lang_specific_pre_link ())
6144         error_count++;
6145     }
6146
6147   /* Run ld to link all the compiler output files.  */
6148
6149   if (error_count == 0)
6150     {
6151       int tmp = execution_count;
6152
6153       /* We'll use ld if we can't find collect2.  */
6154       if (! strcmp (linker_name_spec, "collect2"))
6155         {
6156           char *s = find_a_file (&exec_prefixes, "collect2", X_OK);
6157           if (s == NULL)
6158             linker_name_spec = "ld";
6159         }
6160       /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
6161          for collect.  */
6162       putenv_from_prefixes (&exec_prefixes, "COMPILER_PATH");
6163       putenv_from_prefixes (&startfile_prefixes, LIBRARY_PATH_ENV);
6164
6165       value = do_spec (link_command_spec);
6166       if (value < 0)
6167         error_count = 1;
6168       linker_was_run = (tmp != execution_count);
6169     }
6170
6171   /* If options said don't run linker,
6172      complain about input files to be given to the linker.  */
6173
6174   if (! linker_was_run && error_count == 0)
6175     for (i = 0; (int) i < n_infiles; i++)
6176       if (explicit_link_files[i])
6177         error ("%s: linker input file unused because linking not done",
6178                outfiles[i]);
6179
6180   /* Delete some or all of the temporary files we made.  */
6181
6182   if (error_count)
6183     delete_failure_queue ();
6184   delete_temp_files ();
6185
6186   if (print_help_list)
6187     {
6188       printf (("\nFor bug reporting instructions, please see:\n"));
6189       printf ("%s\n", GCCBUGURL);
6190     }
6191
6192   return (signal_count != 0 ? 2
6193           : error_count > 0 ? (pass_exit_codes ? greatest_status : 1)
6194           : 0);
6195 }
6196
6197 /* Find the proper compilation spec for the file name NAME,
6198    whose length is LENGTH.  LANGUAGE is the specified language,
6199    or 0 if this file is to be passed to the linker.  */
6200
6201 static struct compiler *
6202 lookup_compiler (name, length, language)
6203      const char *name;
6204      size_t length;
6205      const char *language;
6206 {
6207   struct compiler *cp;
6208
6209   /* If this was specified by the user to be a linker input, indicate that.  */
6210   if (language != 0 && language[0] == '*')
6211     return 0;
6212
6213   /* Otherwise, look for the language, if one is spec'd.  */
6214   if (language != 0)
6215     {
6216       for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
6217         if (cp->suffix[0] == '@' && !strcmp (cp->suffix + 1, language))
6218           return cp;
6219
6220       error ("language %s not recognized", language);
6221       return 0;
6222     }
6223
6224   /* Look for a suffix.  */
6225   for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
6226     {
6227       if (/* The suffix `-' matches only the file name `-'.  */
6228           (!strcmp (cp->suffix, "-") && !strcmp (name, "-"))
6229           || (strlen (cp->suffix) < length
6230               /* See if the suffix matches the end of NAME.  */
6231               && !strcmp (cp->suffix,
6232                           name + length - strlen (cp->suffix))
6233          ))
6234         break;
6235     }
6236
6237 #if defined (OS2) ||defined (HAVE_DOS_BASED_FILE_SYSTEM)
6238   /* look again, but case-insensitively this time.  */
6239   if (cp < compilers)
6240     for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
6241       {
6242         if (/* The suffix `-' matches only the file name `-'.  */
6243             (!strcmp (cp->suffix, "-") && !strcmp (name, "-"))
6244             || (strlen (cp->suffix) < length
6245                 /* See if the suffix matches the end of NAME.  */
6246                 && ((!strcmp (cp->suffix,
6247                              name + length - strlen (cp->suffix))
6248                      || !strpbrk (cp->suffix, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"))
6249                     && !strcasecmp (cp->suffix,
6250                                     name + length - strlen (cp->suffix)))
6251            ))
6252           break;
6253       }
6254 #endif
6255
6256   if (cp >= compilers)
6257     {
6258       if (cp->spec[0] != '@')
6259         /* A non-alias entry: return it.  */
6260         return cp;
6261
6262       /* An alias entry maps a suffix to a language.
6263          Search for the language; pass 0 for NAME and LENGTH
6264          to avoid infinite recursion if language not found.  */
6265       return lookup_compiler (NULL, 0, cp->spec + 1);
6266     }
6267   return 0;
6268 }
6269 \f
6270 static char *
6271 save_string (s, len)
6272      const char *s;
6273      int len;
6274 {
6275   char *result = xmalloc (len + 1);
6276
6277   memcpy (result, s, len);
6278   result[len] = 0;
6279   return result;
6280 }
6281
6282 void
6283 pfatal_with_name (name)
6284      const char *name;
6285 {
6286   perror_with_name (name);
6287   delete_temp_files ();
6288   exit (1);
6289 }
6290
6291 static void
6292 perror_with_name (name)
6293      const char *name;
6294 {
6295   error ("%s: %s", name, xstrerror (errno));
6296 }
6297
6298 static void
6299 pfatal_pexecute (errmsg_fmt, errmsg_arg)
6300      const char *errmsg_fmt;
6301      const char *errmsg_arg;
6302 {
6303   if (errmsg_arg)
6304     {
6305       int save_errno = errno;
6306
6307       /* Space for trailing '\0' is in %s.  */
6308       char *msg = xmalloc (strlen (errmsg_fmt) + strlen (errmsg_arg));
6309       sprintf (msg, errmsg_fmt, errmsg_arg);
6310       errmsg_fmt = msg;
6311
6312       errno = save_errno;
6313     }
6314
6315   pfatal_with_name (errmsg_fmt);
6316 }
6317
6318 /* Output an error message and exit */
6319
6320 void
6321 fancy_abort ()
6322 {
6323   fatal ("internal gcc abort");
6324 }
6325 \f
6326 /* Output an error message and exit */
6327
6328 void
6329 fatal VPARAMS ((const char *msgid, ...))
6330 {
6331   VA_OPEN (ap, msgid);
6332   VA_FIXEDARG (ap, const char *, msgid);
6333
6334   fprintf (stderr, "%s: ", programname);
6335   vfprintf (stderr, _(msgid), ap);
6336   VA_CLOSE (ap);
6337   fprintf (stderr, "\n");
6338   delete_temp_files ();
6339   exit (1);
6340 }
6341
6342 void
6343 error VPARAMS ((const char *msgid, ...))
6344 {
6345   VA_OPEN (ap, msgid);
6346   VA_FIXEDARG (ap, const char *, msgid);
6347
6348   fprintf (stderr, "%s: ", programname);
6349   vfprintf (stderr, _(msgid), ap);
6350   VA_CLOSE (ap);
6351
6352   fprintf (stderr, "\n");
6353 }
6354
6355 static void
6356 notice VPARAMS ((const char *msgid, ...))
6357 {
6358   VA_OPEN (ap, msgid);
6359   VA_FIXEDARG (ap, const char *, msgid);
6360
6361   vfprintf (stderr, _(msgid), ap);
6362   VA_CLOSE (ap);
6363 }
6364 \f
6365 static void
6366 validate_all_switches ()
6367 {
6368   struct compiler *comp;
6369   const char *p;
6370   char c;
6371   struct spec_list *spec;
6372
6373   for (comp = compilers; comp->spec; comp++)
6374     {
6375       p = comp->spec;
6376       while ((c = *p++))
6377         if (c == '%' && (*p == '{' || (*p == 'W' && *++p == '{')))
6378           /* We have a switch spec.  */
6379           validate_switches (p + 1);
6380     }
6381
6382   /* Look through the linked list of specs read from the specs file.  */
6383   for (spec = specs; spec; spec = spec->next)
6384     {
6385       p = *(spec->ptr_spec);
6386       while ((c = *p++))
6387         if (c == '%' && (*p == '{' || (*p == 'W' && *++p == '{')))
6388           /* We have a switch spec.  */
6389           validate_switches (p + 1);
6390     }
6391
6392   p = link_command_spec;
6393   while ((c = *p++))
6394     if (c == '%' && (*p == '{' || (*p == 'W' && *++p == '{')))
6395       /* We have a switch spec.  */
6396       validate_switches (p + 1);
6397 }
6398
6399 /* Look at the switch-name that comes after START
6400    and mark as valid all supplied switches that match it.  */
6401
6402 static void
6403 validate_switches (start)
6404      const char *start;
6405 {
6406   const char *p = start;
6407   const char *filter;
6408   int i;
6409   int suffix;
6410
6411   if (*p == '|')
6412     ++p;
6413
6414 next_member:
6415   if (*p == '!')
6416     ++p;
6417
6418   suffix = 0;
6419   if (*p == '.')
6420     suffix = 1, ++p;
6421
6422   filter = p;
6423   while (*p != ':' && *p != '}' && *p != '|' && *p != '&')
6424     p++;
6425
6426   if (suffix)
6427     ;
6428   else if (p[-1] == '*')
6429     {
6430       /* Mark all matching switches as valid.  */
6431       for (i = 0; i < n_switches; i++)
6432         if (!strncmp (switches[i].part1, filter, p - filter - 1))
6433           switches[i].validated = 1;
6434     }
6435   else
6436     {
6437       /* Mark an exact matching switch as valid.  */
6438       for (i = 0; i < n_switches; i++)
6439         {
6440           if (!strncmp (switches[i].part1, filter, p - filter)
6441               && switches[i].part1[p - filter] == 0)
6442             switches[i].validated = 1;
6443         }
6444     }
6445
6446   if (*p++ == '|' || p[-1] == '&')
6447     goto next_member;
6448 }
6449 \f
6450 /* Check whether a particular argument was used.  The first time we
6451    canonicalize the switches to keep only the ones we care about.  */
6452
6453 static int
6454 used_arg (p, len)
6455      const char *p;
6456      int len;
6457 {
6458   struct mswitchstr
6459   {
6460     const char *str;
6461     const char *replace;
6462     int len;
6463     int rep_len;
6464   };
6465
6466   static struct mswitchstr *mswitches;
6467   static int n_mswitches;
6468   int i, j;
6469
6470   if (!mswitches)
6471     {
6472       struct mswitchstr *matches;
6473       const char *q;
6474       int cnt = 0;
6475
6476       /* Break multilib_matches into the component strings of string
6477          and replacement string.  */
6478       for (q = multilib_matches; *q != '\0'; q++)
6479         if (*q == ';')
6480           cnt++;
6481
6482       matches =
6483         (struct mswitchstr *) alloca ((sizeof (struct mswitchstr)) * cnt);
6484       i = 0;
6485       q = multilib_matches;
6486       while (*q != '\0')
6487         {
6488           matches[i].str = q;
6489           while (*q != ' ')
6490             {
6491               if (*q == '\0')
6492                 abort ();
6493               q++;
6494             }
6495           matches[i].len = q - matches[i].str;
6496
6497           matches[i].replace = ++q;
6498           while (*q != ';' && *q != '\0')
6499             {
6500               if (*q == ' ')
6501                 abort ();
6502               q++;
6503             }
6504           matches[i].rep_len = q - matches[i].replace;
6505           i++;
6506           if (*q == ';')
6507             q++;
6508         }
6509
6510       /* Now build a list of the replacement string for switches that we care
6511          about.  Make sure we allocate at least one entry.  This prevents
6512          xmalloc from calling fatal, and prevents us from re-executing this
6513          block of code.  */
6514       mswitches
6515         = (struct mswitchstr *) xmalloc ((sizeof (struct mswitchstr))
6516                                          * (n_switches ? n_switches : 1));
6517       for (i = 0; i < n_switches; i++)
6518         {
6519           int xlen = strlen (switches[i].part1);
6520           for (j = 0; j < cnt; j++)
6521             if (xlen == matches[j].len
6522                 && ! strncmp (switches[i].part1, matches[j].str, xlen))
6523               {
6524                 mswitches[n_mswitches].str = matches[j].replace;
6525                 mswitches[n_mswitches].len = matches[j].rep_len;
6526                 mswitches[n_mswitches].replace = (char *) 0;
6527                 mswitches[n_mswitches].rep_len = 0;
6528                 n_mswitches++;
6529                 break;
6530               }
6531         }
6532     }
6533
6534   for (i = 0; i < n_mswitches; i++)
6535     if (len == mswitches[i].len && ! strncmp (p, mswitches[i].str, len))
6536       return 1;
6537
6538   return 0;
6539 }
6540
6541 static int
6542 default_arg (p, len)
6543      const char *p;
6544      int len;
6545 {
6546   const char *start, *end;
6547
6548   for (start = multilib_defaults; *start != '\0'; start = end + 1)
6549     {
6550       while (*start == ' ' || *start == '\t')
6551         start++;
6552
6553       if (*start == '\0')
6554         break;
6555
6556       for (end = start + 1; *end != ' ' && *end != '\t' && *end != '\0'; end++)
6557         ;
6558
6559       if ((end - start) == len && strncmp (p, start, len) == 0)
6560         return 1;
6561
6562       if (*end == '\0')
6563         break;
6564     }
6565
6566   return 0;
6567 }
6568
6569 /* Work out the subdirectory to use based on the options. The format of
6570    multilib_select is a list of elements. Each element is a subdirectory
6571    name followed by a list of options followed by a semicolon. The format
6572    of multilib_exclusions is the same, but without the preceding
6573    directory. First gcc will check the exclusions, if none of the options
6574    beginning with an exclamation point are present, and all of the other
6575    options are present, then we will ignore this completely. Passing
6576    that, gcc will consider each multilib_select in turn using the same
6577    rules for matching the options. If a match is found, that subdirectory
6578    will be used.  */
6579
6580 static void
6581 set_multilib_dir ()
6582 {
6583   const char *p;
6584   unsigned int this_path_len;
6585   const char *this_path, *this_arg;
6586   int not_arg;
6587   int ok;
6588
6589   p = multilib_exclusions;
6590   while (*p != '\0')
6591     {
6592       /* Ignore newlines.  */
6593       if (*p == '\n')
6594         {
6595           ++p;
6596           continue;
6597         }
6598
6599       /* Check the arguments.  */
6600       ok = 1;
6601       while (*p != ';')
6602         {
6603           if (*p == '\0')
6604             abort ();
6605
6606           if (! ok)
6607             {
6608               ++p;
6609               continue;
6610             }
6611
6612           this_arg = p;
6613           while (*p != ' ' && *p != ';')
6614             {
6615               if (*p == '\0')
6616                 abort ();
6617               ++p;
6618             }
6619
6620           if (*this_arg != '!')
6621             not_arg = 0;
6622           else
6623             {
6624               not_arg = 1;
6625               ++this_arg;
6626             }
6627
6628           ok = used_arg (this_arg, p - this_arg);
6629           if (not_arg)
6630             ok = ! ok;
6631
6632           if (*p == ' ')
6633             ++p;
6634         }
6635
6636       if (ok)
6637         return;
6638
6639       ++p;
6640     }
6641
6642   p = multilib_select;
6643   while (*p != '\0')
6644     {
6645       /* Ignore newlines.  */
6646       if (*p == '\n')
6647         {
6648           ++p;
6649           continue;
6650         }
6651
6652       /* Get the initial path.  */
6653       this_path = p;
6654       while (*p != ' ')
6655         {
6656           if (*p == '\0')
6657             abort ();
6658           ++p;
6659         }
6660       this_path_len = p - this_path;
6661
6662       /* Check the arguments.  */
6663       ok = 1;
6664       ++p;
6665       while (*p != ';')
6666         {
6667           if (*p == '\0')
6668             abort ();
6669
6670           if (! ok)
6671             {
6672               ++p;
6673               continue;
6674             }
6675
6676           this_arg = p;
6677           while (*p != ' ' && *p != ';')
6678             {
6679               if (*p == '\0')
6680                 abort ();
6681               ++p;
6682             }
6683
6684           if (*this_arg != '!')
6685             not_arg = 0;
6686           else
6687             {
6688               not_arg = 1;
6689               ++this_arg;
6690             }
6691
6692           /* If this is a default argument, we can just ignore it.
6693              This is true even if this_arg begins with '!'.  Beginning
6694              with '!' does not mean that this argument is necessarily
6695              inappropriate for this library: it merely means that
6696              there is a more specific library which uses this
6697              argument.  If this argument is a default, we need not
6698              consider that more specific library.  */
6699           if (! default_arg (this_arg, p - this_arg))
6700             {
6701               ok = used_arg (this_arg, p - this_arg);
6702               if (not_arg)
6703                 ok = ! ok;
6704             }
6705
6706           if (*p == ' ')
6707             ++p;
6708         }
6709
6710       if (ok)
6711         {
6712           if (this_path_len != 1
6713               || this_path[0] != '.')
6714             {
6715               char *new_multilib_dir = xmalloc (this_path_len + 1);
6716               strncpy (new_multilib_dir, this_path, this_path_len);
6717               new_multilib_dir[this_path_len] = '\0';
6718               multilib_dir = new_multilib_dir;
6719             }
6720           break;
6721         }
6722
6723       ++p;
6724     }
6725 }
6726
6727 /* Print out the multiple library subdirectory selection
6728    information.  This prints out a series of lines.  Each line looks
6729    like SUBDIRECTORY;@OPTION@OPTION, with as many options as is
6730    required.  Only the desired options are printed out, the negative
6731    matches.  The options are print without a leading dash.  There are
6732    no spaces to make it easy to use the information in the shell.
6733    Each subdirectory is printed only once.  This assumes the ordering
6734    generated by the genmultilib script. Also, we leave out ones that match
6735    the exclusions.  */
6736
6737 static void
6738 print_multilib_info ()
6739 {
6740   const char *p = multilib_select;
6741   const char *last_path = 0, *this_path;
6742   int skip;
6743   unsigned int last_path_len = 0;
6744
6745   while (*p != '\0')
6746     {
6747       skip = 0;
6748       /* Ignore newlines.  */
6749       if (*p == '\n')
6750         {
6751           ++p;
6752           continue;
6753         }
6754
6755       /* Get the initial path.  */
6756       this_path = p;
6757       while (*p != ' ')
6758         {
6759           if (*p == '\0')
6760             abort ();
6761           ++p;
6762         }
6763
6764       /* Check for matches with the multilib_exclusions. We don't bother
6765          with the '!' in either list. If any of the exclusion rules match
6766          all of its options with the select rule, we skip it.  */
6767       {
6768         const char *e = multilib_exclusions;
6769         const char *this_arg;
6770
6771         while (*e != '\0')
6772           {
6773             int m = 1;
6774             /* Ignore newlines.  */
6775             if (*e == '\n')
6776               {
6777                 ++e;
6778                 continue;
6779               }
6780
6781             /* Check the arguments.  */
6782             while (*e != ';')
6783               {
6784                 const char *q;
6785                 int mp = 0;
6786
6787                 if (*e == '\0')
6788                   abort ();
6789
6790                 if (! m)
6791                   {
6792                     ++e;
6793                     continue;
6794                   }
6795
6796                 this_arg = e;
6797
6798                 while (*e != ' ' && *e != ';')
6799                   {
6800                     if (*e == '\0')
6801                       abort ();
6802                     ++e;
6803                   }
6804
6805                 q = p + 1;
6806                 while (*q != ';')
6807                   {
6808                     const char *arg;
6809                     int len = e - this_arg;
6810
6811                     if (*q == '\0')
6812                       abort ();
6813
6814                     arg = q;
6815
6816                     while (*q != ' ' && *q != ';')
6817                       {
6818                         if (*q == '\0')
6819                           abort ();
6820                         ++q;
6821                       }
6822
6823                     if (! strncmp (arg, this_arg, (len < q - arg) ? q - arg : len) ||
6824                         default_arg (this_arg, e - this_arg))
6825                       {
6826                         mp = 1;
6827                         break;
6828                       }
6829
6830                     if (*q == ' ')
6831                       ++q;
6832                   }
6833
6834                 if (! mp)
6835                   m = 0;
6836
6837                 if (*e == ' ')
6838                   ++e;
6839               }
6840
6841             if (m)
6842               {
6843                 skip = 1;
6844                 break;
6845               }
6846
6847             if (*e != '\0')
6848               ++e;
6849           }
6850       }
6851
6852       if (! skip)
6853         {
6854           /* If this is a duplicate, skip it.  */
6855           skip = (last_path != 0 && (unsigned int) (p - this_path) == last_path_len
6856                   && ! strncmp (last_path, this_path, last_path_len));
6857
6858           last_path = this_path;
6859           last_path_len = p - this_path;
6860         }
6861
6862       /* If this directory requires any default arguments, we can skip
6863          it.  We will already have printed a directory identical to
6864          this one which does not require that default argument.  */
6865       if (! skip)
6866         {
6867           const char *q;
6868
6869           q = p + 1;
6870           while (*q != ';')
6871             {
6872               const char *arg;
6873
6874               if (*q == '\0')
6875                 abort ();
6876
6877               if (*q == '!')
6878                 arg = NULL;
6879               else
6880                 arg = q;
6881
6882               while (*q != ' ' && *q != ';')
6883                 {
6884                   if (*q == '\0')
6885                     abort ();
6886                   ++q;
6887                 }
6888
6889               if (arg != NULL
6890                   && default_arg (arg, q - arg))
6891                 {
6892                   skip = 1;
6893                   break;
6894                 }
6895
6896               if (*q == ' ')
6897                 ++q;
6898             }
6899         }
6900
6901       if (! skip)
6902         {
6903           const char *p1;
6904
6905           for (p1 = last_path; p1 < p; p1++)
6906             putchar (*p1);
6907           putchar (';');
6908         }
6909
6910       ++p;
6911       while (*p != ';')
6912         {
6913           int use_arg;
6914
6915           if (*p == '\0')
6916             abort ();
6917
6918           if (skip)
6919             {
6920               ++p;
6921               continue;
6922             }
6923
6924           use_arg = *p != '!';
6925
6926           if (use_arg)
6927             putchar ('@');
6928
6929           while (*p != ' ' && *p != ';')
6930             {
6931               if (*p == '\0')
6932                 abort ();
6933               if (use_arg)
6934                 putchar (*p);
6935               ++p;
6936             }
6937
6938           if (*p == ' ')
6939             ++p;
6940         }
6941
6942       if (! skip)
6943         {
6944           /* If there are extra options, print them now.  */
6945           if (multilib_extra && *multilib_extra)
6946             {
6947               int print_at = TRUE;
6948               const char *q;
6949
6950               for (q = multilib_extra; *q != '\0'; q++)
6951                 {
6952                   if (*q == ' ')
6953                     print_at = TRUE;
6954                   else
6955                     {
6956                       if (print_at)
6957                         putchar ('@');
6958                       putchar (*q);
6959                       print_at = FALSE;
6960                     }
6961                 }
6962             }
6963
6964           putchar ('\n');
6965         }
6966
6967       ++p;
6968     }
6969 }