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