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