OSDN Git Service

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