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