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