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