OSDN Git Service

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