Add new options -print-file-name= and -print-prog-name=.
[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 int check_live_switch PROTO((int, int));
211 static char *handle_braces PROTO((char *));
212 static char *save_string PROTO((char *, int));
213 static char *concat PROTO((char *, char *, char *));
214 static int do_spec PROTO((char *));
215 static int do_spec_1 PROTO((char *, int, char *));
216 static char *find_file PROTO((char *));
217 static int is_directory PROTO((char *, char *, int));
218 static void validate_switches PROTO((char *));
219 static void validate_all_switches PROTO((void));
220 static void give_switch PROTO((int, int));
221 static void pfatal_with_name PROTO((char *));
222 static void perror_with_name PROTO((char *));
223 static void perror_exec PROTO((char *));
224 #ifdef HAVE_VPRINTF
225 static void fatal PVPROTO((char *, ...));
226 static void error PVPROTO((char *, ...));
227 #else
228 /* We must not provide any prototype here, even if ANSI C. */
229 static void fatal PROTO(());
230 static void error PROTO(());
231 #endif
232
233 void fancy_abort ();
234 char *xmalloc ();
235 char *xrealloc ();
236 \f
237 /* Specs are strings containing lines, each of which (if not blank)
238 is made up of a program name, and arguments separated by spaces.
239 The program name must be exact and start from root, since no path
240 is searched and it is unreliable to depend on the current working directory.
241 Redirection of input or output is not supported; the subprograms must
242 accept filenames saying what files to read and write.
243
244 In addition, the specs can contain %-sequences to substitute variable text
245 or for conditional text. Here is a table of all defined %-sequences.
246 Note that spaces are not generated automatically around the results of
247 expanding these sequences; therefore, you can concatenate them together
248 or with constant text in a single argument.
249
250 %% substitute one % into the program name or argument.
251 %i substitute the name of the input file being processed.
252 %b substitute the basename of the input file being processed.
253 This is the substring up to (and not including) the last period
254 and not including the directory.
255 %g substitute the temporary-file-name-base. This is a string chosen
256 once per compilation. Different temporary file names are made by
257 concatenation of constant strings on the end, as in `%g.s'.
258 %g also has the same effect of %d.
259 %u like %g, but make the temporary file name unique.
260 %U returns the last file name generated with %u.
261 %d marks the argument containing or following the %d as a
262 temporary file name, so that that file will be deleted if CC exits
263 successfully. Unlike %g, this contributes no text to the argument.
264 %w marks the argument containing or following the %w as the
265 "output file" of this compilation. This puts the argument
266 into the sequence of arguments that %o will substitute later.
267 %W{...}
268 like %{...} but mark last argument supplied within
269 as a file to be deleted on failure.
270 %o substitutes the names of all the output files, with spaces
271 automatically placed around them. You should write spaces
272 around the %o as well or the results are undefined.
273 %o is for use in the specs for running the linker.
274 Input files whose names have no recognized suffix are not compiled
275 at all, but they are included among the output files, so they will
276 be linked.
277 %p substitutes the standard macro predefinitions for the
278 current target machine. Use this when running cpp.
279 %P like %p, but puts `__' before and after the name of each macro.
280 (Except macros that already have __.)
281 This is for ANSI C.
282 %I Substitute a -iprefix option made from GCC_EXEC_PREFIX.
283 %s current argument is the name of a library or startup file of some sort.
284 Search for that file in a standard list of directories
285 and substitute the full name found.
286 %eSTR Print STR as an error message. STR is terminated by a newline.
287 Use this when inconsistent options are detected.
288 %x{OPTION} Accumulate an option for %X.
289 %X Output the accumulated linker options specified by compilations.
290 %Y Output the accumulated assembler options specified by compilations.
291 %v1 Substitute the major version number of GCC.
292 (For version 2.5.n, this is 2.)
293 %v2 Substitute the minor version number of GCC.
294 (For version 2.5.n, this is 5.)
295 %a process ASM_SPEC as a spec.
296 This allows config.h to specify part of the spec for running as.
297 %A process ASM_FINAL_SPEC as a spec. A capital A is actually
298 used here. This can be used to run a post-processor after the
299 assembler has done it's job.
300 %D Dump out a -L option for each directory in startfile_prefix.
301 %l process LINK_SPEC as a spec.
302 %L process LIB_SPEC as a spec.
303 %S process STARTFILE_SPEC as a spec. A capital S is actually used here.
304 %E process ENDFILE_SPEC as a spec. A capital E is actually used here.
305 %c process SIGNED_CHAR_SPEC as a spec.
306 %C process CPP_SPEC as a spec. A capital C is actually used here.
307 %1 process CC1_SPEC as a spec.
308 %2 process CC1PLUS_SPEC as a spec.
309 %| output "-" if the input for the current command is coming from a pipe.
310 %* substitute the variable part of a matched option. (See below.)
311 Note that each comma in the substituted string is replaced by
312 a single space.
313 %{S} substitutes the -S switch, if that switch was given to CC.
314 If that switch was not specified, this substitutes nothing.
315 Here S is a metasyntactic variable.
316 %{S*} substitutes all the switches specified to CC whose names start
317 with -S. This is used for -o, -D, -I, etc; switches that take
318 arguments. CC considers `-o foo' as being one switch whose
319 name starts with `o'. %{o*} would substitute this text,
320 including the space; thus, two arguments would be generated.
321 %{S*:X} substitutes X if one or more switches whose names start with -S are
322 specified to CC. Note that the tail part of the -S option
323 (i.e. the part matched by the `*') will be substituted for each
324 occurrence of %* within X.
325 %{S:X} substitutes X, but only if the -S switch was given to CC.
326 %{!S:X} substitutes X, but only if the -S switch was NOT given to CC.
327 %{|S:X} like %{S:X}, but if no S switch, substitute `-'.
328 %{|!S:X} like %{!S:X}, but if there is an S switch, substitute `-'.
329 %{.S:X} substitutes X, but only if processing a file with suffix S.
330 %{!.S:X} substitutes X, but only if NOT processing a file with suffix S.
331 %(Spec) processes a specification defined in a specs file as *Spec:
332 %[Spec] as above, but put __ around -D arguments
333
334 The conditional text X in a %{S:X} or %{!S:X} construct may contain
335 other nested % constructs or spaces, or even newlines. They are
336 processed as usual, as described above.
337
338 The -O, -f, -m, and -w switches are handled specifically in these
339 constructs. If another value of -O or the negated form of a -f, -m, or
340 -W switch is found later in the command line, the earlier switch
341 value is ignored.
342
343 The character | is used to indicate that a command should be piped to
344 the following command, but only if -pipe is specified.
345
346 Note that it is built into CC which switches take arguments and which
347 do not. You might think it would be useful to generalize this to
348 allow each compiler's spec to say which switches take arguments. But
349 this cannot be done in a consistent fashion. CC cannot even decide
350 which input files have been specified without knowing which switches
351 take arguments, and it must know which input files to compile in order
352 to tell which compilers to run.
353
354 CC also knows implicitly that arguments starting in `-l' are to be
355 treated as compiler output files, and passed to the linker in their
356 proper position among the other output files. */
357 \f
358 /* Define the macros used for specs %a, %l, %L, %S, %c, %C, %1. */
359
360 /* config.h can define ASM_SPEC to provide extra args to the assembler
361 or extra switch-translations. */
362 #ifndef ASM_SPEC
363 #define ASM_SPEC ""
364 #endif
365
366 /* config.h can define ASM_FINAL_SPEC to run a post processor after
367 the assembler has run. */
368 #ifndef ASM_FINAL_SPEC
369 #define ASM_FINAL_SPEC ""
370 #endif
371
372 /* config.h can define CPP_SPEC to provide extra args to the C preprocessor
373 or extra switch-translations. */
374 #ifndef CPP_SPEC
375 #define CPP_SPEC ""
376 #endif
377
378 /* config.h can define CC1_SPEC to provide extra args to cc1 and cc1plus
379 or extra switch-translations. */
380 #ifndef CC1_SPEC
381 #define CC1_SPEC ""
382 #endif
383
384 /* config.h can define CC1PLUS_SPEC to provide extra args to cc1plus
385 or extra switch-translations. */
386 #ifndef CC1PLUS_SPEC
387 #define CC1PLUS_SPEC ""
388 #endif
389
390 /* config.h can define LINK_SPEC to provide extra args to the linker
391 or extra switch-translations. */
392 #ifndef LINK_SPEC
393 #define LINK_SPEC ""
394 #endif
395
396 /* config.h can define LIB_SPEC to override the default libraries. */
397 #ifndef LIB_SPEC
398 #define LIB_SPEC "%{g*:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}"
399 #endif
400
401 /* config.h can define STARTFILE_SPEC to override the default crt0 files. */
402 #ifndef STARTFILE_SPEC
403 #define STARTFILE_SPEC \
404 "%{pg:gcrt0.o%s}%{!pg:%{p:mcrt0.o%s}%{!p:crt0.o%s}}"
405 #endif
406
407 /* config.h can define SWITCHES_NEED_SPACES to control passing -o and -L.
408 Make the string nonempty to require spaces there. */
409 #ifndef SWITCHES_NEED_SPACES
410 #define SWITCHES_NEED_SPACES ""
411 #endif
412
413 /* config.h can define ENDFILE_SPEC to override the default crtn files. */
414 #ifndef ENDFILE_SPEC
415 #define ENDFILE_SPEC ""
416 #endif
417
418 /* This spec is used for telling cpp whether char is signed or not. */
419 #ifndef SIGNED_CHAR_SPEC
420 /* Use #if rather than ?:
421 because MIPS C compiler rejects like ?: in initializers. */
422 #if DEFAULT_SIGNED_CHAR
423 #define SIGNED_CHAR_SPEC "%{funsigned-char:-D__CHAR_UNSIGNED__}"
424 #else
425 #define SIGNED_CHAR_SPEC "%{!fsigned-char:-D__CHAR_UNSIGNED__}"
426 #endif
427 #endif
428
429 static char *cpp_spec = CPP_SPEC;
430 static char *cpp_predefines = CPP_PREDEFINES;
431 static char *cc1_spec = CC1_SPEC;
432 static char *cc1plus_spec = CC1PLUS_SPEC;
433 static char *signed_char_spec = SIGNED_CHAR_SPEC;
434 static char *asm_spec = ASM_SPEC;
435 static char *asm_final_spec = ASM_FINAL_SPEC;
436 static char *link_spec = LINK_SPEC;
437 static char *lib_spec = LIB_SPEC;
438 static char *endfile_spec = ENDFILE_SPEC;
439 static char *startfile_spec = STARTFILE_SPEC;
440 static char *switches_need_spaces = SWITCHES_NEED_SPACES;
441
442 /* This defines which switch letters take arguments. */
443
444 #ifndef SWITCH_TAKES_ARG
445 #define SWITCH_TAKES_ARG(CHAR) \
446 ((CHAR) == 'D' || (CHAR) == 'U' || (CHAR) == 'o' \
447 || (CHAR) == 'e' || (CHAR) == 'T' || (CHAR) == 'u' \
448 || (CHAR) == 'I' || (CHAR) == 'm' \
449 || (CHAR) == 'L' || (CHAR) == 'A')
450 #endif
451
452 /* This defines which multi-letter switches take arguments. */
453
454 #define DEFAULT_WORD_SWITCH_TAKES_ARG(STR) \
455 (!strcmp (STR, "Tdata") || !strcmp (STR, "Ttext") \
456 || !strcmp (STR, "Tbss") || !strcmp (STR, "include") \
457 || !strcmp (STR, "imacros") || !strcmp (STR, "aux-info") \
458 || !strcmp (STR, "idirafter") || !strcmp (STR, "iprefix") \
459 || !strcmp (STR, "iwithprefix") || !strcmp (STR, "iwithprefixbefore"))
460
461 #ifndef WORD_SWITCH_TAKES_ARG
462 #define WORD_SWITCH_TAKES_ARG(STR) DEFAULT_WORD_SWITCH_TAKES_ARG (STR)
463 #endif
464 \f
465 /* Record the mapping from file suffixes for compilation specs. */
466
467 struct compiler
468 {
469 char *suffix; /* Use this compiler for input files
470 whose names end in this suffix. */
471
472 char *spec[4]; /* To use this compiler, concatenate these
473 specs and pass to do_spec. */
474 };
475
476 /* Pointer to a vector of `struct compiler' that gives the spec for
477 compiling a file, based on its suffix.
478 A file that does not end in any of these suffixes will be passed
479 unchanged to the loader and nothing else will be done to it.
480
481 An entry containing two 0s is used to terminate the vector.
482
483 If multiple entries match a file, the last matching one is used. */
484
485 static struct compiler *compilers;
486
487 /* Number of entries in `compilers', not counting the null terminator. */
488
489 static int n_compilers;
490
491 /* The default list of file name suffixes and their compilation specs. */
492
493 static struct compiler default_compilers[] =
494 {
495 {".c", "@c"},
496 {"@c",
497 "cpp -lang-c %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\
498 %{C:%{!E:%eGNU C does not support -C without using -E}}\
499 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d}\
500 -undef -D__GNUC__=%v1 -D__GNUC_MINOR__=%v2\
501 %{ansi:-trigraphs -$ -D__STRICT_ANSI__}\
502 %{!undef:%{!ansi:%p} %P} %{trigraphs} \
503 %c %{O*:%{!O0:-D__OPTIMIZE__}} %{traditional} %{ftraditional:-traditional}\
504 %{traditional-cpp:-traditional}\
505 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*}\
506 %i %{!M:%{!MM:%{!E:%{!pipe:%g.i}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n",
507 "%{!M:%{!MM:%{!E:cc1 %{!pipe:%g.i} %1 \
508 %{!Q:-quiet} -dumpbase %b.c %{d*} %{m*} %{a}\
509 %{g*} %{O*} %{W*} %{w} %{pedantic*} %{ansi} \
510 %{traditional} %{v:-version} %{pg:-p} %{p} %{f*}\
511 %{aux-info*}\
512 %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
513 %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
514 %{!S:as %{R} %{j} %{J} %{h} %{d2} %a %Y\
515 %{c:%W{o*}%{!o*:-o %w%b.o}}%{!c:-o %d%w%u.o}\
516 %{!pipe:%g.s} %A\n }}}}"},
517 {"-",
518 "%{E:cpp -lang-c %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\
519 %{C:%{!E:%eGNU C does not support -C without using -E}}\
520 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d}\
521 -undef -D__GNUC__=%v1 -D__GNUC_MINOR__=%v2\
522 %{ansi:-trigraphs -$ -D__STRICT_ANSI__}\
523 %{!undef:%{!ansi:%p} %P} %{trigraphs}\
524 %c %{O*:%{!O0:-D__OPTIMIZE__}} %{traditional} %{ftraditional:-traditional}\
525 %{traditional-cpp:-traditional}\
526 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*}\
527 %i %W{o*}}\
528 %{!E:%e-E required when input is from standard input}"},
529 {".m", "@objective-c"},
530 {"@objective-c",
531 "cpp -lang-objc %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\
532 %{C:%{!E:%eGNU C does not support -C without using -E}}\
533 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d}\
534 -undef -D__OBJC__ -D__GNUC__=%v1 -D__GNUC_MINOR__=%v2\
535 %{ansi:-trigraphs -$ -D__STRICT_ANSI__}\
536 %{!undef:%{!ansi:%p} %P} %{trigraphs}\
537 %c %{O*:%{!O0:-D__OPTIMIZE__}} %{traditional} %{ftraditional:-traditional}\
538 %{traditional-cpp:-traditional}\
539 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*}\
540 %i %{!M:%{!MM:%{!E:%{!pipe:%g.i}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n",
541 "%{!M:%{!MM:%{!E:cc1obj %{!pipe:%g.i} %1 \
542 %{!Q:-quiet} -dumpbase %b.m %{d*} %{m*} %{a}\
543 %{g*} %{O*} %{W*} %{w} %{pedantic*} %{ansi} \
544 %{traditional} %{v:-version} %{pg:-p} %{p} %{f*} \
545 -lang-objc %{gen-decls} \
546 %{aux-info*}\
547 %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
548 %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
549 %{!S:as %{R} %{j} %{J} %{h} %{d2} %a %Y\
550 %{c:%W{o*}%{!o*:-o %w%b.o}}%{!c:-o %d%w%u.o}\
551 %{!pipe:%g.s} %A\n }}}}"},
552 {".h", "@c-header"},
553 {"@c-header",
554 "%{!E:%eCompilation of header file requested} \
555 cpp %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\
556 %{C:%{!E:%eGNU C does not support -C without using -E}}\
557 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} \
558 -undef -D__GNUC__=%v1 -D__GNUC_MINOR__=%v2\
559 %{ansi:-trigraphs -$ -D__STRICT_ANSI__}\
560 %{!undef:%{!ansi:%p} %P} %{trigraphs}\
561 %c %{O*:%{!O0:-D__OPTIMIZE__}} %{traditional} %{ftraditional:-traditional}\
562 %{traditional-cpp:-traditional}\
563 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*}\
564 %i %W{o*}"},
565 {".cc", "@c++"},
566 {".cxx", "@c++"},
567 {".cpp", "@c++"},
568 {".C", "@c++"},
569 {"@c++",
570 "cpp -lang-c++ %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\
571 %{C:%{!E:%eGNU C++ does not support -C without using -E}}\
572 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} \
573 -undef -D__GNUC__=%v1 -D__GNUG__=%v1 -D__cplusplus -D__GNUC_MINOR__=%v2\
574 %{ansi:-trigraphs -$ -D__STRICT_ANSI__} %{!undef:%{!ansi:%p} %P}\
575 %c %{O*:%{!O0:-D__OPTIMIZE__}} %{traditional} %{ftraditional:-traditional}\
576 %{traditional-cpp:-traditional} %{trigraphs}\
577 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*}\
578 %i %{!M:%{!MM:%{!E:%{!pipe:%g.ii}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n",
579 "%{!M:%{!MM:%{!E:cc1plus %{!pipe:%g.ii} %1 %2\
580 %{!Q:-quiet} -dumpbase %b.cc %{d*} %{m*} %{a}\
581 %{g*} %{O*} %{W*} %{w} %{pedantic*} %{ansi} %{traditional}\
582 %{v:-version} %{pg:-p} %{p} %{f*} %{+e*}\
583 %{aux-info*}\
584 %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
585 %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
586 %{!S:as %{R} %{j} %{J} %{h} %{d2} %a %Y\
587 %{c:%W{o*}%{!o*:-o %w%b.o}}%{!c:-o %d%w%u.o}\
588 %{!pipe:%g.s} %A\n }}}}"},
589 {".i", "@cpp-output"},
590 {"@cpp-output",
591 "cc1 %i %1 %{!Q:-quiet} %{d*} %{m*} %{a}\
592 %{g*} %{O*} %{W*} %{w} %{pedantic*} %{ansi} %{traditional}\
593 %{v:-version} %{pg:-p} %{p} %{f*}\
594 %{aux-info*}\
595 %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
596 %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
597 %{!S:as %{R} %{j} %{J} %{h} %{d2} %a %Y\
598 %{c:%W{o*}%{!o*:-o %w%b.o}}%{!c:-o %d%w%u.o} %{!pipe:%g.s} %A\n }"},
599 {".ii", "@c++-cpp-output"},
600 {"@c++-cpp-output",
601 "cc1plus %i %1 %2 %{!Q:-quiet} %{d*} %{m*} %{a}\
602 %{g*} %{O*} %{W*} %{w} %{pedantic*} %{ansi} %{traditional}\
603 %{v:-version} %{pg:-p} %{p} %{f*} %{+e*}\
604 %{aux-info*}\
605 %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
606 %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
607 %{!S:as %{R} %{j} %{J} %{h} %{d2} %a %Y\
608 %{c:%W{o*}%{!o*:-o %w%b.o}}%{!c:-o %d%w%u.o}\
609 %{!pipe:%g.s} %A\n }"},
610 {".s", "@assembler"},
611 {"@assembler",
612 "%{!S:as %{R} %{j} %{J} %{h} %{d2} %a %Y\
613 %{c:%W{o*}%{!o*:-o %w%b.o}}%{!c:-o %d%w%u.o} %i %A\n }"},
614 {".S", "@assembler-with-cpp"},
615 {"@assembler-with-cpp",
616 "cpp -lang-asm %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\
617 %{C:%{!E:%eGNU C does not support -C without using -E}}\
618 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{trigraphs} \
619 -undef -$ %{!undef:%p %P} -D__ASSEMBLER__ \
620 %c %{O*:%{!O0:-D__OPTIMIZE__}} %{traditional} %{ftraditional:-traditional}\
621 %{traditional-cpp:-traditional}\
622 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*}\
623 %i %{!M:%{!MM:%{!E:%{!pipe:%g.s}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n",
624 "%{!M:%{!MM:%{!E:%{!S:as %{R} %{j} %{J} %{h} %{d2} %a %Y\
625 %{c:%W{o*}%{!o*:-o %w%b.o}}%{!c:-o %d%w%u.o}\
626 %{!pipe:%g.s} %A\n }}}}"},
627 {".ads", "@ada"},
628 {".adb", "@ada"},
629 {".ada", "@ada"},
630 {"@ada",
631 "gnat1 %{k8:-gnatk8} %{w:-gnatws} %{!Q:-quiet} -dumpbase %b.ada\
632 %{g*} %{O*} %{p} %{pg:-p} %{f*} %{d*}\
633 %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
634 %i %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} | \n",
635 "%{!S:%{!gnatc:%{!gnats:as %{R} %{j} %{J} %{h} %{d2} %a %Y\
636 %{c:%W{o*}%{!o*:-o %w%b.o}}%{!c:-o %d%w%u.o}\
637 %{!pipe:%g.s} %A\n}}} "},
638 /* Mark end of table */
639 {0, 0}
640 };
641
642 /* Number of elements in default_compilers, not counting the terminator. */
643
644 static int n_default_compilers
645 = (sizeof default_compilers / sizeof (struct compiler)) - 1;
646
647 /* Here is the spec for running the linker, after compiling all files. */
648
649 /* -u* was put back because both BSD and SysV seem to support it. */
650 /* %{static:} simply prevents an error message if the target machine
651 doesn't handle -static. */
652 /* We want %{T*} after %{L*} and %D so that it can be used to specify linker
653 scripts which exist in user specified directories, or in standard
654 directories. */
655 #ifdef LINK_LIBGCC_SPECIAL_1
656 /* Have gcc do the search for libgcc.a, but generate -L options as usual. */
657 static char *link_command_spec = "\
658 %{!fsyntax-only: \
659 %{!c:%{!M:%{!MM:%{!E:%{!S:ld %l %X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} \
660 %{r} %{s} %{t} %{u*} %{x} %{z}\
661 %{!A:%{!nostartfiles:%{!nostdlib:%S}}} %{static:}\
662 %{L*} %D %{T*} %o %{!nostdlib:libgcc.a%s %L libgcc.a%s %{!A:%E}}\n }}}}}}";
663 #else
664 #ifdef LINK_LIBGCC_SPECIAL
665 /* Have gcc do the search for libgcc.a, and don't generate -L options. */
666 static char *link_command_spec = "\
667 %{!fsyntax-only: \
668 %{!c:%{!M:%{!MM:%{!E:%{!S:ld %l %X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} \
669 %{r} %{s} %{t} %{u*} %{x} %{z}\
670 %{!A:%{!nostartfiles:%{!nostdlib:%S}}} %{static:}\
671 %{L*} %{T*} %o %{!nostdlib:libgcc.a%s %L libgcc.a%s %{!A:%E}}\n }}}}}}";
672 #else
673 /* Use -L and have the linker do the search for -lgcc. */
674 static char *link_command_spec = "\
675 %{!fsyntax-only: \
676 %{!c:%{!M:%{!MM:%{!E:%{!S:ld %l %X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} \
677 %{r} %{s} %{t} %{u*} %{x} %{z}\
678 %{!A:%{!nostartfiles:%{!nostdlib:%S}}} %{static:}\
679 %{L*} %D %{T*} %o %{!nostdlib:-lgcc %L -lgcc %{!A:%E}}\n }}}}}}";
680 #endif
681 #endif
682
683 /* A vector of options to give to the linker.
684 These options are accumulated by -Xlinker and -Wl,
685 and substituted into the linker command with %X. */
686 static int n_linker_options;
687 static char **linker_options;
688
689 /* A vector of options to give to the assembler.
690 These options are accumulated by -Wa,
691 and substituted into the assembler command with %X. */
692 static int n_assembler_options;
693 static char **assembler_options;
694 \f
695 /* Define how to map long options into short ones. */
696
697 /* This structure describes one mapping. */
698 struct option_map
699 {
700 /* The long option's name. */
701 char *name;
702 /* The equivalent short option. */
703 char *equivalent;
704 /* Argument info. A string of flag chars; NULL equals no options.
705 a => argument required.
706 o => argument optional.
707 j => join argument to equivalent, making one word.
708 * => allow other text after NAME as an argument. */
709 char *arg_info;
710 };
711
712 /* This is the table of mappings. Mappings are tried sequentially
713 for each option encountered; the first one that matches, wins. */
714
715 struct option_map option_map[] =
716 {
717 {"--profile-blocks", "-a", 0},
718 {"--target", "-b", "a"},
719 {"--compile", "-c", 0},
720 {"--dump", "-d", "a"},
721 {"--entry", "-e", 0},
722 {"--debug", "-g", "oj"},
723 {"--include", "-include", "a"},
724 {"--imacros", "-imacros", "a"},
725 {"--include-prefix", "-iprefix", "a"},
726 {"--include-directory-after", "-idirafter", "a"},
727 {"--include-with-prefix", "-iwithprefix", "a"},
728 {"--include-with-prefix-before", "-iwithprefixbefore", "a"},
729 {"--include-with-prefix-after", "-iwithprefix", "a"},
730 {"--machine-", "-m", "*j"},
731 {"--machine", "-m", "aj"},
732 {"--no-standard-includes", "-nostdinc", 0},
733 {"--no-standard-libraries", "-nostdlib", 0},
734 {"--no-precompiled-includes", "-noprecomp", 0},
735 {"--output", "-o", "a"},
736 {"--profile", "-p", 0},
737 {"--quiet", "-q", 0},
738 {"--silent", "-q", 0},
739 {"--force-link", "-u", "a"},
740 {"--verbose", "-v", 0},
741 {"--version", "-dumpversion", 0},
742 {"--no-warnings", "-w", 0},
743 {"--language", "-x", "a"},
744
745 {"--assert", "-A", "a"},
746 {"--prefix", "-B", "a"},
747 {"--comments", "-C", 0},
748 {"--define-macro", "-D", "a"},
749 {"--preprocess", "-E", 0},
750 {"--trace-includes", "-H", 0},
751 {"--include-directory", "-I", "a"},
752 {"--include-barrier", "-I-", 0},
753 {"--library-directory", "-L", "a"},
754 {"--dependencies", "-M", 0},
755 {"--user-dependencies", "-MM", 0},
756 {"--write-dependencies", "-MD", 0},
757 {"--write-user-dependencies", "-MMD", 0},
758 {"--optimize", "-O", "oj"},
759 {"--no-line-commands", "-P", 0},
760 {"--assemble", "-S", 0},
761 {"--undefine-macro", "-U", "a"},
762 {"--use-version", "-V", "a"},
763 {"--for-assembler", "-Wa", "a"},
764 {"--extra-warnings", "-W", 0},
765 {"--all-warnings", "-Wall", 0},
766 {"--warn-", "-W", "*j"},
767 {"--for-linker", "-Xlinker", "a"},
768
769 {"--ansi", "-ansi", 0},
770 {"--traditional", "-traditional", 0},
771 {"--traditional-cpp", "-traditional-cpp", 0},
772 {"--trigraphs", "-trigraphs", 0},
773 {"--pipe", "-pipe", 0},
774 {"--dumpbase", "-dumpbase", "a"},
775 {"--pedantic", "-pedantic", 0},
776 {"--pedantic-errors", "-pedantic-errors", 0},
777 {"--save-temps", "-save-temps", 0},
778 {"--print-libgcc-file-name", "-print-libgcc-file-name", 0},
779 {"--print-file-name", "-print-file-name=", "aj"},
780 {"--print-prog-name", "-print-prog-name=", "aj"},
781 {"--static", "-static", 0},
782 {"--shared", "-shared", 0},
783 {"--symbolic", "-symbolic", 0},
784 {"--", "-f", "*j"}
785 };
786 \f
787 /* Translate the options described by *ARGCP and *ARGVP.
788 Make a new vector and store it back in *ARGVP,
789 and store its length in *ARGVC. */
790
791 static void
792 translate_options (argcp, argvp)
793 int *argcp;
794 char ***argvp;
795 {
796 int i, j;
797 int argc = *argcp;
798 char **argv = *argvp;
799 char **newv = (char **) xmalloc ((argc + 2) * 2 * sizeof (char *));
800 int newindex = 0;
801
802 i = 0;
803 newv[newindex++] = argv[i++];
804
805 while (i < argc)
806 {
807 /* Translate -- options. */
808 if (argv[i][0] == '-' && argv[i][1] == '-')
809 {
810 /* Find a mapping that applies to this option. */
811 for (j = 0; j < sizeof (option_map) / sizeof (option_map[0]); j++)
812 {
813 int optlen = strlen (option_map[j].name);
814 int complen = strlen (argv[i]);
815 char *arginfo = option_map[j].arg_info;
816
817 if (arginfo == 0)
818 arginfo = "";
819 if (complen > optlen)
820 complen = optlen;
821 if (!strncmp (argv[i], option_map[j].name, complen))
822 {
823 int extra = strlen (argv[i]) > optlen;
824 char *arg = 0;
825
826 if (extra)
827 {
828 /* If the option has an argument, accept that. */
829 if (argv[i][optlen] == '=')
830 arg = argv[i] + optlen + 1;
831 /* If this mapping allows extra text at end of name,
832 accept that as "argument". */
833 else if (index (arginfo, '*') != 0)
834 arg = argv[i] + optlen;
835 /* Otherwise, extra text at end means mismatch.
836 Try other mappings. */
837 else
838 continue;
839 }
840 else if (index (arginfo, '*') != 0)
841 error ("Incomplete `%s' option", option_map[j].name);
842
843 /* Handle arguments. */
844 if (index (arginfo, 'o') != 0)
845 {
846 if (arg == 0)
847 {
848 if (i + 1 == argc)
849 error ("Missing argument to `%s' option",
850 option_map[j].name);
851 arg = argv[++i];
852 }
853 }
854 else if (index (arginfo, '*') != 0)
855 ;
856 else if (index (arginfo, 'a') == 0)
857 {
858 if (arg != 0)
859 error ("Extraneous argument to `%s' option",
860 option_map[j].name);
861 arg = 0;
862 }
863
864 /* Store the translation as one argv elt or as two. */
865 if (arg != 0 && index (arginfo, 'j') != 0)
866 newv[newindex++] = concat (option_map[j].equivalent,
867 arg, "");
868 else if (arg != 0)
869 {
870 newv[newindex++] = option_map[j].equivalent;
871 newv[newindex++] = arg;
872 }
873 else
874 newv[newindex++] = option_map[j].equivalent;
875
876 break;
877 }
878 }
879 i++;
880 }
881 /* Handle old-fashioned options--just copy them through,
882 with their arguments. */
883 else if (argv[i][0] == '-')
884 {
885 char *p = argv[i] + 1;
886 int c = *p;
887 int nskip = 1;
888
889 if (SWITCH_TAKES_ARG (c) > (p[1] != 0))
890 nskip += SWITCH_TAKES_ARG (c) - (p[1] != 0);
891 else if (WORD_SWITCH_TAKES_ARG (p))
892 nskip += WORD_SWITCH_TAKES_ARG (p);
893 else if ((c == 'B' || c == 'b' || c == 'V' || c == 'x')
894 && p[1] == 0)
895 nskip += 1;
896 else if (! strcmp (p, "Xlinker"))
897 nskip += 1;
898
899 while (nskip > 0)
900 {
901 newv[newindex++] = argv[i++];
902 nskip--;
903 }
904 }
905 else
906 /* Ordinary operands, or +e options. */
907 newv[newindex++] = argv[i++];
908 }
909
910 newv[newindex] = 0;
911
912 *argvp = newv;
913 *argcp = newindex;
914 }
915 \f
916 /* Read compilation specs from a file named FILENAME,
917 replacing the default ones.
918
919 A suffix which starts with `*' is a definition for
920 one of the machine-specific sub-specs. The "suffix" should be
921 *asm, *cc1, *cpp, *link, *startfile, *signed_char, etc.
922 The corresponding spec is stored in asm_spec, etc.,
923 rather than in the `compilers' vector.
924
925 Anything invalid in the file is a fatal error. */
926
927 static void
928 read_specs (filename)
929 char *filename;
930 {
931 int desc;
932 struct stat statbuf;
933 char *buffer;
934 register char *p;
935
936 if (verbose_flag)
937 fprintf (stderr, "Reading specs from %s\n", filename);
938
939 /* Open and stat the file. */
940 desc = open (filename, 0, 0);
941 if (desc < 0)
942 pfatal_with_name (filename);
943 if (stat (filename, &statbuf) < 0)
944 pfatal_with_name (filename);
945
946 /* Read contents of file into BUFFER. */
947 buffer = xmalloc ((unsigned) statbuf.st_size + 1);
948 read (desc, buffer, (unsigned) statbuf.st_size);
949 buffer[statbuf.st_size] = 0;
950 close (desc);
951
952 /* Scan BUFFER for specs, putting them in the vector. */
953 p = buffer;
954 while (1)
955 {
956 char *suffix;
957 char *spec;
958 char *in, *out, *p1, *p2;
959
960 /* Advance P in BUFFER to the next nonblank nocomment line. */
961 p = skip_whitespace (p);
962 if (*p == 0)
963 break;
964
965 /* Find the colon that should end the suffix. */
966 p1 = p;
967 while (*p1 && *p1 != ':' && *p1 != '\n') p1++;
968 /* The colon shouldn't be missing. */
969 if (*p1 != ':')
970 fatal ("specs file malformed after %d characters", p1 - buffer);
971 /* Skip back over trailing whitespace. */
972 p2 = p1;
973 while (p2 > buffer && (p2[-1] == ' ' || p2[-1] == '\t')) p2--;
974 /* Copy the suffix to a string. */
975 suffix = save_string (p, p2 - p);
976 /* Find the next line. */
977 p = skip_whitespace (p1 + 1);
978 if (p[1] == 0)
979 fatal ("specs file malformed after %d characters", p - buffer);
980 p1 = p;
981 /* Find next blank line. */
982 while (*p1 && !(*p1 == '\n' && p1[1] == '\n')) p1++;
983 /* Specs end at the blank line and do not include the newline. */
984 spec = save_string (p, p1 - p);
985 p = p1;
986
987 /* Delete backslash-newline sequences from the spec. */
988 in = spec;
989 out = spec;
990 while (*in != 0)
991 {
992 if (in[0] == '\\' && in[1] == '\n')
993 in += 2;
994 else if (in[0] == '#')
995 {
996 while (*in && *in != '\n') in++;
997 }
998 else
999 *out++ = *in++;
1000 }
1001 *out = 0;
1002
1003 if (suffix[0] == '*')
1004 {
1005 if (! strcmp (suffix, "*link_command"))
1006 link_command_spec = spec;
1007 else
1008 set_spec (suffix + 1, spec);
1009 }
1010 else
1011 {
1012 /* Add this pair to the vector. */
1013 compilers
1014 = ((struct compiler *)
1015 xrealloc (compilers, (n_compilers + 2) * sizeof (struct compiler)));
1016 compilers[n_compilers].suffix = suffix;
1017 bzero (compilers[n_compilers].spec,
1018 sizeof compilers[n_compilers].spec);
1019 compilers[n_compilers].spec[0] = spec;
1020 n_compilers++;
1021 bzero (&compilers[n_compilers], sizeof compilers[n_compilers]);
1022 }
1023
1024 if (*suffix == 0)
1025 link_command_spec = spec;
1026 }
1027
1028 if (link_command_spec == 0)
1029 fatal ("spec file has no spec for linking");
1030 }
1031
1032 static char *
1033 skip_whitespace (p)
1034 char *p;
1035 {
1036 while (1)
1037 {
1038 /* A fully-blank line is a delimiter in the SPEC file and shouldn't
1039 be considered whitespace. */
1040 if (p[0] == '\n' && p[1] == '\n' && p[2] == '\n')
1041 return p + 1;
1042 else if (*p == '\n' || *p == ' ' || *p == '\t')
1043 p++;
1044 else if (*p == '#')
1045 {
1046 while (*p != '\n') p++;
1047 p++;
1048 }
1049 else
1050 break;
1051 }
1052
1053 return p;
1054 }
1055 \f
1056 /* Structure to keep track of the specs that have been defined so far. These
1057 are accessed using %(specname) or %[specname] in a compiler or link spec. */
1058
1059 struct spec_list
1060 {
1061 char *name; /* Name of the spec. */
1062 char *spec; /* The spec itself. */
1063 struct spec_list *next; /* Next spec in linked list. */
1064 };
1065
1066 /* List of specs that have been defined so far. */
1067
1068 static struct spec_list *specs = (struct spec_list *) 0;
1069 \f
1070 /* Change the value of spec NAME to SPEC. If SPEC is empty, then the spec is
1071 removed; If the spec starts with a + then SPEC is added to the end of the
1072 current spec. */
1073
1074 static void
1075 set_spec (name, spec)
1076 char *name;
1077 char *spec;
1078 {
1079 struct spec_list *sl;
1080 char *old_spec;
1081
1082 /* See if the spec already exists */
1083 for (sl = specs; sl; sl = sl->next)
1084 if (strcmp (sl->name, name) == 0)
1085 break;
1086
1087 if (!sl)
1088 {
1089 /* Not found - make it */
1090 sl = (struct spec_list *) xmalloc (sizeof (struct spec_list));
1091 sl->name = save_string (name, strlen (name));
1092 sl->spec = save_string ("", 0);
1093 sl->next = specs;
1094 specs = sl;
1095 }
1096
1097 old_spec = sl->spec;
1098 if (name && spec[0] == '+' && isspace (spec[1]))
1099 sl->spec = concat (old_spec, spec + 1, "");
1100 else
1101 sl->spec = save_string (spec, strlen (spec));
1102
1103 if (! strcmp (name, "asm"))
1104 asm_spec = sl->spec;
1105 else if (! strcmp (name, "asm_final"))
1106 asm_final_spec = sl->spec;
1107 else if (! strcmp (name, "cc1"))
1108 cc1_spec = sl->spec;
1109 else if (! strcmp (name, "cc1plus"))
1110 cc1plus_spec = sl->spec;
1111 else if (! strcmp (name, "cpp"))
1112 cpp_spec = sl->spec;
1113 else if (! strcmp (name, "endfile"))
1114 endfile_spec = sl->spec;
1115 else if (! strcmp (name, "lib"))
1116 lib_spec = sl->spec;
1117 else if (! strcmp (name, "link"))
1118 link_spec = sl->spec;
1119 else if (! strcmp (name, "predefines"))
1120 cpp_predefines = sl->spec;
1121 else if (! strcmp (name, "signed_char"))
1122 signed_char_spec = sl->spec;
1123 else if (! strcmp (name, "startfile"))
1124 startfile_spec = sl->spec;
1125 else if (! strcmp (name, "switches_need_spaces"))
1126 switches_need_spaces = sl->spec;
1127 else if (! strcmp (name, "cross_compile"))
1128 cross_compile = atoi (sl->spec);
1129 /* Free the old spec */
1130 if (old_spec)
1131 free (old_spec);
1132 }
1133 \f
1134 /* Accumulate a command (program name and args), and run it. */
1135
1136 /* Vector of pointers to arguments in the current line of specifications. */
1137
1138 static char **argbuf;
1139
1140 /* Number of elements allocated in argbuf. */
1141
1142 static int argbuf_length;
1143
1144 /* Number of elements in argbuf currently in use (containing args). */
1145
1146 static int argbuf_index;
1147
1148 /* This is the list of suffixes and codes (%g/%u/%U) and the associated
1149 temp file. Used only if MKTEMP_EACH_FILE. */
1150
1151 static struct temp_name {
1152 char *suffix; /* suffix associated with the code. */
1153 int length; /* strlen (suffix). */
1154 int unique; /* Indicates whether %g or %u/%U was used. */
1155 char *filename; /* associated filename. */
1156 int filename_length; /* strlen (filename). */
1157 struct temp_name *next;
1158 } *temp_names;
1159
1160 /* Number of commands executed so far. */
1161
1162 static int execution_count;
1163
1164 /* Number of commands that exited with a signal. */
1165
1166 static int signal_count;
1167
1168 /* Name with which this program was invoked. */
1169
1170 static char *programname;
1171 \f
1172 /* Structures to keep track of prefixes to try when looking for files. */
1173
1174 struct prefix_list
1175 {
1176 char *prefix; /* String to prepend to the path. */
1177 struct prefix_list *next; /* Next in linked list. */
1178 int require_machine_suffix; /* Don't use without machine_suffix. */
1179 /* 2 means try both machine_suffix and just_machine_suffix. */
1180 int *used_flag_ptr; /* 1 if a file was found with this prefix. */
1181 };
1182
1183 struct path_prefix
1184 {
1185 struct prefix_list *plist; /* List of prefixes to try */
1186 int max_len; /* Max length of a prefix in PLIST */
1187 char *name; /* Name of this list (used in config stuff) */
1188 };
1189
1190 /* List of prefixes to try when looking for executables. */
1191
1192 static struct path_prefix exec_prefix = { 0, 0, "exec" };
1193
1194 /* List of prefixes to try when looking for startup (crt0) files. */
1195
1196 static struct path_prefix startfile_prefix = { 0, 0, "startfile" };
1197
1198 /* List of prefixes to try when looking for include files. */
1199
1200 static struct path_prefix include_prefix = { 0, 0, "include" };
1201
1202 /* Suffix to attach to directories searched for commands.
1203 This looks like `MACHINE/VERSION/'. */
1204
1205 static char *machine_suffix = 0;
1206
1207 /* Suffix to attach to directories searched for commands.
1208 This is just `MACHINE/'. */
1209
1210 static char *just_machine_suffix = 0;
1211
1212 /* Adjusted value of GCC_EXEC_PREFIX envvar. */
1213
1214 static char *gcc_exec_prefix;
1215
1216 /* Default prefixes to attach to command names. */
1217
1218 #ifdef CROSS_COMPILE /* Don't use these prefixes for a cross compiler. */
1219 #undef MD_EXEC_PREFIX
1220 #undef MD_STARTFILE_PREFIX
1221 #undef MD_STARTFILE_PREFIX_1
1222 #endif
1223
1224 #ifndef STANDARD_EXEC_PREFIX
1225 #define STANDARD_EXEC_PREFIX "/usr/local/lib/gcc-lib/"
1226 #endif /* !defined STANDARD_EXEC_PREFIX */
1227
1228 static char *standard_exec_prefix = STANDARD_EXEC_PREFIX;
1229 static char *standard_exec_prefix_1 = "/usr/lib/gcc/";
1230 #ifdef MD_EXEC_PREFIX
1231 static char *md_exec_prefix = MD_EXEC_PREFIX;
1232 #endif
1233
1234 #ifndef STANDARD_STARTFILE_PREFIX
1235 #define STANDARD_STARTFILE_PREFIX "/usr/local/lib/"
1236 #endif /* !defined STANDARD_STARTFILE_PREFIX */
1237
1238 #ifdef MD_STARTFILE_PREFIX
1239 static char *md_startfile_prefix = MD_STARTFILE_PREFIX;
1240 #endif
1241 #ifdef MD_STARTFILE_PREFIX_1
1242 static char *md_startfile_prefix_1 = MD_STARTFILE_PREFIX_1;
1243 #endif
1244 static char *standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
1245 static char *standard_startfile_prefix_1 = "/lib/";
1246 static char *standard_startfile_prefix_2 = "/usr/lib/";
1247
1248 #ifndef TOOLDIR_BASE_PREFIX
1249 #define TOOLDIR_BASE_PREFIX "/usr/local/"
1250 #endif
1251 static char *tooldir_base_prefix = TOOLDIR_BASE_PREFIX;
1252 static char *tooldir_prefix;
1253
1254 /* Clear out the vector of arguments (after a command is executed). */
1255
1256 static void
1257 clear_args ()
1258 {
1259 argbuf_index = 0;
1260 }
1261
1262 /* Add one argument to the vector at the end.
1263 This is done when a space is seen or at the end of the line.
1264 If DELETE_ALWAYS is nonzero, the arg is a filename
1265 and the file should be deleted eventually.
1266 If DELETE_FAILURE is nonzero, the arg is a filename
1267 and the file should be deleted if this compilation fails. */
1268
1269 static void
1270 store_arg (arg, delete_always, delete_failure)
1271 char *arg;
1272 int delete_always, delete_failure;
1273 {
1274 if (argbuf_index + 1 == argbuf_length)
1275 {
1276 argbuf = (char **) xrealloc (argbuf, (argbuf_length *= 2) * sizeof (char *));
1277 }
1278
1279 argbuf[argbuf_index++] = arg;
1280 argbuf[argbuf_index] = 0;
1281
1282 if (delete_always || delete_failure)
1283 record_temp_file (arg, delete_always, delete_failure);
1284 }
1285 \f
1286 /* Record the names of temporary files we tell compilers to write,
1287 and delete them at the end of the run. */
1288
1289 /* This is the common prefix we use to make temp file names.
1290 It is chosen once for each run of this program.
1291 It is substituted into a spec by %g.
1292 Thus, all temp file names contain this prefix.
1293 In practice, all temp file names start with this prefix.
1294
1295 This prefix comes from the envvar TMPDIR if it is defined;
1296 otherwise, from the P_tmpdir macro if that is defined;
1297 otherwise, in /usr/tmp or /tmp. */
1298
1299 static char *temp_filename;
1300
1301 /* Length of the prefix. */
1302
1303 static int temp_filename_length;
1304
1305 /* Define the list of temporary files to delete. */
1306
1307 struct temp_file
1308 {
1309 char *name;
1310 struct temp_file *next;
1311 };
1312
1313 /* Queue of files to delete on success or failure of compilation. */
1314 static struct temp_file *always_delete_queue;
1315 /* Queue of files to delete on failure of compilation. */
1316 static struct temp_file *failure_delete_queue;
1317
1318 /* Record FILENAME as a file to be deleted automatically.
1319 ALWAYS_DELETE nonzero means delete it if all compilation succeeds;
1320 otherwise delete it in any case.
1321 FAIL_DELETE nonzero means delete it if a compilation step fails;
1322 otherwise delete it in any case. */
1323
1324 static void
1325 record_temp_file (filename, always_delete, fail_delete)
1326 char *filename;
1327 int always_delete;
1328 int fail_delete;
1329 {
1330 register char *name;
1331 name = xmalloc (strlen (filename) + 1);
1332 strcpy (name, filename);
1333
1334 if (always_delete)
1335 {
1336 register struct temp_file *temp;
1337 for (temp = always_delete_queue; temp; temp = temp->next)
1338 if (! strcmp (name, temp->name))
1339 goto already1;
1340 temp = (struct temp_file *) xmalloc (sizeof (struct temp_file));
1341 temp->next = always_delete_queue;
1342 temp->name = name;
1343 always_delete_queue = temp;
1344 already1:;
1345 }
1346
1347 if (fail_delete)
1348 {
1349 register struct temp_file *temp;
1350 for (temp = failure_delete_queue; temp; temp = temp->next)
1351 if (! strcmp (name, temp->name))
1352 goto already2;
1353 temp = (struct temp_file *) xmalloc (sizeof (struct temp_file));
1354 temp->next = failure_delete_queue;
1355 temp->name = name;
1356 failure_delete_queue = temp;
1357 already2:;
1358 }
1359 }
1360
1361 /* Delete all the temporary files whose names we previously recorded. */
1362
1363 static void
1364 delete_temp_files ()
1365 {
1366 register struct temp_file *temp;
1367
1368 for (temp = always_delete_queue; temp; temp = temp->next)
1369 {
1370 #ifdef DEBUG
1371 int i;
1372 printf ("Delete %s? (y or n) ", temp->name);
1373 fflush (stdout);
1374 i = getchar ();
1375 if (i != '\n')
1376 while (getchar () != '\n') ;
1377 if (i == 'y' || i == 'Y')
1378 #endif /* DEBUG */
1379 {
1380 struct stat st;
1381 if (stat (temp->name, &st) >= 0)
1382 {
1383 /* Delete only ordinary files. */
1384 if (S_ISREG (st.st_mode))
1385 if (unlink (temp->name) < 0)
1386 if (verbose_flag)
1387 perror_with_name (temp->name);
1388 }
1389 }
1390 }
1391
1392 always_delete_queue = 0;
1393 }
1394
1395 /* Delete all the files to be deleted on error. */
1396
1397 static void
1398 delete_failure_queue ()
1399 {
1400 register struct temp_file *temp;
1401
1402 for (temp = failure_delete_queue; temp; temp = temp->next)
1403 {
1404 #ifdef DEBUG
1405 int i;
1406 printf ("Delete %s? (y or n) ", temp->name);
1407 fflush (stdout);
1408 i = getchar ();
1409 if (i != '\n')
1410 while (getchar () != '\n') ;
1411 if (i == 'y' || i == 'Y')
1412 #endif /* DEBUG */
1413 {
1414 if (unlink (temp->name) < 0)
1415 if (verbose_flag)
1416 perror_with_name (temp->name);
1417 }
1418 }
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 obstack_grow (&obstack, input_basename, basename_length);
2994 else
2995 {
2996 #ifdef MKTEMP_EACH_FILE
2997 /* ??? This has a problem: the total number of
2998 values mktemp can return is limited.
2999 That matters for the names of object files.
3000 In 2.4, do something about that. */
3001 struct temp_name *t;
3002 char *suffix = p;
3003 while (*p == '.' || isalpha (*p))
3004 p++;
3005
3006 /* See if we already have an association of %g/%u/%U and
3007 suffix. */
3008 for (t = temp_names; t; t = t->next)
3009 if (t->length == p - suffix
3010 && strncmp (t->suffix, suffix, p - suffix) == 0
3011 && t->unique == (c != 'g'))
3012 break;
3013
3014 /* Make a new association if needed. %u requires one. */
3015 if (t == 0 || c == 'u')
3016 {
3017 if (t == 0)
3018 {
3019 t = (struct temp_name *) xmalloc (sizeof (struct temp_name));
3020 t->next = temp_names;
3021 temp_names = t;
3022 }
3023 t->length = p - suffix;
3024 t->suffix = save_string (suffix, p - suffix);
3025 t->unique = (c != 'g');
3026 choose_temp_base ();
3027 t->filename = temp_filename;
3028 t->filename_length = temp_filename_length;
3029 }
3030
3031 obstack_grow (&obstack, t->filename, t->filename_length);
3032 delete_this_arg = 1;
3033 #else
3034 obstack_grow (&obstack, temp_filename, temp_filename_length);
3035 if (c == 'u' || c == 'U')
3036 {
3037 static int unique;
3038 char buff[9];
3039 if (c == 'u')
3040 unique++;
3041 sprintf (buff, "%d", unique);
3042 obstack_grow (&obstack, buff, strlen (buff));
3043 }
3044 #endif
3045 delete_this_arg = 1;
3046 }
3047 arg_going = 1;
3048 break;
3049
3050 case 'i':
3051 obstack_grow (&obstack, input_filename, input_filename_length);
3052 arg_going = 1;
3053 break;
3054
3055 case 'I':
3056 {
3057 struct prefix_list *pl = include_prefix.plist;
3058
3059 if (gcc_exec_prefix)
3060 {
3061 do_spec_1 ("-iprefix", 1, NULL_PTR);
3062 /* Make this a separate argument. */
3063 do_spec_1 (" ", 0, NULL_PTR);
3064 do_spec_1 (gcc_exec_prefix, 1, NULL_PTR);
3065 do_spec_1 (" ", 0, NULL_PTR);
3066 }
3067
3068 for (; pl; pl = pl->next)
3069 {
3070 do_spec_1 ("-isystem", 1, NULL_PTR);
3071 /* Make this a separate argument. */
3072 do_spec_1 (" ", 0, NULL_PTR);
3073 do_spec_1 (pl->prefix, 1, NULL_PTR);
3074 do_spec_1 (" ", 0, NULL_PTR);
3075 }
3076 }
3077 break;
3078
3079 case 'o':
3080 {
3081 register int f;
3082 for (f = 0; f < n_infiles; f++)
3083 store_arg (outfiles[f], 0, 0);
3084 }
3085 break;
3086
3087 case 's':
3088 this_is_library_file = 1;
3089 break;
3090
3091 case 'w':
3092 this_is_output_file = 1;
3093 break;
3094
3095 case 'W':
3096 {
3097 int index = argbuf_index;
3098 /* Handle the {...} following the %W. */
3099 if (*p != '{')
3100 abort ();
3101 p = handle_braces (p + 1);
3102 if (p == 0)
3103 return -1;
3104 /* If any args were output, mark the last one for deletion
3105 on failure. */
3106 if (argbuf_index != index)
3107 record_temp_file (argbuf[argbuf_index - 1], 0, 1);
3108 break;
3109 }
3110
3111 /* %x{OPTION} records OPTION for %X to output. */
3112 case 'x':
3113 {
3114 char *p1 = p;
3115 char *string;
3116
3117 /* Skip past the option value and make a copy. */
3118 if (*p != '{')
3119 abort ();
3120 while (*p++ != '}')
3121 ;
3122 string = save_string (p1 + 1, p - p1 - 2);
3123
3124 /* See if we already recorded this option. */
3125 for (i = 0; i < n_linker_options; i++)
3126 if (! strcmp (string, linker_options[i]))
3127 {
3128 free (string);
3129 return 0;
3130 }
3131
3132 /* This option is new; add it. */
3133 n_linker_options++;
3134 if (!linker_options)
3135 linker_options
3136 = (char **) xmalloc (n_linker_options * sizeof (char **));
3137 else
3138 linker_options
3139 = (char **) xrealloc (linker_options,
3140 n_linker_options * sizeof (char **));
3141
3142 linker_options[n_linker_options - 1] = string;
3143 }
3144 break;
3145
3146 /* Dump out the options accumulated previously using %x,
3147 -Xlinker and -Wl,. */
3148 case 'X':
3149 for (i = 0; i < n_linker_options; i++)
3150 {
3151 do_spec_1 (linker_options[i], 1, NULL_PTR);
3152 /* Make each accumulated option a separate argument. */
3153 do_spec_1 (" ", 0, NULL_PTR);
3154 }
3155 break;
3156
3157 /* Dump out the options accumulated previously using -Wa,. */
3158 case 'Y':
3159 for (i = 0; i < n_assembler_options; i++)
3160 {
3161 do_spec_1 (assembler_options[i], 1, NULL_PTR);
3162 /* Make each accumulated option a separate argument. */
3163 do_spec_1 (" ", 0, NULL_PTR);
3164 }
3165 break;
3166
3167 /* Here are digits and numbers that just process
3168 a certain constant string as a spec. */
3169
3170 case '1':
3171 value = do_spec_1 (cc1_spec, 0, NULL_PTR);
3172 if (value != 0)
3173 return value;
3174 break;
3175
3176 case '2':
3177 value = do_spec_1 (cc1plus_spec, 0, NULL_PTR);
3178 if (value != 0)
3179 return value;
3180 break;
3181
3182 case 'a':
3183 value = do_spec_1 (asm_spec, 0, NULL_PTR);
3184 if (value != 0)
3185 return value;
3186 break;
3187
3188 case 'A':
3189 value = do_spec_1 (asm_final_spec, 0, NULL_PTR);
3190 if (value != 0)
3191 return value;
3192 break;
3193
3194 case 'c':
3195 value = do_spec_1 (signed_char_spec, 0, NULL_PTR);
3196 if (value != 0)
3197 return value;
3198 break;
3199
3200 case 'C':
3201 value = do_spec_1 (cpp_spec, 0, NULL_PTR);
3202 if (value != 0)
3203 return value;
3204 break;
3205
3206 case 'E':
3207 value = do_spec_1 (endfile_spec, 0, NULL_PTR);
3208 if (value != 0)
3209 return value;
3210 break;
3211
3212 case 'l':
3213 value = do_spec_1 (link_spec, 0, NULL_PTR);
3214 if (value != 0)
3215 return value;
3216 break;
3217
3218 case 'L':
3219 value = do_spec_1 (lib_spec, 0, NULL_PTR);
3220 if (value != 0)
3221 return value;
3222 break;
3223
3224 case 'p':
3225 {
3226 char *x = (char *) alloca (strlen (cpp_predefines) + 1);
3227 char *buf = x;
3228 char *y;
3229
3230 /* Copy all of the -D options in CPP_PREDEFINES into BUF. */
3231 y = cpp_predefines;
3232 while (*y != 0)
3233 {
3234 if (! strncmp (y, "-D", 2))
3235 /* Copy the whole option. */
3236 while (*y && *y != ' ' && *y != '\t')
3237 *x++ = *y++;
3238 else if (*y == ' ' || *y == '\t')
3239 /* Copy whitespace to the result. */
3240 *x++ = *y++;
3241 /* Don't copy other options. */
3242 else
3243 y++;
3244 }
3245
3246 *x = 0;
3247
3248 value = do_spec_1 (buf, 0, NULL_PTR);
3249 if (value != 0)
3250 return value;
3251 }
3252 break;
3253
3254 case 'P':
3255 {
3256 char *x = (char *) alloca (strlen (cpp_predefines) * 4 + 1);
3257 char *buf = x;
3258 char *y;
3259
3260 /* Copy all of CPP_PREDEFINES into BUF,
3261 but put __ after every -D and at the end of each arg. */
3262 y = cpp_predefines;
3263 while (*y != 0)
3264 {
3265 if (! strncmp (y, "-D", 2))
3266 {
3267 int flag = 0;
3268
3269 *x++ = *y++;
3270 *x++ = *y++;
3271
3272 if (strncmp (y, "__", 2))
3273 {
3274 /* Stick __ at front of macro name. */
3275 *x++ = '_';
3276 *x++ = '_';
3277 /* Arrange to stick __ at the end as well. */
3278 flag = 1;
3279 }
3280
3281 /* Copy the macro name. */
3282 while (*y && *y != '=' && *y != ' ' && *y != '\t')
3283 *x++ = *y++;
3284
3285 if (flag)
3286 {
3287 *x++ = '_';
3288 *x++ = '_';
3289 }
3290
3291 /* Copy the value given, if any. */
3292 while (*y && *y != ' ' && *y != '\t')
3293 *x++ = *y++;
3294 }
3295 else if (*y == ' ' || *y == '\t')
3296 /* Copy whitespace to the result. */
3297 *x++ = *y++;
3298 /* Don't copy -A options */
3299 else
3300 y++;
3301 }
3302 *x++ = ' ';
3303
3304 /* Copy all of CPP_PREDEFINES into BUF,
3305 but put __ after every -D. */
3306 y = cpp_predefines;
3307 while (*y != 0)
3308 {
3309 if (! strncmp (y, "-D", 2))
3310 {
3311 y += 2;
3312
3313 if (strncmp (y, "__", 2))
3314 {
3315 /* Stick -D__ at front of macro name. */
3316 *x++ = '-';
3317 *x++ = 'D';
3318 *x++ = '_';
3319 *x++ = '_';
3320
3321 /* Copy the macro name. */
3322 while (*y && *y != '=' && *y != ' ' && *y != '\t')
3323 *x++ = *y++;
3324
3325 /* Copy the value given, if any. */
3326 while (*y && *y != ' ' && *y != '\t')
3327 *x++ = *y++;
3328 }
3329 else
3330 {
3331 /* Do not copy this macro - we have just done it before */
3332 while (*y && *y != ' ' && *y != '\t')
3333 y++;
3334 }
3335 }
3336 else if (*y == ' ' || *y == '\t')
3337 /* Copy whitespace to the result. */
3338 *x++ = *y++;
3339 /* Don't copy -A options */
3340 else
3341 y++;
3342 }
3343 *x++ = ' ';
3344
3345 /* Copy all of the -A options in CPP_PREDEFINES into BUF. */
3346 y = cpp_predefines;
3347 while (*y != 0)
3348 {
3349 if (! strncmp (y, "-A", 2))
3350 /* Copy the whole option. */
3351 while (*y && *y != ' ' && *y != '\t')
3352 *x++ = *y++;
3353 else if (*y == ' ' || *y == '\t')
3354 /* Copy whitespace to the result. */
3355 *x++ = *y++;
3356 /* Don't copy other options. */
3357 else
3358 y++;
3359 }
3360
3361 *x = 0;
3362
3363 value = do_spec_1 (buf, 0, NULL_PTR);
3364 if (value != 0)
3365 return value;
3366 }
3367 break;
3368
3369 case 'S':
3370 value = do_spec_1 (startfile_spec, 0, NULL_PTR);
3371 if (value != 0)
3372 return value;
3373 break;
3374
3375 /* Here we define characters other than letters and digits. */
3376
3377 case '{':
3378 p = handle_braces (p);
3379 if (p == 0)
3380 return -1;
3381 break;
3382
3383 case '%':
3384 obstack_1grow (&obstack, '%');
3385 break;
3386
3387 case '*':
3388 do_spec_1 (soft_matched_part, 1, NULL_PTR);
3389 do_spec_1 (" ", 0, NULL_PTR);
3390 break;
3391
3392 /* Process a string found as the value of a spec given by name.
3393 This feature allows individual machine descriptions
3394 to add and use their own specs.
3395 %[...] modifies -D options the way %P does;
3396 %(...) uses the spec unmodified. */
3397 case '(':
3398 case '[':
3399 {
3400 char *name = p;
3401 struct spec_list *sl;
3402 int len;
3403
3404 /* The string after the S/P is the name of a spec that is to be
3405 processed. */
3406 while (*p && *p != ')' && *p != ']')
3407 p++;
3408
3409 /* See if it's in the list */
3410 for (len = p - name, sl = specs; sl; sl = sl->next)
3411 if (strncmp (sl->name, name, len) == 0 && !sl->name[len])
3412 {
3413 name = sl->spec;
3414 break;
3415 }
3416
3417 if (sl)
3418 {
3419 if (c == '(')
3420 {
3421 value = do_spec_1 (name, 0, NULL_PTR);
3422 if (value != 0)
3423 return value;
3424 }
3425 else
3426 {
3427 char *x = (char *) alloca (strlen (name) * 2 + 1);
3428 char *buf = x;
3429 char *y = name;
3430
3431 /* Copy all of NAME into BUF, but put __ after
3432 every -D and at the end of each arg, */
3433 while (1)
3434 {
3435 if (! strncmp (y, "-D", 2))
3436 {
3437 *x++ = '-';
3438 *x++ = 'D';
3439 *x++ = '_';
3440 *x++ = '_';
3441 y += 2;
3442 }
3443 else if (*y == ' ' || *y == 0)
3444 {
3445 *x++ = '_';
3446 *x++ = '_';
3447 if (*y == 0)
3448 break;
3449 else
3450 *x++ = *y++;
3451 }
3452 else
3453 *x++ = *y++;
3454 }
3455 *x = 0;
3456
3457 value = do_spec_1 (buf, 0, NULL_PTR);
3458 if (value != 0)
3459 return value;
3460 }
3461 }
3462
3463 /* Discard the closing paren or bracket. */
3464 if (*p)
3465 p++;
3466 }
3467 break;
3468
3469 case 'v':
3470 {
3471 int c1 = *p++; /* Select first or second version number. */
3472 char *v = compiler_version;
3473 char *q, *copy;
3474 /* If desired, advance to second version number. */
3475 if (c1 == '2')
3476 {
3477 /* Set P after the first period. */
3478 while (*v != 0 && *v != ' ' && *v != '.')
3479 v++;
3480 if (*v == '.')
3481 v++;
3482 }
3483 /* Set Q at the next period or at the end. */
3484 q = v;
3485 while (*q != 0 && *q != ' ' && *q != '.')
3486 q++;
3487 /* Empty string means zero. */
3488 if (p == q)
3489 {
3490 v = "0";
3491 q = v + 1;
3492 }
3493 /* Put that part into the command. */
3494 obstack_grow (&obstack, v, q - v);
3495 arg_going = 1;
3496 }
3497 break;
3498
3499 case '|':
3500 if (input_from_pipe)
3501 do_spec_1 ("-", 0, NULL_PTR);
3502 break;
3503
3504 default:
3505 abort ();
3506 }
3507 break;
3508
3509 case '\\':
3510 /* Backslash: treat next character as ordinary. */
3511 c = *p++;
3512
3513 /* fall through */
3514 default:
3515 /* Ordinary character: put it into the current argument. */
3516 obstack_1grow (&obstack, c);
3517 arg_going = 1;
3518 }
3519
3520 return 0; /* End of string */
3521 }
3522
3523 /* Return 0 if we call do_spec_1 and that returns -1. */
3524
3525 static char *
3526 handle_braces (p)
3527 register char *p;
3528 {
3529 register char *q;
3530 char *filter;
3531 int pipe = 0;
3532 int negate = 0;
3533 int suffix = 0;
3534
3535 if (*p == '|')
3536 /* A `|' after the open-brace means,
3537 if the test fails, output a single minus sign rather than nothing.
3538 This is used in %{|!pipe:...}. */
3539 pipe = 1, ++p;
3540
3541 if (*p == '!')
3542 /* A `!' after the open-brace negates the condition:
3543 succeed if the specified switch is not present. */
3544 negate = 1, ++p;
3545
3546 if (*p == '.')
3547 /* A `.' after the open-brace means test against the current suffix. */
3548 {
3549 if (pipe)
3550 abort ();
3551
3552 suffix = 1;
3553 ++p;
3554 }
3555
3556 filter = p;
3557 while (*p != ':' && *p != '}') p++;
3558 if (*p != '}')
3559 {
3560 register int count = 1;
3561 q = p + 1;
3562 while (count > 0)
3563 {
3564 if (*q == '{')
3565 count++;
3566 else if (*q == '}')
3567 count--;
3568 else if (*q == 0)
3569 abort ();
3570 q++;
3571 }
3572 }
3573 else
3574 q = p + 1;
3575
3576 if (suffix)
3577 {
3578 int found = (input_suffix != 0
3579 && strlen (input_suffix) == p - filter
3580 && strncmp (input_suffix, filter, p - filter) == 0);
3581
3582 if (p[0] == '}')
3583 abort ();
3584
3585 if (negate != found
3586 && do_spec_1 (save_string (p + 1, q - p - 2), 0, NULL_PTR) < 0)
3587 return 0;
3588
3589 return q;
3590 }
3591 else if (p[-1] == '*' && p[0] == '}')
3592 {
3593 /* Substitute all matching switches as separate args. */
3594 register int i;
3595 --p;
3596 for (i = 0; i < n_switches; i++)
3597 if (!strncmp (switches[i].part1, filter, p - filter)
3598 && check_live_switch (i, p - filter))
3599 give_switch (i, 0);
3600 }
3601 else
3602 {
3603 /* Test for presence of the specified switch. */
3604 register int i;
3605 int present = 0;
3606
3607 /* If name specified ends in *, as in {x*:...},
3608 check for %* and handle that case. */
3609 if (p[-1] == '*' && !negate)
3610 {
3611 int substitution;
3612 char *r = p;
3613
3614 /* First see whether we have %*. */
3615 substitution = 0;
3616 while (r < q)
3617 {
3618 if (*r == '%' && r[1] == '*')
3619 substitution = 1;
3620 r++;
3621 }
3622 /* If we do, handle that case. */
3623 if (substitution)
3624 {
3625 /* Substitute all matching switches as separate args.
3626 But do this by substituting for %*
3627 in the text that follows the colon. */
3628
3629 unsigned hard_match_len = p - filter - 1;
3630 char *string = save_string (p + 1, q - p - 2);
3631
3632 for (i = 0; i < n_switches; i++)
3633 if (!strncmp (switches[i].part1, filter, hard_match_len)
3634 && check_live_switch (i, hard_match_len))
3635 {
3636 do_spec_1 (string, 0, &switches[i].part1[hard_match_len]);
3637 /* Pass any arguments this switch has. */
3638 give_switch (i, 1);
3639 }
3640
3641 return q;
3642 }
3643 }
3644
3645 /* If name specified ends in *, as in {x*:...},
3646 check for presence of any switch name starting with x. */
3647 if (p[-1] == '*')
3648 {
3649 for (i = 0; i < n_switches; i++)
3650 {
3651 unsigned hard_match_len = p - filter - 1;
3652
3653 if (!strncmp (switches[i].part1, filter, hard_match_len)
3654 && check_live_switch (i, hard_match_len))
3655 {
3656 present = 1;
3657 }
3658 }
3659 }
3660 /* Otherwise, check for presence of exact name specified. */
3661 else
3662 {
3663 for (i = 0; i < n_switches; i++)
3664 {
3665 if (!strncmp (switches[i].part1, filter, p - filter)
3666 && switches[i].part1[p - filter] == 0
3667 && check_live_switch (i, p - filter))
3668 {
3669 present = 1;
3670 break;
3671 }
3672 }
3673 }
3674
3675 /* If it is as desired (present for %{s...}, absent for %{-s...})
3676 then substitute either the switch or the specified
3677 conditional text. */
3678 if (present != negate)
3679 {
3680 if (*p == '}')
3681 {
3682 give_switch (i, 0);
3683 }
3684 else
3685 {
3686 if (do_spec_1 (save_string (p + 1, q - p - 2), 0, NULL_PTR) < 0)
3687 return 0;
3688 }
3689 }
3690 else if (pipe)
3691 {
3692 /* Here if a %{|...} conditional fails: output a minus sign,
3693 which means "standard output" or "standard input". */
3694 do_spec_1 ("-", 0, NULL_PTR);
3695 }
3696 }
3697
3698 return q;
3699 }
3700 \f
3701 /* Return 0 if switch number SWITCHNUM is obsoleted by a later switch
3702 on the command line. LENGTH is the length of the switch name we
3703 are to compare for. Otherwise return zero.
3704
3705 A -O switch is obsoleted by a later -O switch. A -f, -m, or -W switch
3706 whose value does not begin with "no-" is obsoleted by the same value
3707 with the "no-", similarly for a switch with the "no-" prefix. */
3708
3709 static int
3710 check_live_switch (switchnum, length)
3711 int switchnum;
3712 int length;
3713 {
3714 char *name = switches[switchnum].part1;
3715 int i;
3716
3717 /* If we just have a single letter and it isn't "O", a negating
3718 switch would always match, so ignore that case. We will just
3719 send the conflicting switches to the compiler phase. */
3720 if (length == 1 && name[0] != 'O')
3721 return 1;
3722
3723 /* If we already processed this switch and determined if it was
3724 live or not, return our past determination. */
3725 if (switches[switchnum].live_cond != 0)
3726 return switches[switchnum].live_cond > 0;
3727
3728 /* Now search for duplicate in a manner that depends on the name. */
3729 switch (*name)
3730 {
3731 case 'O':
3732 if (length == 1)
3733 for (i = switchnum + 1; i < n_switches; i++)
3734 if (switches[i].part1[0] == 'O')
3735 {
3736 switches[switchnum].valid = 1;
3737 switches[switchnum].live_cond = -1;
3738 return 0;
3739 }
3740 break;
3741
3742 case 'W': case 'f': case 'm':
3743 if (length > 4 && ! strncmp (name + 1, "no-", 3))
3744 {
3745 /* We have Xno-YYY, search for XYYY. */
3746 for (i = switchnum + 1; i < n_switches; i++)
3747 if (switches[i].part1[0] == name[0]
3748 && ! strcmp (&switches[i].part1[1], &name[4]))
3749 {
3750 switches[switchnum].valid = 1;
3751 switches[switchnum].live_cond = -1;
3752 return 0;
3753 }
3754 }
3755 else
3756 {
3757 /* We have XYYY, search for Xno-YYY. */
3758 for (i = switchnum + 1; i < n_switches; i++)
3759 if (switches[i].part1[0] == name[0]
3760 && switches[i].part1[1] == 'n'
3761 && switches[i].part1[2] == 'o'
3762 && switches[i].part1[3] == '-'
3763 && !strcmp (&switches[i].part1[4], &name[1]))
3764 {
3765 switches[switchnum].valid = 1;
3766 switches[switchnum].live_cond = -1;
3767 return 0;
3768 }
3769 }
3770 break;
3771 }
3772
3773 /* Otherwise the switch is live. */
3774 switches[switchnum].live_cond = 1;
3775 return 1;
3776 }
3777 \f
3778 /* Pass a switch to the current accumulating command
3779 in the same form that we received it.
3780 SWITCHNUM identifies the switch; it is an index into
3781 the vector of switches gcc received, which is `switches'.
3782 This cannot fail since it never finishes a command line.
3783
3784 If OMIT_FIRST_WORD is nonzero, then we omit .part1 of the argument. */
3785
3786 static void
3787 give_switch (switchnum, omit_first_word)
3788 int switchnum;
3789 int omit_first_word;
3790 {
3791 if (!omit_first_word)
3792 {
3793 do_spec_1 ("-", 0, NULL_PTR);
3794 do_spec_1 (switches[switchnum].part1, 1, NULL_PTR);
3795 }
3796 do_spec_1 (" ", 0, NULL_PTR);
3797 if (switches[switchnum].args != 0)
3798 {
3799 char **p;
3800 for (p = switches[switchnum].args; *p; p++)
3801 {
3802 do_spec_1 (*p, 1, NULL_PTR);
3803 do_spec_1 (" ", 0, NULL_PTR);
3804 }
3805 }
3806 switches[switchnum].valid = 1;
3807 }
3808 \f
3809 /* Search for a file named NAME trying various prefixes including the
3810 user's -B prefix and some standard ones.
3811 Return the absolute file name found. If nothing is found, return NAME. */
3812
3813 static char *
3814 find_file (name)
3815 char *name;
3816 {
3817 char *newname;
3818
3819 newname = find_a_file (&startfile_prefix, name, R_OK);
3820 return newname ? newname : name;
3821 }
3822
3823 /* Determine whether a directory exists. If LINKER, return 0 for
3824 certain fixed names not needed by the linker. If not LINKER, it is
3825 only important to return 0 if the host machine has a small ARG_MAX
3826 limit. */
3827
3828 static int
3829 is_directory (path1, path2, linker)
3830 char *path1;
3831 char *path2;
3832 int linker;
3833 {
3834 int len1 = strlen (path1);
3835 int len2 = strlen (path2);
3836 char *path = (char *) alloca (3 + len1 + len2);
3837 char *cp;
3838 struct stat st;
3839
3840 #ifndef SMALL_ARG_MAX
3841 if (! linker)
3842 return 1;
3843 #endif
3844
3845 /* Construct the path from the two parts. Ensure the string ends with "/.".
3846 The resulting path will be a directory even if the given path is a
3847 symbolic link. */
3848 bcopy (path1, path, len1);
3849 bcopy (path2, path + len1, len2);
3850 cp = path + len1 + len2;
3851 if (cp[-1] != '/')
3852 *cp++ = '/';
3853 *cp++ = '.';
3854 *cp = '\0';
3855
3856 /* Exclude directories that the linker is known to search. */
3857 if (linker
3858 && ((cp - path == 6 && strcmp (path, "/lib/.") == 0)
3859 || (cp - path == 10 && strcmp (path, "/usr/lib/.") == 0)))
3860 return 0;
3861
3862 return (stat (path, &st) >= 0 && S_ISDIR (st.st_mode));
3863 }
3864 \f
3865 /* On fatal signals, delete all the temporary files. */
3866
3867 static void
3868 fatal_error (signum)
3869 int signum;
3870 {
3871 signal (signum, SIG_DFL);
3872 delete_failure_queue ();
3873 delete_temp_files ();
3874 /* Get the same signal again, this time not handled,
3875 so its normal effect occurs. */
3876 kill (getpid (), signum);
3877 }
3878
3879 int
3880 main (argc, argv)
3881 int argc;
3882 char **argv;
3883 {
3884 register int i;
3885 int j;
3886 int value;
3887 int linker_was_run = 0;
3888 char *explicit_link_files;
3889 char *specs_file;
3890 char *p;
3891
3892 p = argv[0] + strlen (argv[0]);
3893 while (p != argv[0] && p[-1] != '/') --p;
3894 programname = p;
3895
3896 if (signal (SIGINT, SIG_IGN) != SIG_IGN)
3897 signal (SIGINT, fatal_error);
3898 #ifdef SIGHUP
3899 if (signal (SIGHUP, SIG_IGN) != SIG_IGN)
3900 signal (SIGHUP, fatal_error);
3901 #endif
3902 if (signal (SIGTERM, SIG_IGN) != SIG_IGN)
3903 signal (SIGTERM, fatal_error);
3904 #ifdef SIGPIPE
3905 if (signal (SIGPIPE, SIG_IGN) != SIG_IGN)
3906 signal (SIGPIPE, fatal_error);
3907 #endif
3908
3909 argbuf_length = 10;
3910 argbuf = (char **) xmalloc (argbuf_length * sizeof (char *));
3911
3912 obstack_init (&obstack);
3913
3914 /* Set up to remember the pathname of gcc and any options
3915 needed for collect. We use argv[0] instead of programname because
3916 we need the complete pathname. */
3917 obstack_init (&collect_obstack);
3918 obstack_grow (&collect_obstack, "COLLECT_GCC=", sizeof ("COLLECT_GCC=")-1);
3919 obstack_grow (&collect_obstack, argv[0], strlen (argv[0])+1);
3920 putenv (obstack_finish (&collect_obstack));
3921
3922 /* Choose directory for temp files. */
3923
3924 choose_temp_base ();
3925
3926 /* Make a table of what switches there are (switches, n_switches).
3927 Make a table of specified input files (infiles, n_infiles).
3928 Decode switches that are handled locally. */
3929
3930 process_command (argc, argv);
3931
3932 /* Initialize the vector of specs to just the default.
3933 This means one element containing 0s, as a terminator. */
3934
3935 compilers = (struct compiler *) xmalloc (sizeof default_compilers);
3936 bcopy (default_compilers, compilers, sizeof default_compilers);
3937 n_compilers = n_default_compilers;
3938
3939 /* Read specs from a file if there is one. */
3940
3941 machine_suffix = concat (spec_machine, "/", concat (spec_version, "/", ""));
3942 just_machine_suffix = concat (spec_machine, "/", "");
3943
3944 specs_file = find_a_file (&startfile_prefix, "specs", R_OK);
3945 /* Read the specs file unless it is a default one. */
3946 if (specs_file != 0 && strcmp (specs_file, "specs"))
3947 read_specs (specs_file);
3948
3949 /* If not cross-compiling, look for startfiles in the standard places. */
3950 /* The fact that these are done here, after reading the specs file,
3951 means that it cannot be found in these directories.
3952 But that's okay. It should never be there anyway. */
3953 if (!cross_compile)
3954 {
3955 #ifdef MD_EXEC_PREFIX
3956 add_prefix (&exec_prefix, md_exec_prefix, 0, 0, NULL_PTR);
3957 add_prefix (&startfile_prefix, md_exec_prefix, 0, 0, NULL_PTR);
3958 #endif
3959
3960 #ifdef MD_STARTFILE_PREFIX
3961 add_prefix (&startfile_prefix, md_startfile_prefix, 0, 0, NULL_PTR);
3962 #endif
3963
3964 #ifdef MD_STARTFILE_PREFIX_1
3965 add_prefix (&startfile_prefix, md_startfile_prefix_1, 0, 0, NULL_PTR);
3966 #endif
3967
3968 /* If standard_startfile_prefix is relative, base it on
3969 standard_exec_prefix. This lets us move the installed tree
3970 as a unit. If GCC_EXEC_PREFIX is defined, base
3971 standard_startfile_prefix on that as well. */
3972 if (*standard_startfile_prefix == '/')
3973 add_prefix (&startfile_prefix, standard_startfile_prefix, 0, 0,
3974 NULL_PTR);
3975 else
3976 {
3977 if (gcc_exec_prefix)
3978 add_prefix (&startfile_prefix,
3979 concat (gcc_exec_prefix,
3980 standard_startfile_prefix,
3981 ""),
3982 0, 0, NULL_PTR);
3983 add_prefix (&startfile_prefix,
3984 concat (standard_exec_prefix,
3985 machine_suffix,
3986 standard_startfile_prefix),
3987 0, 0, NULL_PTR);
3988 }
3989
3990 add_prefix (&startfile_prefix, standard_startfile_prefix_1, 0, 0,
3991 NULL_PTR);
3992 add_prefix (&startfile_prefix, standard_startfile_prefix_2, 0, 0,
3993 NULL_PTR);
3994 #if 0 /* Can cause surprises, and one can use -B./ instead. */
3995 add_prefix (&startfile_prefix, "./", 0, 1, NULL_PTR);
3996 #endif
3997 }
3998
3999 /* Now we have the specs.
4000 Set the `valid' bits for switches that match anything in any spec. */
4001
4002 validate_all_switches ();
4003
4004 /* Warn about any switches that no pass was interested in. */
4005
4006 for (i = 0; i < n_switches; i++)
4007 if (! switches[i].valid)
4008 error ("unrecognized option `-%s'", switches[i].part1);
4009
4010 /* Obey some of the options. */
4011
4012 if (print_file_name)
4013 {
4014 printf ("%s\n", find_file (print_file_name));
4015 exit (0);
4016 }
4017
4018 if (print_prog_name)
4019 {
4020 char *newname = find_a_file (&exec_prefix, print_prog_name, X_OK);
4021 printf ("%s\n", (newname ? newname : print_prog_name));
4022 exit (0);
4023 }
4024
4025 if (verbose_flag)
4026 {
4027 fprintf (stderr, "gcc version %s\n", version_string);
4028 if (n_infiles == 0)
4029 exit (0);
4030 }
4031
4032 if (n_infiles == 0)
4033 fatal ("No input files");
4034
4035 /* Make a place to record the compiler output file names
4036 that correspond to the input files. */
4037
4038 outfiles = (char **) xmalloc (n_infiles * sizeof (char *));
4039 bzero (outfiles, n_infiles * sizeof (char *));
4040
4041 /* Record which files were specified explicitly as link input. */
4042
4043 explicit_link_files = xmalloc (n_infiles);
4044 bzero (explicit_link_files, n_infiles);
4045
4046 for (i = 0; i < n_infiles; i++)
4047 {
4048 register struct compiler *cp = 0;
4049 int this_file_error = 0;
4050
4051 /* Tell do_spec what to substitute for %i. */
4052
4053 input_filename = infiles[i].name;
4054 input_filename_length = strlen (input_filename);
4055 input_file_number = i;
4056
4057 /* Use the same thing in %o, unless cp->spec says otherwise. */
4058
4059 outfiles[i] = input_filename;
4060
4061 /* Figure out which compiler from the file's suffix. */
4062
4063 cp = lookup_compiler (infiles[i].name, input_filename_length,
4064 infiles[i].language);
4065
4066 if (cp)
4067 {
4068 /* Ok, we found an applicable compiler. Run its spec. */
4069 /* First say how much of input_filename to substitute for %b */
4070 register char *p;
4071 int len;
4072
4073 input_basename = input_filename;
4074 for (p = input_filename; *p; p++)
4075 if (*p == '/')
4076 input_basename = p + 1;
4077
4078 /* Find a suffix starting with the last period,
4079 and set basename_length to exclude that suffix. */
4080 basename_length = strlen (input_basename);
4081 p = input_basename + basename_length;
4082 while (p != input_basename && *p != '.') --p;
4083 if (*p == '.' && p != input_basename)
4084 {
4085 basename_length = p - input_basename;
4086 input_suffix = p + 1;
4087 }
4088 else
4089 input_suffix = "";
4090
4091 len = 0;
4092 for (j = 0; j < sizeof cp->spec / sizeof cp->spec[0]; j++)
4093 if (cp->spec[j])
4094 len += strlen (cp->spec[j]);
4095
4096 p = (char *) xmalloc (len + 1);
4097
4098 len = 0;
4099 for (j = 0; j < sizeof cp->spec / sizeof cp->spec[0]; j++)
4100 if (cp->spec[j])
4101 {
4102 strcpy (p + len, cp->spec[j]);
4103 len += strlen (cp->spec[j]);
4104 }
4105
4106 value = do_spec (p);
4107 free (p);
4108 if (value < 0)
4109 this_file_error = 1;
4110 }
4111
4112 /* If this file's name does not contain a recognized suffix,
4113 record it as explicit linker input. */
4114
4115 else
4116 explicit_link_files[i] = 1;
4117
4118 /* Clear the delete-on-failure queue, deleting the files in it
4119 if this compilation failed. */
4120
4121 if (this_file_error)
4122 {
4123 delete_failure_queue ();
4124 error_count++;
4125 }
4126 /* If this compilation succeeded, don't delete those files later. */
4127 clear_failure_queue ();
4128 }
4129
4130 /* Run ld to link all the compiler output files. */
4131
4132 if (error_count == 0)
4133 {
4134 int tmp = execution_count;
4135 int i;
4136 int first_time;
4137
4138 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
4139 for collect. */
4140 putenv_from_prefixes (&exec_prefix, "COMPILER_PATH=");
4141 putenv_from_prefixes (&startfile_prefix, "LIBRARY_PATH=");
4142
4143 /* Build COLLECT_GCC_OPTIONS to have all of the options specified to
4144 the compiler. */
4145 obstack_grow (&collect_obstack, "COLLECT_GCC_OPTIONS=",
4146 sizeof ("COLLECT_GCC_OPTIONS=")-1);
4147
4148 first_time = TRUE;
4149 for (i = 0; i < n_switches; i++)
4150 {
4151 char **args;
4152 if (!first_time)
4153 obstack_grow (&collect_obstack, " ", 1);
4154
4155 first_time = FALSE;
4156 obstack_grow (&collect_obstack, "-", 1);
4157 obstack_grow (&collect_obstack, switches[i].part1,
4158 strlen (switches[i].part1));
4159
4160 for (args = switches[i].args; args && *args; args++)
4161 {
4162 obstack_grow (&collect_obstack, " ", 1);
4163 obstack_grow (&collect_obstack, *args, strlen (*args));
4164 }
4165 }
4166 obstack_grow (&collect_obstack, "\0", 1);
4167 putenv (obstack_finish (&collect_obstack));
4168
4169 value = do_spec (link_command_spec);
4170 if (value < 0)
4171 error_count = 1;
4172 linker_was_run = (tmp != execution_count);
4173 }
4174
4175 /* Warn if a -B option was specified but the prefix was never used. */
4176 unused_prefix_warnings (&exec_prefix);
4177 unused_prefix_warnings (&startfile_prefix);
4178
4179 /* If options said don't run linker,
4180 complain about input files to be given to the linker. */
4181
4182 if (! linker_was_run && error_count == 0)
4183 for (i = 0; i < n_infiles; i++)
4184 if (explicit_link_files[i])
4185 error ("%s: linker input file unused since linking not done",
4186 outfiles[i]);
4187
4188 /* Delete some or all of the temporary files we made. */
4189
4190 if (error_count)
4191 delete_failure_queue ();
4192 delete_temp_files ();
4193
4194 exit (error_count > 0 ? (signal_count ? 2 : 1) : 0);
4195 /* NOTREACHED */
4196 return 0;
4197 }
4198
4199 /* Find the proper compilation spec for the file name NAME,
4200 whose length is LENGTH. LANGUAGE is the specified language,
4201 or 0 if none specified. */
4202
4203 static struct compiler *
4204 lookup_compiler (name, length, language)
4205 char *name;
4206 int length;
4207 char *language;
4208 {
4209 struct compiler *cp;
4210
4211 /* Look for the language, if one is spec'd. */
4212 if (language != 0)
4213 {
4214 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
4215 {
4216 if (language != 0)
4217 {
4218 if (cp->suffix[0] == '@'
4219 && !strcmp (cp->suffix + 1, language))
4220 return cp;
4221 }
4222 }
4223 error ("language %s not recognized", language);
4224 }
4225
4226 /* Look for a suffix. */
4227 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
4228 {
4229 if (/* The suffix `-' matches only the file name `-'. */
4230 (!strcmp (cp->suffix, "-") && !strcmp (name, "-"))
4231 ||
4232 (strlen (cp->suffix) < length
4233 /* See if the suffix matches the end of NAME. */
4234 && !strcmp (cp->suffix,
4235 name + length - strlen (cp->suffix))))
4236 {
4237 if (cp->spec[0][0] == '@')
4238 {
4239 struct compiler *new;
4240 /* An alias entry maps a suffix to a language.
4241 Search for the language; pass 0 for NAME and LENGTH
4242 to avoid infinite recursion if language not found.
4243 Construct the new compiler spec. */
4244 language = cp->spec[0] + 1;
4245 new = (struct compiler *) xmalloc (sizeof (struct compiler));
4246 new->suffix = cp->suffix;
4247 bcopy (lookup_compiler (NULL_PTR, 0, language)->spec,
4248 new->spec, sizeof new->spec);
4249 return new;
4250 }
4251 /* A non-alias entry: return it. */
4252 return cp;
4253 }
4254 }
4255
4256 return 0;
4257 }
4258 \f
4259 char *
4260 xmalloc (size)
4261 unsigned size;
4262 {
4263 register char *value = (char *) malloc (size);
4264 if (value == 0)
4265 fatal ("virtual memory exhausted");
4266 return value;
4267 }
4268
4269 char *
4270 xrealloc (ptr, size)
4271 char *ptr;
4272 unsigned size;
4273 {
4274 register char *value = (char *) realloc (ptr, size);
4275 if (value == 0)
4276 fatal ("virtual memory exhausted");
4277 return value;
4278 }
4279
4280 /* Return a newly-allocated string whose contents concatenate those of s1, s2, s3. */
4281
4282 static char *
4283 concat (s1, s2, s3)
4284 char *s1, *s2, *s3;
4285 {
4286 int len1 = strlen (s1), len2 = strlen (s2), len3 = strlen (s3);
4287 char *result = xmalloc (len1 + len2 + len3 + 1);
4288
4289 strcpy (result, s1);
4290 strcpy (result + len1, s2);
4291 strcpy (result + len1 + len2, s3);
4292 *(result + len1 + len2 + len3) = 0;
4293
4294 return result;
4295 }
4296
4297 static char *
4298 save_string (s, len)
4299 char *s;
4300 int len;
4301 {
4302 register char *result = xmalloc (len + 1);
4303
4304 bcopy (s, result, len);
4305 result[len] = 0;
4306 return result;
4307 }
4308
4309 static void
4310 pfatal_with_name (name)
4311 char *name;
4312 {
4313 char *s;
4314
4315 if (errno < sys_nerr)
4316 s = concat ("%s: ", sys_errlist[errno], "");
4317 else
4318 s = "cannot open %s";
4319 fatal (s, name);
4320 }
4321
4322 static void
4323 perror_with_name (name)
4324 char *name;
4325 {
4326 char *s;
4327
4328 if (errno < sys_nerr)
4329 s = concat ("%s: ", sys_errlist[errno], "");
4330 else
4331 s = "cannot open %s";
4332 error (s, name);
4333 }
4334
4335 static void
4336 perror_exec (name)
4337 char *name;
4338 {
4339 char *s;
4340
4341 if (errno < sys_nerr)
4342 s = concat ("installation problem, cannot exec %s: ",
4343 sys_errlist[errno], "");
4344 else
4345 s = "installation problem, cannot exec %s";
4346 error (s, name);
4347 }
4348
4349 /* More 'friendly' abort that prints the line and file.
4350 config.h can #define abort fancy_abort if you like that sort of thing. */
4351
4352 void
4353 fancy_abort ()
4354 {
4355 fatal ("Internal gcc abort.");
4356 }
4357 \f
4358 #ifdef HAVE_VPRINTF
4359
4360 /* Output an error message and exit */
4361
4362 static void
4363 fatal VPROTO((char *format, ...))
4364 {
4365 #ifndef __STDC__
4366 char *format;
4367 #endif
4368 va_list ap;
4369
4370 VA_START (ap, format);
4371
4372 #ifndef __STDC__
4373 format = va_arg (ap, char*);
4374 #endif
4375
4376 fprintf (stderr, "%s: ", programname);
4377 vfprintf (stderr, format, ap);
4378 va_end (ap);
4379 fprintf (stderr, "\n");
4380 delete_temp_files ();
4381 exit (1);
4382 }
4383
4384 static void
4385 error VPROTO((char *format, ...))
4386 {
4387 #ifndef __STDC__
4388 char *format;
4389 #endif
4390 va_list ap;
4391
4392 VA_START (ap, format);
4393
4394 #ifndef __STDC__
4395 format = va_arg (ap, char*);
4396 #endif
4397
4398 fprintf (stderr, "%s: ", programname);
4399 vfprintf (stderr, format, ap);
4400 va_end (ap);
4401
4402 fprintf (stderr, "\n");
4403 }
4404
4405 #else /* not HAVE_VPRINTF */
4406
4407 static void
4408 fatal (msg, arg1, arg2)
4409 char *msg, *arg1, *arg2;
4410 {
4411 error (msg, arg1, arg2);
4412 delete_temp_files ();
4413 exit (1);
4414 }
4415
4416 static void
4417 error (msg, arg1, arg2)
4418 char *msg, *arg1, *arg2;
4419 {
4420 fprintf (stderr, "%s: ", programname);
4421 fprintf (stderr, msg, arg1, arg2);
4422 fprintf (stderr, "\n");
4423 }
4424
4425 #endif /* not HAVE_VPRINTF */
4426
4427 \f
4428 static void
4429 validate_all_switches ()
4430 {
4431 struct compiler *comp;
4432 register char *p;
4433 register char c;
4434 struct spec_list *spec;
4435
4436 for (comp = compilers; comp->spec[0]; comp++)
4437 {
4438 int i;
4439 for (i = 0; i < sizeof comp->spec / sizeof comp->spec[0] && comp->spec[i]; i++)
4440 {
4441 p = comp->spec[i];
4442 while (c = *p++)
4443 if (c == '%' && *p == '{')
4444 /* We have a switch spec. */
4445 validate_switches (p + 1);
4446 }
4447 }
4448
4449 /* look through the linked list of extra specs read from the specs file */
4450 for (spec = specs; spec ; spec = spec->next)
4451 {
4452 p = spec->spec;
4453 while (c = *p++)
4454 if (c == '%' && *p == '{')
4455 /* We have a switch spec. */
4456 validate_switches (p + 1);
4457 }
4458
4459 p = link_command_spec;
4460 while (c = *p++)
4461 if (c == '%' && *p == '{')
4462 /* We have a switch spec. */
4463 validate_switches (p + 1);
4464
4465 /* Now notice switches mentioned in the machine-specific specs. */
4466
4467 p = asm_spec;
4468 while (c = *p++)
4469 if (c == '%' && *p == '{')
4470 /* We have a switch spec. */
4471 validate_switches (p + 1);
4472
4473 p = asm_final_spec;
4474 while (c = *p++)
4475 if (c == '%' && *p == '{')
4476 /* We have a switch spec. */
4477 validate_switches (p + 1);
4478
4479 p = cpp_spec;
4480 while (c = *p++)
4481 if (c == '%' && *p == '{')
4482 /* We have a switch spec. */
4483 validate_switches (p + 1);
4484
4485 p = signed_char_spec;
4486 while (c = *p++)
4487 if (c == '%' && *p == '{')
4488 /* We have a switch spec. */
4489 validate_switches (p + 1);
4490
4491 p = cc1_spec;
4492 while (c = *p++)
4493 if (c == '%' && *p == '{')
4494 /* We have a switch spec. */
4495 validate_switches (p + 1);
4496
4497 p = cc1plus_spec;
4498 while (c = *p++)
4499 if (c == '%' && *p == '{')
4500 /* We have a switch spec. */
4501 validate_switches (p + 1);
4502
4503 p = link_spec;
4504 while (c = *p++)
4505 if (c == '%' && *p == '{')
4506 /* We have a switch spec. */
4507 validate_switches (p + 1);
4508
4509 p = lib_spec;
4510 while (c = *p++)
4511 if (c == '%' && *p == '{')
4512 /* We have a switch spec. */
4513 validate_switches (p + 1);
4514
4515 p = startfile_spec;
4516 while (c = *p++)
4517 if (c == '%' && *p == '{')
4518 /* We have a switch spec. */
4519 validate_switches (p + 1);
4520 }
4521
4522 /* Look at the switch-name that comes after START
4523 and mark as valid all supplied switches that match it. */
4524
4525 static void
4526 validate_switches (start)
4527 char *start;
4528 {
4529 register char *p = start;
4530 char *filter;
4531 register int i;
4532 int suffix = 0;
4533
4534 if (*p == '|')
4535 ++p;
4536
4537 if (*p == '!')
4538 ++p;
4539
4540 if (*p == '.')
4541 suffix = 1, ++p;
4542
4543 filter = p;
4544 while (*p != ':' && *p != '}') p++;
4545
4546 if (suffix)
4547 ;
4548 else if (p[-1] == '*')
4549 {
4550 /* Mark all matching switches as valid. */
4551 --p;
4552 for (i = 0; i < n_switches; i++)
4553 if (!strncmp (switches[i].part1, filter, p - filter))
4554 switches[i].valid = 1;
4555 }
4556 else
4557 {
4558 /* Mark an exact matching switch as valid. */
4559 for (i = 0; i < n_switches; i++)
4560 {
4561 if (!strncmp (switches[i].part1, filter, p - filter)
4562 && switches[i].part1[p - filter] == 0)
4563 switches[i].valid = 1;
4564 }
4565 }
4566 }