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