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