OSDN Git Service

(process_command): Give error for -c with -o and multiple compilations.
[pf3gnuchains/gcc-fork.git] / gcc / gcc.c
1 /* Compiler driver program that can handle many languages.
2    Copyright (C) 1987, 89, 92, 93, 94, 1995 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING.  If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.
20
21 This paragraph is here to try to keep Sun CC from dying.
22 The number of chars here seems crucial!!!!  */
23
24 /* This program is the user interface to the C compiler and possibly to
25 other compilers.  It is used because compilation is a complicated procedure
26 which involves running several programs and passing temporary files between
27 them, forwarding the users switches to those programs selectively,
28 and deleting the temporary files at the end.
29
30 CC recognizes how to compile each input file by suffixes in the file names.
31 Once it knows which kind of compilation to perform, the procedure for
32 compilation is specified by a string called a "spec".  */
33 \f
34 #include <sys/types.h>
35 #include <ctype.h>
36 #include <signal.h>
37 #include <sys/stat.h>
38 #include <errno.h>
39
40 #ifndef _WIN32
41 #include <sys/file.h>   /* May get R_OK, etc. on some systems.  */
42 #else
43 #include <process.h>
44 int __spawnv ();
45 int __spawnvp ();
46 #endif
47
48 #include "config.h"
49 #include "obstack.h"
50 #ifdef __STDC__
51 #include <stdarg.h>
52 #else
53 #include <varargs.h>
54 #endif
55 #include <stdio.h>
56
57 /* Include multi-lib information.  */
58 #include "multilib.h"
59
60 #ifndef R_OK
61 #define R_OK 4
62 #define W_OK 2
63 #define X_OK 1
64 #endif
65
66 #ifndef WIFSIGNALED
67 #define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f)
68 #endif
69 #ifndef WTERMSIG
70 #define WTERMSIG(S) ((S) & 0x7f)
71 #endif
72 #ifndef WIFEXITED
73 #define WIFEXITED(S) (((S) & 0xff) == 0)
74 #endif
75 #ifndef WEXITSTATUS
76 #define WEXITSTATUS(S) (((S) & 0xff00) >> 8)
77 #endif
78
79 /* Add prototype support.  */
80 #ifndef PROTO
81 #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
82 #define PROTO(ARGS) ARGS
83 #else
84 #define PROTO(ARGS) ()
85 #endif
86 #endif
87
88 #ifndef VPROTO
89 #ifdef __STDC__
90 #define PVPROTO(ARGS)           ARGS
91 #define VPROTO(ARGS)            ARGS
92 #define VA_START(va_list,var)   va_start(va_list,var)
93 #else
94 #define PVPROTO(ARGS)           ()
95 #define VPROTO(ARGS)            (va_alist) va_dcl
96 #define VA_START(va_list,var)   va_start(va_list)
97 #endif
98 #endif
99
100 /* Define a generic NULL if one hasn't already been defined.  */
101
102 #ifndef NULL
103 #define NULL 0
104 #endif
105
106 /* Define O_RDONLY if the system hasn't defined it for us. */
107 #ifndef O_RDONLY
108 #define O_RDONLY 0
109 #endif
110
111 #ifndef GENERIC_PTR
112 #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
113 #define GENERIC_PTR void *
114 #else
115 #define GENERIC_PTR char *
116 #endif
117 #endif
118
119 #ifndef NULL_PTR
120 #define NULL_PTR ((GENERIC_PTR)0)
121 #endif
122
123 #ifdef USG
124 #define vfork fork
125 #endif /* USG */
126
127 /* On MSDOS, write temp files in current dir
128    because there's no place else we can expect to use.  */
129 #ifdef __MSDOS__
130 #ifndef P_tmpdir
131 #define P_tmpdir "."
132 #endif
133 #endif
134
135 /* Test if something is a normal file.  */
136 #ifndef S_ISREG
137 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
138 #endif
139
140 /* Test if something is a directory.  */
141 #ifndef S_ISDIR
142 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
143 #endif
144
145 /* By default there is no special suffix for executables.  */
146 #ifndef EXECUTABLE_SUFFIX
147 #define EXECUTABLE_SUFFIX ""
148 #endif
149
150 /* By default, the suffix for object files is ".o". */
151 #ifdef OBJECT_SUFFIX
152 #define HAVE_OBJECT_SUFFIX
153 #else
154 #define OBJECT_SUFFIX ".o"
155 #endif
156
157 /* By default, colon separates directories in a path.  */
158 #ifndef PATH_SEPARATOR
159 #define PATH_SEPARATOR ':'
160 #endif
161
162 #ifndef DIR_SEPARATOR
163 #define DIR_SEPARATOR '/'
164 #endif
165
166 static char dir_separator_str[] = {DIR_SEPARATOR, 0};
167
168 #define obstack_chunk_alloc xmalloc
169 #define obstack_chunk_free free
170
171 extern void free ();
172 extern char *getenv ();
173
174 #ifndef errno
175 extern int errno;
176 #endif
177
178 #ifndef HAVE_STRERROR
179 extern int sys_nerr;
180 #if defined(bsd4_4)
181 extern const char *const sys_errlist[];
182 #else
183 extern char *sys_errlist[];
184 #endif
185 #else
186 extern char *strerror();
187 #endif
188
189 extern int execv (), execvp ();
190
191 /* If a stage of compilation returns an exit status >= 1,
192    compilation of that file ceases.  */
193
194 #define MIN_FATAL_STATUS 1
195
196 /* Flag saying to print the directories gcc will search through looking for
197    programs, libraries, etc.  */
198
199 static int print_search_dirs;
200
201 /* Flag saying to print the full filename of this file
202    as found through our usual search mechanism.  */
203
204 static char *print_file_name = NULL;
205
206 /* As print_file_name, but search for executable file. */
207
208 static char *print_prog_name = NULL;
209
210 /* Flag saying to print the relative path we'd use to
211    find libgcc.a given the current compiler flags.  */
212
213 static int print_multi_directory;
214
215 /* Flag saying to print the list of subdirectories and
216    compiler flags used to select them in a standard form.  */
217
218 static int print_multi_lib;
219
220 /* Flag indicating whether we should print the command and arguments */
221
222 static int verbose_flag;
223
224 /* Nonzero means write "temp" files in source directory
225    and use the source file's name in them, and don't delete them.  */
226
227 static int save_temps_flag;
228
229 /* The compiler version.  */
230
231 static char *compiler_version;
232
233 /* The target version specified with -V */
234
235 static char *spec_version = DEFAULT_TARGET_VERSION;
236
237 /* The target machine specified with -b.  */
238
239 static char *spec_machine = DEFAULT_TARGET_MACHINE;
240
241 /* Nonzero if cross-compiling.
242    When -b is used, the value comes from the `specs' file.  */
243
244 #ifdef CROSS_COMPILE
245 static int cross_compile = 1;
246 #else
247 static int cross_compile = 0;
248 #endif
249
250 /* The number of errors that have occurred; the link phase will not be
251    run if this is non-zero.  */
252 static int error_count = 0;
253
254 /* This is the obstack which we use to allocate many strings.  */
255
256 static struct obstack obstack;
257
258 /* This is the obstack to build an environment variable to pass to
259    collect2 that describes all of the relevant switches of what to
260    pass the compiler in building the list of pointers to constructors
261    and destructors.  */
262
263 static struct obstack collect_obstack;
264
265 extern char *version_string;
266
267 /* Forward declaration for prototypes.  */
268 struct path_prefix;
269
270 static void set_spec            PROTO((char *, char *));
271 static struct compiler *lookup_compiler PROTO((char *, int, char *));
272 static char *build_search_list  PROTO((struct path_prefix *, char *, int));
273 static void putenv_from_prefixes PROTO((struct path_prefix *, char *));
274 static char *find_a_file        PROTO((struct path_prefix *, char *, int));
275 static void add_prefix          PROTO((struct path_prefix *, char *, int, int, int *));
276 static char *skip_whitespace    PROTO((char *));
277 static void record_temp_file    PROTO((char *, int, int));
278 static void delete_if_ordinary  PROTO((char *));
279 static void delete_temp_files   PROTO((void));
280 static void delete_failure_queue PROTO((void));
281 static void clear_failure_queue PROTO((void));
282 static char *choose_temp_base_try PROTO((char *, char *));
283 static void choose_temp_base    PROTO((void));
284 static int check_live_switch    PROTO((int, int));
285 static char *handle_braces      PROTO((char *));
286 static char *save_string        PROTO((char *, int));
287 static char *concat             PROTO((char *, char *));
288 static char *concat3            PROTO((char *, char *, char *));
289 static char *concat4            PROTO((char *, char *, char *, char *));
290 static char *concat6            PROTO((char *, char *, char *, char *, char *, \
291                                        char *));
292 static int do_spec              PROTO((char *));
293 static int do_spec_1            PROTO((char *, int, char *));
294 static char *find_file          PROTO((char *));
295 static int is_directory         PROTO((char *, char *, int));
296 static void validate_switches   PROTO((char *));
297 static void validate_all_switches PROTO((void));
298 static void give_switch         PROTO((int, int));
299 static int used_arg             PROTO((char *, int));
300 static int default_arg          PROTO((char *, int));
301 static void set_multilib_dir    PROTO((void));
302 static void print_multilib_info PROTO((void));
303 static void pfatal_with_name    PROTO((char *));
304 static void perror_with_name    PROTO((char *));
305 static void perror_exec         PROTO((char *));
306 #ifdef HAVE_VPRINTF
307 static void fatal               PVPROTO((char *, ...));
308 static void error               PVPROTO((char *, ...));
309 #else
310 /* We must not provide any prototype here, even if ANSI C.  */
311 static void fatal               PROTO(());
312 static void error               PROTO(());
313 #endif
314
315 void fancy_abort ();
316 char *xmalloc ();
317 char *xrealloc ();
318 \f
319 /* Specs are strings containing lines, each of which (if not blank)
320 is made up of a program name, and arguments separated by spaces.
321 The program name must be exact and start from root, since no path
322 is searched and it is unreliable to depend on the current working directory.
323 Redirection of input or output is not supported; the subprograms must
324 accept filenames saying what files to read and write.
325
326 In addition, the specs can contain %-sequences to substitute variable text
327 or for conditional text.  Here is a table of all defined %-sequences.
328 Note that spaces are not generated automatically around the results of
329 expanding these sequences; therefore, you can concatenate them together
330 or with constant text in a single argument.
331
332  %%     substitute one % into the program name or argument.
333  %i     substitute the name of the input file being processed.
334  %b     substitute the basename of the input file being processed.
335         This is the substring up to (and not including) the last period
336         and not including the directory.
337  %g     substitute the temporary-file-name-base.  This is a string chosen
338         once per compilation.  Different temporary file names are made by
339         concatenation of constant strings on the end, as in `%g.s'.
340         %g also has the same effect of %d.
341  %u     like %g, but make the temporary file name unique.
342  %U     returns the last file name generated with %u.
343  %d     marks the argument containing or following the %d as a
344         temporary file name, so that that file will be deleted if CC exits
345         successfully.  Unlike %g, this contributes no text to the argument.
346  %w     marks the argument containing or following the %w as the
347         "output file" of this compilation.  This puts the argument
348         into the sequence of arguments that %o will substitute later.
349  %W{...}
350         like %{...} but mark last argument supplied within
351         as a file to be deleted on failure.
352  %o     substitutes the names of all the output files, with spaces
353         automatically placed around them.  You should write spaces
354         around the %o as well or the results are undefined.
355         %o is for use in the specs for running the linker.
356         Input files whose names have no recognized suffix are not compiled
357         at all, but they are included among the output files, so they will
358         be linked.
359  %O     substitutes the suffix for object files.
360  %p     substitutes the standard macro predefinitions for the
361         current target machine.  Use this when running cpp.
362  %P     like %p, but puts `__' before and after the name of each macro.
363         (Except macros that already have __.)
364         This is for ANSI C.
365  %I     Substitute a -iprefix option made from GCC_EXEC_PREFIX.
366  %s     current argument is the name of a library or startup file of some sort.
367         Search for that file in a standard list of directories
368         and substitute the full name found.
369  %eSTR  Print STR as an error message.  STR is terminated by a newline.
370         Use this when inconsistent options are detected.
371  %x{OPTION}     Accumulate an option for %X.
372  %X     Output the accumulated linker options specified by compilations.
373  %Y     Output the accumulated assembler options specified by compilations.
374  %Z     Output the accumulated preprocessor options specified by compilations.
375  %v1    Substitute the major version number of GCC.
376         (For version 2.5.n, this is 2.)
377  %v2    Substitute the minor version number of GCC.
378         (For version 2.5.n, this is 5.)
379  %a     process ASM_SPEC as a spec.
380         This allows config.h to specify part of the spec for running as.
381  %A     process ASM_FINAL_SPEC as a spec.  A capital A is actually
382         used here.  This can be used to run a post-processor after the
383         assembler has done it's job.
384  %D     Dump out a -L option for each directory in startfile_prefixes.
385         If multilib_dir is set, extra entries are generated with it affixed.
386  %l     process LINK_SPEC as a spec.
387  %L     process LIB_SPEC as a spec.
388  %G     process LIBGCC_SPEC as a spec.
389  %S     process STARTFILE_SPEC as a spec.  A capital S is actually used here.
390  %E     process ENDFILE_SPEC as a spec.  A capital E is actually used here.
391  %c     process SIGNED_CHAR_SPEC as a spec.
392  %C     process CPP_SPEC as a spec.  A capital C is actually used here.
393  %1     process CC1_SPEC as a spec.
394  %2     process CC1PLUS_SPEC as a spec.
395  %|     output "-" if the input for the current command is coming from a pipe.
396  %*     substitute the variable part of a matched option.  (See below.)
397         Note that each comma in the substituted string is replaced by
398         a single space.
399  %{S}   substitutes the -S switch, if that switch was given to CC.
400         If that switch was not specified, this substitutes nothing.
401         Here S is a metasyntactic variable.
402  %{S*}  substitutes all the switches specified to CC whose names start
403         with -S.  This is used for -o, -D, -I, etc; switches that take
404         arguments.  CC considers `-o foo' as being one switch whose
405         name starts with `o'.  %{o*} would substitute this text,
406         including the space; thus, two arguments would be generated.
407  %{S*:X} substitutes X if one or more switches whose names start with -S are
408         specified to CC.  Note that the tail part of the -S option
409         (i.e. the part matched by the `*') will be substituted for each
410         occurrence of %* within X.
411  %{S:X} substitutes X, but only if the -S switch was given to CC.
412  %{!S:X} substitutes X, but only if the -S switch was NOT given to CC.
413  %{|S:X} like %{S:X}, but if no S switch, substitute `-'.
414  %{|!S:X} like %{!S:X}, but if there is an S switch, substitute `-'.
415  %{.S:X} substitutes X, but only if processing a file with suffix S.
416  %{!.S:X} substitutes X, but only if NOT processing a file with suffix S.
417  %(Spec) processes a specification defined in a specs file as *Spec:
418  %[Spec] as above, but put __ around -D arguments
419
420 The conditional text X in a %{S:X} or %{!S:X} construct may contain
421 other nested % constructs or spaces, or even newlines.  They are
422 processed as usual, as described above.
423
424 The -O, -f, -m, and -W switches are handled specifically in these
425 constructs.  If another value of -O or the negated form of a -f, -m, or
426 -W switch is found later in the command line, the earlier switch
427 value is ignored, except with {S*} where S is just one letter; this
428 passes all matching options.
429
430 The character | is used to indicate that a command should be piped to
431 the following command, but only if -pipe is specified.
432
433 Note that it is built into CC which switches take arguments and which
434 do not.  You might think it would be useful to generalize this to
435 allow each compiler's spec to say which switches take arguments.  But
436 this cannot be done in a consistent fashion.  CC cannot even decide
437 which input files have been specified without knowing which switches
438 take arguments, and it must know which input files to compile in order
439 to tell which compilers to run.
440
441 CC also knows implicitly that arguments starting in `-l' are to be
442 treated as compiler output files, and passed to the linker in their
443 proper position among the other output files.  */
444 \f
445 /* Define the macros used for specs %a, %l, %L, %S, %c, %C, %1.  */
446
447 /* config.h can define ASM_SPEC to provide extra args to the assembler
448    or extra switch-translations.  */
449 #ifndef ASM_SPEC
450 #define ASM_SPEC ""
451 #endif
452
453 /* config.h can define ASM_FINAL_SPEC to run a post processor after
454    the assembler has run.  */
455 #ifndef ASM_FINAL_SPEC
456 #define ASM_FINAL_SPEC ""
457 #endif
458
459 /* config.h can define CPP_SPEC to provide extra args to the C preprocessor
460    or extra switch-translations.  */
461 #ifndef CPP_SPEC
462 #define CPP_SPEC ""
463 #endif
464
465 /* config.h can define CC1_SPEC to provide extra args to cc1 and cc1plus
466    or extra switch-translations.  */
467 #ifndef CC1_SPEC
468 #define CC1_SPEC ""
469 #endif
470
471 /* config.h can define CC1PLUS_SPEC to provide extra args to cc1plus
472    or extra switch-translations.  */
473 #ifndef CC1PLUS_SPEC
474 #define CC1PLUS_SPEC ""
475 #endif
476
477 /* config.h can define LINK_SPEC to provide extra args to the linker
478    or extra switch-translations.  */
479 #ifndef LINK_SPEC
480 #define LINK_SPEC ""
481 #endif
482
483 /* config.h can define LIB_SPEC to override the default libraries.  */
484 #ifndef LIB_SPEC
485 #define LIB_SPEC "%{!shared:%{g*:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}}"
486 #endif
487
488 /* config.h can define LIBGCC_SPEC to override how and when libgcc.a is
489    included.  */
490 #ifndef LIBGCC_SPEC
491 #if defined(LINK_LIBGCC_SPECIAL) || defined(LINK_LIBGCC_SPECIAL_1)
492 /* Have gcc do the search for libgcc.a.  */
493 #define LIBGCC_SPEC "libgcc.a%s"
494 #else
495 #define LIBGCC_SPEC "-lgcc"
496 #endif
497 #endif
498
499 /* config.h can define STARTFILE_SPEC to override the default crt0 files.  */
500 #ifndef STARTFILE_SPEC
501 #define STARTFILE_SPEC  \
502   "%{!shared:%{pg:gcrt0%O%s}%{!pg:%{p:mcrt0%O%s}%{!p:crt0%O%s}}}"
503 #endif
504
505 /* config.h can define SWITCHES_NEED_SPACES to control passing -o and -L.
506    Make the string nonempty to require spaces there.  */
507 #ifndef SWITCHES_NEED_SPACES
508 #define SWITCHES_NEED_SPACES ""
509 #endif
510
511 /* config.h can define ENDFILE_SPEC to override the default crtn files.  */
512 #ifndef ENDFILE_SPEC
513 #define ENDFILE_SPEC ""
514 #endif
515
516 /* This spec is used for telling cpp whether char is signed or not.  */
517 #ifndef SIGNED_CHAR_SPEC
518 /* Use #if rather than ?:
519    because MIPS C compiler rejects like ?: in initializers.  */
520 #if DEFAULT_SIGNED_CHAR
521 #define SIGNED_CHAR_SPEC "%{funsigned-char:-D__CHAR_UNSIGNED__}"
522 #else
523 #define SIGNED_CHAR_SPEC "%{!fsigned-char:-D__CHAR_UNSIGNED__}"
524 #endif
525 #endif
526
527 /* MULTILIB_SELECT comes from multilib.h.  It gives a
528    string interpreted by set_multilib_dir to select a library
529    subdirectory based on the compiler options.  */
530 #ifndef MULTILIB_SELECT
531 #define MULTILIB_SELECT ". ;"
532 #endif
533
534 static char *cpp_spec = CPP_SPEC;
535 static char *cpp_predefines = CPP_PREDEFINES;
536 static char *cc1_spec = CC1_SPEC;
537 static char *cc1plus_spec = CC1PLUS_SPEC;
538 static char *signed_char_spec = SIGNED_CHAR_SPEC;
539 static char *asm_spec = ASM_SPEC;
540 static char *asm_final_spec = ASM_FINAL_SPEC;
541 static char *link_spec = LINK_SPEC;
542 static char *lib_spec = LIB_SPEC;
543 static char *libgcc_spec = LIBGCC_SPEC;
544 static char *endfile_spec = ENDFILE_SPEC;
545 static char *startfile_spec = STARTFILE_SPEC;
546 static char *switches_need_spaces = SWITCHES_NEED_SPACES;
547 static char *multilib_select = MULTILIB_SELECT;
548
549 /* This defines which switch letters take arguments.  */
550
551 #ifndef SWITCH_TAKES_ARG
552 #define SWITCH_TAKES_ARG(CHAR)      \
553   ((CHAR) == 'D' || (CHAR) == 'U' || (CHAR) == 'o' \
554    || (CHAR) == 'e' || (CHAR) == 'T' || (CHAR) == 'u' \
555    || (CHAR) == 'I' || (CHAR) == 'm' || (CHAR) == 'x' \
556    || (CHAR) == 'L' || (CHAR) == 'A')
557 #endif
558
559 /* This defines which multi-letter switches take arguments.  */
560
561 #define DEFAULT_WORD_SWITCH_TAKES_ARG(STR)              \
562  (!strcmp (STR, "Tdata") || !strcmp (STR, "Ttext")      \
563   || !strcmp (STR, "Tbss") || !strcmp (STR, "include")  \
564   || !strcmp (STR, "imacros") || !strcmp (STR, "aux-info") \
565   || !strcmp (STR, "idirafter") || !strcmp (STR, "iprefix") \
566   || !strcmp (STR, "iwithprefix") || !strcmp (STR, "iwithprefixbefore") \
567   || !strcmp (STR, "isystem"))
568
569 #ifndef WORD_SWITCH_TAKES_ARG
570 #define WORD_SWITCH_TAKES_ARG(STR) DEFAULT_WORD_SWITCH_TAKES_ARG (STR)
571 #endif
572 \f
573 /* Record the mapping from file suffixes for compilation specs.  */
574
575 struct compiler
576 {
577   char *suffix;                 /* Use this compiler for input files
578                                    whose names end in this suffix.  */
579
580   char *spec[4];                /* To use this compiler, concatenate these
581                                    specs and pass to do_spec.  */
582 };
583
584 /* Pointer to a vector of `struct compiler' that gives the spec for
585    compiling a file, based on its suffix.
586    A file that does not end in any of these suffixes will be passed
587    unchanged to the loader and nothing else will be done to it.
588
589    An entry containing two 0s is used to terminate the vector.
590
591    If multiple entries match a file, the last matching one is used.  */
592
593 static struct compiler *compilers;
594
595 /* Number of entries in `compilers', not counting the null terminator.  */
596
597 static int n_compilers;
598
599 /* The default list of file name suffixes and their compilation specs.  */
600
601 static struct compiler default_compilers[] =
602 {
603   {".c", "@c"},
604   {"@c",
605    "cpp -lang-c%{ansi:89} %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\
606         %{C:%{!E:%eGNU C does not support -C without using -E}}\
607         %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG}\
608         -undef -D__GNUC__=%v1 -D__GNUC_MINOR__=%v2\
609         %{ansi:-trigraphs -$ -D__STRICT_ANSI__}\
610         %{!undef:%{!ansi:%p} %P} %{trigraphs} \
611         %c %{O*:%{!O0:-D__OPTIMIZE__}} %{traditional} %{ftraditional:-traditional}\
612         %{traditional-cpp:-traditional}\
613         %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
614         %i %{!M:%{!MM:%{!E:%{!pipe:%g.i}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n",
615    "%{!M:%{!MM:%{!E:cc1 %{!pipe:%g.i} %1 \
616                    %{!Q:-quiet} -dumpbase %b.c %{d*} %{m*} %{a}\
617                    %{g*} %{O*} %{W*} %{w} %{pedantic*} %{ansi} \
618                    %{traditional} %{v:-version} %{pg:-p} %{p} %{f*}\
619                    %{aux-info*}\
620                    %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
621                    %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
622               %{!S:as %a %Y\
623                       %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\
624                       %{!pipe:%g.s} %A\n }}}}"},
625   {"-",
626    "%{E:cpp -lang-c%{ansi:89} %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\
627         %{C:%{!E:%eGNU C does not support -C without using -E}}\
628         %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG}\
629         -undef -D__GNUC__=%v1 -D__GNUC_MINOR__=%v2\
630         %{ansi:-trigraphs -$ -D__STRICT_ANSI__}\
631         %{!undef:%{!ansi:%p} %P} %{trigraphs}\
632         %c %{O*:%{!O0:-D__OPTIMIZE__}} %{traditional} %{ftraditional:-traditional}\
633         %{traditional-cpp:-traditional}\
634         %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
635         %i %W{o*}}\
636     %{!E:%e-E required when input is from standard input}"},
637   {".m", "@objective-c"},
638   {"@objective-c",
639    "cpp -lang-objc %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\
640         %{C:%{!E:%eGNU C does not support -C without using -E}}\
641         %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG}\
642         -undef -D__OBJC__ -D__GNUC__=%v1 -D__GNUC_MINOR__=%v2\
643          %{ansi:-trigraphs -$ -D__STRICT_ANSI__}\
644         %{!undef:%{!ansi:%p} %P} %{trigraphs}\
645         %c %{O*:%{!O0:-D__OPTIMIZE__}} %{traditional} %{ftraditional:-traditional}\
646         %{traditional-cpp:-traditional}\
647         %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
648         %i %{!M:%{!MM:%{!E:%{!pipe:%g.i}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n",
649    "%{!M:%{!MM:%{!E:cc1obj %{!pipe:%g.i} %1 \
650                    %{!Q:-quiet} -dumpbase %b.m %{d*} %{m*} %{a}\
651                    %{g*} %{O*} %{W*} %{w} %{pedantic*} %{ansi} \
652                    %{traditional} %{v:-version} %{pg:-p} %{p} %{f*} \
653                    -lang-objc %{gen-decls} \
654                    %{aux-info*}\
655                    %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
656                    %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
657               %{!S:as %a %Y\
658                       %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\
659                       %{!pipe:%g.s} %A\n }}}}"},
660   {".h", "@c-header"},
661   {"@c-header",
662    "%{!E:%eCompilation of header file requested} \
663     cpp %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\
664         %{C:%{!E:%eGNU C does not support -C without using -E}}\
665          %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG}\
666         -undef -D__GNUC__=%v1 -D__GNUC_MINOR__=%v2\
667          %{ansi:-trigraphs -$ -D__STRICT_ANSI__}\
668         %{!undef:%{!ansi:%p} %P} %{trigraphs}\
669         %c %{O*:%{!O0:-D__OPTIMIZE__}} %{traditional} %{ftraditional:-traditional}\
670         %{traditional-cpp:-traditional}\
671         %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
672         %i %W{o*}"},
673   {".i", "@cpp-output"},
674   {"@cpp-output",
675    "%{!M:%{!MM:%{!E:cc1 %i %1 %{!Q:-quiet} %{d*} %{m*} %{a}\
676                         %{g*} %{O*} %{W*} %{w} %{pedantic*} %{ansi}\
677                         %{traditional} %{v:-version} %{pg:-p} %{p} %{f*}\
678                         %{aux-info*}\
679                         %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
680                         %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
681                      %{!S:as %a %Y\
682                              %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\
683                              %{!pipe:%g.s} %A\n }}}}"},
684   {".s", "@assembler"},
685   {"@assembler",
686    "%{!M:%{!MM:%{!E:%{!S:as %a %Y\
687                             %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\
688                             %i %A\n }}}}"},
689   {".S", "@assembler-with-cpp"},
690   {"@assembler-with-cpp",
691    "cpp -lang-asm %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\
692         %{C:%{!E:%eGNU C does not support -C without using -E}}\
693         %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG} %{trigraphs}\
694         -undef -$ %{!undef:%p %P} -D__ASSEMBLER__ \
695         %c %{O*:%{!O0:-D__OPTIMIZE__}} %{traditional} %{ftraditional:-traditional}\
696         %{traditional-cpp:-traditional}\
697         %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
698         %i %{!M:%{!MM:%{!E:%{!pipe:%g.s}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n",
699    "%{!M:%{!MM:%{!E:%{!S:as %a %Y\
700                     %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\
701                     %{!pipe:%g.s} %A\n }}}}"},
702 #include "specs.h"
703   /* Mark end of table */
704   {0, 0}
705 };
706
707 /* Number of elements in default_compilers, not counting the terminator.  */
708
709 static int n_default_compilers
710   = (sizeof default_compilers / sizeof (struct compiler)) - 1;
711
712 /* Here is the spec for running the linker, after compiling all files.  */
713
714 /* -u* was put back because both BSD and SysV seem to support it.  */
715 /* %{static:} simply prevents an error message if the target machine
716    doesn't handle -static.  */
717 /* We want %{T*} after %{L*} and %D so that it can be used to specify linker
718    scripts which exist in user specified directories, or in standard
719    directories.  */
720 #ifdef LINK_LIBGCC_SPECIAL
721 /* Don't generate -L options.  */
722 static char *link_command_spec = "\
723 %{!fsyntax-only: \
724  %{!c:%{!M:%{!MM:%{!E:%{!S:ld %l %X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} \
725                         %{r} %{s} %{t} %{u*} %{x} %{z} %{Z}\
726                         %{!A:%{!nostdlib:%{!nostartfiles:%S}}}\
727                         %{static:} %{L*} %{T*} %o\
728                         %{!nostdlib:%{!nodefaultlibs:%G %L %G}}\
729                         %{!A:%{!nostdlib:%{!nostartfiles:%E}}}\n }}}}}}";
730 #else
731 /* Use -L.  */
732 static char *link_command_spec = "\
733 %{!fsyntax-only: \
734  %{!c:%{!M:%{!MM:%{!E:%{!S:ld %l %X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} \
735                         %{r} %{s} %{t} %{u*} %{x} %{z} %{Z}\
736                         %{!A:%{!nostdlib:%{!nostartfiles:%S}}}\
737                         %{static:} %{L*} %D %{T*} %o\
738                         %{!nostdlib:%{!nodefaultlibs:%G %L %G}}\
739                         %{!A:%{!nostdlib:%{!nostartfiles:%E}}}\n }}}}}}";
740 #endif
741
742 /* A vector of options to give to the linker.
743    These options are accumulated by %x,
744    and substituted into the linker command with %X.  */
745 static int n_linker_options;
746 static char **linker_options;
747
748 /* A vector of options to give to the assembler.
749    These options are accumulated by -Wa,
750    and substituted into the assembler command with %Y.  */
751 static int n_assembler_options;
752 static char **assembler_options;
753
754 /* A vector of options to give to the preprocessor.
755    These options are accumulated by -Wp,
756    and substituted into the preprocessor command with %Z.  */
757 static int n_preprocessor_options;
758 static char **preprocessor_options;
759 \f
760 /* Define how to map long options into short ones.  */
761
762 /* This structure describes one mapping.  */
763 struct option_map
764 {
765   /* The long option's name.  */
766   char *name;
767   /* The equivalent short option.  */
768   char *equivalent;
769   /* Argument info.  A string of flag chars; NULL equals no options.
770      a => argument required.
771      o => argument optional.
772      j => join argument to equivalent, making one word.
773      * => require other text after NAME as an argument.  */
774   char *arg_info;
775 };
776
777 /* This is the table of mappings.  Mappings are tried sequentially
778    for each option encountered; the first one that matches, wins.  */
779
780 struct option_map option_map[] =
781  {
782    {"--all-warnings", "-Wall", 0},
783    {"--ansi", "-ansi", 0},
784    {"--assemble", "-S", 0},
785    {"--assert", "-A", "a"},
786    {"--comments", "-C", 0},
787    {"--compile", "-c", 0},
788    {"--debug", "-g", "oj"},
789    {"--define-macro", "-D", "a"},
790    {"--dependencies", "-M", 0},
791    {"--dump", "-d", "a"},
792    {"--dumpbase", "-dumpbase", "a"},
793    {"--entry", "-e", 0},
794    {"--extra-warnings", "-W", 0},
795    {"--for-assembler", "-Wa", "a"},
796    {"--for-linker", "-Xlinker", "a"},
797    {"--force-link", "-u", "a"},
798    {"--imacros", "-imacros", "a"},
799    {"--include", "-include", "a"},
800    {"--include-barrier", "-I-", 0},
801    {"--include-directory", "-I", "a"},
802    {"--include-directory-after", "-idirafter", "a"},
803    {"--include-prefix", "-iprefix", "a"},
804    {"--include-with-prefix", "-iwithprefix", "a"},
805    {"--include-with-prefix-before", "-iwithprefixbefore", "a"},
806    {"--include-with-prefix-after", "-iwithprefix", "a"},
807    {"--language", "-x", "a"},
808    {"--library-directory", "-L", "a"},
809    {"--machine", "-m", "aj"},
810    {"--machine-", "-m", "*j"},
811    {"--no-line-commands", "-P", 0},
812    {"--no-precompiled-includes", "-noprecomp", 0},
813    {"--no-standard-includes", "-nostdinc", 0},
814    {"--no-standard-libraries", "-nostdlib", 0},
815    {"--no-warnings", "-w", 0},
816    {"--optimize", "-O", "oj"},
817    {"--output", "-o", "a"},
818    {"--pedantic", "-pedantic", 0},
819    {"--pedantic-errors", "-pedantic-errors", 0},
820    {"--pipe", "-pipe", 0},
821    {"--prefix", "-B", "a"},
822    {"--preprocess", "-E", 0},
823    {"--print-search-dirs", "-print-search-dirs", 0},
824    {"--print-file-name", "-print-file-name=", "aj"},
825    {"--print-libgcc-file-name", "-print-libgcc-file-name", 0},
826    {"--print-missing-file-dependencies", "-MG", 0},
827    {"--print-multi-lib", "-print-multi-lib", 0},
828    {"--print-multi-directory", "-print-multi-directory", 0},
829    {"--print-prog-name", "-print-prog-name=", "aj"},
830    {"--profile", "-p", 0},
831    {"--profile-blocks", "-a", 0},
832    {"--quiet", "-q", 0},
833    {"--save-temps", "-save-temps", 0},
834    {"--shared", "-shared", 0},
835    {"--silent", "-q", 0},
836    {"--static", "-static", 0},
837    {"--symbolic", "-symbolic", 0},
838    {"--target", "-b", "a"},
839    {"--trace-includes", "-H", 0},
840    {"--traditional", "-traditional", 0},
841    {"--traditional-cpp", "-traditional-cpp", 0},
842    {"--trigraphs", "-trigraphs", 0},
843    {"--undefine-macro", "-U", "a"},
844    {"--use-version", "-V", "a"},
845    {"--user-dependencies", "-MM", 0},
846    {"--verbose", "-v", 0},
847    {"--version", "-dumpversion", 0},
848    {"--warn-", "-W", "*j"},
849    {"--write-dependencies", "-MD", 0},
850    {"--write-user-dependencies", "-MMD", 0},
851    {"--", "-f", "*j"}
852  };
853 \f
854 /* Translate the options described by *ARGCP and *ARGVP.
855    Make a new vector and store it back in *ARGVP,
856    and store its length in *ARGVC.  */
857
858 static void
859 translate_options (argcp, argvp)
860      int *argcp;
861      char ***argvp;
862 {
863   int i, j, k;
864   int argc = *argcp;
865   char **argv = *argvp;
866   char **newv = (char **) xmalloc ((argc + 2) * 2 * sizeof (char *));
867   int newindex = 0;
868
869   i = 0;
870   newv[newindex++] = argv[i++];
871
872   while (i < argc)
873     {
874       /* Translate -- options.  */
875       if (argv[i][0] == '-' && argv[i][1] == '-')
876         {
877           /* Find a mapping that applies to this option.  */
878           for (j = 0; j < sizeof (option_map) / sizeof (option_map[0]); j++)
879             {
880               int optlen = strlen (option_map[j].name);
881               int arglen = strlen (argv[i]);
882               int complen = arglen > optlen ? optlen : arglen;
883               char *arginfo = option_map[j].arg_info;
884
885               if (arginfo == 0)
886                 arginfo = "";
887
888               if (!strncmp (argv[i], option_map[j].name, complen))
889                 {
890                   char *arg = 0;
891
892                   if (arglen < optlen)
893                     {
894                       for (k = j + 1;
895                            k < sizeof (option_map) / sizeof (option_map[0]);
896                            k++)
897                         if (strlen (option_map[k].name) >= arglen
898                             && !strncmp (argv[i], option_map[k].name, arglen))
899                           {
900                             error ("Ambiguous abbreviation %s", argv[i]);
901                             break;
902                           }
903
904                       if (k != sizeof (option_map) / sizeof (option_map[0]))
905                         break;
906                     }
907
908                   if (arglen > optlen)
909                     {
910                       /* If the option has an argument, accept that.  */
911                       if (argv[i][optlen] == '=')
912                         arg = argv[i] + optlen + 1;
913
914                       /* If this mapping requires extra text at end of name,
915                          accept that as "argument".  */
916                       else if (index (arginfo, '*') != 0)
917                         arg = argv[i] + optlen;
918
919                       /* Otherwise, extra text at end means mismatch.
920                          Try other mappings.  */
921                       else
922                         continue;
923                     }
924
925                   else if (index (arginfo, '*') != 0)
926                     {
927                       error ("Incomplete `%s' option", option_map[j].name);
928                       break;
929                     }
930
931                   /* Handle arguments.  */
932                   if (index (arginfo, 'a') != 0)
933                     {
934                       if (arg == 0)
935                         {
936                           if (i + 1 == argc)
937                             {
938                               error ("Missing argument to `%s' option",
939                                      option_map[j].name);
940                               break;
941                             }
942
943                           arg = argv[++i];
944                         }
945                     }
946                   else if (index (arginfo, '*') != 0)
947                     ;
948                   else if (index (arginfo, 'o') == 0)
949                     {
950                       if (arg != 0)
951                         error ("Extraneous argument to `%s' option",
952                                option_map[j].name);
953                       arg = 0;
954                     }
955
956                   /* Store the translation as one argv elt or as two.  */
957                   if (arg != 0 && index (arginfo, 'j') != 0)
958                     newv[newindex++] = concat (option_map[j].equivalent, arg);
959                   else if (arg != 0)
960                     {
961                       newv[newindex++] = option_map[j].equivalent;
962                       newv[newindex++] = arg;
963                     }
964                   else
965                     newv[newindex++] = option_map[j].equivalent;
966
967                   break;
968                 }
969             }
970           i++;
971         }
972
973       /* Handle old-fashioned options--just copy them through,
974          with their arguments.  */
975       else if (argv[i][0] == '-')
976         {
977           char *p = argv[i] + 1;
978           int c = *p;
979           int nskip = 1;
980
981           if (SWITCH_TAKES_ARG (c) > (p[1] != 0))
982             nskip += SWITCH_TAKES_ARG (c) - (p[1] != 0);
983           else if (WORD_SWITCH_TAKES_ARG (p))
984             nskip += WORD_SWITCH_TAKES_ARG (p);
985           else if ((c == 'B' || c == 'b' || c == 'V' || c == 'x')
986                    && p[1] == 0)
987             nskip += 1;
988           else if (! strcmp (p, "Xlinker"))
989             nskip += 1;
990
991           /* Watch out for an option at the end of the command line that
992              is missing arguments, and avoid skipping past the end of the
993              command line.  */
994           if (nskip + i > argc)
995             nskip = argc - i;
996
997           while (nskip > 0)
998             {
999               newv[newindex++] = argv[i++];
1000               nskip--;
1001             }
1002         }
1003       else
1004         /* Ordinary operands, or +e options.  */
1005         newv[newindex++] = argv[i++];
1006     }
1007
1008   newv[newindex] = 0;
1009
1010   *argvp = newv;
1011   *argcp = newindex;
1012 }
1013 \f
1014 char *
1015 my_strerror(e)
1016      int e;
1017 {
1018
1019 #ifdef HAVE_STRERROR
1020   return strerror(e);
1021
1022 #else
1023
1024   static char buffer[30];
1025   if (!e)
1026     return "cannot access";
1027
1028   if (e > 0 && e < sys_nerr)
1029     return sys_errlist[e];
1030
1031   sprintf (buffer, "Unknown error %d", e);
1032   return buffer;
1033 #endif
1034 }
1035 \f
1036 /* Read compilation specs from a file named FILENAME,
1037    replacing the default ones.
1038
1039    A suffix which starts with `*' is a definition for
1040    one of the machine-specific sub-specs.  The "suffix" should be
1041    *asm, *cc1, *cpp, *link, *startfile, *signed_char, etc.
1042    The corresponding spec is stored in asm_spec, etc.,
1043    rather than in the `compilers' vector.
1044
1045    Anything invalid in the file is a fatal error.  */
1046
1047 static void
1048 read_specs (filename)
1049      char *filename;
1050 {
1051   int desc;
1052   int readlen;
1053   struct stat statbuf;
1054   char *buffer;
1055   register char *p;
1056
1057   if (verbose_flag)
1058     fprintf (stderr, "Reading specs from %s\n", filename);
1059
1060   /* Open and stat the file.  */
1061   desc = open (filename, O_RDONLY, 0);
1062   if (desc < 0)
1063     pfatal_with_name (filename);
1064   if (stat (filename, &statbuf) < 0)
1065     pfatal_with_name (filename);
1066
1067   /* Read contents of file into BUFFER.  */
1068   buffer = xmalloc ((unsigned) statbuf.st_size + 1);
1069   readlen = read (desc, buffer, (unsigned) statbuf.st_size);
1070   if (readlen < 0)
1071     pfatal_with_name (filename);
1072   buffer[readlen] = 0;
1073   close (desc);
1074
1075   /* Scan BUFFER for specs, putting them in the vector.  */
1076   p = buffer;
1077   while (1)
1078     {
1079       char *suffix;
1080       char *spec;
1081       char *in, *out, *p1, *p2;
1082
1083       /* Advance P in BUFFER to the next nonblank nocomment line.  */
1084       p = skip_whitespace (p);
1085       if (*p == 0)
1086         break;
1087
1088       /* Find the colon that should end the suffix.  */
1089       p1 = p;
1090       while (*p1 && *p1 != ':' && *p1 != '\n') p1++;
1091       /* The colon shouldn't be missing.  */
1092       if (*p1 != ':')
1093         fatal ("specs file malformed after %d characters", p1 - buffer);
1094       /* Skip back over trailing whitespace.  */
1095       p2 = p1;
1096       while (p2 > buffer && (p2[-1] == ' ' || p2[-1] == '\t')) p2--;
1097       /* Copy the suffix to a string.  */
1098       suffix = save_string (p, p2 - p);
1099       /* Find the next line.  */
1100       p = skip_whitespace (p1 + 1);
1101       if (p[1] == 0)
1102         fatal ("specs file malformed after %d characters", p - buffer);
1103       p1 = p;
1104       /* Find next blank line.  */
1105       while (*p1 && !(*p1 == '\n' && p1[1] == '\n')) p1++;
1106       /* Specs end at the blank line and do not include the newline.  */
1107       spec = save_string (p, p1 - p);
1108       p = p1;
1109
1110       /* Delete backslash-newline sequences from the spec.  */
1111       in = spec;
1112       out = spec;
1113       while (*in != 0)
1114         {
1115           if (in[0] == '\\' && in[1] == '\n')
1116             in += 2;
1117           else if (in[0] == '#')
1118             {
1119               while (*in && *in != '\n') in++;
1120             }
1121           else
1122             *out++ = *in++;
1123         }
1124       *out = 0;
1125
1126       if (suffix[0] == '*')
1127         {
1128           if (! strcmp (suffix, "*link_command"))
1129             link_command_spec = spec;
1130           else
1131             set_spec (suffix + 1, spec);
1132         }
1133       else
1134         {
1135           /* Add this pair to the vector.  */
1136           compilers
1137             = ((struct compiler *)
1138                xrealloc (compilers, (n_compilers + 2) * sizeof (struct compiler)));
1139           compilers[n_compilers].suffix = suffix;
1140           bzero ((char *) compilers[n_compilers].spec,
1141                  sizeof compilers[n_compilers].spec);
1142           compilers[n_compilers].spec[0] = spec;
1143           n_compilers++;
1144           bzero ((char *) &compilers[n_compilers],
1145                  sizeof compilers[n_compilers]);
1146         }
1147
1148       if (*suffix == 0)
1149         link_command_spec = spec;
1150     }
1151
1152   if (link_command_spec == 0)
1153     fatal ("spec file has no spec for linking");
1154 }
1155
1156 static char *
1157 skip_whitespace (p)
1158      char *p;
1159 {
1160   while (1)
1161     {
1162       /* A fully-blank line is a delimiter in the SPEC file and shouldn't
1163          be considered whitespace.  */
1164       if (p[0] == '\n' && p[1] == '\n' && p[2] == '\n')
1165         return p + 1;
1166       else if (*p == '\n' || *p == ' ' || *p == '\t')
1167         p++;
1168       else if (*p == '#')
1169         {
1170           while (*p != '\n') p++;
1171           p++;
1172         }
1173       else
1174         break;
1175     }
1176
1177   return p;
1178 }
1179 \f
1180 /* Structure to keep track of the specs that have been defined so far.  These
1181    are accessed using %(specname) or %[specname] in a compiler or link spec. */
1182
1183 struct spec_list
1184 {
1185   char *name;                 /* Name of the spec. */
1186   char *spec;                 /* The spec itself. */
1187   struct spec_list *next;     /* Next spec in linked list. */
1188 };
1189
1190 /* List of specs that have been defined so far. */
1191
1192 static struct spec_list *specs = (struct spec_list *) 0;
1193 \f
1194 /* Change the value of spec NAME to SPEC.  If SPEC is empty, then the spec is
1195    removed; If the spec starts with a + then SPEC is added to the end of the
1196    current spec. */
1197
1198 static void
1199 set_spec (name, spec)
1200      char *name;
1201      char *spec;
1202 {
1203   struct spec_list *sl;
1204   char *old_spec;
1205
1206   /* See if the spec already exists */
1207   for (sl = specs; sl; sl = sl->next)
1208     if (strcmp (sl->name, name) == 0)
1209       break;
1210
1211   if (!sl)
1212     {
1213       /* Not found - make it */
1214       sl = (struct spec_list *) xmalloc (sizeof (struct spec_list));
1215       sl->name = save_string (name, strlen (name));
1216       sl->spec = save_string ("", 0);
1217       sl->next = specs;
1218       specs = sl;
1219     }
1220
1221   old_spec = sl->spec;
1222   if (name && spec[0] == '+' && isspace (spec[1]))
1223     sl->spec = concat (old_spec, spec + 1);
1224   else
1225     sl->spec = save_string (spec, strlen (spec));
1226
1227   if (! strcmp (name, "asm"))
1228     asm_spec = sl->spec;
1229   else if (! strcmp (name, "asm_final"))
1230     asm_final_spec = sl->spec;
1231   else if (! strcmp (name, "cc1"))
1232     cc1_spec = sl->spec;
1233   else if (! strcmp (name, "cc1plus"))
1234     cc1plus_spec = sl->spec;
1235   else if (! strcmp (name, "cpp"))
1236     cpp_spec = sl->spec;
1237   else if (! strcmp (name, "endfile"))
1238     endfile_spec = sl->spec;
1239   else if (! strcmp (name, "lib"))
1240     lib_spec = sl->spec;
1241   else if (! strcmp (name, "libgcc"))
1242     libgcc_spec = sl->spec;
1243   else if (! strcmp (name, "link"))
1244     link_spec = sl->spec;
1245   else if (! strcmp (name, "predefines"))
1246     cpp_predefines = sl->spec;
1247   else if (! strcmp (name, "signed_char"))
1248     signed_char_spec = sl->spec;
1249   else if (! strcmp (name, "startfile"))
1250     startfile_spec = sl->spec;
1251   else if (! strcmp (name, "switches_need_spaces"))
1252     switches_need_spaces = sl->spec;
1253   else if (! strcmp (name, "cross_compile"))
1254     cross_compile = atoi (sl->spec);
1255   else if (! strcmp (name, "multilib"))
1256     multilib_select = sl->spec;
1257   /* Free the old spec */
1258   if (old_spec)
1259     free (old_spec);
1260 }
1261 \f
1262 /* Accumulate a command (program name and args), and run it.  */
1263
1264 /* Vector of pointers to arguments in the current line of specifications.  */
1265
1266 static char **argbuf;
1267
1268 /* Number of elements allocated in argbuf.  */
1269
1270 static int argbuf_length;
1271
1272 /* Number of elements in argbuf currently in use (containing args).  */
1273
1274 static int argbuf_index;
1275
1276 /* This is the list of suffixes and codes (%g/%u/%U) and the associated
1277    temp file.  Used only if MKTEMP_EACH_FILE.  */
1278
1279 static struct temp_name {
1280   char *suffix;         /* suffix associated with the code.  */
1281   int length;           /* strlen (suffix).  */
1282   int unique;           /* Indicates whether %g or %u/%U was used.  */
1283   char *filename;       /* associated filename.  */
1284   int filename_length;  /* strlen (filename).  */
1285   struct temp_name *next;
1286 } *temp_names;
1287
1288 /* Number of commands executed so far.  */
1289
1290 static int execution_count;
1291
1292 /* Number of commands that exited with a signal.  */
1293
1294 static int signal_count;
1295
1296 /* Name with which this program was invoked.  */
1297
1298 static char *programname;
1299 \f
1300 /* Structures to keep track of prefixes to try when looking for files. */
1301
1302 struct prefix_list
1303 {
1304   char *prefix;               /* String to prepend to the path. */
1305   struct prefix_list *next;   /* Next in linked list. */
1306   int require_machine_suffix; /* Don't use without machine_suffix.  */
1307   /* 2 means try both machine_suffix and just_machine_suffix.  */
1308   int *used_flag_ptr;         /* 1 if a file was found with this prefix.  */
1309 };
1310
1311 struct path_prefix
1312 {
1313   struct prefix_list *plist;  /* List of prefixes to try */
1314   int max_len;                /* Max length of a prefix in PLIST */
1315   char *name;                 /* Name of this list (used in config stuff) */
1316 };
1317
1318 /* List of prefixes to try when looking for executables. */
1319
1320 static struct path_prefix exec_prefixes = { 0, 0, "exec" };
1321
1322 /* List of prefixes to try when looking for startup (crt0) files. */
1323
1324 static struct path_prefix startfile_prefixes = { 0, 0, "startfile" };
1325
1326 /* List of prefixes to try when looking for include files.  */
1327
1328 static struct path_prefix include_prefixes = { 0, 0, "include" };
1329
1330 /* Suffix to attach to directories searched for commands.
1331    This looks like `MACHINE/VERSION/'.  */
1332
1333 static char *machine_suffix = 0;
1334
1335 /* Suffix to attach to directories searched for commands.
1336    This is just `MACHINE/'.  */
1337
1338 static char *just_machine_suffix = 0;
1339
1340 /* Adjusted value of GCC_EXEC_PREFIX envvar.  */
1341
1342 static char *gcc_exec_prefix;
1343
1344 /* Default prefixes to attach to command names.  */
1345
1346 #ifdef CROSS_COMPILE  /* Don't use these prefixes for a cross compiler.  */
1347 #undef MD_EXEC_PREFIX
1348 #undef MD_STARTFILE_PREFIX
1349 #undef MD_STARTFILE_PREFIX_1
1350 #endif
1351
1352 #ifndef STANDARD_EXEC_PREFIX
1353 #define STANDARD_EXEC_PREFIX "/usr/local/lib/gcc-lib/"
1354 #endif /* !defined STANDARD_EXEC_PREFIX */
1355
1356 static char *standard_exec_prefix = STANDARD_EXEC_PREFIX;
1357 static char *standard_exec_prefix_1 = "/usr/lib/gcc/";
1358 #ifdef MD_EXEC_PREFIX
1359 static char *md_exec_prefix = MD_EXEC_PREFIX;
1360 #endif
1361
1362 #ifndef STANDARD_STARTFILE_PREFIX
1363 #define STANDARD_STARTFILE_PREFIX "/usr/local/lib/"
1364 #endif /* !defined STANDARD_STARTFILE_PREFIX */
1365
1366 #ifdef MD_STARTFILE_PREFIX
1367 static char *md_startfile_prefix = MD_STARTFILE_PREFIX;
1368 #endif
1369 #ifdef MD_STARTFILE_PREFIX_1
1370 static char *md_startfile_prefix_1 = MD_STARTFILE_PREFIX_1;
1371 #endif
1372 static char *standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
1373 static char *standard_startfile_prefix_1 = "/lib/";
1374 static char *standard_startfile_prefix_2 = "/usr/lib/";
1375
1376 #ifndef TOOLDIR_BASE_PREFIX
1377 #define TOOLDIR_BASE_PREFIX "/usr/local/"
1378 #endif
1379 static char *tooldir_base_prefix = TOOLDIR_BASE_PREFIX;
1380 static char *tooldir_prefix;
1381
1382 /* Subdirectory to use for locating libraries.  Set by
1383    set_multilib_dir based on the compilation options.  */
1384
1385 static char *multilib_dir;
1386
1387 /* Clear out the vector of arguments (after a command is executed).  */
1388
1389 static void
1390 clear_args ()
1391 {
1392   argbuf_index = 0;
1393 }
1394
1395 /* Add one argument to the vector at the end.
1396    This is done when a space is seen or at the end of the line.
1397    If DELETE_ALWAYS is nonzero, the arg is a filename
1398     and the file should be deleted eventually.
1399    If DELETE_FAILURE is nonzero, the arg is a filename
1400     and the file should be deleted if this compilation fails.  */
1401
1402 static void
1403 store_arg (arg, delete_always, delete_failure)
1404      char *arg;
1405      int delete_always, delete_failure;
1406 {
1407   if (argbuf_index + 1 == argbuf_length)
1408     {
1409       argbuf = (char **) xrealloc (argbuf, (argbuf_length *= 2) * sizeof (char *));
1410     }
1411
1412   argbuf[argbuf_index++] = arg;
1413   argbuf[argbuf_index] = 0;
1414
1415   if (delete_always || delete_failure)
1416     record_temp_file (arg, delete_always, delete_failure);
1417 }
1418 \f
1419 /* Record the names of temporary files we tell compilers to write,
1420    and delete them at the end of the run.  */
1421
1422 /* This is the common prefix we use to make temp file names.
1423    It is chosen once for each run of this program.
1424    It is substituted into a spec by %g.
1425    Thus, all temp file names contain this prefix.
1426    In practice, all temp file names start with this prefix.
1427
1428    This prefix comes from the envvar TMPDIR if it is defined;
1429    otherwise, from the P_tmpdir macro if that is defined;
1430    otherwise, in /usr/tmp or /tmp.  */
1431
1432 static char *temp_filename;
1433
1434 /* Length of the prefix.  */
1435
1436 static int temp_filename_length;
1437
1438 /* Define the list of temporary files to delete.  */
1439
1440 struct temp_file
1441 {
1442   char *name;
1443   struct temp_file *next;
1444 };
1445
1446 /* Queue of files to delete on success or failure of compilation.  */
1447 static struct temp_file *always_delete_queue;
1448 /* Queue of files to delete on failure of compilation.  */
1449 static struct temp_file *failure_delete_queue;
1450
1451 /* Record FILENAME as a file to be deleted automatically.
1452    ALWAYS_DELETE nonzero means delete it if all compilation succeeds;
1453    otherwise delete it in any case.
1454    FAIL_DELETE nonzero means delete it if a compilation step fails;
1455    otherwise delete it in any case.  */
1456
1457 static void
1458 record_temp_file (filename, always_delete, fail_delete)
1459      char *filename;
1460      int always_delete;
1461      int fail_delete;
1462 {
1463   register char *name;
1464   name = xmalloc (strlen (filename) + 1);
1465   strcpy (name, filename);
1466
1467   if (always_delete)
1468     {
1469       register struct temp_file *temp;
1470       for (temp = always_delete_queue; temp; temp = temp->next)
1471         if (! strcmp (name, temp->name))
1472           goto already1;
1473       temp = (struct temp_file *) xmalloc (sizeof (struct temp_file));
1474       temp->next = always_delete_queue;
1475       temp->name = name;
1476       always_delete_queue = temp;
1477     already1:;
1478     }
1479
1480   if (fail_delete)
1481     {
1482       register struct temp_file *temp;
1483       for (temp = failure_delete_queue; temp; temp = temp->next)
1484         if (! strcmp (name, temp->name))
1485           goto already2;
1486       temp = (struct temp_file *) xmalloc (sizeof (struct temp_file));
1487       temp->next = failure_delete_queue;
1488       temp->name = name;
1489       failure_delete_queue = temp;
1490     already2:;
1491     }
1492 }
1493
1494 /* Delete all the temporary files whose names we previously recorded.  */
1495
1496 static void
1497 delete_if_ordinary (name)
1498      char *name;
1499 {
1500   struct stat st;
1501 #ifdef DEBUG
1502   int i, c;
1503
1504   printf ("Delete %s? (y or n) ", name);
1505   fflush (stdout);
1506   i = getchar ();
1507   if (i != '\n')
1508     while ((c = getchar ()) != '\n' && c != EOF) ;
1509   if (i == 'y' || i == 'Y')
1510 #endif /* DEBUG */
1511     if (stat (name, &st) >= 0 && S_ISREG (st.st_mode))
1512       if (unlink (name) < 0)
1513         if (verbose_flag)
1514           perror_with_name (name);
1515 }
1516
1517 static void
1518 delete_temp_files ()
1519 {
1520   register struct temp_file *temp;
1521
1522   for (temp = always_delete_queue; temp; temp = temp->next)
1523     delete_if_ordinary (temp->name);
1524   always_delete_queue = 0;
1525 }
1526
1527 /* Delete all the files to be deleted on error.  */
1528
1529 static void
1530 delete_failure_queue ()
1531 {
1532   register struct temp_file *temp;
1533
1534   for (temp = failure_delete_queue; temp; temp = temp->next)
1535     delete_if_ordinary (temp->name);
1536 }
1537
1538 static void
1539 clear_failure_queue ()
1540 {
1541   failure_delete_queue = 0;
1542 }
1543
1544 /* Compute a string to use as the base of all temporary file names.
1545    It is substituted for %g.  */
1546
1547 static char *
1548 choose_temp_base_try (try, base)
1549      char *try;
1550      char *base;
1551 {
1552   char *rv;
1553   if (base)
1554     rv = base;
1555   else if (try == (char *)0)
1556     rv = 0;
1557   else if (access (try, R_OK | W_OK) != 0)
1558     rv = 0;
1559   else
1560     rv = try;
1561   return rv;
1562 }
1563
1564 static void
1565 choose_temp_base ()
1566 {
1567   char *base = 0;
1568   int len;
1569
1570   base = choose_temp_base_try (getenv ("TMPDIR"), base);
1571   base = choose_temp_base_try (getenv ("TMP"), base);
1572   base = choose_temp_base_try (getenv ("TEMP"), base);
1573
1574 #ifdef P_tmpdir
1575   base = choose_temp_base_try (P_tmpdir, base);
1576 #endif
1577
1578   base = choose_temp_base_try (concat4 (dir_separator_str, "usr", 
1579                                         dir_separator_str, "tmp"), 
1580                                 base);
1581   base = choose_temp_base_try (concat (dir_separator_str, "tmp"), base);
1582  
1583   /* If all else fails, use the current directory! */  
1584   if (base == (char *)0) base = concat(".", dir_separator_str);
1585
1586   len = strlen (base);
1587   temp_filename = xmalloc (len + strlen (concat (dir_separator_str, 
1588                                                  "ccXXXXXX")) + 1);
1589   strcpy (temp_filename, base);
1590   if (len > 0 && temp_filename[len-1] != '/'
1591       && temp_filename[len-1] != DIR_SEPARATOR)
1592     temp_filename[len++] = DIR_SEPARATOR;
1593   strcpy (temp_filename + len, "ccXXXXXX");
1594
1595   mktemp (temp_filename);
1596   temp_filename_length = strlen (temp_filename);
1597   if (temp_filename_length == 0)
1598     abort ();
1599 }
1600 \f
1601
1602 /* Routine to add variables to the environment.  We do this to pass
1603    the pathname of the gcc driver, and the directories search to the
1604    collect2 program, which is being run as ld.  This way, we can be
1605    sure of executing the right compiler when collect2 wants to build
1606    constructors and destructors.  Since the environment variables we
1607    use come from an obstack, we don't have to worry about allocating
1608    space for them.  */
1609
1610 #ifndef HAVE_PUTENV
1611
1612 void
1613 putenv (str)
1614      char *str;
1615 {
1616 #ifndef VMS                     /* nor about VMS */
1617
1618   extern char **environ;
1619   char **old_environ = environ;
1620   char **envp;
1621   int num_envs = 0;
1622   int name_len = 1;
1623   int str_len = strlen (str);
1624   char *p = str;
1625   int ch;
1626
1627   while ((ch = *p++) != '\0' && ch != '=')
1628     name_len++;
1629
1630   if (!ch)
1631     abort ();
1632
1633   /* Search for replacing an existing environment variable, and
1634      count the number of total environment variables.  */
1635   for (envp = old_environ; *envp; envp++)
1636     {
1637       num_envs++;
1638       if (!strncmp (str, *envp, name_len))
1639         {
1640           *envp = str;
1641           return;
1642         }
1643     }
1644
1645   /* Add a new environment variable */
1646   environ = (char **) xmalloc (sizeof (char *) * (num_envs+2));
1647   *environ = str;
1648   bcopy ((char *) old_environ, (char *) (environ + 1),
1649          sizeof (char *) * (num_envs+1));
1650
1651 #endif  /* VMS */
1652 }
1653
1654 #endif  /* HAVE_PUTENV */
1655
1656 \f
1657 /* Build a list of search directories from PATHS.
1658    PREFIX is a string to prepend to the list.
1659    If CHECK_DIR_P is non-zero we ensure the directory exists.
1660    This is used mostly by putenv_from_prefixes so we use `collect_obstack'.
1661    It is also used by the --print-search-dirs flag.  */
1662
1663 static char *
1664 build_search_list (paths, prefix, check_dir_p)
1665      struct path_prefix *paths;
1666      char *prefix;
1667      int check_dir_p;
1668 {
1669   int suffix_len = (machine_suffix) ? strlen (machine_suffix) : 0;
1670   int just_suffix_len
1671     = (just_machine_suffix) ? strlen (just_machine_suffix) : 0;
1672   int first_time = TRUE;
1673   struct prefix_list *pprefix;
1674
1675   obstack_grow (&collect_obstack, prefix, strlen (prefix));
1676
1677   for (pprefix = paths->plist; pprefix != 0; pprefix = pprefix->next)
1678     {
1679       int len = strlen (pprefix->prefix);
1680
1681       if (machine_suffix
1682           && (!check_dir_p
1683               || is_directory (pprefix->prefix, machine_suffix, 0)))
1684         {
1685           if (!first_time)
1686             obstack_1grow (&collect_obstack, PATH_SEPARATOR);
1687             
1688           first_time = FALSE;
1689           obstack_grow (&collect_obstack, pprefix->prefix, len);
1690           obstack_grow (&collect_obstack, machine_suffix, suffix_len);
1691         }
1692
1693       if (just_machine_suffix
1694           && pprefix->require_machine_suffix == 2
1695           && (!check_dir_p
1696               || is_directory (pprefix->prefix, just_machine_suffix, 0)))
1697         {
1698           if (!first_time)
1699             obstack_1grow (&collect_obstack, PATH_SEPARATOR);
1700             
1701           first_time = FALSE;
1702           obstack_grow (&collect_obstack, pprefix->prefix, len);
1703           obstack_grow (&collect_obstack, just_machine_suffix,
1704                         just_suffix_len);
1705         }
1706
1707       if (!pprefix->require_machine_suffix)
1708         {
1709           if (!first_time)
1710             obstack_1grow (&collect_obstack, PATH_SEPARATOR);
1711
1712           first_time = FALSE;
1713           obstack_grow (&collect_obstack, pprefix->prefix, len);
1714         }
1715     }
1716   obstack_1grow (&collect_obstack, '\0');
1717   return obstack_finish (&collect_obstack);
1718 }
1719
1720 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables for collect.  */
1721
1722 static void
1723 putenv_from_prefixes (paths, env_var)
1724      struct path_prefix *paths;
1725      char *env_var;
1726 {
1727   putenv (build_search_list (paths, env_var, 1));
1728 }
1729 \f
1730 /* Search for NAME using the prefix list PREFIXES.  MODE is passed to
1731    access to check permissions.
1732    Return 0 if not found, otherwise return its name, allocated with malloc. */
1733
1734 static char *
1735 find_a_file (pprefix, name, mode)
1736      struct path_prefix *pprefix;
1737      char *name;
1738      int mode;
1739 {
1740   char *temp;
1741   char *file_suffix = ((mode & X_OK) != 0 ? EXECUTABLE_SUFFIX : "");
1742   struct prefix_list *pl;
1743   int len = pprefix->max_len + strlen (name) + strlen (file_suffix) + 1;
1744
1745   if (machine_suffix)
1746     len += strlen (machine_suffix);
1747
1748   temp = xmalloc (len);
1749
1750   /* Determine the filename to execute (special case for absolute paths).  */
1751
1752   if (*name == '/' || *name == DIR_SEPARATOR)
1753     {
1754       if (access (name, mode))
1755         {
1756           strcpy (temp, name);
1757           return temp;
1758         }
1759     }
1760   else
1761     for (pl = pprefix->plist; pl; pl = pl->next)
1762       {
1763         if (machine_suffix)
1764           {
1765             /* Some systems have a suffix for executable files.
1766                So try appending that first.  */
1767             if (file_suffix[0] != 0)
1768               {
1769                 strcpy (temp, pl->prefix);
1770                 strcat (temp, machine_suffix);
1771                 strcat (temp, name);
1772                 strcat (temp, file_suffix);
1773                 if (access (temp, mode) == 0)
1774                   {
1775                     if (pl->used_flag_ptr != 0)
1776                       *pl->used_flag_ptr = 1;
1777                     return temp;
1778                   }
1779               }
1780
1781             /* Now try just the name.  */
1782             strcpy (temp, pl->prefix);
1783             strcat (temp, machine_suffix);
1784             strcat (temp, name);
1785             if (access (temp, mode) == 0)
1786               {
1787                 if (pl->used_flag_ptr != 0)
1788                   *pl->used_flag_ptr = 1;
1789                 return temp;
1790               }
1791           }
1792
1793         /* Certain prefixes are tried with just the machine type,
1794            not the version.  This is used for finding as, ld, etc.  */
1795         if (just_machine_suffix && pl->require_machine_suffix == 2)
1796           {
1797             /* Some systems have a suffix for executable files.
1798                So try appending that first.  */
1799             if (file_suffix[0] != 0)
1800               {
1801                 strcpy (temp, pl->prefix);
1802                 strcat (temp, just_machine_suffix);
1803                 strcat (temp, name);
1804                 strcat (temp, file_suffix);
1805                 if (access (temp, mode) == 0)
1806                   {
1807                     if (pl->used_flag_ptr != 0)
1808                       *pl->used_flag_ptr = 1;
1809                     return temp;
1810                   }
1811               }
1812
1813             strcpy (temp, pl->prefix);
1814             strcat (temp, just_machine_suffix);
1815             strcat (temp, name);
1816             if (access (temp, mode) == 0)
1817               {
1818                 if (pl->used_flag_ptr != 0)
1819                   *pl->used_flag_ptr = 1;
1820                 return temp;
1821               }
1822           }
1823
1824         /* Certain prefixes can't be used without the machine suffix
1825            when the machine or version is explicitly specified.  */
1826         if (!pl->require_machine_suffix)
1827           {
1828             /* Some systems have a suffix for executable files.
1829                So try appending that first.  */
1830             if (file_suffix[0] != 0)
1831               {
1832                 strcpy (temp, pl->prefix);
1833                 strcat (temp, name);
1834                 strcat (temp, file_suffix);
1835                 if (access (temp, mode) == 0)
1836                   {
1837                     if (pl->used_flag_ptr != 0)
1838                       *pl->used_flag_ptr = 1;
1839                     return temp;
1840                   }
1841               }
1842
1843             strcpy (temp, pl->prefix);
1844             strcat (temp, name);
1845             if (access (temp, mode) == 0)
1846               {
1847                 if (pl->used_flag_ptr != 0)
1848                   *pl->used_flag_ptr = 1;
1849                 return temp;
1850               }
1851           }
1852       }
1853
1854   free (temp);
1855   return 0;
1856 }
1857
1858 /* Add an entry for PREFIX in PLIST.  If FIRST is set, it goes
1859    at the start of the list, otherwise it goes at the end.
1860
1861    If WARN is nonzero, we will warn if no file is found
1862    through this prefix.  WARN should point to an int
1863    which will be set to 1 if this entry is used.
1864
1865    REQUIRE_MACHINE_SUFFIX is 1 if this prefix can't be used without
1866    the complete value of machine_suffix.
1867    2 means try both machine_suffix and just_machine_suffix.  */
1868
1869 static void
1870 add_prefix (pprefix, prefix, first, require_machine_suffix, warn)
1871      struct path_prefix *pprefix;
1872      char *prefix;
1873      int first;
1874      int require_machine_suffix;
1875      int *warn;
1876 {
1877   struct prefix_list *pl, **prev;
1878   int len;
1879
1880   if (!first && pprefix->plist)
1881     {
1882       for (pl = pprefix->plist; pl->next; pl = pl->next)
1883         ;
1884       prev = &pl->next;
1885     }
1886   else
1887     prev = &pprefix->plist;
1888
1889   /* Keep track of the longest prefix */
1890
1891   len = strlen (prefix);
1892   if (len > pprefix->max_len)
1893     pprefix->max_len = len;
1894
1895   pl = (struct prefix_list *) xmalloc (sizeof (struct prefix_list));
1896   pl->prefix = save_string (prefix, len);
1897   pl->require_machine_suffix = require_machine_suffix;
1898   pl->used_flag_ptr = warn;
1899   if (warn)
1900     *warn = 0;
1901
1902   if (*prev)
1903     pl->next = *prev;
1904   else
1905     pl->next = (struct prefix_list *) 0;
1906   *prev = pl;
1907 }
1908
1909 /* Print warnings for any prefixes in the list PPREFIX that were not used.  */
1910
1911 static void
1912 unused_prefix_warnings (pprefix)
1913      struct path_prefix *pprefix;
1914 {
1915   struct prefix_list *pl = pprefix->plist;
1916
1917   while (pl)
1918     {
1919       if (pl->used_flag_ptr != 0 && !*pl->used_flag_ptr)
1920         {
1921           error ("file path prefix `%s' never used",
1922                  pl->prefix);
1923           /* Prevent duplicate warnings.  */
1924           *pl->used_flag_ptr = 1;
1925         }
1926       pl = pl->next;
1927     }
1928 }
1929
1930 /* Get rid of all prefixes built up so far in *PLISTP. */
1931
1932 static void
1933 free_path_prefix (pprefix)
1934      struct path_prefix *pprefix;
1935 {
1936   struct prefix_list *pl = pprefix->plist;
1937   struct prefix_list *temp;
1938
1939   while (pl)
1940     {
1941       temp = pl;
1942       pl = pl->next;
1943       free (temp->prefix);
1944       free ((char *) temp);
1945     }
1946   pprefix->plist = (struct prefix_list *) 0;
1947 }
1948 \f
1949 /* stdin file number.  */
1950 #define STDIN_FILE_NO 0
1951
1952 /* stdout file number.  */
1953 #define STDOUT_FILE_NO 1
1954
1955 /* value of `pipe': port index for reading.  */
1956 #define READ_PORT 0
1957
1958 /* value of `pipe': port index for writing.  */
1959 #define WRITE_PORT 1
1960
1961 /* Pipe waiting from last process, to be used as input for the next one.
1962    Value is STDIN_FILE_NO if no pipe is waiting
1963    (i.e. the next command is the first of a group).  */
1964
1965 static int last_pipe_input;
1966
1967 /* Fork one piped subcommand.  FUNC is the system call to use
1968    (either execv or execvp).  ARGV is the arg vector to use.
1969    NOT_LAST is nonzero if this is not the last subcommand
1970    (i.e. its output should be piped to the next one.)  */
1971
1972 #ifdef __MSDOS__
1973
1974 #include <process.h>
1975 static int
1976 pexecute (search_flag, program, argv, not_last)
1977      int search_flag;
1978      char *program;
1979      char *argv[];
1980      int not_last;
1981 {
1982 #ifdef __GO32__
1983   int i = (search_flag ? spawnv : spawnvp) (1, program, argv);
1984 #else
1985   char *scmd, *rf;
1986   FILE *argfile;
1987   int i, el = search_flag ? 0 : 4;
1988
1989   scmd = (char *)malloc (strlen (program) + strlen (temp_filename) + 6 + el);
1990   rf = scmd + strlen(program) + 2 + el;
1991   sprintf (scmd, "%s%s @%s.gp", program,
1992            (search_flag ? "" : ".exe"), temp_filename);
1993   argfile = fopen (rf, "w");
1994   if (argfile == 0)
1995     pfatal_with_name (rf);
1996
1997   for (i=1; argv[i]; i++)
1998     {
1999       char *cp;
2000       for (cp = argv[i]; *cp; cp++)
2001         {
2002           if (*cp == '"' || *cp == '\'' || *cp == '\\' || isspace (*cp))
2003             fputc ('\\', argfile);
2004           fputc (*cp, argfile);
2005         }
2006       fputc ('\n', argfile);
2007     }
2008   fclose (argfile);
2009
2010   i = system (scmd);
2011
2012   remove (rf);
2013 #endif
2014   
2015   if (i == -1)
2016     {
2017       perror_exec (program);
2018       return MIN_FATAL_STATUS << 8;
2019     }
2020   return i << 8;
2021 }
2022
2023 #endif
2024
2025 #if !defined(__MSDOS__) && !defined(OS2) && !defined(_WIN32)
2026
2027 static int
2028 pexecute (search_flag, program, argv, not_last)
2029      int search_flag;
2030      char *program;
2031      char *argv[];
2032      int not_last;
2033 {
2034   int (*func)() = (search_flag ? execv : execvp);
2035   int pid;
2036   int pdes[2];
2037   int input_desc = last_pipe_input;
2038   int output_desc = STDOUT_FILE_NO;
2039   int retries, sleep_interval;
2040
2041   /* If this isn't the last process, make a pipe for its output,
2042      and record it as waiting to be the input to the next process.  */
2043
2044   if (not_last)
2045     {
2046       if (pipe (pdes) < 0)
2047         pfatal_with_name ("pipe");
2048       output_desc = pdes[WRITE_PORT];
2049       last_pipe_input = pdes[READ_PORT];
2050     }
2051   else
2052     last_pipe_input = STDIN_FILE_NO;
2053
2054   /* Fork a subprocess; wait and retry if it fails.  */
2055   sleep_interval = 1;
2056   for (retries = 0; retries < 4; retries++)
2057     {
2058       pid = vfork ();
2059       if (pid >= 0)
2060         break;
2061       sleep (sleep_interval);
2062       sleep_interval *= 2;
2063     }
2064
2065   switch (pid)
2066     {
2067     case -1:
2068 #ifdef vfork
2069       pfatal_with_name ("fork");
2070 #else
2071       pfatal_with_name ("vfork");
2072 #endif
2073       /* NOTREACHED */
2074       return 0;
2075
2076     case 0: /* child */
2077       /* Move the input and output pipes into place, if nec.  */
2078       if (input_desc != STDIN_FILE_NO)
2079         {
2080           close (STDIN_FILE_NO);
2081           dup (input_desc);
2082           close (input_desc);
2083         }
2084       if (output_desc != STDOUT_FILE_NO)
2085         {
2086           close (STDOUT_FILE_NO);
2087           dup (output_desc);
2088           close (output_desc);
2089         }
2090
2091       /* Close the parent's descs that aren't wanted here.  */
2092       if (last_pipe_input != STDIN_FILE_NO)
2093         close (last_pipe_input);
2094
2095       /* Exec the program.  */
2096       (*func) (program, argv);
2097       perror_exec (program);
2098       exit (-1);
2099       /* NOTREACHED */
2100       return 0;
2101
2102     default:
2103       /* In the parent, after forking.
2104          Close the descriptors that we made for this child.  */
2105       if (input_desc != STDIN_FILE_NO)
2106         close (input_desc);
2107       if (output_desc != STDOUT_FILE_NO)
2108         close (output_desc);
2109
2110       /* Return child's process number.  */
2111       return pid;
2112     }
2113 }
2114
2115 #endif /* not __MSDOS__ and not OS2 and not _WIN32 */
2116
2117 #if defined(OS2)
2118
2119 static int
2120 pexecute (search_flag, program, argv, not_last)
2121      int search_flag;
2122      char *program;
2123      char *argv[];
2124      int not_last;
2125 {
2126   return (search_flag ? spawnv : spawnvp) (1, program, argv);
2127 }
2128 #endif /* OS2 */
2129
2130 #if defined(_WIN32)
2131
2132 static int
2133 pexecute (search_flag, program, argv, not_last)
2134      int search_flag;
2135      char *program;
2136      char *argv[];
2137      int not_last;
2138 {
2139   return (search_flag ? __spawnv : __spawnvp) (1, program, argv);
2140 }
2141 #endif /* _WIN32 */
2142
2143 \f
2144 /* Execute the command specified by the arguments on the current line of spec.
2145    When using pipes, this includes several piped-together commands
2146    with `|' between them.
2147
2148    Return 0 if successful, -1 if failed.  */
2149
2150 static int
2151 execute ()
2152 {
2153   int i;
2154   int n_commands;               /* # of command.  */
2155   char *string;
2156   struct command
2157     {
2158       char *prog;               /* program name.  */
2159       char **argv;              /* vector of args.  */
2160       int pid;                  /* pid of process for this command.  */
2161     };
2162
2163   struct command *commands;     /* each command buffer with above info.  */
2164
2165   /* Count # of piped commands.  */
2166   for (n_commands = 1, i = 0; i < argbuf_index; i++)
2167     if (strcmp (argbuf[i], "|") == 0)
2168       n_commands++;
2169
2170   /* Get storage for each command.  */
2171   commands
2172     = (struct command *) alloca (n_commands * sizeof (struct command));
2173
2174   /* Split argbuf into its separate piped processes,
2175      and record info about each one.
2176      Also search for the programs that are to be run.  */
2177
2178   commands[0].prog = argbuf[0]; /* first command.  */
2179   commands[0].argv = &argbuf[0];
2180   string = find_a_file (&exec_prefixes, commands[0].prog, X_OK);
2181   if (string)
2182     commands[0].argv[0] = string;
2183
2184   for (n_commands = 1, i = 0; i < argbuf_index; i++)
2185     if (strcmp (argbuf[i], "|") == 0)
2186       {                         /* each command.  */
2187 #ifdef __MSDOS__
2188         fatal ("-pipe not supported under MS-DOS");
2189 #endif
2190         argbuf[i] = 0;  /* termination of command args.  */
2191         commands[n_commands].prog = argbuf[i + 1];
2192         commands[n_commands].argv = &argbuf[i + 1];
2193         string = find_a_file (&exec_prefixes, commands[n_commands].prog, X_OK);
2194         if (string)
2195           commands[n_commands].argv[0] = string;
2196         n_commands++;
2197       }
2198
2199   argbuf[argbuf_index] = 0;
2200
2201   /* If -v, print what we are about to do, and maybe query.  */
2202
2203   if (verbose_flag)
2204     {
2205       /* Print each piped command as a separate line.  */
2206       for (i = 0; i < n_commands ; i++)
2207         {
2208           char **j;
2209
2210           for (j = commands[i].argv; *j; j++)
2211             fprintf (stderr, " %s", *j);
2212
2213           /* Print a pipe symbol after all but the last command.  */
2214           if (i + 1 != n_commands)
2215             fprintf (stderr, " |");
2216           fprintf (stderr, "\n");
2217         }
2218       fflush (stderr);
2219 #ifdef DEBUG
2220       fprintf (stderr, "\nGo ahead? (y or n) ");
2221       fflush (stderr);
2222       i = getchar ();
2223       if (i != '\n')
2224         while (getchar () != '\n') ;
2225       if (i != 'y' && i != 'Y')
2226         return 0;
2227 #endif /* DEBUG */
2228     }
2229
2230   /* Run each piped subprocess.  */
2231
2232   last_pipe_input = STDIN_FILE_NO;
2233   for (i = 0; i < n_commands; i++)
2234     {
2235       char *string = commands[i].argv[0];
2236
2237       commands[i].pid = pexecute (string != commands[i].prog,
2238                                   string, commands[i].argv,
2239                                   i + 1 < n_commands);
2240
2241       if (string != commands[i].prog)
2242         free (string);
2243     }
2244
2245   execution_count++;
2246
2247   /* Wait for all the subprocesses to finish.
2248      We don't care what order they finish in;
2249      we know that N_COMMANDS waits will get them all.
2250      Ignore subprocesses that we don't know about,
2251      since they can be spawned by the process that exec'ed us.  */
2252
2253   {
2254     int ret_code = 0;
2255
2256     for (i = 0; i < n_commands; )
2257       {
2258         int j;
2259         int status;
2260         int pid;
2261
2262 #ifdef __MSDOS__
2263         status = pid = commands[i].pid;
2264 #else
2265 #ifdef _WIN32
2266         pid = cwait (&status, commands[i].pid, WAIT_CHILD);
2267 #else
2268         pid = wait (&status);
2269 #endif
2270 #endif
2271         if (pid < 0)
2272           abort ();
2273
2274         for (j = 0; j < n_commands; j++)
2275           if (commands[j].pid == pid)
2276             {
2277               i++;
2278               if (status != 0)
2279                 {
2280                   if (WIFSIGNALED (status))
2281                     {
2282                       fatal ("Internal compiler error: program %s got fatal signal %d",
2283                              commands[j].prog, WTERMSIG (status));
2284                       signal_count++;
2285                       ret_code = -1;
2286                     }
2287                   else if (WIFEXITED (status)
2288                            && WEXITSTATUS (status) >= MIN_FATAL_STATUS)
2289                     ret_code = -1;
2290                 }
2291               break;
2292             }
2293       }
2294     return ret_code;
2295   }
2296 }
2297 \f
2298 /* Find all the switches given to us
2299    and make a vector describing them.
2300    The elements of the vector are strings, one per switch given.
2301    If a switch uses following arguments, then the `part1' field
2302    is the switch itself and the `args' field
2303    is a null-terminated vector containing the following arguments.
2304    The `live_cond' field is 1 if the switch is true in a conditional spec,
2305    -1 if false (overridden by a later switch), and is initialized to zero.
2306    The `valid' field is nonzero if any spec has looked at this switch;
2307    if it remains zero at the end of the run, it must be meaningless.  */
2308
2309 struct switchstr
2310 {
2311   char *part1;
2312   char **args;
2313   int live_cond;
2314   int valid;
2315 };
2316
2317 static struct switchstr *switches;
2318
2319 static int n_switches;
2320
2321 struct infile
2322 {
2323   char *name;
2324   char *language;
2325 };
2326
2327 /* Also a vector of input files specified.  */
2328
2329 static struct infile *infiles;
2330
2331 static int n_infiles;
2332
2333 /* And a vector of corresponding output files is made up later.  */
2334
2335 static char **outfiles;
2336
2337 /* Create the vector `switches' and its contents.
2338    Store its length in `n_switches'.  */
2339
2340 static void
2341 process_command (argc, argv)
2342      int argc;
2343      char **argv;
2344 {
2345   register int i;
2346   char *temp;
2347   char *spec_lang = 0;
2348   int last_language_n_infiles;
2349   int have_c = 0;
2350   int have_o = 0;
2351
2352   gcc_exec_prefix = getenv ("GCC_EXEC_PREFIX");
2353
2354   n_switches = 0;
2355   n_infiles = 0;
2356
2357   /* Figure compiler version from version string.  */
2358
2359   compiler_version = save_string (version_string, strlen (version_string));
2360   for (temp = compiler_version; *temp; ++temp)
2361     {
2362       if (*temp == ' ')
2363         {
2364           *temp = '\0';
2365           break;
2366         }
2367     }
2368
2369   /* Set up the default search paths.  */
2370
2371   if (gcc_exec_prefix)
2372     {
2373       add_prefix (&exec_prefixes, gcc_exec_prefix, 0, 0, NULL_PTR);
2374       add_prefix (&startfile_prefixes, gcc_exec_prefix, 0, 0, NULL_PTR);
2375     }
2376
2377   /* COMPILER_PATH and LIBRARY_PATH have values
2378      that are lists of directory names with colons.  */
2379
2380   temp = getenv ("COMPILER_PATH");
2381   if (temp)
2382     {
2383       char *startp, *endp;
2384       char *nstore = (char *) alloca (strlen (temp) + 3);
2385
2386       startp = endp = temp;
2387       while (1)
2388         {
2389           if (*endp == PATH_SEPARATOR || *endp == 0)
2390             {
2391               strncpy (nstore, startp, endp-startp);
2392               if (endp == startp)
2393                 strcpy (nstore, concat (".", dir_separator_str));
2394               else if (endp[-1] != '/' && endp[-1] != DIR_SEPARATOR)
2395                 {
2396                   nstore[endp-startp] = DIR_SEPARATOR;
2397                   nstore[endp-startp+1] = 0;
2398                 }
2399               else
2400                 nstore[endp-startp] = 0;
2401               add_prefix (&exec_prefixes, nstore, 0, 0, NULL_PTR);
2402               if (*endp == 0)
2403                 break;
2404               endp = startp = endp + 1;
2405             }
2406           else
2407             endp++;
2408         }
2409     }
2410
2411   temp = getenv ("LIBRARY_PATH");
2412   if (temp && ! cross_compile)
2413     {
2414       char *startp, *endp;
2415       char *nstore = (char *) alloca (strlen (temp) + 3);
2416
2417       startp = endp = temp;
2418       while (1)
2419         {
2420           if (*endp == PATH_SEPARATOR || *endp == 0)
2421             {
2422               strncpy (nstore, startp, endp-startp);
2423               if (endp == startp)
2424                 strcpy (nstore, concat (".", dir_separator_str));
2425               else if (endp[-1] != '/' && endp[-1] != DIR_SEPARATOR)
2426                 {
2427                   nstore[endp-startp] = DIR_SEPARATOR;
2428                   nstore[endp-startp+1] = 0;
2429                 }
2430               else
2431                 nstore[endp-startp] = 0;
2432               add_prefix (&startfile_prefixes, nstore, 0, 0, NULL_PTR);
2433               if (*endp == 0)
2434                 break;
2435               endp = startp = endp + 1;
2436             }
2437           else
2438             endp++;
2439         }
2440     }
2441
2442   /* Use LPATH like LIBRARY_PATH (for the CMU build program).  */
2443   temp = getenv ("LPATH");
2444   if (temp && ! cross_compile)
2445     {
2446       char *startp, *endp;
2447       char *nstore = (char *) alloca (strlen (temp) + 3);
2448
2449       startp = endp = temp;
2450       while (1)
2451         {
2452           if (*endp == PATH_SEPARATOR || *endp == 0)
2453             {
2454               strncpy (nstore, startp, endp-startp);
2455               if (endp == startp)
2456                 strcpy (nstore, concat (".", dir_separator_str));
2457               else if (endp[-1] != '/' && endp[-1] != DIR_SEPARATOR)
2458                 {
2459                   nstore[endp-startp] = DIR_SEPARATOR;
2460                   nstore[endp-startp+1] = 0;
2461                 }
2462               else
2463                 nstore[endp-startp] = 0;
2464               add_prefix (&startfile_prefixes, nstore, 0, 0, NULL_PTR);
2465               if (*endp == 0)
2466                 break;
2467               endp = startp = endp + 1;
2468             }
2469           else
2470             endp++;
2471         }
2472     }
2473
2474   /* Convert new-style -- options to old-style.  */
2475   translate_options (&argc, &argv);
2476
2477   /* Scan argv twice.  Here, the first time, just count how many switches
2478      there will be in their vector, and how many input files in theirs.
2479      Here we also parse the switches that cc itself uses (e.g. -v).  */
2480
2481   for (i = 1; i < argc; i++)
2482     {
2483       if (! strcmp (argv[i], "-dumpspecs"))
2484         {
2485           printf ("*asm:\n%s\n\n", asm_spec);
2486           printf ("*asm_final:\n%s\n\n", asm_final_spec);
2487           printf ("*cpp:\n%s\n\n", cpp_spec);
2488           printf ("*cc1:\n%s\n\n", cc1_spec);
2489           printf ("*cc1plus:\n%s\n\n", cc1plus_spec);
2490           printf ("*endfile:\n%s\n\n", endfile_spec);
2491           printf ("*link:\n%s\n\n", link_spec);
2492           printf ("*lib:\n%s\n\n", lib_spec);
2493           printf ("*libgcc:\n%s\n\n", libgcc_spec);
2494           printf ("*startfile:\n%s\n\n", startfile_spec);
2495           printf ("*switches_need_spaces:\n%s\n\n", switches_need_spaces);
2496           printf ("*signed_char:\n%s\n\n", signed_char_spec);
2497           printf ("*predefines:\n%s\n\n", cpp_predefines);
2498           printf ("*cross_compile:\n%d\n\n", cross_compile);
2499           printf ("*multilib:\n%s\n\n", multilib_select);
2500
2501           exit (0);
2502         }
2503       else if (! strcmp (argv[i], "-dumpversion"))
2504         {
2505           printf ("%s\n", version_string);
2506           exit (0);
2507         }
2508       else if (! strcmp (argv[i], "-dumpmachine"))
2509         {
2510           printf ("%s\n", spec_machine);
2511           exit  (0);
2512         }
2513       else if (! strcmp (argv[i], "-print-search-dirs"))
2514         print_search_dirs = 1;
2515       else if (! strcmp (argv[i], "-print-libgcc-file-name"))
2516         print_file_name = "libgcc.a";
2517       else if (! strncmp (argv[i], "-print-file-name=", 17))
2518         print_file_name = argv[i] + 17;
2519       else if (! strncmp (argv[i], "-print-prog-name=", 17))
2520         print_prog_name = argv[i] + 17;
2521       else if (! strcmp (argv[i], "-print-multi-lib"))
2522         print_multi_lib = 1;
2523       else if (! strcmp (argv[i], "-print-multi-directory"))
2524         print_multi_directory = 1;
2525       else if (! strncmp (argv[i], "-Wa,", 4))
2526         {
2527           int prev, j;
2528           /* Pass the rest of this option to the assembler.  */
2529
2530           n_assembler_options++;
2531           if (!assembler_options)
2532             assembler_options
2533               = (char **) xmalloc (n_assembler_options * sizeof (char **));
2534           else
2535             assembler_options
2536               = (char **) xrealloc (assembler_options,
2537                                     n_assembler_options * sizeof (char **));
2538
2539           /* Split the argument at commas.  */
2540           prev = 4;
2541           for (j = 4; argv[i][j]; j++)
2542             if (argv[i][j] == ',')
2543               {
2544                 assembler_options[n_assembler_options - 1]
2545                   = save_string (argv[i] + prev, j - prev);
2546                 n_assembler_options++;
2547                 assembler_options
2548                   = (char **) xrealloc (assembler_options,
2549                                         n_assembler_options * sizeof (char **));
2550                 prev = j + 1;
2551               }
2552           /* Record the part after the last comma.  */
2553           assembler_options[n_assembler_options - 1] = argv[i] + prev;
2554         }
2555       else if (! strncmp (argv[i], "-Wp,", 4))
2556         {
2557           int prev, j;
2558           /* Pass the rest of this option to the preprocessor.  */
2559
2560           n_preprocessor_options++;
2561           if (!preprocessor_options)
2562             preprocessor_options
2563               = (char **) xmalloc (n_preprocessor_options * sizeof (char **));
2564           else
2565             preprocessor_options
2566               = (char **) xrealloc (preprocessor_options,
2567                                     n_preprocessor_options * sizeof (char **));
2568
2569           /* Split the argument at commas.  */
2570           prev = 4;
2571           for (j = 4; argv[i][j]; j++)
2572             if (argv[i][j] == ',')
2573               {
2574                 preprocessor_options[n_preprocessor_options - 1]
2575                   = save_string (argv[i] + prev, j - prev);
2576                 n_preprocessor_options++;
2577                 preprocessor_options
2578                   = (char **) xrealloc (preprocessor_options,
2579                                         n_preprocessor_options * sizeof (char **));
2580                 prev = j + 1;
2581               }
2582           /* Record the part after the last comma.  */
2583           preprocessor_options[n_preprocessor_options - 1] = argv[i] + prev;
2584         }
2585       else if (argv[i][0] == '+' && argv[i][1] == 'e')
2586         /* The +e options to the C++ front-end.  */
2587         n_switches++;
2588       else if (strncmp (argv[i], "-Wl,", 4) == 0)
2589         {
2590           int j;
2591           /* Split the argument at commas.  */
2592           for (j = 3; argv[i][j]; j++)
2593             n_infiles += (argv[i][j] == ',');
2594         }
2595       else if (strcmp (argv[i], "-Xlinker") == 0)
2596         {
2597           if (i + 1 == argc)
2598             fatal ("argument to `-Xlinker' is missing");
2599
2600           n_infiles++;
2601           i++;
2602         }
2603       else if (strncmp (argv[i], "-l", 2) == 0)
2604         n_infiles++;
2605       else if (argv[i][0] == '-' && argv[i][1] != 0)
2606         {
2607           register char *p = &argv[i][1];
2608           register int c = *p;
2609
2610           switch (c)
2611             {
2612             case 'b':
2613               if (p[1] == 0 && i + 1 == argc)
2614                 fatal ("argument to `-b' is missing");
2615               if (p[1] == 0)
2616                 spec_machine = argv[++i];
2617               else
2618                 spec_machine = p + 1;
2619               break;
2620
2621             case 'B':
2622               {
2623                 int *temp = (int *) xmalloc (sizeof (int));
2624                 char *value;
2625                 if (p[1] == 0 && i + 1 == argc)
2626                   fatal ("argument to `-B' is missing");
2627                 if (p[1] == 0)
2628                   value = argv[++i];
2629                 else
2630                   value = p + 1;
2631                 add_prefix (&exec_prefixes, value, 1, 0, temp);
2632                 add_prefix (&startfile_prefixes, value, 1, 0, temp);
2633                 add_prefix (&include_prefixes, concat (value, "include"),
2634                             1, 0, 0);
2635
2636                 /* As a kludge, if the arg is "[foo/]stageN/", just add
2637                    "[foo/]include" to the include prefix.  */
2638                 {
2639                   int len = strlen (value);
2640                   if ((len == 7
2641                        || (len > 7
2642                            && (value[len - 8] == '/'
2643                                || value[len - 8] == DIR_SEPARATOR)))
2644                       && strncmp (value + len - 7, "stage", 5) == 0
2645                       && isdigit (value[len - 2])
2646                       && (value[len - 1] == '/'
2647                           || value[len - 1] == DIR_SEPARATOR))
2648                     {
2649                       if (len == 7)
2650                         add_prefix (&include_prefixes, "include", 1, 0, 0);
2651                       else
2652                         {
2653                           char *string = xmalloc (len + 1);
2654                           strncpy (string, value, len-7);
2655                           strcat (string, "include");
2656                           add_prefix (&include_prefixes, string, 1, 0, 0);
2657                         }
2658                     }
2659                 }
2660               }
2661               break;
2662
2663             case 'v':   /* Print our subcommands and print versions.  */
2664               n_switches++;
2665               /* If they do anything other than exactly `-v', don't set
2666                  verbose_flag; rather, continue on to give the error.  */
2667               if (p[1] != 0)
2668                 break;
2669               verbose_flag++;
2670               break;
2671
2672             case 'V':
2673               if (p[1] == 0 && i + 1 == argc)
2674                 fatal ("argument to `-V' is missing");
2675               if (p[1] == 0)
2676                 spec_version = argv[++i];
2677               else
2678                 spec_version = p + 1;
2679               compiler_version = spec_version;
2680               break;
2681
2682             case 's':
2683               if (!strcmp (p, "save-temps"))
2684                 {
2685                   save_temps_flag = 1;
2686                   n_switches++;
2687                   break;
2688                 }
2689
2690             case 'c':
2691               have_c = 1;
2692               n_switches++;
2693               break;
2694
2695             case 'o':
2696               have_o = 1;
2697
2698               /* ... fall through ... */
2699
2700             default:
2701               n_switches++;
2702
2703               if (SWITCH_TAKES_ARG (c) > (p[1] != 0))
2704                 i += SWITCH_TAKES_ARG (c) - (p[1] != 0);
2705               else if (WORD_SWITCH_TAKES_ARG (p))
2706                 i += WORD_SWITCH_TAKES_ARG (p);
2707             }
2708         }
2709       else
2710         n_infiles++;
2711     }
2712
2713   if (have_c && have_o && n_infiles != 1)
2714     fatal ("cannot specify -o with -c and multiple compilations");
2715
2716   /* Set up the search paths before we go looking for config files.  */
2717
2718   /* These come before the md prefixes so that we will find gcc's subcommands
2719      (such as cpp) rather than those of the host system.  */
2720   /* Use 2 as fourth arg meaning try just the machine as a suffix,
2721      as well as trying the machine and the version.  */
2722 #ifndef OS2
2723   add_prefix (&exec_prefixes, standard_exec_prefix, 0, 2, NULL_PTR);
2724   add_prefix (&exec_prefixes, standard_exec_prefix_1, 0, 2, NULL_PTR);
2725 #endif
2726
2727   add_prefix (&startfile_prefixes, standard_exec_prefix, 0, 1, NULL_PTR);
2728   add_prefix (&startfile_prefixes, standard_exec_prefix_1, 0, 1, NULL_PTR);
2729
2730   tooldir_prefix = concat3 (tooldir_base_prefix, spec_machine, 
2731                             dir_separator_str);
2732
2733   /* If tooldir is relative, base it on exec_prefixes.  A relative
2734      tooldir lets us move the installed tree as a unit.
2735
2736      If GCC_EXEC_PREFIX is defined, then we want to add two relative
2737      directories, so that we can search both the user specified directory
2738      and the standard place.  */
2739
2740   if (*tooldir_prefix != '/' && *tooldir_prefix != DIR_SEPARATOR)
2741     {
2742       if (gcc_exec_prefix)
2743         {
2744           char *gcc_exec_tooldir_prefix
2745             = concat6 (gcc_exec_prefix, spec_machine, dir_separator_str,
2746                       spec_version, dir_separator_str, tooldir_prefix);
2747
2748           add_prefix (&exec_prefixes,
2749                       concat3 (gcc_exec_tooldir_prefix, "bin", 
2750                                dir_separator_str),
2751                       0, 0, NULL_PTR);
2752           add_prefix (&startfile_prefixes,
2753                       concat3 (gcc_exec_tooldir_prefix, "lib", 
2754                                dir_separator_str),
2755                       0, 0, NULL_PTR);
2756         }
2757
2758       tooldir_prefix = concat6 (standard_exec_prefix, spec_machine,
2759                                 dir_separator_str, spec_version, 
2760                                 dir_separator_str, tooldir_prefix);
2761     }
2762
2763   add_prefix (&exec_prefixes, 
2764               concat3 (tooldir_prefix, "bin", dir_separator_str),
2765               0, 0, NULL_PTR);
2766   add_prefix (&startfile_prefixes,
2767               concat3 (tooldir_prefix, "lib", dir_separator_str),
2768               0, 0, NULL_PTR);
2769
2770   /* More prefixes are enabled in main, after we read the specs file
2771      and determine whether this is cross-compilation or not.  */
2772
2773
2774   /* Then create the space for the vectors and scan again.  */
2775
2776   switches = ((struct switchstr *)
2777               xmalloc ((n_switches + 1) * sizeof (struct switchstr)));
2778   infiles = (struct infile *) xmalloc ((n_infiles + 1) * sizeof (struct infile));
2779   n_switches = 0;
2780   n_infiles = 0;
2781   last_language_n_infiles = -1;
2782
2783   /* This, time, copy the text of each switch and store a pointer
2784      to the copy in the vector of switches.
2785      Store all the infiles in their vector.  */
2786
2787   for (i = 1; i < argc; i++)
2788     {
2789       /* Just skip the switches that were handled by the preceding loop.  */
2790       if (! strncmp (argv[i], "-Wa,", 4))
2791         ;
2792       else if (! strncmp (argv[i], "-Wp,", 4))
2793         ;
2794       else if (! strcmp (argv[i], "-print-search-dirs"))
2795         ;
2796       else if (! strcmp (argv[i], "-print-libgcc-file-name"))
2797         ;
2798       else if (! strncmp (argv[i], "-print-file-name=", 17))
2799         ;
2800       else if (! strncmp (argv[i], "-print-prog-name=", 17))
2801         ;
2802       else if (! strcmp (argv[i], "-print-multi-lib"))
2803         ;
2804       else if (! strcmp (argv[i], "-print-multi-directory"))
2805         ;
2806       else if (argv[i][0] == '+' && argv[i][1] == 'e')
2807         {
2808           /* Compensate for the +e options to the C++ front-end;
2809              they're there simply for cfront call-compatibility.  We do
2810              some magic in default_compilers to pass them down properly.
2811              Note we deliberately start at the `+' here, to avoid passing
2812              -e0 or -e1 down into the linker.  */
2813           switches[n_switches].part1 = &argv[i][0];
2814           switches[n_switches].args = 0;
2815           switches[n_switches].live_cond = 0;
2816           switches[n_switches].valid = 0;
2817           n_switches++;
2818         }
2819       else if (strncmp (argv[i], "-Wl,", 4) == 0)
2820         {
2821           int prev, j;
2822           /* Split the argument at commas.  */
2823           prev = 4;
2824           for (j = 4; argv[i][j]; j++)
2825             if (argv[i][j] == ',')
2826               {
2827                 infiles[n_infiles].language = 0;
2828                 infiles[n_infiles++].name
2829                   = save_string (argv[i] + prev, j - prev);
2830                 prev = j + 1;
2831               }
2832           /* Record the part after the last comma.  */
2833           infiles[n_infiles].language = 0;
2834           infiles[n_infiles++].name = argv[i] + prev;
2835         }
2836       else if (strcmp (argv[i], "-Xlinker") == 0)
2837         {
2838           infiles[n_infiles].language = 0;
2839           infiles[n_infiles++].name = argv[++i];
2840         }
2841       else if (strncmp (argv[i], "-l", 2) == 0)
2842         {
2843           infiles[n_infiles].language = 0;
2844           infiles[n_infiles++].name = argv[i];
2845         }
2846       else if (argv[i][0] == '-' && argv[i][1] != 0)
2847         {
2848           register char *p = &argv[i][1];
2849           register int c = *p;
2850
2851           if (c == 'B' || c == 'b' || c == 'V')
2852             {
2853               /* Skip a separate arg, if any.  */
2854               if (p[1] == 0)
2855                 i++;
2856               continue;
2857             }
2858           if (c == 'x')
2859             {
2860               if (p[1] == 0 && i + 1 == argc)
2861                 fatal ("argument to `-x' is missing");
2862               if (p[1] == 0)
2863                 spec_lang = argv[++i];
2864               else
2865                 spec_lang = p + 1;
2866               if (! strcmp (spec_lang, "none"))
2867                 /* Suppress the warning if -xnone comes after the last input
2868                    file, because alternate command interfaces like g++ might
2869                    find it useful to place -xnone after each input file.  */
2870                 spec_lang = 0;
2871               else
2872                 last_language_n_infiles = n_infiles;
2873               continue;
2874             }
2875           switches[n_switches].part1 = p;
2876           /* Deal with option arguments in separate argv elements.  */
2877           if ((SWITCH_TAKES_ARG (c) > (p[1] != 0))
2878               || WORD_SWITCH_TAKES_ARG (p))
2879             {
2880               int j = 0;
2881               int n_args = WORD_SWITCH_TAKES_ARG (p);
2882
2883               if (n_args == 0)
2884                 {
2885                   /* Count only the option arguments in separate argv elements.  */
2886                   n_args = SWITCH_TAKES_ARG (c) - (p[1] != 0);
2887                 }
2888               if (i + n_args >= argc)
2889                 fatal ("argument to `-%s' is missing", p);
2890               switches[n_switches].args
2891                 = (char **) xmalloc ((n_args + 1) * sizeof (char *));
2892               while (j < n_args)
2893                 switches[n_switches].args[j++] = argv[++i];
2894               /* Null-terminate the vector.  */
2895               switches[n_switches].args[j] = 0;
2896             }
2897           else if (*switches_need_spaces != 0 && (c == 'o' || c == 'L'))
2898             {
2899               /* On some systems, ld cannot handle -o or -L without space.
2900                  So split the -o or -L from its argument.  */
2901               switches[n_switches].part1 = (c == 'o' ? "o" : "L");
2902               switches[n_switches].args = (char **) xmalloc (2 * sizeof (char *));
2903               switches[n_switches].args[0] = xmalloc (strlen (p));
2904               strcpy (switches[n_switches].args[0], &p[1]);
2905               switches[n_switches].args[1] = 0;
2906             }
2907           else
2908             switches[n_switches].args = 0;
2909
2910           switches[n_switches].live_cond = 0;
2911           switches[n_switches].valid = 0;
2912           /* This is always valid, since gcc.c itself understands it.  */
2913           if (!strcmp (p, "save-temps"))
2914             switches[n_switches].valid = 1;
2915           n_switches++;
2916         }
2917       else
2918         {
2919 #ifdef HAVE_OBJECT_SUFFIX
2920           /* Convert x.o to x.obj if OBJECT_SUFFIX is ".obj".  */
2921           if (strlen (argv[i]) > 2
2922               && argv[i][strlen (argv[i]) - 2] == '.'
2923               && argv[i][strlen (argv[i]) - 1] == 'o')
2924             {
2925               int j;
2926
2927               for (j = 0; j < strlen (argv[i]) - 2; j++)
2928                 obstack_1grow (&obstack, argv[i][j]);
2929
2930               obstack_grow (&obstack, OBJECT_SUFFIX, strlen (OBJECT_SUFFIX));
2931               obstack_1grow (&obstack, 0);
2932               argv[i] = obstack_finish (&obstack);
2933             }
2934 #endif
2935
2936           if (strcmp (argv[i], "-") != 0 && access (argv[i], R_OK) < 0)
2937             {
2938               perror_with_name (argv[i]);
2939               error_count++;
2940             }
2941           else
2942             {
2943               infiles[n_infiles].language = spec_lang;
2944               infiles[n_infiles++].name = argv[i];
2945             }
2946         }
2947     }
2948
2949   if (n_infiles == last_language_n_infiles && spec_lang != 0)
2950     error ("Warning: `-x %s' after last input file has no effect", spec_lang);
2951
2952   switches[n_switches].part1 = 0;
2953   infiles[n_infiles].name = 0;
2954 }
2955 \f
2956 /* Process a spec string, accumulating and running commands.  */
2957
2958 /* These variables describe the input file name.
2959    input_file_number is the index on outfiles of this file,
2960    so that the output file name can be stored for later use by %o.
2961    input_basename is the start of the part of the input file
2962    sans all directory names, and basename_length is the number
2963    of characters starting there excluding the suffix .c or whatever.  */
2964
2965 static char *input_filename;
2966 static int input_file_number;
2967 static int input_filename_length;
2968 static int basename_length;
2969 static char *input_basename;
2970 static char *input_suffix;
2971
2972 /* These are variables used within do_spec and do_spec_1.  */
2973
2974 /* Nonzero if an arg has been started and not yet terminated
2975    (with space, tab or newline).  */
2976 static int arg_going;
2977
2978 /* Nonzero means %d or %g has been seen; the next arg to be terminated
2979    is a temporary file name.  */
2980 static int delete_this_arg;
2981
2982 /* Nonzero means %w has been seen; the next arg to be terminated
2983    is the output file name of this compilation.  */
2984 static int this_is_output_file;
2985
2986 /* Nonzero means %s has been seen; the next arg to be terminated
2987    is the name of a library file and we should try the standard
2988    search dirs for it.  */
2989 static int this_is_library_file;
2990
2991 /* Nonzero means that the input of this command is coming from a pipe.  */
2992 static int input_from_pipe;
2993
2994 /* Process the spec SPEC and run the commands specified therein.
2995    Returns 0 if the spec is successfully processed; -1 if failed.  */
2996
2997 static int
2998 do_spec (spec)
2999      char *spec;
3000 {
3001   int value;
3002
3003   clear_args ();
3004   arg_going = 0;
3005   delete_this_arg = 0;
3006   this_is_output_file = 0;
3007   this_is_library_file = 0;
3008   input_from_pipe = 0;
3009
3010   value = do_spec_1 (spec, 0, NULL_PTR);
3011
3012   /* Force out any unfinished command.
3013      If -pipe, this forces out the last command if it ended in `|'.  */
3014   if (value == 0)
3015     {
3016       if (argbuf_index > 0 && !strcmp (argbuf[argbuf_index - 1], "|"))
3017         argbuf_index--;
3018
3019       if (argbuf_index > 0)
3020         value = execute ();
3021     }
3022
3023   return value;
3024 }
3025
3026 /* Process the sub-spec SPEC as a portion of a larger spec.
3027    This is like processing a whole spec except that we do
3028    not initialize at the beginning and we do not supply a
3029    newline by default at the end.
3030    INSWITCH nonzero means don't process %-sequences in SPEC;
3031    in this case, % is treated as an ordinary character.
3032    This is used while substituting switches.
3033    INSWITCH nonzero also causes SPC not to terminate an argument.
3034
3035    Value is zero unless a line was finished
3036    and the command on that line reported an error.  */
3037
3038 static int
3039 do_spec_1 (spec, inswitch, soft_matched_part)
3040      char *spec;
3041      int inswitch;
3042      char *soft_matched_part;
3043 {
3044   register char *p = spec;
3045   register int c;
3046   int i;
3047   char *string;
3048   int value;
3049
3050   while (c = *p++)
3051     /* If substituting a switch, treat all chars like letters.
3052        Otherwise, NL, SPC, TAB and % are special.  */
3053     switch (inswitch ? 'a' : c)
3054       {
3055       case '\n':
3056         /* End of line: finish any pending argument,
3057            then run the pending command if one has been started.  */
3058         if (arg_going)
3059           {
3060             obstack_1grow (&obstack, 0);
3061             string = obstack_finish (&obstack);
3062             if (this_is_library_file)
3063               string = find_file (string);
3064             store_arg (string, delete_this_arg, this_is_output_file);
3065             if (this_is_output_file)
3066               outfiles[input_file_number] = string;
3067           }
3068         arg_going = 0;
3069
3070         if (argbuf_index > 0 && !strcmp (argbuf[argbuf_index - 1], "|"))
3071           {
3072             for (i = 0; i < n_switches; i++)
3073               if (!strcmp (switches[i].part1, "pipe"))
3074                 break;
3075
3076             /* A `|' before the newline means use a pipe here,
3077                but only if -pipe was specified.
3078                Otherwise, execute now and don't pass the `|' as an arg.  */
3079             if (i < n_switches)
3080               {
3081                 input_from_pipe = 1;
3082                 switches[i].valid = 1;
3083                 break;
3084               }
3085             else
3086               argbuf_index--;
3087           }
3088
3089         if (argbuf_index > 0)
3090           {
3091             value = execute ();
3092             if (value)
3093               return value;
3094           }
3095         /* Reinitialize for a new command, and for a new argument.  */
3096         clear_args ();
3097         arg_going = 0;
3098         delete_this_arg = 0;
3099         this_is_output_file = 0;
3100         this_is_library_file = 0;
3101         input_from_pipe = 0;
3102         break;
3103
3104       case '|':
3105         /* End any pending argument.  */
3106         if (arg_going)
3107           {
3108             obstack_1grow (&obstack, 0);
3109             string = obstack_finish (&obstack);
3110             if (this_is_library_file)
3111               string = find_file (string);
3112             store_arg (string, delete_this_arg, this_is_output_file);
3113             if (this_is_output_file)
3114               outfiles[input_file_number] = string;
3115           }
3116
3117         /* Use pipe */
3118         obstack_1grow (&obstack, c);
3119         arg_going = 1;
3120         break;
3121
3122       case '\t':
3123       case ' ':
3124         /* Space or tab ends an argument if one is pending.  */
3125         if (arg_going)
3126           {
3127             obstack_1grow (&obstack, 0);
3128             string = obstack_finish (&obstack);
3129             if (this_is_library_file)
3130               string = find_file (string);
3131             store_arg (string, delete_this_arg, this_is_output_file);
3132             if (this_is_output_file)
3133               outfiles[input_file_number] = string;
3134           }
3135         /* Reinitialize for a new argument.  */
3136         arg_going = 0;
3137         delete_this_arg = 0;
3138         this_is_output_file = 0;
3139         this_is_library_file = 0;
3140         break;
3141
3142       case '%':
3143         switch (c = *p++)
3144           {
3145           case 0:
3146             fatal ("Invalid specification!  Bug in cc.");
3147
3148           case 'b':
3149             obstack_grow (&obstack, input_basename, basename_length);
3150             arg_going = 1;
3151             break;
3152
3153           case 'd':
3154             delete_this_arg = 2;
3155             break;
3156
3157           /* Dump out the directories specified with LIBRARY_PATH,
3158              followed by the absolute directories
3159              that we search for startfiles.  */
3160           case 'D':
3161             {
3162               struct prefix_list *pl = startfile_prefixes.plist;
3163               int bufsize = 100;
3164               char *buffer = (char *) xmalloc (bufsize);
3165               int idx;
3166
3167               for (; pl; pl = pl->next)
3168                 {
3169 #ifdef RELATIVE_PREFIX_NOT_LINKDIR
3170                   /* Used on systems which record the specified -L dirs
3171                      and use them to search for dynamic linking.  */
3172                   /* Relative directories always come from -B,
3173                      and it is better not to use them for searching
3174                      at run time.  In particular, stage1 loses  */
3175                   if (pl->prefix[0] != '/' && pl->prefix[0] != DIR_SEPARATOR)
3176                     continue;
3177 #endif
3178                   /* Try subdirectory if there is one.  */
3179                   if (multilib_dir != NULL)
3180                     {
3181                       if (machine_suffix)
3182                         {
3183                           if (strlen (pl->prefix) + strlen (machine_suffix)
3184                               >= bufsize)
3185                             bufsize = (strlen (pl->prefix)
3186                                        + strlen (machine_suffix)) * 2 + 1;
3187                           buffer = (char *) xrealloc (buffer, bufsize);
3188                           strcpy (buffer, pl->prefix);
3189                           strcat (buffer, machine_suffix);
3190                           if (is_directory (buffer, multilib_dir, 1))
3191                             {
3192                               do_spec_1 ("-L", 0, NULL_PTR);
3193 #ifdef SPACE_AFTER_L_OPTION
3194                               do_spec_1 (" ", 0, NULL_PTR);
3195 #endif
3196                               do_spec_1 (buffer, 1, NULL_PTR);
3197                               do_spec_1 (multilib_dir, 1, NULL_PTR);
3198                               /* Make this a separate argument.  */
3199                               do_spec_1 (" ", 0, NULL_PTR);
3200                             }
3201                         }
3202                       if (!pl->require_machine_suffix)
3203                         {
3204                           if (is_directory (pl->prefix, multilib_dir, 1))
3205                             {
3206                               do_spec_1 ("-L", 0, NULL_PTR);
3207 #ifdef SPACE_AFTER_L_OPTION
3208                               do_spec_1 (" ", 0, NULL_PTR);
3209 #endif
3210                               do_spec_1 (pl->prefix, 1, NULL_PTR);
3211                               do_spec_1 (multilib_dir, 1, NULL_PTR);
3212                               /* Make this a separate argument.  */
3213                               do_spec_1 (" ", 0, NULL_PTR);
3214                             }
3215                         }
3216                     }
3217                   if (machine_suffix)
3218                     {
3219                       if (is_directory (pl->prefix, machine_suffix, 1))
3220                         {
3221                           do_spec_1 ("-L", 0, NULL_PTR);
3222 #ifdef SPACE_AFTER_L_OPTION
3223                           do_spec_1 (" ", 0, NULL_PTR);
3224 #endif
3225                           do_spec_1 (pl->prefix, 1, NULL_PTR);
3226                           /* Remove slash from machine_suffix.  */
3227                           if (strlen (machine_suffix) >= bufsize)
3228                             bufsize = strlen (machine_suffix) * 2 + 1;
3229                           buffer = (char *) xrealloc (buffer, bufsize);
3230                           strcpy (buffer, machine_suffix);
3231                           idx = strlen (buffer);
3232                           if (buffer[idx - 1] == '/'
3233                               || buffer[idx - 1] == DIR_SEPARATOR)
3234                             buffer[idx - 1] = 0;
3235                           do_spec_1 (buffer, 1, NULL_PTR);
3236                           /* Make this a separate argument.  */
3237                           do_spec_1 (" ", 0, NULL_PTR);
3238                         }
3239                     }
3240                   if (!pl->require_machine_suffix)
3241                     {
3242                       if (is_directory (pl->prefix, "", 1))
3243                         {
3244                           do_spec_1 ("-L", 0, NULL_PTR);
3245 #ifdef SPACE_AFTER_L_OPTION
3246                           do_spec_1 (" ", 0, NULL_PTR);
3247 #endif
3248                           /* Remove slash from pl->prefix.  */
3249                           if (strlen (pl->prefix) >= bufsize)
3250                             bufsize = strlen (pl->prefix) * 2 + 1;
3251                           buffer = (char *) xrealloc (buffer, bufsize);
3252                           strcpy (buffer, pl->prefix);
3253                           idx = strlen (buffer);
3254                           if (buffer[idx - 1] == '/'
3255                               || buffer[idx - 1] == DIR_SEPARATOR)
3256                             buffer[idx - 1] = 0;
3257                           do_spec_1 (buffer, 1, NULL_PTR);
3258                           /* Make this a separate argument.  */
3259                           do_spec_1 (" ", 0, NULL_PTR);
3260                         }
3261                     }
3262                 }
3263               free (buffer);
3264             }
3265             break;
3266
3267           case 'e':
3268             /* {...:%efoo} means report an error with `foo' as error message
3269                and don't execute any more commands for this file.  */
3270             {
3271               char *q = p;
3272               char *buf;
3273               while (*p != 0 && *p != '\n') p++;
3274               buf = (char *) alloca (p - q + 1);
3275               strncpy (buf, q, p - q);
3276               buf[p - q] = 0;
3277               error ("%s", buf);
3278               return -1;
3279             }
3280             break;
3281
3282           case 'g':
3283           case 'u':
3284           case 'U':
3285             if (save_temps_flag)
3286               {
3287                 obstack_grow (&obstack, input_basename, basename_length);
3288                 delete_this_arg = 0;
3289               }
3290             else
3291               {
3292 #ifdef MKTEMP_EACH_FILE
3293                 /* ??? This has a problem: the total number of
3294                    values mktemp can return is limited.
3295                    That matters for the names of object files.
3296                    In 2.4, do something about that.  */
3297                 struct temp_name *t;
3298                 char *suffix = p;
3299                 while (*p == '.' || isalpha (*p)
3300                        || (p[0] == '%' && p[1] == 'O'))
3301                   p++;
3302
3303                 /* See if we already have an association of %g/%u/%U and
3304                    suffix.  */
3305                 for (t = temp_names; t; t = t->next)
3306                   if (t->length == p - suffix
3307                       && strncmp (t->suffix, suffix, p - suffix) == 0
3308                       && t->unique == (c != 'g'))
3309                     break;
3310
3311                 /* Make a new association if needed.  %u requires one.  */
3312                 if (t == 0 || c == 'u')
3313                   {
3314                     if (t == 0)
3315                       {
3316                         t = (struct temp_name *) xmalloc (sizeof (struct temp_name));
3317                         t->next = temp_names;
3318                         temp_names = t;
3319                       }
3320                     t->length = p - suffix;
3321                     t->suffix = save_string (suffix, p - suffix);
3322                     t->unique = (c != 'g');
3323                     choose_temp_base ();
3324                     t->filename = temp_filename;
3325                     t->filename_length = temp_filename_length;
3326                   }
3327
3328                 obstack_grow (&obstack, t->filename, t->filename_length);
3329                 delete_this_arg = 1;
3330 #else
3331                 obstack_grow (&obstack, temp_filename, temp_filename_length);
3332                 if (c == 'u' || c == 'U')
3333                   {
3334                     static int unique;
3335                     char buff[9];
3336                     if (c == 'u')
3337                       unique++;
3338                     sprintf (buff, "%d", unique);
3339                     obstack_grow (&obstack, buff, strlen (buff));
3340                   }
3341 #endif
3342                 delete_this_arg = 1;
3343               }
3344             arg_going = 1;
3345             break;
3346
3347           case 'i':
3348             obstack_grow (&obstack, input_filename, input_filename_length);
3349             arg_going = 1;
3350             break;
3351
3352           case 'I':
3353             {
3354               struct prefix_list *pl = include_prefixes.plist;
3355
3356               if (gcc_exec_prefix)
3357                 {
3358                   do_spec_1 ("-iprefix", 1, NULL_PTR);
3359                   /* Make this a separate argument.  */
3360                   do_spec_1 (" ", 0, NULL_PTR);
3361                   do_spec_1 (gcc_exec_prefix, 1, NULL_PTR);
3362                   do_spec_1 (" ", 0, NULL_PTR);
3363                 }
3364
3365               for (; pl; pl = pl->next)
3366                 {
3367                   do_spec_1 ("-isystem", 1, NULL_PTR);
3368                   /* Make this a separate argument.  */
3369                   do_spec_1 (" ", 0, NULL_PTR);
3370                   do_spec_1 (pl->prefix, 1, NULL_PTR);
3371                   do_spec_1 (" ", 0, NULL_PTR);
3372                 }
3373             }
3374             break;
3375
3376           case 'o':
3377             for (i = 0; i < n_infiles; i++)
3378               store_arg (outfiles[i], 0, 0);
3379             break;
3380
3381           case 'O':
3382             obstack_grow (&obstack, OBJECT_SUFFIX, strlen (OBJECT_SUFFIX));
3383             arg_going = 1;
3384             break;
3385
3386           case 's':
3387             this_is_library_file = 1;
3388             break;
3389
3390           case 'w':
3391             this_is_output_file = 1;
3392             break;
3393
3394           case 'W':
3395             {
3396               int index = argbuf_index;
3397               /* Handle the {...} following the %W.  */
3398               if (*p != '{')
3399                 abort ();
3400               p = handle_braces (p + 1);
3401               if (p == 0)
3402                 return -1;
3403               /* If any args were output, mark the last one for deletion
3404                  on failure.  */
3405               if (argbuf_index != index)
3406                 record_temp_file (argbuf[argbuf_index - 1], 0, 1);
3407               break;
3408             }
3409
3410           /* %x{OPTION} records OPTION for %X to output.  */
3411           case 'x':
3412             {
3413               char *p1 = p;
3414               char *string;
3415
3416               /* Skip past the option value and make a copy.  */
3417               if (*p != '{')
3418                 abort ();
3419               while (*p++ != '}')
3420                 ;
3421               string = save_string (p1 + 1, p - p1 - 2);
3422
3423               /* See if we already recorded this option.  */
3424               for (i = 0; i < n_linker_options; i++)
3425                 if (! strcmp (string, linker_options[i]))
3426                   {
3427                     free (string);
3428                     return 0;
3429                   }
3430
3431               /* This option is new; add it.  */
3432               n_linker_options++;
3433               if (!linker_options)
3434                 linker_options
3435                   = (char **) xmalloc (n_linker_options * sizeof (char **));
3436               else
3437                 linker_options
3438                   = (char **) xrealloc (linker_options,
3439                                         n_linker_options * sizeof (char **));
3440
3441               linker_options[n_linker_options - 1] = string;
3442             }
3443             break;
3444
3445           /* Dump out the options accumulated previously using %x.  */
3446           case 'X':
3447             for (i = 0; i < n_linker_options; i++)
3448               {
3449                 do_spec_1 (linker_options[i], 1, NULL_PTR);
3450                 /* Make each accumulated option a separate argument.  */
3451                 do_spec_1 (" ", 0, NULL_PTR);
3452               }
3453             break;
3454
3455           /* Dump out the options accumulated previously using -Wa,.  */
3456           case 'Y':
3457             for (i = 0; i < n_assembler_options; i++)
3458               {
3459                 do_spec_1 (assembler_options[i], 1, NULL_PTR);
3460                 /* Make each accumulated option a separate argument.  */
3461                 do_spec_1 (" ", 0, NULL_PTR);
3462               }
3463             break;
3464
3465           /* Dump out the options accumulated previously using -Wp,.  */
3466           case 'Z':
3467             for (i = 0; i < n_preprocessor_options; i++)
3468               {
3469                 do_spec_1 (preprocessor_options[i], 1, NULL_PTR);
3470                 /* Make each accumulated option a separate argument.  */
3471                 do_spec_1 (" ", 0, NULL_PTR);
3472               }
3473             break;
3474
3475             /* Here are digits and numbers that just process
3476                a certain constant string as a spec.  */
3477
3478           case '1':
3479             value = do_spec_1 (cc1_spec, 0, NULL_PTR);
3480             if (value != 0)
3481               return value;
3482             break;
3483
3484           case '2':
3485             value = do_spec_1 (cc1plus_spec, 0, NULL_PTR);
3486             if (value != 0)
3487               return value;
3488             break;
3489
3490           case 'a':
3491             value = do_spec_1 (asm_spec, 0, NULL_PTR);
3492             if (value != 0)
3493               return value;
3494             break;
3495
3496           case 'A':
3497             value = do_spec_1 (asm_final_spec, 0, NULL_PTR);
3498             if (value != 0)
3499               return value;
3500             break;
3501
3502           case 'c':
3503             value = do_spec_1 (signed_char_spec, 0, NULL_PTR);
3504             if (value != 0)
3505               return value;
3506             break;
3507
3508           case 'C':
3509             value = do_spec_1 (cpp_spec, 0, NULL_PTR);
3510             if (value != 0)
3511               return value;
3512             break;
3513
3514           case 'E':
3515             value = do_spec_1 (endfile_spec, 0, NULL_PTR);
3516             if (value != 0)
3517               return value;
3518             break;
3519
3520           case 'l':
3521             value = do_spec_1 (link_spec, 0, NULL_PTR);
3522             if (value != 0)
3523               return value;
3524             break;
3525
3526           case 'L':
3527             value = do_spec_1 (lib_spec, 0, NULL_PTR);
3528             if (value != 0)
3529               return value;
3530             break;
3531
3532           case 'G':
3533             value = do_spec_1 (libgcc_spec, 0, NULL_PTR);
3534             if (value != 0)
3535               return value;
3536             break;
3537
3538           case 'p':
3539             {
3540               char *x = (char *) alloca (strlen (cpp_predefines) + 1);
3541               char *buf = x;
3542               char *y;
3543
3544               /* Copy all of the -D options in CPP_PREDEFINES into BUF.  */
3545               y = cpp_predefines;
3546               while (*y != 0)
3547                 {
3548                   if (! strncmp (y, "-D", 2))
3549                     /* Copy the whole option.  */
3550                     while (*y && *y != ' ' && *y != '\t')
3551                       *x++ = *y++;
3552                   else if (*y == ' ' || *y == '\t')
3553                     /* Copy whitespace to the result.  */
3554                     *x++ = *y++;
3555                   /* Don't copy other options.  */
3556                   else
3557                     y++;
3558                 }
3559
3560               *x = 0;
3561
3562               value = do_spec_1 (buf, 0, NULL_PTR);
3563               if (value != 0)
3564                 return value;
3565             }
3566             break;
3567
3568           case 'P':
3569             {
3570               char *x = (char *) alloca (strlen (cpp_predefines) * 4 + 1);
3571               char *buf = x;
3572               char *y;
3573
3574               /* Copy all of CPP_PREDEFINES into BUF,
3575                  but put __ after every -D and at the end of each arg.  */
3576               y = cpp_predefines;
3577               while (*y != 0)
3578                 {
3579                   if (! strncmp (y, "-D", 2))
3580                     {
3581                       int flag = 0;
3582
3583                       *x++ = *y++;
3584                       *x++ = *y++;
3585
3586                       if (*y != '_'
3587                           || (*(y+1) != '_' && ! isupper (*(y+1))))
3588                         {
3589                           /* Stick __ at front of macro name.  */
3590                           *x++ = '_';
3591                           *x++ = '_';
3592                           /* Arrange to stick __ at the end as well.  */
3593                           flag = 1;
3594                         }
3595
3596                       /* Copy the macro name.  */
3597                       while (*y && *y != '=' && *y != ' ' && *y != '\t')
3598                         *x++ = *y++;
3599
3600                       if (flag)
3601                         {
3602                           *x++ = '_';
3603                           *x++ = '_';
3604                         }
3605
3606                       /* Copy the value given, if any.  */
3607                       while (*y && *y != ' ' && *y != '\t')
3608                         *x++ = *y++;
3609                     }
3610                   else if (*y == ' ' || *y == '\t')
3611                     /* Copy whitespace to the result.  */
3612                     *x++ = *y++;
3613                   /* Don't copy -A options  */
3614                   else
3615                     y++;
3616                 }
3617               *x++ = ' ';
3618
3619               /* Copy all of CPP_PREDEFINES into BUF,
3620                  but put __ after every -D.  */
3621               y = cpp_predefines;
3622               while (*y != 0)
3623                 {
3624                   if (! strncmp (y, "-D", 2))
3625                     {
3626                       y += 2;
3627
3628                       if (*y != '_'
3629                           || (*(y+1) != '_' && ! isupper (*(y+1))))
3630                         {
3631                           /* Stick -D__ at front of macro name.  */
3632                           *x++ = '-';
3633                           *x++ = 'D';
3634                           *x++ = '_';
3635                           *x++ = '_';
3636
3637                           /* Copy the macro name.  */
3638                           while (*y && *y != '=' && *y != ' ' && *y != '\t')
3639                             *x++ = *y++;
3640
3641                           /* Copy the value given, if any.  */
3642                           while (*y && *y != ' ' && *y != '\t')
3643                             *x++ = *y++;
3644                         }
3645                       else
3646                         {
3647                           /* Do not copy this macro - we have just done it before */
3648                           while (*y && *y != ' ' && *y != '\t')
3649                             y++;
3650                         }
3651                     }
3652                   else if (*y == ' ' || *y == '\t')
3653                     /* Copy whitespace to the result.  */
3654                     *x++ = *y++;
3655                   /* Don't copy -A options  */
3656                   else
3657                     y++;
3658                 }
3659               *x++ = ' ';
3660
3661               /* Copy all of the -A options in CPP_PREDEFINES into BUF.  */
3662               y = cpp_predefines;
3663               while (*y != 0)
3664                 {
3665                   if (! strncmp (y, "-A", 2))
3666                     /* Copy the whole option.  */
3667                     while (*y && *y != ' ' && *y != '\t')
3668                       *x++ = *y++;
3669                   else if (*y == ' ' || *y == '\t')
3670                     /* Copy whitespace to the result.  */
3671                     *x++ = *y++;
3672                   /* Don't copy other options.  */
3673                   else
3674                     y++;
3675                 }
3676
3677               *x = 0;
3678
3679               value = do_spec_1 (buf, 0, NULL_PTR);
3680               if (value != 0)
3681                 return value;
3682             }
3683             break;
3684
3685           case 'S':
3686             value = do_spec_1 (startfile_spec, 0, NULL_PTR);
3687             if (value != 0)
3688               return value;
3689             break;
3690
3691             /* Here we define characters other than letters and digits.  */
3692
3693           case '{':
3694             p = handle_braces (p);
3695             if (p == 0)
3696               return -1;
3697             break;
3698
3699           case '%':
3700             obstack_1grow (&obstack, '%');
3701             break;
3702
3703           case '*':
3704             do_spec_1 (soft_matched_part, 1, NULL_PTR);
3705             do_spec_1 (" ", 0, NULL_PTR);
3706             break;
3707
3708             /* Process a string found as the value of a spec given by name.
3709                This feature allows individual machine descriptions
3710                to add and use their own specs.
3711                %[...] modifies -D options the way %P does;
3712                %(...) uses the spec unmodified.  */
3713           case '(':
3714           case '[':
3715             {
3716               char *name = p;
3717               struct spec_list *sl;
3718               int len;
3719
3720               /* The string after the S/P is the name of a spec that is to be
3721                  processed. */
3722               while (*p && *p != ')' && *p != ']')
3723                 p++;
3724
3725               /* See if it's in the list */
3726               for (len = p - name, sl = specs; sl; sl = sl->next)
3727                 if (strncmp (sl->name, name, len) == 0 && !sl->name[len])
3728                   {
3729                     name = sl->spec;
3730                     break;
3731                   }
3732
3733               if (sl)
3734                 {
3735                   if (c == '(')
3736                     {
3737                       value = do_spec_1 (name, 0, NULL_PTR);
3738                       if (value != 0)
3739                         return value;
3740                     }
3741                   else
3742                     {
3743                       char *x = (char *) alloca (strlen (name) * 2 + 1);
3744                       char *buf = x;
3745                       char *y = name;
3746
3747                       /* Copy all of NAME into BUF, but put __ after
3748                          every -D and at the end of each arg,  */
3749                       while (1)
3750                         {
3751                           if (! strncmp (y, "-D", 2))
3752                             {
3753                               *x++ = '-';
3754                               *x++ = 'D';
3755                               *x++ = '_';
3756                               *x++ = '_';
3757                               y += 2;
3758                             }
3759                           else if (*y == ' ' || *y == 0)
3760                             {
3761                               *x++ = '_';
3762                               *x++ = '_';
3763                               if (*y == 0)
3764                                 break;
3765                               else
3766                                 *x++ = *y++;
3767                             }
3768                           else
3769                             *x++ = *y++;
3770                         }
3771                       *x = 0;
3772
3773                       value = do_spec_1 (buf, 0, NULL_PTR);
3774                       if (value != 0)
3775                         return value;
3776                     }
3777                 }
3778
3779               /* Discard the closing paren or bracket.  */
3780               if (*p)
3781                 p++;
3782             }
3783             break;
3784
3785           case 'v':
3786             {
3787               int c1 = *p++;  /* Select first or second version number.  */
3788               char *v = compiler_version;
3789               char *q, *copy;
3790               /* If desired, advance to second version number.  */
3791               if (c1 == '2')
3792                 {
3793                   /* Set V after the first period.  */
3794                   while (*v != 0 && *v != ' ' && *v != '.')
3795                     v++;
3796                   if (*v == '.')
3797                     v++;
3798                 }
3799               /* Set Q at the next period or at the end.  */
3800               q = v;
3801               while (*q != 0 && *q != ' ' && *q != '.')
3802                 q++;
3803               /* Empty string means zero.  */
3804               if (v == q)
3805                 {
3806                   v = "0";
3807                   q = v + 1;
3808                 }
3809               /* Put that part into the command.  */
3810               obstack_grow (&obstack, v, q - v);
3811               arg_going = 1;
3812             }
3813             break;
3814
3815           case '|':
3816             if (input_from_pipe)
3817               do_spec_1 ("-", 0, NULL_PTR);
3818             break;
3819
3820           default:
3821             abort ();
3822           }
3823         break;
3824
3825       case '\\':
3826         /* Backslash: treat next character as ordinary.  */
3827         c = *p++;
3828
3829         /* fall through */
3830       default:
3831         /* Ordinary character: put it into the current argument.  */
3832         obstack_1grow (&obstack, c);
3833         arg_going = 1;
3834       }
3835
3836   return 0;             /* End of string */
3837 }
3838
3839 /* Return 0 if we call do_spec_1 and that returns -1.  */
3840
3841 static char *
3842 handle_braces (p)
3843      register char *p;
3844 {
3845   register char *q;
3846   char *filter;
3847   int pipe_p = 0;
3848   int negate = 0;
3849   int suffix = 0;
3850
3851   if (*p == '|')
3852     /* A `|' after the open-brace means,
3853        if the test fails, output a single minus sign rather than nothing.
3854        This is used in %{|!pipe:...}.  */
3855     pipe_p = 1, ++p;
3856
3857   if (*p == '!')
3858     /* A `!' after the open-brace negates the condition:
3859        succeed if the specified switch is not present.  */
3860     negate = 1, ++p;
3861
3862   if (*p == '.')
3863     /* A `.' after the open-brace means test against the current suffix.  */
3864     {
3865       if (pipe_p)
3866         abort ();
3867
3868       suffix = 1;
3869       ++p;
3870     }
3871
3872   filter = p;
3873   while (*p != ':' && *p != '}') p++;
3874   if (*p != '}')
3875     {
3876       register int count = 1;
3877       q = p + 1;
3878       while (count > 0)
3879         {
3880           if (*q == '{')
3881             count++;
3882           else if (*q == '}')
3883             count--;
3884           else if (*q == 0)
3885             abort ();
3886           q++;
3887         }
3888     }
3889   else
3890     q = p + 1;
3891
3892   if (suffix)
3893     {
3894       int found = (input_suffix != 0
3895                    && strlen (input_suffix) == p - filter
3896                    && strncmp (input_suffix, filter, p - filter) == 0);
3897
3898       if (p[0] == '}')
3899         abort ();
3900
3901       if (negate != found
3902           && do_spec_1 (save_string (p + 1, q - p - 2), 0, NULL_PTR) < 0)
3903         return 0;
3904
3905       return q;
3906     }
3907   else if (p[-1] == '*' && p[0] == '}')
3908     {
3909       /* Substitute all matching switches as separate args.  */
3910       register int i;
3911       --p;
3912       for (i = 0; i < n_switches; i++)
3913         if (!strncmp (switches[i].part1, filter, p - filter)
3914             && check_live_switch (i, p - filter))
3915           give_switch (i, 0);
3916     }
3917   else
3918     {
3919       /* Test for presence of the specified switch.  */
3920       register int i;
3921       int present = 0;
3922
3923       /* If name specified ends in *, as in {x*:...},
3924          check for %* and handle that case.  */
3925       if (p[-1] == '*' && !negate)
3926         {
3927           int substitution;
3928           char *r = p;
3929
3930           /* First see whether we have %*.  */
3931           substitution = 0;
3932           while (r < q)
3933             {
3934               if (*r == '%' && r[1] == '*')
3935                 substitution = 1;
3936               r++;
3937             }
3938           /* If we do, handle that case.  */
3939           if (substitution)
3940             {
3941               /* Substitute all matching switches as separate args.
3942                  But do this by substituting for %*
3943                  in the text that follows the colon.  */
3944
3945               unsigned hard_match_len = p - filter - 1;
3946               char *string = save_string (p + 1, q - p - 2);
3947
3948               for (i = 0; i < n_switches; i++)
3949                 if (!strncmp (switches[i].part1, filter, hard_match_len)
3950                     && check_live_switch (i, -1))
3951                   {
3952                     do_spec_1 (string, 0, &switches[i].part1[hard_match_len]);
3953                     /* Pass any arguments this switch has.  */
3954                     give_switch (i, 1);
3955                   }
3956
3957               return q;
3958             }
3959         }
3960
3961       /* If name specified ends in *, as in {x*:...},
3962          check for presence of any switch name starting with x.  */
3963       if (p[-1] == '*')
3964         {
3965           for (i = 0; i < n_switches; i++)
3966             {
3967               unsigned hard_match_len = p - filter - 1;
3968
3969               if (!strncmp (switches[i].part1, filter, hard_match_len)
3970                   && check_live_switch (i, hard_match_len))
3971                 {
3972                   present = 1;
3973                 }
3974             }
3975         }
3976       /* Otherwise, check for presence of exact name specified.  */
3977       else
3978         {
3979           for (i = 0; i < n_switches; i++)
3980             {
3981               if (!strncmp (switches[i].part1, filter, p - filter)
3982                   && switches[i].part1[p - filter] == 0
3983                   && check_live_switch (i, -1))
3984                 {
3985                   present = 1;
3986                   break;
3987                 }
3988             }
3989         }
3990
3991       /* If it is as desired (present for %{s...}, absent for %{-s...})
3992          then substitute either the switch or the specified
3993          conditional text.  */
3994       if (present != negate)
3995         {
3996           if (*p == '}')
3997             {
3998               give_switch (i, 0);
3999             }
4000           else
4001             {
4002               if (do_spec_1 (save_string (p + 1, q - p - 2), 0, NULL_PTR) < 0)
4003                 return 0;
4004             }
4005         }
4006       else if (pipe_p)
4007         {
4008           /* Here if a %{|...} conditional fails: output a minus sign,
4009              which means "standard output" or "standard input".  */
4010           do_spec_1 ("-", 0, NULL_PTR);
4011         }
4012     }
4013
4014   return q;
4015 }
4016 \f
4017 /* Return 0 iff switch number SWITCHNUM is obsoleted by a later switch
4018    on the command line.  PREFIX_LENGTH is the length of XXX in an {XXX*}
4019    spec, or -1 if either exact match or %* is used.
4020
4021    A -O switch is obsoleted by a later -O switch.  A -f, -m, or -W switch
4022    whose value does not begin with "no-" is obsoleted by the same value
4023    with the "no-", similarly for a switch with the "no-" prefix.  */
4024
4025 static int
4026 check_live_switch (switchnum, prefix_length)
4027      int switchnum;
4028      int prefix_length;
4029 {
4030   char *name = switches[switchnum].part1;
4031   int i;
4032
4033   /* In the common case of {<at-most-one-letter>*}, a negating
4034      switch would always match, so ignore that case.  We will just
4035      send the conflicting switches to the compiler phase.  */
4036   if (prefix_length >= 0 && prefix_length <= 1)
4037     return 1;
4038
4039   /* If we already processed this switch and determined if it was
4040      live or not, return our past determination.  */
4041   if (switches[switchnum].live_cond != 0)
4042     return switches[switchnum].live_cond > 0;
4043
4044   /* Now search for duplicate in a manner that depends on the name.  */
4045   switch (*name)
4046     {
4047     case 'O':
4048         for (i = switchnum + 1; i < n_switches; i++)
4049           if (switches[i].part1[0] == 'O')
4050             {
4051               switches[switchnum].valid = 1;
4052               switches[switchnum].live_cond = -1;
4053               return 0;
4054             }
4055       break;
4056
4057     case 'W':  case 'f':  case 'm':
4058       if (! strncmp (name + 1, "no-", 3))
4059         {
4060           /* We have Xno-YYY, search for XYYY. */
4061           for (i = switchnum + 1; i < n_switches; i++)
4062             if (switches[i].part1[0] == name[0]
4063                 && ! strcmp (&switches[i].part1[1], &name[4]))
4064             {
4065               switches[switchnum].valid = 1;
4066               switches[switchnum].live_cond = -1;
4067               return 0;
4068             }
4069         }
4070       else
4071         {
4072           /* We have XYYY, search for Xno-YYY.  */
4073           for (i = switchnum + 1; i < n_switches; i++)
4074             if (switches[i].part1[0] == name[0]
4075                 && switches[i].part1[1] == 'n'
4076                 && switches[i].part1[2] == 'o'
4077                 && switches[i].part1[3] == '-'
4078                 && !strcmp (&switches[i].part1[4], &name[1]))
4079             {
4080               switches[switchnum].valid = 1;
4081               switches[switchnum].live_cond = -1;
4082               return 0;
4083             }
4084         }
4085       break;
4086     }
4087
4088   /* Otherwise the switch is live.  */
4089   switches[switchnum].live_cond = 1;
4090   return 1;
4091 }
4092 \f
4093 /* Pass a switch to the current accumulating command
4094    in the same form that we received it.
4095    SWITCHNUM identifies the switch; it is an index into
4096    the vector of switches gcc received, which is `switches'.
4097    This cannot fail since it never finishes a command line.
4098
4099    If OMIT_FIRST_WORD is nonzero, then we omit .part1 of the argument.  */
4100
4101 static void
4102 give_switch (switchnum, omit_first_word)
4103      int switchnum;
4104      int omit_first_word;
4105 {
4106   if (!omit_first_word)
4107     {
4108       do_spec_1 ("-", 0, NULL_PTR);
4109       do_spec_1 (switches[switchnum].part1, 1, NULL_PTR);
4110     }
4111   do_spec_1 (" ", 0, NULL_PTR);
4112   if (switches[switchnum].args != 0)
4113     {
4114       char **p;
4115       for (p = switches[switchnum].args; *p; p++)
4116         {
4117           do_spec_1 (*p, 1, NULL_PTR);
4118           do_spec_1 (" ", 0, NULL_PTR);
4119         }
4120     }
4121   switches[switchnum].valid = 1;
4122 }
4123 \f
4124 /* Search for a file named NAME trying various prefixes including the
4125    user's -B prefix and some standard ones.
4126    Return the absolute file name found.  If nothing is found, return NAME.  */
4127
4128 static char *
4129 find_file (name)
4130      char *name;
4131 {
4132   char *newname;
4133
4134   /* Try multilib_dir if it is defined.  */
4135   if (multilib_dir != NULL)
4136     {
4137       char *try;
4138
4139       try = (char *) alloca (strlen (multilib_dir) + strlen (name) + 2);
4140       strcpy (try, multilib_dir);
4141       strcat (try, dir_separator_str);
4142       strcat (try, name);
4143
4144       newname = find_a_file (&startfile_prefixes, try, R_OK);
4145
4146       /* If we don't find it in the multi library dir, then fall
4147          through and look for it in the normal places.  */
4148       if (newname != NULL)
4149         return newname;
4150     }
4151
4152   newname = find_a_file (&startfile_prefixes, name, R_OK);
4153   return newname ? newname : name;
4154 }
4155
4156 /* Determine whether a directory exists.  If LINKER, return 0 for
4157    certain fixed names not needed by the linker.  If not LINKER, it is
4158    only important to return 0 if the host machine has a small ARG_MAX
4159    limit.  */
4160
4161 static int
4162 is_directory (path1, path2, linker)
4163      char *path1;
4164      char *path2;
4165      int linker;
4166 {
4167   int len1 = strlen (path1);
4168   int len2 = strlen (path2);
4169   char *path = (char *) alloca (3 + len1 + len2);
4170   char *cp;
4171   struct stat st;
4172
4173 #ifndef SMALL_ARG_MAX
4174   if (! linker)
4175     return 1;
4176 #endif
4177
4178   /* Construct the path from the two parts.  Ensure the string ends with "/.".
4179      The resulting path will be a directory even if the given path is a
4180      symbolic link.  */
4181   bcopy (path1, path, len1);
4182   bcopy (path2, path + len1, len2);
4183   cp = path + len1 + len2;
4184   if (cp[-1] != '/' && cp[-1] != DIR_SEPARATOR)
4185     *cp++ = DIR_SEPARATOR;
4186   *cp++ = '.';
4187   *cp = '\0';
4188
4189   /* Exclude directories that the linker is known to search.  */
4190   if (linker
4191       && ((cp - path == 6
4192            && strcmp (path, concat4 (dir_separator_str, "lib", 
4193                                      dir_separator_str, ".")) == 0)
4194           || (cp - path == 10
4195               && strcmp (path, concat6 (dir_separator_str, "usr", 
4196                                         dir_separator_str, "lib", 
4197                                         dir_separator_str, ".")) == 0)))
4198     return 0;
4199
4200   return (stat (path, &st) >= 0 && S_ISDIR (st.st_mode));
4201 }
4202 \f
4203 /* On fatal signals, delete all the temporary files.  */
4204
4205 static void
4206 fatal_error (signum)
4207      int signum;
4208 {
4209   signal (signum, SIG_DFL);
4210   delete_failure_queue ();
4211   delete_temp_files ();
4212   /* Get the same signal again, this time not handled,
4213      so its normal effect occurs.  */
4214   kill (getpid (), signum);
4215 }
4216
4217 int
4218 main (argc, argv)
4219      int argc;
4220      char **argv;
4221 {
4222   register int i;
4223   int j;
4224   int value;
4225   int linker_was_run = 0;
4226   char *explicit_link_files;
4227   char *specs_file;
4228   char *p;
4229
4230   p = argv[0] + strlen (argv[0]);
4231   while (p != argv[0] && p[-1] != '/' && p[-1] != DIR_SEPARATOR) --p;
4232   programname = p;
4233
4234   if (signal (SIGINT, SIG_IGN) != SIG_IGN)
4235     signal (SIGINT, fatal_error);
4236 #ifdef SIGHUP
4237   if (signal (SIGHUP, SIG_IGN) != SIG_IGN)
4238     signal (SIGHUP, fatal_error);
4239 #endif
4240   if (signal (SIGTERM, SIG_IGN) != SIG_IGN)
4241     signal (SIGTERM, fatal_error);
4242 #ifdef SIGPIPE
4243   if (signal (SIGPIPE, SIG_IGN) != SIG_IGN)
4244     signal (SIGPIPE, fatal_error);
4245 #endif
4246
4247   argbuf_length = 10;
4248   argbuf = (char **) xmalloc (argbuf_length * sizeof (char *));
4249
4250   obstack_init (&obstack);
4251
4252   /* Set up to remember the pathname of gcc and any options
4253      needed for collect.  We use argv[0] instead of programname because
4254      we need the complete pathname.  */
4255   obstack_init (&collect_obstack);
4256   obstack_grow (&collect_obstack, "COLLECT_GCC=", sizeof ("COLLECT_GCC=")-1);
4257   obstack_grow (&collect_obstack, argv[0], strlen (argv[0])+1);
4258   putenv (obstack_finish (&collect_obstack));
4259
4260 #ifdef INIT_ENVIRONMENT
4261   /* Set up any other necessary machine specific environment variables.  */
4262   putenv (INIT_ENVIRONMENT);
4263 #endif
4264
4265   /* Choose directory for temp files.  */
4266
4267   choose_temp_base ();
4268
4269   /* Make a table of what switches there are (switches, n_switches).
4270      Make a table of specified input files (infiles, n_infiles).
4271      Decode switches that are handled locally.  */
4272
4273   process_command (argc, argv);
4274
4275   /* Initialize the vector of specs to just the default.
4276      This means one element containing 0s, as a terminator.  */
4277
4278   compilers = (struct compiler *) xmalloc (sizeof default_compilers);
4279   bcopy ((char *) default_compilers, (char *) compilers,
4280          sizeof default_compilers);
4281   n_compilers = n_default_compilers;
4282
4283   /* Read specs from a file if there is one.  */
4284
4285   machine_suffix = concat4 (spec_machine, dir_separator_str,
4286                             spec_version, dir_separator_str);
4287   just_machine_suffix = concat (spec_machine, dir_separator_str);
4288
4289   specs_file = find_a_file (&startfile_prefixes, "specs", R_OK);
4290   /* Read the specs file unless it is a default one.  */
4291   if (specs_file != 0 && strcmp (specs_file, "specs"))
4292     read_specs (specs_file);
4293
4294   /* If not cross-compiling, look for startfiles in the standard places.  */
4295   /* The fact that these are done here, after reading the specs file,
4296      means that it cannot be found in these directories.
4297      But that's okay.  It should never be there anyway.  */
4298   if (!cross_compile)
4299     {
4300 #ifdef MD_EXEC_PREFIX
4301       add_prefix (&exec_prefixes, md_exec_prefix, 0, 0, NULL_PTR);
4302       add_prefix (&startfile_prefixes, md_exec_prefix, 0, 0, NULL_PTR);
4303 #endif
4304
4305 #ifdef MD_STARTFILE_PREFIX
4306       add_prefix (&startfile_prefixes, md_startfile_prefix, 0, 0, NULL_PTR);
4307 #endif
4308
4309 #ifdef MD_STARTFILE_PREFIX_1
4310       add_prefix (&startfile_prefixes, md_startfile_prefix_1, 0, 0, NULL_PTR);
4311 #endif
4312
4313       /* If standard_startfile_prefix is relative, base it on
4314          standard_exec_prefix.  This lets us move the installed tree
4315          as a unit.  If GCC_EXEC_PREFIX is defined, base
4316          standard_startfile_prefix on that as well.  */
4317       if (*standard_startfile_prefix == '/'
4318           || *standard_startfile_prefix == DIR_SEPARATOR)
4319         add_prefix (&startfile_prefixes, standard_startfile_prefix, 0, 0,
4320                     NULL_PTR);
4321       else
4322         {
4323           if (gcc_exec_prefix)
4324             add_prefix (&startfile_prefixes,
4325                         concat3 (gcc_exec_prefix, machine_suffix,
4326                                  standard_startfile_prefix),
4327                         0, 0, NULL_PTR);
4328           add_prefix (&startfile_prefixes,
4329                       concat3 (standard_exec_prefix,
4330                                machine_suffix,
4331                                standard_startfile_prefix),
4332                       0, 0, NULL_PTR);
4333         }                      
4334
4335       add_prefix (&startfile_prefixes, standard_startfile_prefix_1, 0, 0,
4336                   NULL_PTR);
4337       add_prefix (&startfile_prefixes, standard_startfile_prefix_2, 0, 0,
4338                   NULL_PTR);
4339 #if 0 /* Can cause surprises, and one can use -B./ instead.  */
4340       add_prefix (&startfile_prefixes, "./", 0, 1, NULL_PTR);
4341 #endif
4342     }
4343   else
4344     {
4345       if (*standard_startfile_prefix != DIR_SEPARATOR && gcc_exec_prefix)
4346         add_prefix (&startfile_prefixes,
4347                     concat3 (gcc_exec_prefix, machine_suffix,
4348                              standard_startfile_prefix),
4349                     0, 0, NULL_PTR);
4350     }
4351
4352   /* If we have a GCC_EXEC_PREFIX envvar, modify it for cpp's sake.  */
4353   if (gcc_exec_prefix)
4354     {
4355       char * temp = (char *) xmalloc (strlen (gcc_exec_prefix)
4356                                       + strlen (spec_version)
4357                                       + strlen (spec_machine) + 3);
4358       strcpy (temp, gcc_exec_prefix);
4359       strcat (temp, spec_machine);
4360       strcat (temp, dir_separator_str);
4361       strcat (temp, spec_version);
4362       strcat (temp, dir_separator_str);
4363       gcc_exec_prefix = temp;
4364     }
4365
4366   /* Now we have the specs.
4367      Set the `valid' bits for switches that match anything in any spec.  */
4368
4369   validate_all_switches ();
4370
4371   /* Now that we have the switches and the specs, set
4372      the subdirectory based on the options.  */
4373   set_multilib_dir ();
4374
4375   /* Warn about any switches that no pass was interested in.  */
4376
4377   for (i = 0; i < n_switches; i++)
4378     if (! switches[i].valid)
4379       error ("unrecognized option `-%s'", switches[i].part1);
4380
4381   /* Obey some of the options.  */
4382
4383   if (print_search_dirs)
4384     {
4385       printf ("install: %s%s\n", standard_exec_prefix, machine_suffix);
4386       printf ("programs: %s\n", build_search_list (&exec_prefixes, "", 0));
4387       printf ("libraries: %s\n", build_search_list (&startfile_prefixes, "", 0));
4388       exit (0);
4389     }
4390
4391   if (print_file_name)
4392     {
4393       printf ("%s\n", find_file (print_file_name));
4394       exit (0);
4395     }
4396
4397   if (print_prog_name)
4398     {
4399       char *newname = find_a_file (&exec_prefixes, print_prog_name, X_OK);
4400       printf ("%s\n", (newname ? newname : print_prog_name));
4401       exit (0);
4402     }
4403
4404   if (print_multi_lib)
4405     {
4406       print_multilib_info ();
4407       exit (0);
4408     }
4409
4410   if (print_multi_directory)
4411     {
4412       if (multilib_dir == NULL)
4413         printf (".\n");
4414       else
4415         printf ("%s\n", multilib_dir);
4416       exit (0);
4417     }
4418
4419   if (verbose_flag)
4420     {
4421       if (! strcmp (version_string, compiler_version))
4422         fprintf (stderr, "gcc version %s\n", version_string);
4423       else
4424         fprintf (stderr, "gcc driver version %s executing gcc version %s\n",
4425                  version_string, compiler_version);
4426
4427       if (n_infiles == 0)
4428         exit (0);
4429     }
4430
4431   if (n_infiles == 0)
4432     fatal ("No input files");
4433
4434   /* Make a place to record the compiler output file names
4435      that correspond to the input files.  */
4436
4437   outfiles = (char **) xmalloc (n_infiles * sizeof (char *));
4438   bzero ((char *) outfiles, n_infiles * sizeof (char *));
4439
4440   /* Record which files were specified explicitly as link input.  */
4441
4442   explicit_link_files = xmalloc (n_infiles);
4443   bzero (explicit_link_files, n_infiles);
4444
4445   for (i = 0; i < n_infiles; i++)
4446     {
4447       register struct compiler *cp = 0;
4448       int this_file_error = 0;
4449
4450       /* Tell do_spec what to substitute for %i.  */
4451
4452       input_filename = infiles[i].name;
4453       input_filename_length = strlen (input_filename);
4454       input_file_number = i;
4455
4456       /* Use the same thing in %o, unless cp->spec says otherwise.  */
4457
4458       outfiles[i] = input_filename;
4459
4460       /* Figure out which compiler from the file's suffix.  */
4461
4462       cp = lookup_compiler (infiles[i].name, input_filename_length,
4463                             infiles[i].language);
4464
4465       if (cp)
4466         {
4467           /* Ok, we found an applicable compiler.  Run its spec.  */
4468           /* First say how much of input_filename to substitute for %b  */
4469           register char *p;
4470           int len;
4471
4472           input_basename = input_filename;
4473           for (p = input_filename; *p; p++)
4474             if (*p == '/' || *p == DIR_SEPARATOR)
4475               input_basename = p + 1;
4476
4477           /* Find a suffix starting with the last period,
4478              and set basename_length to exclude that suffix.  */
4479           basename_length = strlen (input_basename);
4480           p = input_basename + basename_length;
4481           while (p != input_basename && *p != '.') --p;
4482           if (*p == '.' && p != input_basename)
4483             {
4484               basename_length = p - input_basename;
4485               input_suffix = p + 1;
4486             }
4487           else
4488             input_suffix = "";
4489
4490           len = 0;
4491           for (j = 0; j < sizeof cp->spec / sizeof cp->spec[0]; j++)
4492             if (cp->spec[j])
4493               len += strlen (cp->spec[j]);
4494
4495           p = (char *) xmalloc (len + 1);
4496
4497           len = 0;
4498           for (j = 0; j < sizeof cp->spec / sizeof cp->spec[0]; j++)
4499             if (cp->spec[j])
4500               {
4501                 strcpy (p + len, cp->spec[j]);
4502                 len += strlen (cp->spec[j]);
4503               }
4504
4505           value = do_spec (p);
4506           free (p);
4507           if (value < 0)
4508             this_file_error = 1;
4509         }
4510
4511       /* If this file's name does not contain a recognized suffix,
4512          record it as explicit linker input.  */
4513
4514       else
4515         explicit_link_files[i] = 1;
4516
4517       /* Clear the delete-on-failure queue, deleting the files in it
4518          if this compilation failed.  */
4519
4520       if (this_file_error)
4521         {
4522           delete_failure_queue ();
4523           error_count++;
4524         }
4525       /* If this compilation succeeded, don't delete those files later.  */
4526       clear_failure_queue ();
4527     }
4528
4529   /* Run ld to link all the compiler output files.  */
4530
4531   if (error_count == 0)
4532     {
4533       int tmp = execution_count;
4534       int i;
4535       int first_time;
4536
4537       /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
4538          for collect.  */
4539       putenv_from_prefixes (&exec_prefixes, "COMPILER_PATH=");
4540       putenv_from_prefixes (&startfile_prefixes, "LIBRARY_PATH=");
4541
4542       /* Build COLLECT_GCC_OPTIONS to have all of the options specified to
4543          the compiler.  */
4544       obstack_grow (&collect_obstack, "COLLECT_GCC_OPTIONS=",
4545                     sizeof ("COLLECT_GCC_OPTIONS=")-1);
4546
4547       first_time = TRUE;
4548       for (i = 0; i < n_switches; i++)
4549         {
4550           char **args;
4551           if (!first_time)
4552             obstack_grow (&collect_obstack, " ", 1);
4553
4554           first_time = FALSE;
4555           obstack_grow (&collect_obstack, "-", 1);
4556           obstack_grow (&collect_obstack, switches[i].part1,
4557                         strlen (switches[i].part1));
4558
4559           for (args = switches[i].args; args && *args; args++)
4560             {
4561               obstack_grow (&collect_obstack, " ", 1);
4562               obstack_grow (&collect_obstack, *args, strlen (*args));
4563             }
4564         }
4565       obstack_grow (&collect_obstack, "\0", 1);
4566       putenv (obstack_finish (&collect_obstack));
4567
4568       value = do_spec (link_command_spec);
4569       if (value < 0)
4570         error_count = 1;
4571       linker_was_run = (tmp != execution_count);
4572     }
4573
4574   /* Warn if a -B option was specified but the prefix was never used.  */
4575   unused_prefix_warnings (&exec_prefixes);
4576   unused_prefix_warnings (&startfile_prefixes);
4577
4578   /* If options said don't run linker,
4579      complain about input files to be given to the linker.  */
4580
4581   if (! linker_was_run && error_count == 0)
4582     for (i = 0; i < n_infiles; i++)
4583       if (explicit_link_files[i])
4584         error ("%s: linker input file unused since linking not done",
4585                outfiles[i]);
4586
4587   /* Delete some or all of the temporary files we made.  */
4588
4589   if (error_count)
4590     delete_failure_queue ();
4591   delete_temp_files ();
4592
4593   exit (error_count > 0 ? (signal_count ? 2 : 1) : 0);
4594   /* NOTREACHED */
4595   return 0;
4596 }
4597
4598 /* Find the proper compilation spec for the file name NAME,
4599    whose length is LENGTH.  LANGUAGE is the specified language,
4600    or 0 if none specified.  */
4601
4602 static struct compiler *
4603 lookup_compiler (name, length, language)
4604      char *name;
4605      int length;
4606      char *language;
4607 {
4608   struct compiler *cp;
4609
4610   /* Look for the language, if one is spec'd.  */
4611   if (language != 0)
4612     {
4613       for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
4614         {
4615           if (language != 0)
4616             {
4617               if (cp->suffix[0] == '@'
4618                   && !strcmp (cp->suffix + 1, language))
4619                 return cp;
4620             }
4621         }
4622       error ("language %s not recognized", language);
4623     }
4624
4625   /* Look for a suffix.  */
4626   for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
4627     {
4628       if (/* The suffix `-' matches only the file name `-'.  */
4629           (!strcmp (cp->suffix, "-") && !strcmp (name, "-"))
4630           ||
4631           (strlen (cp->suffix) < length
4632            /* See if the suffix matches the end of NAME.  */
4633 #ifdef OS2
4634            && (!strcmp (cp->suffix,
4635                         name + length - strlen (cp->suffix))
4636             || !strpbrk (cp->suffix, "ABCDEFGHIJKLMNOPQRSTUVWXYZ")
4637              && !strcasecmp (cp->suffix,
4638                           name + length - strlen (cp->suffix)))))
4639 #else
4640            && !strcmp (cp->suffix,
4641                        name + length - strlen (cp->suffix))))
4642 #endif
4643         {
4644           if (cp->spec[0][0] == '@')
4645             {
4646               struct compiler *new;
4647               /* An alias entry maps a suffix to a language.
4648                  Search for the language; pass 0 for NAME and LENGTH
4649                  to avoid infinite recursion if language not found.
4650                  Construct the new compiler spec.  */
4651               language = cp->spec[0] + 1;
4652               new = (struct compiler *) xmalloc (sizeof (struct compiler));
4653               new->suffix = cp->suffix;
4654               bcopy ((char *) lookup_compiler (NULL_PTR, 0, language)->spec,
4655                      (char *) new->spec, sizeof new->spec);
4656               return new;
4657             }
4658           /* A non-alias entry: return it.  */
4659           return cp;
4660         }
4661     }
4662
4663   return 0;
4664 }
4665 \f
4666 char *
4667 xmalloc (size)
4668      unsigned size;
4669 {
4670   register char *value = (char *) malloc (size);
4671   if (value == 0)
4672     fatal ("virtual memory exhausted");
4673   return value;
4674 }
4675
4676 char *
4677 xrealloc (ptr, size)
4678      char *ptr;
4679      unsigned size;
4680 {
4681   register char *value = (char *) realloc (ptr, size);
4682   if (value == 0)
4683     fatal ("virtual memory exhausted");
4684   return value;
4685 }
4686
4687 /* Return a newly-allocated string whose contents concatenate those of s1, s2 */
4688
4689 static char *
4690 concat (s1, s2)
4691      char *s1, *s2;
4692 {
4693   int len1 = strlen (s1);
4694   int len2 = strlen (s2);
4695   char *result = xmalloc (len1 + len2 + 1);
4696
4697   strcpy (result, s1);
4698   strcpy (result + len1, s2);
4699   *(result + len1 + len2) = 0;
4700
4701   return result;
4702 }
4703
4704 static char *
4705 concat3 (s1, s2, s3)
4706      char *s1, *s2, *s3;
4707 {
4708   return concat (concat (s1, s2), s3);
4709 }
4710
4711 static char *
4712 concat4 (s1, s2, s3, s4)
4713      char *s1, *s2, *s3, *s4;
4714 {
4715   return concat (concat (s1, s2), concat (s3, s4));
4716 }
4717
4718 static char *
4719 concat6 (s1, s2, s3, s4, s5, s6)
4720      char *s1, *s2, *s3, *s4, *s5, *s6;
4721 {
4722   return concat3 (concat (s1, s2), concat (s3, s4), concat (s5, s6));
4723 }
4724
4725 static char *
4726 save_string (s, len)
4727      char *s;
4728      int len;
4729 {
4730   register char *result = xmalloc (len + 1);
4731
4732   bcopy (s, result, len);
4733   result[len] = 0;
4734   return result;
4735 }
4736
4737 static void
4738 pfatal_with_name (name)
4739      char *name;
4740 {
4741   fatal ("%s: %s", name, my_strerror (errno));
4742 }
4743
4744 static void
4745 perror_with_name (name)
4746      char *name;
4747 {
4748   error ("%s: %s", name, my_strerror (errno));
4749 }
4750
4751 static void
4752 perror_exec (name)
4753      char *name;
4754 {
4755   error ("installation problem, cannot exec `%s': %s",
4756          name, my_strerror (errno));
4757 }
4758
4759 /* More 'friendly' abort that prints the line and file.
4760    config.h can #define abort fancy_abort if you like that sort of thing.  */
4761
4762 void
4763 fancy_abort ()
4764 {
4765   fatal ("Internal gcc abort.");
4766 }
4767 \f
4768 #ifdef HAVE_VPRINTF
4769
4770 /* Output an error message and exit */
4771
4772 static void
4773 fatal VPROTO((char *format, ...))
4774 {
4775 #ifndef __STDC__
4776   char *format;
4777 #endif
4778   va_list ap;
4779
4780   VA_START (ap, format);
4781
4782 #ifndef __STDC__
4783   format = va_arg (ap, char*);
4784 #endif
4785
4786   fprintf (stderr, "%s: ", programname);
4787   vfprintf (stderr, format, ap);
4788   va_end (ap);
4789   fprintf (stderr, "\n");
4790   delete_temp_files ();
4791   exit (1);
4792 }
4793
4794 static void
4795 error VPROTO((char *format, ...))
4796 {
4797 #ifndef __STDC__
4798   char *format;
4799 #endif
4800   va_list ap;
4801
4802   VA_START (ap, format);
4803
4804 #ifndef __STDC__
4805   format = va_arg (ap, char*);
4806 #endif
4807
4808   fprintf (stderr, "%s: ", programname);
4809   vfprintf (stderr, format, ap);
4810   va_end (ap);
4811
4812   fprintf (stderr, "\n");
4813 }
4814
4815 #else /* not HAVE_VPRINTF */
4816
4817 static void
4818 fatal (msg, arg1, arg2)
4819      char *msg, *arg1, *arg2;
4820 {
4821   error (msg, arg1, arg2);
4822   delete_temp_files ();
4823   exit (1);
4824 }
4825
4826 static void
4827 error (msg, arg1, arg2)
4828      char *msg, *arg1, *arg2;
4829 {
4830   fprintf (stderr, "%s: ", programname);
4831   fprintf (stderr, msg, arg1, arg2);
4832   fprintf (stderr, "\n");
4833 }
4834
4835 #endif /* not HAVE_VPRINTF */
4836
4837 \f
4838 static void
4839 validate_all_switches ()
4840 {
4841   struct compiler *comp;
4842   register char *p;
4843   register char c;
4844   struct spec_list *spec;
4845
4846   for (comp = compilers; comp->spec[0]; comp++)
4847     {
4848       int i;
4849       for (i = 0; i < sizeof comp->spec / sizeof comp->spec[0] && comp->spec[i]; i++)
4850         {
4851           p = comp->spec[i];
4852           while (c = *p++)
4853             if (c == '%' && *p == '{')
4854               /* We have a switch spec.  */
4855               validate_switches (p + 1);
4856         }
4857     }
4858
4859   /* look through the linked list of extra specs read from the specs file */
4860   for (spec = specs; spec ; spec = spec->next)
4861     {
4862       p = spec->spec;
4863       while (c = *p++)
4864         if (c == '%' && *p == '{')
4865           /* We have a switch spec.  */
4866           validate_switches (p + 1);
4867     }
4868
4869   p = link_command_spec;
4870   while (c = *p++)
4871     if (c == '%' && *p == '{')
4872       /* We have a switch spec.  */
4873       validate_switches (p + 1);
4874
4875   /* Now notice switches mentioned in the machine-specific specs.  */
4876
4877   p = asm_spec;
4878   while (c = *p++)
4879     if (c == '%' && *p == '{')
4880       /* We have a switch spec.  */
4881       validate_switches (p + 1);
4882
4883   p = asm_final_spec;
4884   while (c = *p++)
4885     if (c == '%' && *p == '{')
4886       /* We have a switch spec.  */
4887       validate_switches (p + 1);
4888
4889   p = cpp_spec;
4890   while (c = *p++)
4891     if (c == '%' && *p == '{')
4892       /* We have a switch spec.  */
4893       validate_switches (p + 1);
4894
4895   p = signed_char_spec;
4896   while (c = *p++)
4897     if (c == '%' && *p == '{')
4898       /* We have a switch spec.  */
4899       validate_switches (p + 1);
4900
4901   p = cc1_spec;
4902   while (c = *p++)
4903     if (c == '%' && *p == '{')
4904       /* We have a switch spec.  */
4905       validate_switches (p + 1);
4906
4907   p = cc1plus_spec;
4908   while (c = *p++)
4909     if (c == '%' && *p == '{')
4910       /* We have a switch spec.  */
4911       validate_switches (p + 1);
4912
4913   p = link_spec;
4914   while (c = *p++)
4915     if (c == '%' && *p == '{')
4916       /* We have a switch spec.  */
4917       validate_switches (p + 1);
4918
4919   p = lib_spec;
4920   while (c = *p++)
4921     if (c == '%' && *p == '{')
4922       /* We have a switch spec.  */
4923       validate_switches (p + 1);
4924
4925   p = libgcc_spec;
4926   while (c = *p++)
4927     if (c == '%' && *p == '{')
4928       /* We have a switch spec.  */
4929       validate_switches (p + 1);
4930
4931   p = startfile_spec;
4932   while (c = *p++)
4933     if (c == '%' && *p == '{')
4934       /* We have a switch spec.  */
4935       validate_switches (p + 1);
4936 }
4937
4938 /* Look at the switch-name that comes after START
4939    and mark as valid all supplied switches that match it.  */
4940
4941 static void
4942 validate_switches (start)
4943      char *start;
4944 {
4945   register char *p = start;
4946   char *filter;
4947   register int i;
4948   int suffix = 0;
4949
4950   if (*p == '|')
4951     ++p;
4952
4953   if (*p == '!')
4954     ++p;
4955
4956   if (*p == '.')
4957     suffix = 1, ++p;
4958
4959   filter = p;
4960   while (*p != ':' && *p != '}') p++;
4961
4962   if (suffix)
4963     ;
4964   else if (p[-1] == '*')
4965     {
4966       /* Mark all matching switches as valid.  */
4967       --p;
4968       for (i = 0; i < n_switches; i++)
4969         if (!strncmp (switches[i].part1, filter, p - filter))
4970           switches[i].valid = 1;
4971     }
4972   else
4973     {
4974       /* Mark an exact matching switch as valid.  */
4975       for (i = 0; i < n_switches; i++)
4976         {
4977           if (!strncmp (switches[i].part1, filter, p - filter)
4978               && switches[i].part1[p - filter] == 0)
4979             switches[i].valid = 1;
4980         }
4981     }
4982 }
4983 \f
4984 /* Check whether a particular argument was used.  */
4985
4986 static int
4987 used_arg (p, len)
4988      char *p;
4989      int len;
4990 {
4991   int i;
4992
4993   for (i = 0; i < n_switches; i++)
4994     if (! strncmp (switches[i].part1, p, len)
4995         && strlen (switches[i].part1) == len)
4996       return 1;
4997   return 0;
4998 }
4999
5000 /* Check whether a particular argument is a default argument.  */
5001
5002 #ifndef MULTILIB_DEFAULTS
5003 #define MULTILIB_DEFAULTS { NULL }
5004 #endif
5005
5006 static char *multilib_defaults[] = MULTILIB_DEFAULTS;
5007
5008 static int
5009 default_arg (p, len)
5010      char *p;
5011      int len;
5012 {
5013   int count = sizeof multilib_defaults / sizeof multilib_defaults[0];
5014   int i;
5015
5016   for (i = 0; i < count; i++)
5017     if (multilib_defaults[i] != NULL
5018         && strncmp (multilib_defaults[i], p, len) == 0
5019         && multilib_defaults[i][len] == '\0')
5020       return 1;
5021
5022   return 0;
5023 }
5024
5025 /* Work out the subdirectory to use based on the
5026    options.  The format of multilib_select is a list of elements.
5027    Each element is a subdirectory name followed by a list of options
5028    followed by a semicolon.  gcc will consider each line in turn.  If
5029    none of the options beginning with an exclamation point are
5030    present, and all of the other options are present, that
5031    subdirectory will be used.  */
5032
5033 static void
5034 set_multilib_dir ()
5035 {
5036   char *p = multilib_select;
5037   int this_path_len;
5038   char *this_path, *this_arg;
5039   int not_arg;
5040   int ok;
5041
5042   while (*p != '\0')
5043     {
5044       /* Ignore newlines.  */
5045       if (*p == '\n')
5046         {
5047           ++p;
5048           continue;
5049         }
5050
5051       /* Get the initial path.  */
5052       this_path = p;
5053       while (*p != ' ')
5054         {
5055           if (*p == '\0')
5056             abort ();
5057           ++p;
5058         }
5059       this_path_len = p - this_path;
5060
5061       /* Check the arguments.  */
5062       ok = 1;
5063       ++p;
5064       while (*p != ';')
5065         {
5066           if (*p == '\0')
5067             abort ();
5068
5069           if (! ok)
5070             {
5071               ++p;
5072               continue;
5073             }
5074
5075           this_arg = p;
5076           while (*p != ' ' && *p != ';')
5077             {
5078               if (*p == '\0')
5079                 abort ();
5080               ++p;
5081             }
5082
5083           if (*this_arg != '!')
5084             not_arg = 0;
5085           else
5086             {
5087               not_arg = 1;
5088               ++this_arg;
5089             }
5090
5091           /* If this is a default argument, we can just ignore it.
5092              This is true even if this_arg begins with '!'.  Beginning
5093              with '!' does not mean that this argument is necessarily
5094              inappropriate for this library: it merely means that
5095              there is a more specific library which uses this
5096              argument.  If this argument is a default, we need not
5097              consider that more specific library.  */
5098           if (! default_arg (this_arg, p - this_arg))
5099             {
5100               ok = used_arg (this_arg, p - this_arg);
5101               if (not_arg)
5102                 ok = ! ok;
5103             }
5104
5105           if (*p == ' ')
5106             ++p;
5107         }
5108
5109       if (ok)
5110         {
5111           if (this_path_len != 1
5112               || this_path[0] != '.')
5113             {
5114               multilib_dir = xmalloc (this_path_len + 1);
5115               strncpy (multilib_dir, this_path, this_path_len);
5116               multilib_dir[this_path_len] = '\0';
5117             }
5118           break;
5119         }
5120
5121       ++p;
5122     }      
5123 }
5124
5125 /* Print out the multiple library subdirectory selection
5126    information.  This prints out a series of lines.  Each line looks
5127    like SUBDIRECTORY;@OPTION@OPTION, with as many options as is
5128    required.  Only the desired options are printed out, the negative
5129    matches.  The options are print without a leading dash.  There are
5130    no spaces to make it easy to use the information in the shell.
5131    Each subdirectory is printed only once.  This assumes the ordering
5132    generated by the genmultilib script.  */
5133
5134 static void
5135 print_multilib_info ()
5136 {
5137   char *p = multilib_select;
5138   char *last_path = 0, *this_path;
5139   int skip;
5140   int last_path_len = 0;
5141
5142   while (*p != '\0')
5143     {
5144       /* Ignore newlines.  */
5145       if (*p == '\n')
5146         {
5147           ++p;
5148           continue;
5149         }
5150
5151       /* Get the initial path.  */
5152       this_path = p;
5153       while (*p != ' ')
5154         {
5155           if (*p == '\0')
5156             abort ();
5157           ++p;
5158         }
5159
5160       /* If this is a duplicate, skip it.  */
5161       skip = (last_path != 0 && p - this_path == last_path_len
5162               && ! strncmp (last_path, this_path, last_path_len));
5163
5164       last_path = this_path;
5165       last_path_len = p - this_path;
5166
5167       /* If this directory requires any default arguments, we can skip
5168          it.  We will already have printed a directory identical to
5169          this one which does not require that default argument.  */
5170       if (! skip)
5171         {
5172           char *q;
5173
5174           q = p + 1;
5175           while (*q != ';')
5176             {
5177               char *arg;
5178
5179               if (*q == '\0')
5180                 abort ();
5181
5182               if (*q == '!')
5183                 arg = NULL;
5184               else
5185                 arg = q;
5186
5187               while (*q != ' ' && *q != ';')
5188                 {
5189                   if (*q == '\0')
5190                     abort ();
5191                   ++q;
5192                 }
5193
5194               if (arg != NULL
5195                   && default_arg (arg, q - arg))
5196                 {
5197                   skip = 1;
5198                   break;
5199                 }
5200
5201               if (*q == ' ')
5202                 ++q;
5203             }
5204         }
5205
5206       if (! skip)
5207         {
5208           char *p1;
5209
5210           for (p1 = last_path; p1 < p; p1++)
5211             putchar (*p1);
5212           putchar (';');
5213         }
5214
5215       ++p;
5216       while (*p != ';')
5217         {
5218           int use_arg;
5219
5220           if (*p == '\0')
5221             abort ();
5222
5223           if (skip)
5224             {
5225               ++p;
5226               continue;
5227             }
5228
5229           use_arg = *p != '!';
5230
5231           if (use_arg)
5232             putchar ('@');
5233
5234           while (*p != ' ' && *p != ';')
5235             {
5236               if (*p == '\0')
5237                 abort ();
5238               if (use_arg)
5239                 putchar (*p);
5240               ++p;
5241             }
5242
5243           if (*p == ' ')
5244             ++p;
5245         }
5246
5247       if (! skip)
5248         putchar ('\n');
5249
5250       ++p;
5251     }
5252 }