OSDN Git Service

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