OSDN Git Service

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