(process_command): Minor white space cleanups to last patch.
[gcc.git] / gcc / gcc.c
1 /* Compiler driver program that can handle many languages.
2 Copyright (C) 1987, 1989, 1992, 1993, 1994 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 This paragraph is here to try to keep Sun CC from dying.
21 The number of chars here seems crucial!!!! */
22
23 /* This program is the user interface to the C compiler and possibly to
24 other compilers. It is used because compilation is a complicated procedure
25 which involves running several programs and passing temporary files between
26 them, forwarding the users switches to those programs selectively,
27 and deleting the temporary files at the end.
28
29 CC recognizes how to compile each input file by suffixes in the file names.
30 Once it knows which kind of compilation to perform, the procedure for
31 compilation is specified by a string called a "spec". */
32 \f
33 #include <sys/types.h>
34 #include <ctype.h>
35 #include <signal.h>
36 #include <sys/stat.h>
37 #include <sys/file.h> /* May get R_OK, etc. on some systems. */
38
39 #include "config.h"
40 #include "obstack.h"
41 #ifdef __STDC__
42 #include <stdarg.h>
43 #else
44 #include <varargs.h>
45 #endif
46 #include <stdio.h>
47
48 #ifndef R_OK
49 #define R_OK 4
50 #define W_OK 2
51 #define X_OK 1
52 #endif
53
54 /* Add prototype support. */
55 #ifndef PROTO
56 #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
57 #define PROTO(ARGS) ARGS
58 #else
59 #define PROTO(ARGS) ()
60 #endif
61 #endif
62
63 #ifndef VPROTO
64 #ifdef __STDC__
65 #define PVPROTO(ARGS) ARGS
66 #define VPROTO(ARGS) ARGS
67 #define VA_START(va_list,var) va_start(va_list,var)
68 #else
69 #define PVPROTO(ARGS) ()
70 #define VPROTO(ARGS) (va_alist) va_dcl
71 #define VA_START(va_list,var) va_start(va_list)
72 #endif
73 #endif
74
75 /* Define a generic NULL if one hasn't already been defined. */
76
77 #ifndef NULL
78 #define NULL 0
79 #endif
80
81 #ifndef GENERIC_PTR
82 #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
83 #define GENERIC_PTR void *
84 #else
85 #define GENERIC_PTR char *
86 #endif
87 #endif
88
89 #ifndef NULL_PTR
90 #define NULL_PTR ((GENERIC_PTR)0)
91 #endif
92
93 #ifdef USG
94 #define vfork fork
95 #endif /* USG */
96
97 /* On MSDOS, write temp files in current dir
98 because there's no place else we can expect to use. */
99 #ifdef __MSDOS__
100 #ifndef P_tmpdir
101 #define P_tmpdir "."
102 #endif
103 #endif
104
105 /* Test if something is a normal file. */
106 #ifndef S_ISREG
107 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
108 #endif
109
110 /* Test if something is a directory. */
111 #ifndef S_ISDIR
112 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
113 #endif
114
115 /* By default there is no special suffix for executables. */
116 #ifndef EXECUTABLE_SUFFIX
117 #define EXECUTABLE_SUFFIX ""
118 #endif
119
120 /* By default, colon separates directories in a path. */
121 #ifndef PATH_SEPARATOR
122 #define PATH_SEPARATOR ':'
123 #endif
124
125 #define obstack_chunk_alloc xmalloc
126 #define obstack_chunk_free free
127
128 extern void free ();
129 extern char *getenv ();
130
131 extern int errno, sys_nerr;
132 #if defined(bsd4_4)
133 extern const char *const sys_errlist[];
134 #else
135 extern char *sys_errlist[];
136 #endif
137
138 extern int execv (), execvp ();
139
140 /* If a stage of compilation returns an exit status >= 1,
141 compilation of that file ceases. */
142
143 #define MIN_FATAL_STATUS 1
144
145 /* Flag saying to print the full filename of 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 "[foo/]stageN/", just add
2436 "include" to the include prefix. */
2437 {
2438 int len = strlen (value);
2439 if ((len == 7 || (len > 7 && value[len - 8] == '/'))
2440 && strncmp (value + len - 7, "stage", 5) == 0
2441 && isdigit (value[len - 2])
2442 && value[len - 1] == '/')
2443 add_prefix (&include_prefix, "include", 1, 0, 0);
2444 }
2445 }
2446 break;
2447
2448 case 'v': /* Print our subcommands and print versions. */
2449 n_switches++;
2450 /* If they do anything other than exactly `-v', don't set
2451 verbose_flag; rather, continue on to give the error. */
2452 if (p[1] != 0)
2453 break;
2454 verbose_flag++;
2455 break;
2456
2457 case 'V':
2458 if (p[1] == 0 && i + 1 == argc)
2459 fatal ("argument to `-V' is missing");
2460 if (p[1] == 0)
2461 spec_version = argv[++i];
2462 else
2463 spec_version = p + 1;
2464 compiler_version = spec_version;
2465 break;
2466
2467 case 's':
2468 if (!strcmp (p, "save-temps"))
2469 {
2470 save_temps_flag = 1;
2471 n_switches++;
2472 break;
2473 }
2474 default:
2475 n_switches++;
2476
2477 if (SWITCH_TAKES_ARG (c) > (p[1] != 0))
2478 i += SWITCH_TAKES_ARG (c) - (p[1] != 0);
2479 else if (WORD_SWITCH_TAKES_ARG (p))
2480 i += WORD_SWITCH_TAKES_ARG (p);
2481 }
2482 }
2483 else
2484 n_infiles++;
2485 }
2486
2487 /* Set up the search paths before we go looking for config files. */
2488
2489 /* These come before the md prefixes so that we will find gcc's subcommands
2490 (such as cpp) rather than those of the host system. */
2491 /* Use 2 as fourth arg meaning try just the machine as a suffix,
2492 as well as trying the machine and the version. */
2493 add_prefix (&exec_prefix, standard_exec_prefix, 0, 2, NULL_PTR);
2494 add_prefix (&exec_prefix, standard_exec_prefix_1, 0, 2, NULL_PTR);
2495
2496 add_prefix (&startfile_prefix, standard_exec_prefix, 0, 1, NULL_PTR);
2497 add_prefix (&startfile_prefix, standard_exec_prefix_1, 0, 1, NULL_PTR);
2498
2499 tooldir_prefix = concat (tooldir_base_prefix, spec_machine, "/");
2500
2501 /* If tooldir is relative, base it on exec_prefix. A relative
2502 tooldir lets us move the installed tree as a unit.
2503
2504 If GCC_EXEC_PREFIX is defined, then we want to add two relative
2505 directories, so that we can search both the user specified directory
2506 and the standard place. */
2507
2508 if (*tooldir_prefix != '/')
2509 {
2510 if (gcc_exec_prefix)
2511 {
2512 char *gcc_exec_tooldir_prefix
2513 = concat (concat (gcc_exec_prefix, spec_machine, "/"),
2514 concat (spec_version, "/", tooldir_prefix),
2515 "");
2516
2517 add_prefix (&exec_prefix, concat (gcc_exec_tooldir_prefix, "bin", "/"),
2518 0, 0, NULL_PTR);
2519 add_prefix (&startfile_prefix, concat (gcc_exec_tooldir_prefix, "lib", "/"),
2520 0, 0, NULL_PTR);
2521 }
2522
2523 tooldir_prefix = concat (concat (standard_exec_prefix, spec_machine, "/"),
2524 concat (spec_version, "/", tooldir_prefix),
2525 "");
2526 }
2527
2528 add_prefix (&exec_prefix, concat (tooldir_prefix, "bin", "/"),
2529 0, 0, NULL_PTR);
2530 add_prefix (&startfile_prefix, concat (tooldir_prefix, "lib", "/"),
2531 0, 0, NULL_PTR);
2532
2533 /* More prefixes are enabled in main, after we read the specs file
2534 and determine whether this is cross-compilation or not. */
2535
2536
2537 /* Then create the space for the vectors and scan again. */
2538
2539 switches = ((struct switchstr *)
2540 xmalloc ((n_switches + 1) * sizeof (struct switchstr)));
2541 infiles = (struct infile *) xmalloc ((n_infiles + 1) * sizeof (struct infile));
2542 n_switches = 0;
2543 n_infiles = 0;
2544 last_language_n_infiles = -1;
2545
2546 /* This, time, copy the text of each switch and store a pointer
2547 to the copy in the vector of switches.
2548 Store all the infiles in their vector. */
2549
2550 for (i = 1; i < argc; i++)
2551 {
2552 /* Just skip the switches that were handled by the preceding loop. */
2553 if (!strcmp (argv[i], "-Xlinker"))
2554 i++;
2555 else if (! strncmp (argv[i], "-Wl,", 4))
2556 ;
2557 else if (! strncmp (argv[i], "-Wa,", 4))
2558 ;
2559 else if (! strcmp (argv[i], "-print-libgcc-file-name"))
2560 ;
2561 else if (argv[i][0] == '+' && argv[i][1] == 'e')
2562 {
2563 /* Compensate for the +e options to the C++ front-end;
2564 they're there simply for cfront call-compatibility. We do
2565 some magic in default_compilers to pass them down properly.
2566 Note we deliberately start at the `+' here, to avoid passing
2567 -e0 or -e1 down into the linker. */
2568 switches[n_switches].part1 = &argv[i][0];
2569 switches[n_switches].args = 0;
2570 switches[n_switches].valid = 0;
2571 n_switches++;
2572 }
2573 else if (argv[i][0] == '-' && argv[i][1] != 0 && argv[i][1] != 'l')
2574 {
2575 register char *p = &argv[i][1];
2576 register int c = *p;
2577
2578 if (c == 'B' || c == 'b' || c == 'V')
2579 {
2580 /* Skip a separate arg, if any. */
2581 if (p[1] == 0)
2582 i++;
2583 continue;
2584 }
2585 if (c == 'x')
2586 {
2587 if (p[1] == 0 && i + 1 == argc)
2588 fatal ("argument to `-x' is missing");
2589 if (p[1] == 0)
2590 spec_lang = argv[++i];
2591 else
2592 spec_lang = p + 1;
2593 if (! strcmp (spec_lang, "none"))
2594 /* Suppress the warning if -xnone comes after the last input file,
2595 because alternate command interfaces like g++ might find it
2596 useful to place -xnone after each input file. */
2597 spec_lang = 0;
2598 else
2599 last_language_n_infiles = n_infiles;
2600 continue;
2601 }
2602 switches[n_switches].part1 = p;
2603 /* Deal with option arguments in separate argv elements. */
2604 if ((SWITCH_TAKES_ARG (c) > (p[1] != 0))
2605 || WORD_SWITCH_TAKES_ARG (p))
2606 {
2607 int j = 0;
2608 int n_args = WORD_SWITCH_TAKES_ARG (p);
2609
2610 if (n_args == 0)
2611 {
2612 /* Count only the option arguments in separate argv elements. */
2613 n_args = SWITCH_TAKES_ARG (c) - (p[1] != 0);
2614 }
2615 if (i + n_args >= argc)
2616 fatal ("argument to `-%s' is missing", p);
2617 switches[n_switches].args
2618 = (char **) xmalloc ((n_args + 1) * sizeof (char *));
2619 while (j < n_args)
2620 switches[n_switches].args[j++] = argv[++i];
2621 /* Null-terminate the vector. */
2622 switches[n_switches].args[j] = 0;
2623 }
2624 else if (*switches_need_spaces != 0 && (c == 'o' || c == 'L'))
2625 {
2626 /* On some systems, ld cannot handle -o or -L without space.
2627 So split the -o or -L from its argument. */
2628 switches[n_switches].part1 = (c == 'o' ? "o" : "L");
2629 switches[n_switches].args = (char **) xmalloc (2 * sizeof (char *));
2630 switches[n_switches].args[0] = xmalloc (strlen (p));
2631 strcpy (switches[n_switches].args[0], &p[1]);
2632 switches[n_switches].args[1] = 0;
2633 }
2634 else
2635 switches[n_switches].args = 0;
2636 switches[n_switches].valid = 0;
2637 /* This is always valid, since gcc.c itself understands it. */
2638 if (!strcmp (p, "save-temps"))
2639 switches[n_switches].valid = 1;
2640 n_switches++;
2641 }
2642 else
2643 {
2644 if ((argv[i][0] != '-' || argv[i][1] != 'l')
2645 && strcmp (argv[i], "-")
2646 && access (argv[i], R_OK) < 0)
2647 {
2648 perror_with_name (argv[i]);
2649 error_count++;
2650 }
2651 else
2652 {
2653 infiles[n_infiles].language = spec_lang;
2654 infiles[n_infiles++].name = argv[i];
2655 }
2656 }
2657 }
2658
2659 if (n_infiles == last_language_n_infiles && spec_lang != 0)
2660 error ("Warning: `-x %s' after last input file has no effect", spec_lang);
2661
2662 switches[n_switches].part1 = 0;
2663 infiles[n_infiles].name = 0;
2664
2665 /* If we have a GCC_EXEC_PREFIX envvar, modify it for cpp's sake. */
2666 if (gcc_exec_prefix)
2667 {
2668 temp = (char *) xmalloc (strlen (gcc_exec_prefix) + strlen (spec_version)
2669 + strlen (spec_machine) + 3);
2670 strcpy (temp, gcc_exec_prefix);
2671 strcat (temp, spec_machine);
2672 strcat (temp, "/");
2673 strcat (temp, spec_version);
2674 strcat (temp, "/");
2675 gcc_exec_prefix = temp;
2676 }
2677 }
2678 \f
2679 /* Process a spec string, accumulating and running commands. */
2680
2681 /* These variables describe the input file name.
2682 input_file_number is the index on outfiles of this file,
2683 so that the output file name can be stored for later use by %o.
2684 input_basename is the start of the part of the input file
2685 sans all directory names, and basename_length is the number
2686 of characters starting there excluding the suffix .c or whatever. */
2687
2688 static char *input_filename;
2689 static int input_file_number;
2690 static int input_filename_length;
2691 static int basename_length;
2692 static char *input_basename;
2693 static char *input_suffix;
2694
2695 /* These are variables used within do_spec and do_spec_1. */
2696
2697 /* Nonzero if an arg has been started and not yet terminated
2698 (with space, tab or newline). */
2699 static int arg_going;
2700
2701 /* Nonzero means %d or %g has been seen; the next arg to be terminated
2702 is a temporary file name. */
2703 static int delete_this_arg;
2704
2705 /* Nonzero means %w has been seen; the next arg to be terminated
2706 is the output file name of this compilation. */
2707 static int this_is_output_file;
2708
2709 /* Nonzero means %s has been seen; the next arg to be terminated
2710 is the name of a library file and we should try the standard
2711 search dirs for it. */
2712 static int this_is_library_file;
2713
2714 /* Nonzero means that the input of this command is coming from a pipe. */
2715 static int input_from_pipe;
2716
2717 /* Process the spec SPEC and run the commands specified therein.
2718 Returns 0 if the spec is successfully processed; -1 if failed. */
2719
2720 static int
2721 do_spec (spec)
2722 char *spec;
2723 {
2724 int value;
2725
2726 clear_args ();
2727 arg_going = 0;
2728 delete_this_arg = 0;
2729 this_is_output_file = 0;
2730 this_is_library_file = 0;
2731 input_from_pipe = 0;
2732
2733 value = do_spec_1 (spec, 0, NULL_PTR);
2734
2735 /* Force out any unfinished command.
2736 If -pipe, this forces out the last command if it ended in `|'. */
2737 if (value == 0)
2738 {
2739 if (argbuf_index > 0 && !strcmp (argbuf[argbuf_index - 1], "|"))
2740 argbuf_index--;
2741
2742 if (argbuf_index > 0)
2743 value = execute ();
2744 }
2745
2746 return value;
2747 }
2748
2749 /* Process the sub-spec SPEC as a portion of a larger spec.
2750 This is like processing a whole spec except that we do
2751 not initialize at the beginning and we do not supply a
2752 newline by default at the end.
2753 INSWITCH nonzero means don't process %-sequences in SPEC;
2754 in this case, % is treated as an ordinary character.
2755 This is used while substituting switches.
2756 INSWITCH nonzero also causes SPC not to terminate an argument.
2757
2758 Value is zero unless a line was finished
2759 and the command on that line reported an error. */
2760
2761 static int
2762 do_spec_1 (spec, inswitch, soft_matched_part)
2763 char *spec;
2764 int inswitch;
2765 char *soft_matched_part;
2766 {
2767 register char *p = spec;
2768 register int c;
2769 int i;
2770 char *string;
2771 int value;
2772
2773 while (c = *p++)
2774 /* If substituting a switch, treat all chars like letters.
2775 Otherwise, NL, SPC, TAB and % are special. */
2776 switch (inswitch ? 'a' : c)
2777 {
2778 case '\n':
2779 /* End of line: finish any pending argument,
2780 then run the pending command if one has been started. */
2781 if (arg_going)
2782 {
2783 obstack_1grow (&obstack, 0);
2784 string = obstack_finish (&obstack);
2785 if (this_is_library_file)
2786 string = find_file (string);
2787 store_arg (string, delete_this_arg, this_is_output_file);
2788 if (this_is_output_file)
2789 outfiles[input_file_number] = string;
2790 }
2791 arg_going = 0;
2792
2793 if (argbuf_index > 0 && !strcmp (argbuf[argbuf_index - 1], "|"))
2794 {
2795 int i;
2796 for (i = 0; i < n_switches; i++)
2797 if (!strcmp (switches[i].part1, "pipe"))
2798 break;
2799
2800 /* A `|' before the newline means use a pipe here,
2801 but only if -pipe was specified.
2802 Otherwise, execute now and don't pass the `|' as an arg. */
2803 if (i < n_switches)
2804 {
2805 input_from_pipe = 1;
2806 switches[i].valid = 1;
2807 break;
2808 }
2809 else
2810 argbuf_index--;
2811 }
2812
2813 if (argbuf_index > 0)
2814 {
2815 value = execute ();
2816 if (value)
2817 return value;
2818 }
2819 /* Reinitialize for a new command, and for a new argument. */
2820 clear_args ();
2821 arg_going = 0;
2822 delete_this_arg = 0;
2823 this_is_output_file = 0;
2824 this_is_library_file = 0;
2825 input_from_pipe = 0;
2826 break;
2827
2828 case '|':
2829 /* End any pending argument. */
2830 if (arg_going)
2831 {
2832 obstack_1grow (&obstack, 0);
2833 string = obstack_finish (&obstack);
2834 if (this_is_library_file)
2835 string = find_file (string);
2836 store_arg (string, delete_this_arg, this_is_output_file);
2837 if (this_is_output_file)
2838 outfiles[input_file_number] = string;
2839 }
2840
2841 /* Use pipe */
2842 obstack_1grow (&obstack, c);
2843 arg_going = 1;
2844 break;
2845
2846 case '\t':
2847 case ' ':
2848 /* Space or tab ends an argument if one is pending. */
2849 if (arg_going)
2850 {
2851 obstack_1grow (&obstack, 0);
2852 string = obstack_finish (&obstack);
2853 if (this_is_library_file)
2854 string = find_file (string);
2855 store_arg (string, delete_this_arg, this_is_output_file);
2856 if (this_is_output_file)
2857 outfiles[input_file_number] = string;
2858 }
2859 /* Reinitialize for a new argument. */
2860 arg_going = 0;
2861 delete_this_arg = 0;
2862 this_is_output_file = 0;
2863 this_is_library_file = 0;
2864 break;
2865
2866 case '%':
2867 switch (c = *p++)
2868 {
2869 case 0:
2870 fatal ("Invalid specification! Bug in cc.");
2871
2872 case 'b':
2873 obstack_grow (&obstack, input_basename, basename_length);
2874 arg_going = 1;
2875 break;
2876
2877 case 'd':
2878 delete_this_arg = 2;
2879 break;
2880
2881 /* Dump out the directories specified with LIBRARY_PATH,
2882 followed by the absolute directories
2883 that we search for startfiles. */
2884 case 'D':
2885 {
2886 struct prefix_list *pl = startfile_prefix.plist;
2887 int bufsize = 100;
2888 char *buffer = (char *) xmalloc (bufsize);
2889 int idx;
2890
2891 for (; pl; pl = pl->next)
2892 {
2893 #ifdef RELATIVE_PREFIX_NOT_LINKDIR
2894 /* Used on systems which record the specified -L dirs
2895 and use them to search for dynamic linking. */
2896 /* Relative directories always come from -B,
2897 and it is better not to use them for searching
2898 at run time. In particular, stage1 loses */
2899 if (pl->prefix[0] != '/')
2900 continue;
2901 #endif
2902 if (machine_suffix)
2903 {
2904 if (is_directory (pl->prefix, machine_suffix, 1))
2905 {
2906 do_spec_1 ("-L", 0, NULL_PTR);
2907 #ifdef SPACE_AFTER_L_OPTION
2908 do_spec_1 (" ", 0, NULL_PTR);
2909 #endif
2910 do_spec_1 (pl->prefix, 1, NULL_PTR);
2911 /* Remove slash from machine_suffix. */
2912 if (strlen (machine_suffix) >= bufsize)
2913 bufsize = strlen (machine_suffix) * 2 + 1;
2914 buffer = (char *) xrealloc (buffer, bufsize);
2915 strcpy (buffer, machine_suffix);
2916 idx = strlen (buffer);
2917 if (buffer[idx - 1] == '/')
2918 buffer[idx - 1] = 0;
2919 do_spec_1 (buffer, 1, NULL_PTR);
2920 /* Make this a separate argument. */
2921 do_spec_1 (" ", 0, NULL_PTR);
2922 }
2923 }
2924 if (!pl->require_machine_suffix)
2925 {
2926 if (is_directory (pl->prefix, "", 1))
2927 {
2928 do_spec_1 ("-L", 0, NULL_PTR);
2929 #ifdef SPACE_AFTER_L_OPTION
2930 do_spec_1 (" ", 0, NULL_PTR);
2931 #endif
2932 /* Remove slash from pl->prefix. */
2933 if (strlen (pl->prefix) >= bufsize)
2934 bufsize = strlen (pl->prefix) * 2 + 1;
2935 buffer = (char *) xrealloc (buffer, bufsize);
2936 strcpy (buffer, pl->prefix);
2937 idx = strlen (buffer);
2938 if (buffer[idx - 1] == '/')
2939 buffer[idx - 1] = 0;
2940 do_spec_1 (buffer, 1, NULL_PTR);
2941 /* Make this a separate argument. */
2942 do_spec_1 (" ", 0, NULL_PTR);
2943 }
2944 }
2945 }
2946 free (buffer);
2947 }
2948 break;
2949
2950 case 'e':
2951 /* {...:%efoo} means report an error with `foo' as error message
2952 and don't execute any more commands for this file. */
2953 {
2954 char *q = p;
2955 char *buf;
2956 while (*p != 0 && *p != '\n') p++;
2957 buf = (char *) alloca (p - q + 1);
2958 strncpy (buf, q, p - q);
2959 buf[p - q] = 0;
2960 error ("%s", buf);
2961 return -1;
2962 }
2963 break;
2964
2965 case 'g':
2966 case 'u':
2967 case 'U':
2968 if (save_temps_flag)
2969 obstack_grow (&obstack, input_basename, basename_length);
2970 else
2971 {
2972 #ifdef MKTEMP_EACH_FILE
2973 /* ??? This has a problem: the total number of
2974 values mktemp can return is limited.
2975 That matters for the names of object files.
2976 In 2.4, do something about that. */
2977 struct temp_name *t;
2978 char *suffix = p;
2979 while (*p == '.' || isalpha (*p))
2980 p++;
2981
2982 /* See if we already have an association of %g/%u/%U and
2983 suffix. */
2984 for (t = temp_names; t; t = t->next)
2985 if (t->length == p - suffix
2986 && strncmp (t->suffix, suffix, p - suffix) == 0
2987 && t->unique == (c != 'g'))
2988 break;
2989
2990 /* Make a new association if needed. %u requires one. */
2991 if (t == 0 || c == 'u')
2992 {
2993 if (t == 0)
2994 {
2995 t = (struct temp_name *) xmalloc (sizeof (struct temp_name));
2996 t->next = temp_names;
2997 temp_names = t;
2998 }
2999 t->length = p - suffix;
3000 t->suffix = save_string (suffix, p - suffix);
3001 t->unique = (c != 'g');
3002 choose_temp_base ();
3003 t->filename = temp_filename;
3004 t->filename_length = temp_filename_length;
3005 }
3006
3007 obstack_grow (&obstack, t->filename, t->filename_length);
3008 delete_this_arg = 1;
3009 #else
3010 obstack_grow (&obstack, temp_filename, temp_filename_length);
3011 if (c == 'u' || c == 'U')
3012 {
3013 static int unique;
3014 char buff[9];
3015 if (c == 'u')
3016 unique++;
3017 sprintf (buff, "%d", unique);
3018 obstack_grow (&obstack, buff, strlen (buff));
3019 }
3020 #endif
3021 delete_this_arg = 1;
3022 }
3023 arg_going = 1;
3024 break;
3025
3026 case 'i':
3027 obstack_grow (&obstack, input_filename, input_filename_length);
3028 arg_going = 1;
3029 break;
3030
3031 case 'I':
3032 {
3033 struct prefix_list *pl = include_prefix.plist;
3034
3035 if (gcc_exec_prefix)
3036 {
3037 do_spec_1 ("-iprefix", 1, NULL_PTR);
3038 /* Make this a separate argument. */
3039 do_spec_1 (" ", 0, NULL_PTR);
3040 do_spec_1 (gcc_exec_prefix, 1, NULL_PTR);
3041 do_spec_1 (" ", 0, NULL_PTR);
3042 }
3043
3044 for (; pl; pl = pl->next)
3045 {
3046 do_spec_1 ("-isystem", 1, NULL_PTR);
3047 /* Make this a separate argument. */
3048 do_spec_1 (" ", 0, NULL_PTR);
3049 do_spec_1 (pl->prefix, 1, NULL_PTR);
3050 do_spec_1 (" ", 0, NULL_PTR);
3051 }
3052 }
3053 break;
3054
3055 case 'o':
3056 {
3057 register int f;
3058 for (f = 0; f < n_infiles; f++)
3059 store_arg (outfiles[f], 0, 0);
3060 }
3061 break;
3062
3063 case 's':
3064 this_is_library_file = 1;
3065 break;
3066
3067 case 'w':
3068 this_is_output_file = 1;
3069 break;
3070
3071 case 'W':
3072 {
3073 int index = argbuf_index;
3074 /* Handle the {...} following the %W. */
3075 if (*p != '{')
3076 abort ();
3077 p = handle_braces (p + 1);
3078 if (p == 0)
3079 return -1;
3080 /* If any args were output, mark the last one for deletion
3081 on failure. */
3082 if (argbuf_index != index)
3083 record_temp_file (argbuf[argbuf_index - 1], 0, 1);
3084 break;
3085 }
3086
3087 /* %x{OPTION} records OPTION for %X to output. */
3088 case 'x':
3089 {
3090 char *p1 = p;
3091 char *string;
3092
3093 /* Skip past the option value and make a copy. */
3094 if (*p != '{')
3095 abort ();
3096 while (*p++ != '}')
3097 ;
3098 string = save_string (p1 + 1, p - p1 - 2);
3099
3100 /* See if we already recorded this option. */
3101 for (i = 0; i < n_linker_options; i++)
3102 if (! strcmp (string, linker_options[i]))
3103 {
3104 free (string);
3105 return 0;
3106 }
3107
3108 /* This option is new; add it. */
3109 n_linker_options++;
3110 if (!linker_options)
3111 linker_options
3112 = (char **) xmalloc (n_linker_options * sizeof (char **));
3113 else
3114 linker_options
3115 = (char **) xrealloc (linker_options,
3116 n_linker_options * sizeof (char **));
3117
3118 linker_options[n_linker_options - 1] = string;
3119 }
3120 break;
3121
3122 /* Dump out the options accumulated previously using %x,
3123 -Xlinker and -Wl,. */
3124 case 'X':
3125 for (i = 0; i < n_linker_options; i++)
3126 {
3127 do_spec_1 (linker_options[i], 1, NULL_PTR);
3128 /* Make each accumulated option a separate argument. */
3129 do_spec_1 (" ", 0, NULL_PTR);
3130 }
3131 break;
3132
3133 /* Dump out the options accumulated previously using -Wa,. */
3134 case 'Y':
3135 for (i = 0; i < n_assembler_options; i++)
3136 {
3137 do_spec_1 (assembler_options[i], 1, NULL_PTR);
3138 /* Make each accumulated option a separate argument. */
3139 do_spec_1 (" ", 0, NULL_PTR);
3140 }
3141 break;
3142
3143 /* Here are digits and numbers that just process
3144 a certain constant string as a spec. */
3145
3146 case '1':
3147 value = do_spec_1 (cc1_spec, 0, NULL_PTR);
3148 if (value != 0)
3149 return value;
3150 break;
3151
3152 case '2':
3153 value = do_spec_1 (cc1plus_spec, 0, NULL_PTR);
3154 if (value != 0)
3155 return value;
3156 break;
3157
3158 case 'a':
3159 value = do_spec_1 (asm_spec, 0, NULL_PTR);
3160 if (value != 0)
3161 return value;
3162 break;
3163
3164 case 'A':
3165 value = do_spec_1 (asm_final_spec, 0, NULL_PTR);
3166 if (value != 0)
3167 return value;
3168 break;
3169
3170 case 'c':
3171 value = do_spec_1 (signed_char_spec, 0, NULL_PTR);
3172 if (value != 0)
3173 return value;
3174 break;
3175
3176 case 'C':
3177 value = do_spec_1 (cpp_spec, 0, NULL_PTR);
3178 if (value != 0)
3179 return value;
3180 break;
3181
3182 case 'E':
3183 value = do_spec_1 (endfile_spec, 0, NULL_PTR);
3184 if (value != 0)
3185 return value;
3186 break;
3187
3188 case 'l':
3189 value = do_spec_1 (link_spec, 0, NULL_PTR);
3190 if (value != 0)
3191 return value;
3192 break;
3193
3194 case 'L':
3195 value = do_spec_1 (lib_spec, 0, NULL_PTR);
3196 if (value != 0)
3197 return value;
3198 break;
3199
3200 case 'p':
3201 {
3202 char *x = (char *) alloca (strlen (cpp_predefines) + 1);
3203 char *buf = x;
3204 char *y;
3205
3206 /* Copy all of the -D options in CPP_PREDEFINES into BUF. */
3207 y = cpp_predefines;
3208 while (*y != 0)
3209 {
3210 if (! strncmp (y, "-D", 2))
3211 /* Copy the whole option. */
3212 while (*y && *y != ' ' && *y != '\t')
3213 *x++ = *y++;
3214 else if (*y == ' ' || *y == '\t')
3215 /* Copy whitespace to the result. */
3216 *x++ = *y++;
3217 /* Don't copy other options. */
3218 else
3219 y++;
3220 }
3221
3222 *x = 0;
3223
3224 value = do_spec_1 (buf, 0, NULL_PTR);
3225 if (value != 0)
3226 return value;
3227 }
3228 break;
3229
3230 case 'P':
3231 {
3232 char *x = (char *) alloca (strlen (cpp_predefines) * 4 + 1);
3233 char *buf = x;
3234 char *y;
3235
3236 /* Copy all of CPP_PREDEFINES into BUF,
3237 but put __ after every -D and at the end of each arg. */
3238 y = cpp_predefines;
3239 while (*y != 0)
3240 {
3241 if (! strncmp (y, "-D", 2))
3242 {
3243 int flag = 0;
3244
3245 *x++ = *y++;
3246 *x++ = *y++;
3247
3248 if (strncmp (y, "__", 2))
3249 {
3250 /* Stick __ at front of macro name. */
3251 *x++ = '_';
3252 *x++ = '_';
3253 /* Arrange to stick __ at the end as well. */
3254 flag = 1;
3255 }
3256
3257 /* Copy the macro name. */
3258 while (*y && *y != '=' && *y != ' ' && *y != '\t')
3259 *x++ = *y++;
3260
3261 if (flag)
3262 {
3263 *x++ = '_';
3264 *x++ = '_';
3265 }
3266
3267 /* Copy the value given, if any. */
3268 while (*y && *y != ' ' && *y != '\t')
3269 *x++ = *y++;
3270 }
3271 else if (*y == ' ' || *y == '\t')
3272 /* Copy whitespace to the result. */
3273 *x++ = *y++;
3274 /* Don't copy -A options */
3275 else
3276 y++;
3277 }
3278 *x++ = ' ';
3279
3280 /* Copy all of CPP_PREDEFINES into BUF,
3281 but put __ after every -D. */
3282 y = cpp_predefines;
3283 while (*y != 0)
3284 {
3285 if (! strncmp (y, "-D", 2))
3286 {
3287 y += 2;
3288
3289 if (strncmp (y, "__", 2))
3290 {
3291 /* Stick -D__ at front of macro name. */
3292 *x++ = '-';
3293 *x++ = 'D';
3294 *x++ = '_';
3295 *x++ = '_';
3296
3297 /* Copy the macro name. */
3298 while (*y && *y != '=' && *y != ' ' && *y != '\t')
3299 *x++ = *y++;
3300
3301 /* Copy the value given, if any. */
3302 while (*y && *y != ' ' && *y != '\t')
3303 *x++ = *y++;
3304 }
3305 else
3306 {
3307 /* Do not copy this macro - we have just done it before */
3308 while (*y && *y != ' ' && *y != '\t')
3309 y++;
3310 }
3311 }
3312 else if (*y == ' ' || *y == '\t')
3313 /* Copy whitespace to the result. */
3314 *x++ = *y++;
3315 /* Don't copy -A options */
3316 else
3317 y++;
3318 }
3319 *x++ = ' ';
3320
3321 /* Copy all of the -A options in CPP_PREDEFINES into BUF. */
3322 y = cpp_predefines;
3323 while (*y != 0)
3324 {
3325 if (! strncmp (y, "-A", 2))
3326 /* Copy the whole option. */
3327 while (*y && *y != ' ' && *y != '\t')
3328 *x++ = *y++;
3329 else if (*y == ' ' || *y == '\t')
3330 /* Copy whitespace to the result. */
3331 *x++ = *y++;
3332 /* Don't copy other options. */
3333 else
3334 y++;
3335 }
3336
3337 *x = 0;
3338
3339 value = do_spec_1 (buf, 0, NULL_PTR);
3340 if (value != 0)
3341 return value;
3342 }
3343 break;
3344
3345 case 'S':
3346 value = do_spec_1 (startfile_spec, 0, NULL_PTR);
3347 if (value != 0)
3348 return value;
3349 break;
3350
3351 /* Here we define characters other than letters and digits. */
3352
3353 case '{':
3354 p = handle_braces (p);
3355 if (p == 0)
3356 return -1;
3357 break;
3358
3359 case '%':
3360 obstack_1grow (&obstack, '%');
3361 break;
3362
3363 case '*':
3364 do_spec_1 (soft_matched_part, 1, NULL_PTR);
3365 do_spec_1 (" ", 0, NULL_PTR);
3366 break;
3367
3368 /* Process a string found as the value of a spec given by name.
3369 This feature allows individual machine descriptions
3370 to add and use their own specs.
3371 %[...] modifies -D options the way %P does;
3372 %(...) uses the spec unmodified. */
3373 case '(':
3374 case '[':
3375 {
3376 char *name = p;
3377 struct spec_list *sl;
3378 int len;
3379
3380 /* The string after the S/P is the name of a spec that is to be
3381 processed. */
3382 while (*p && *p != ')' && *p != ']')
3383 p++;
3384
3385 /* See if it's in the list */
3386 for (len = p - name, sl = specs; sl; sl = sl->next)
3387 if (strncmp (sl->name, name, len) == 0 && !sl->name[len])
3388 {
3389 name = sl->spec;
3390 break;
3391 }
3392
3393 if (sl)
3394 {
3395 if (c == '(')
3396 {
3397 value = do_spec_1 (name, 0, NULL_PTR);
3398 if (value != 0)
3399 return value;
3400 }
3401 else
3402 {
3403 char *x = (char *) alloca (strlen (name) * 2 + 1);
3404 char *buf = x;
3405 char *y = name;
3406
3407 /* Copy all of NAME into BUF, but put __ after
3408 every -D and at the end of each arg, */
3409 while (1)
3410 {
3411 if (! strncmp (y, "-D", 2))
3412 {
3413 *x++ = '-';
3414 *x++ = 'D';
3415 *x++ = '_';
3416 *x++ = '_';
3417 y += 2;
3418 }
3419 else if (*y == ' ' || *y == 0)
3420 {
3421 *x++ = '_';
3422 *x++ = '_';
3423 if (*y == 0)
3424 break;
3425 else
3426 *x++ = *y++;
3427 }
3428 else
3429 *x++ = *y++;
3430 }
3431 *x = 0;
3432
3433 value = do_spec_1 (buf, 0, NULL_PTR);
3434 if (value != 0)
3435 return value;
3436 }
3437 }
3438
3439 /* Discard the closing paren or bracket. */
3440 if (*p)
3441 p++;
3442 }
3443 break;
3444
3445 case 'v':
3446 {
3447 int c1 = *p++; /* Select first or second version number. */
3448 char *v = compiler_version;
3449 char *q, *copy;
3450 /* If desired, advance to second version number. */
3451 if (c1 == '2')
3452 {
3453 /* Set P after the first period. */
3454 while (*v != 0 && *v != ' ' && *v != '.')
3455 v++;
3456 if (*v == '.')
3457 v++;
3458 }
3459 /* Set Q at the next period or at the end. */
3460 q = v;
3461 while (*q != 0 && *q != ' ' && *q != '.')
3462 q++;
3463 /* Empty string means zero. */
3464 if (p == q)
3465 {
3466 v = "0";
3467 q = v + 1;
3468 }
3469 /* Put that part into the command. */
3470 obstack_grow (&obstack, v, q - v);
3471 arg_going = 1;
3472 }
3473 break;
3474
3475 case '|':
3476 if (input_from_pipe)
3477 do_spec_1 ("-", 0, NULL_PTR);
3478 break;
3479
3480 default:
3481 abort ();
3482 }
3483 break;
3484
3485 case '\\':
3486 /* Backslash: treat next character as ordinary. */
3487 c = *p++;
3488
3489 /* fall through */
3490 default:
3491 /* Ordinary character: put it into the current argument. */
3492 obstack_1grow (&obstack, c);
3493 arg_going = 1;
3494 }
3495
3496 return 0; /* End of string */
3497 }
3498
3499 /* Return 0 if we call do_spec_1 and that returns -1. */
3500
3501 static char *
3502 handle_braces (p)
3503 register char *p;
3504 {
3505 register char *q;
3506 char *filter;
3507 int pipe = 0;
3508 int negate = 0;
3509 int suffix = 0;
3510
3511 if (*p == '|')
3512 /* A `|' after the open-brace means,
3513 if the test fails, output a single minus sign rather than nothing.
3514 This is used in %{|!pipe:...}. */
3515 pipe = 1, ++p;
3516
3517 if (*p == '!')
3518 /* A `!' after the open-brace negates the condition:
3519 succeed if the specified switch is not present. */
3520 negate = 1, ++p;
3521
3522 if (*p == '.')
3523 /* A `.' after the open-brace means test against the current suffix. */
3524 {
3525 if (pipe)
3526 abort ();
3527
3528 suffix = 1;
3529 ++p;
3530 }
3531
3532 filter = p;
3533 while (*p != ':' && *p != '}') p++;
3534 if (*p != '}')
3535 {
3536 register int count = 1;
3537 q = p + 1;
3538 while (count > 0)
3539 {
3540 if (*q == '{')
3541 count++;
3542 else if (*q == '}')
3543 count--;
3544 else if (*q == 0)
3545 abort ();
3546 q++;
3547 }
3548 }
3549 else
3550 q = p + 1;
3551
3552 if (suffix)
3553 {
3554 int found = (input_suffix != 0
3555 && strlen (input_suffix) == p - filter
3556 && strncmp (input_suffix, filter, p - filter) == 0);
3557
3558 if (p[0] == '}')
3559 abort ();
3560
3561 if (negate != found
3562 && do_spec_1 (save_string (p + 1, q - p - 2), 0, NULL_PTR) < 0)
3563 return 0;
3564
3565 return q;
3566 }
3567 else if (p[-1] == '*' && p[0] == '}')
3568 {
3569 /* Substitute all matching switches as separate args. */
3570 register int i;
3571 --p;
3572 for (i = 0; i < n_switches; i++)
3573 if (!strncmp (switches[i].part1, filter, p - filter))
3574 give_switch (i, 0);
3575 }
3576 else
3577 {
3578 /* Test for presence of the specified switch. */
3579 register int i;
3580 int present = 0;
3581
3582 /* If name specified ends in *, as in {x*:...},
3583 check for %* and handle that case. */
3584 if (p[-1] == '*' && !negate)
3585 {
3586 int substitution;
3587 char *r = p;
3588
3589 /* First see whether we have %*. */
3590 substitution = 0;
3591 while (r < q)
3592 {
3593 if (*r == '%' && r[1] == '*')
3594 substitution = 1;
3595 r++;
3596 }
3597 /* If we do, handle that case. */
3598 if (substitution)
3599 {
3600 /* Substitute all matching switches as separate args.
3601 But do this by substituting for %*
3602 in the text that follows the colon. */
3603
3604 unsigned hard_match_len = p - filter - 1;
3605 char *string = save_string (p + 1, q - p - 2);
3606
3607 for (i = 0; i < n_switches; i++)
3608 if (!strncmp (switches[i].part1, filter, hard_match_len))
3609 {
3610 do_spec_1 (string, 0, &switches[i].part1[hard_match_len]);
3611 /* Pass any arguments this switch has. */
3612 give_switch (i, 1);
3613 }
3614
3615 return q;
3616 }
3617 }
3618
3619 /* If name specified ends in *, as in {x*:...},
3620 check for presence of any switch name starting with x. */
3621 if (p[-1] == '*')
3622 {
3623 for (i = 0; i < n_switches; i++)
3624 {
3625 unsigned hard_match_len = p - filter - 1;
3626
3627 if (!strncmp (switches[i].part1, filter, hard_match_len))
3628 {
3629 switches[i].valid = 1;
3630 present = 1;
3631 }
3632 }
3633 }
3634 /* Otherwise, check for presence of exact name specified. */
3635 else
3636 {
3637 for (i = 0; i < n_switches; i++)
3638 {
3639 if (!strncmp (switches[i].part1, filter, p - filter)
3640 && switches[i].part1[p - filter] == 0)
3641 {
3642 switches[i].valid = 1;
3643 present = 1;
3644 break;
3645 }
3646 }
3647 }
3648
3649 /* If it is as desired (present for %{s...}, absent for %{-s...})
3650 then substitute either the switch or the specified
3651 conditional text. */
3652 if (present != negate)
3653 {
3654 if (*p == '}')
3655 {
3656 give_switch (i, 0);
3657 }
3658 else
3659 {
3660 if (do_spec_1 (save_string (p + 1, q - p - 2), 0, NULL_PTR) < 0)
3661 return 0;
3662 }
3663 }
3664 else if (pipe)
3665 {
3666 /* Here if a %{|...} conditional fails: output a minus sign,
3667 which means "standard output" or "standard input". */
3668 do_spec_1 ("-", 0, NULL_PTR);
3669 }
3670 }
3671
3672 return q;
3673 }
3674
3675 /* Pass a switch to the current accumulating command
3676 in the same form that we received it.
3677 SWITCHNUM identifies the switch; it is an index into
3678 the vector of switches gcc received, which is `switches'.
3679 This cannot fail since it never finishes a command line.
3680
3681 If OMIT_FIRST_WORD is nonzero, then we omit .part1 of the argument. */
3682
3683 static void
3684 give_switch (switchnum, omit_first_word)
3685 int switchnum;
3686 int omit_first_word;
3687 {
3688 if (!omit_first_word)
3689 {
3690 do_spec_1 ("-", 0, NULL_PTR);
3691 do_spec_1 (switches[switchnum].part1, 1, NULL_PTR);
3692 }
3693 do_spec_1 (" ", 0, NULL_PTR);
3694 if (switches[switchnum].args != 0)
3695 {
3696 char **p;
3697 for (p = switches[switchnum].args; *p; p++)
3698 {
3699 do_spec_1 (*p, 1, NULL_PTR);
3700 do_spec_1 (" ", 0, NULL_PTR);
3701 }
3702 }
3703 switches[switchnum].valid = 1;
3704 }
3705 \f
3706 /* Search for a file named NAME trying various prefixes including the
3707 user's -B prefix and some standard ones.
3708 Return the absolute file name found. If nothing is found, return NAME. */
3709
3710 static char *
3711 find_file (name)
3712 char *name;
3713 {
3714 char *newname;
3715
3716 newname = find_a_file (&startfile_prefix, name, R_OK);
3717 return newname ? newname : name;
3718 }
3719
3720 /* Determine whether a directory exists. If LINKER, return 0 for
3721 certain fixed names not needed by the linker. If not LINKER, it is
3722 only important to return 0 if the host machine has a small ARG_MAX
3723 limit. */
3724
3725 static int
3726 is_directory (path1, path2, linker)
3727 char *path1;
3728 char *path2;
3729 int linker;
3730 {
3731 int len1 = strlen (path1);
3732 int len2 = strlen (path2);
3733 char *path = (char *) alloca (3 + len1 + len2);
3734 char *cp;
3735 struct stat st;
3736
3737 #ifndef SMALL_ARG_MAX
3738 if (! linker)
3739 return 1;
3740 #endif
3741
3742 /* Construct the path from the two parts. Ensure the string ends with "/.".
3743 The resulting path will be a directory even if the given path is a
3744 symbolic link. */
3745 bcopy (path1, path, len1);
3746 bcopy (path2, path + len1, len2);
3747 cp = path + len1 + len2;
3748 if (cp[-1] != '/')
3749 *cp++ = '/';
3750 *cp++ = '.';
3751 *cp = '\0';
3752
3753 /* Exclude directories that the linker is known to search. */
3754 if (linker
3755 && ((cp - path == 6 && strcmp (path, "/lib/.") == 0)
3756 || (cp - path == 10 && strcmp (path, "/usr/lib/.") == 0)))
3757 return 0;
3758
3759 return (stat (path, &st) >= 0 && S_ISDIR (st.st_mode));
3760 }
3761 \f
3762 /* On fatal signals, delete all the temporary files. */
3763
3764 static void
3765 fatal_error (signum)
3766 int signum;
3767 {
3768 signal (signum, SIG_DFL);
3769 delete_failure_queue ();
3770 delete_temp_files ();
3771 /* Get the same signal again, this time not handled,
3772 so its normal effect occurs. */
3773 kill (getpid (), signum);
3774 }
3775
3776 int
3777 main (argc, argv)
3778 int argc;
3779 char **argv;
3780 {
3781 register int i;
3782 int j;
3783 int value;
3784 int linker_was_run = 0;
3785 char *explicit_link_files;
3786 char *specs_file;
3787 char *p;
3788
3789 p = argv[0] + strlen (argv[0]);
3790 while (p != argv[0] && p[-1] != '/') --p;
3791 programname = p;
3792
3793 if (signal (SIGINT, SIG_IGN) != SIG_IGN)
3794 signal (SIGINT, fatal_error);
3795 #ifdef SIGHUP
3796 if (signal (SIGHUP, SIG_IGN) != SIG_IGN)
3797 signal (SIGHUP, fatal_error);
3798 #endif
3799 if (signal (SIGTERM, SIG_IGN) != SIG_IGN)
3800 signal (SIGTERM, fatal_error);
3801 #ifdef SIGPIPE
3802 if (signal (SIGPIPE, SIG_IGN) != SIG_IGN)
3803 signal (SIGPIPE, fatal_error);
3804 #endif
3805
3806 argbuf_length = 10;
3807 argbuf = (char **) xmalloc (argbuf_length * sizeof (char *));
3808
3809 obstack_init (&obstack);
3810
3811 /* Set up to remember the pathname of gcc and any options
3812 needed for collect. We use argv[0] instead of programname because
3813 we need the complete pathname. */
3814 obstack_init (&collect_obstack);
3815 obstack_grow (&collect_obstack, "COLLECT_GCC=", sizeof ("COLLECT_GCC=")-1);
3816 obstack_grow (&collect_obstack, argv[0], strlen (argv[0])+1);
3817 putenv (obstack_finish (&collect_obstack));
3818
3819 /* Choose directory for temp files. */
3820
3821 choose_temp_base ();
3822
3823 /* Make a table of what switches there are (switches, n_switches).
3824 Make a table of specified input files (infiles, n_infiles).
3825 Decode switches that are handled locally. */
3826
3827 process_command (argc, argv);
3828
3829 /* Initialize the vector of specs to just the default.
3830 This means one element containing 0s, as a terminator. */
3831
3832 compilers = (struct compiler *) xmalloc (sizeof default_compilers);
3833 bcopy (default_compilers, compilers, sizeof default_compilers);
3834 n_compilers = n_default_compilers;
3835
3836 /* Read specs from a file if there is one. */
3837
3838 machine_suffix = concat (spec_machine, "/", concat (spec_version, "/", ""));
3839 just_machine_suffix = concat (spec_machine, "/", "");
3840
3841 specs_file = find_a_file (&startfile_prefix, "specs", R_OK);
3842 /* Read the specs file unless it is a default one. */
3843 if (specs_file != 0 && strcmp (specs_file, "specs"))
3844 read_specs (specs_file);
3845
3846 /* If not cross-compiling, look for startfiles in the standard places. */
3847 /* The fact that these are done here, after reading the specs file,
3848 means that it cannot be found in these directories.
3849 But that's okay. It should never be there anyway. */
3850 if (!cross_compile)
3851 {
3852 #ifdef MD_EXEC_PREFIX
3853 add_prefix (&exec_prefix, md_exec_prefix, 0, 0, NULL_PTR);
3854 add_prefix (&startfile_prefix, md_exec_prefix, 0, 0, NULL_PTR);
3855 #endif
3856
3857 #ifdef MD_STARTFILE_PREFIX
3858 add_prefix (&startfile_prefix, md_startfile_prefix, 0, 0, NULL_PTR);
3859 #endif
3860
3861 #ifdef MD_STARTFILE_PREFIX_1
3862 add_prefix (&startfile_prefix, md_startfile_prefix_1, 0, 0, NULL_PTR);
3863 #endif
3864
3865 /* If standard_startfile_prefix is relative, base it on
3866 standard_exec_prefix. This lets us move the installed tree
3867 as a unit. If GCC_EXEC_PREFIX is defined, base
3868 standard_startfile_prefix on that as well. */
3869 if (*standard_startfile_prefix == '/')
3870 add_prefix (&startfile_prefix, standard_startfile_prefix, 0, 0,
3871 NULL_PTR);
3872 else
3873 {
3874 if (gcc_exec_prefix)
3875 add_prefix (&startfile_prefix,
3876 concat (gcc_exec_prefix,
3877 standard_startfile_prefix,
3878 ""),
3879 0, 0, NULL_PTR);
3880 add_prefix (&startfile_prefix,
3881 concat (standard_exec_prefix,
3882 machine_suffix,
3883 standard_startfile_prefix),
3884 0, 0, NULL_PTR);
3885 }
3886
3887 add_prefix (&startfile_prefix, standard_startfile_prefix_1, 0, 0,
3888 NULL_PTR);
3889 add_prefix (&startfile_prefix, standard_startfile_prefix_2, 0, 0,
3890 NULL_PTR);
3891 #if 0 /* Can cause surprises, and one can use -B./ instead. */
3892 add_prefix (&startfile_prefix, "./", 0, 1, NULL_PTR);
3893 #endif
3894 }
3895
3896 /* Now we have the specs.
3897 Set the `valid' bits for switches that match anything in any spec. */
3898
3899 validate_all_switches ();
3900
3901 /* Warn about any switches that no pass was interested in. */
3902
3903 for (i = 0; i < n_switches; i++)
3904 if (! switches[i].valid)
3905 error ("unrecognized option `-%s'", switches[i].part1);
3906
3907 if (print_libgcc_file_name)
3908 {
3909 printf ("%s\n", find_file ("libgcc.a"));
3910 exit (0);
3911 }
3912
3913 /* Obey some of the options. */
3914
3915 if (verbose_flag)
3916 {
3917 fprintf (stderr, "gcc version %s\n", version_string);
3918 if (n_infiles == 0)
3919 exit (0);
3920 }
3921
3922 if (n_infiles == 0)
3923 fatal ("No input files");
3924
3925 /* Make a place to record the compiler output file names
3926 that correspond to the input files. */
3927
3928 outfiles = (char **) xmalloc (n_infiles * sizeof (char *));
3929 bzero (outfiles, n_infiles * sizeof (char *));
3930
3931 /* Record which files were specified explicitly as link input. */
3932
3933 explicit_link_files = xmalloc (n_infiles);
3934 bzero (explicit_link_files, n_infiles);
3935
3936 for (i = 0; i < n_infiles; i++)
3937 {
3938 register struct compiler *cp = 0;
3939 int this_file_error = 0;
3940
3941 /* Tell do_spec what to substitute for %i. */
3942
3943 input_filename = infiles[i].name;
3944 input_filename_length = strlen (input_filename);
3945 input_file_number = i;
3946
3947 /* Use the same thing in %o, unless cp->spec says otherwise. */
3948
3949 outfiles[i] = input_filename;
3950
3951 /* Figure out which compiler from the file's suffix. */
3952
3953 cp = lookup_compiler (infiles[i].name, input_filename_length,
3954 infiles[i].language);
3955
3956 if (cp)
3957 {
3958 /* Ok, we found an applicable compiler. Run its spec. */
3959 /* First say how much of input_filename to substitute for %b */
3960 register char *p;
3961 int len;
3962
3963 input_basename = input_filename;
3964 for (p = input_filename; *p; p++)
3965 if (*p == '/')
3966 input_basename = p + 1;
3967
3968 /* Find a suffix starting with the last period,
3969 and set basename_length to exclude that suffix. */
3970 basename_length = strlen (input_basename);
3971 p = input_basename + basename_length;
3972 while (p != input_basename && *p != '.') --p;
3973 if (*p == '.' && p != input_basename)
3974 {
3975 basename_length = p - input_basename;
3976 input_suffix = p + 1;
3977 }
3978 else
3979 input_suffix = "";
3980
3981 len = 0;
3982 for (j = 0; j < sizeof cp->spec / sizeof cp->spec[0]; j++)
3983 if (cp->spec[j])
3984 len += strlen (cp->spec[j]);
3985
3986 p = (char *) xmalloc (len + 1);
3987
3988 len = 0;
3989 for (j = 0; j < sizeof cp->spec / sizeof cp->spec[0]; j++)
3990 if (cp->spec[j])
3991 {
3992 strcpy (p + len, cp->spec[j]);
3993 len += strlen (cp->spec[j]);
3994 }
3995
3996 value = do_spec (p);
3997 free (p);
3998 if (value < 0)
3999 this_file_error = 1;
4000 }
4001
4002 /* If this file's name does not contain a recognized suffix,
4003 record it as explicit linker input. */
4004
4005 else
4006 explicit_link_files[i] = 1;
4007
4008 /* Clear the delete-on-failure queue, deleting the files in it
4009 if this compilation failed. */
4010
4011 if (this_file_error)
4012 {
4013 delete_failure_queue ();
4014 error_count++;
4015 }
4016 /* If this compilation succeeded, don't delete those files later. */
4017 clear_failure_queue ();
4018 }
4019
4020 /* Run ld to link all the compiler output files. */
4021
4022 if (error_count == 0)
4023 {
4024 int tmp = execution_count;
4025 int i;
4026 int first_time;
4027
4028 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
4029 for collect. */
4030 putenv_from_prefixes (&exec_prefix, "COMPILER_PATH=");
4031 putenv_from_prefixes (&startfile_prefix, "LIBRARY_PATH=");
4032
4033 /* Build COLLECT_GCC_OPTIONS to have all of the options specified to
4034 the compiler. */
4035 obstack_grow (&collect_obstack, "COLLECT_GCC_OPTIONS=",
4036 sizeof ("COLLECT_GCC_OPTIONS=")-1);
4037
4038 first_time = TRUE;
4039 for (i = 0; i < n_switches; i++)
4040 {
4041 char **args;
4042 if (!first_time)
4043 obstack_grow (&collect_obstack, " ", 1);
4044
4045 first_time = FALSE;
4046 obstack_grow (&collect_obstack, "-", 1);
4047 obstack_grow (&collect_obstack, switches[i].part1,
4048 strlen (switches[i].part1));
4049
4050 for (args = switches[i].args; args && *args; args++)
4051 {
4052 obstack_grow (&collect_obstack, " ", 1);
4053 obstack_grow (&collect_obstack, *args, strlen (*args));
4054 }
4055 }
4056 obstack_grow (&collect_obstack, "\0", 1);
4057 putenv (obstack_finish (&collect_obstack));
4058
4059 value = do_spec (link_command_spec);
4060 if (value < 0)
4061 error_count = 1;
4062 linker_was_run = (tmp != execution_count);
4063 }
4064
4065 /* Warn if a -B option was specified but the prefix was never used. */
4066 unused_prefix_warnings (&exec_prefix);
4067 unused_prefix_warnings (&startfile_prefix);
4068
4069 /* If options said don't run linker,
4070 complain about input files to be given to the linker. */
4071
4072 if (! linker_was_run && error_count == 0)
4073 for (i = 0; i < n_infiles; i++)
4074 if (explicit_link_files[i])
4075 error ("%s: linker input file unused since linking not done",
4076 outfiles[i]);
4077
4078 /* Delete some or all of the temporary files we made. */
4079
4080 if (error_count)
4081 delete_failure_queue ();
4082 delete_temp_files ();
4083
4084 exit (error_count > 0 ? (signal_count ? 2 : 1) : 0);
4085 /* NOTREACHED */
4086 return 0;
4087 }
4088
4089 /* Find the proper compilation spec for the file name NAME,
4090 whose length is LENGTH. LANGUAGE is the specified language,
4091 or 0 if none specified. */
4092
4093 static struct compiler *
4094 lookup_compiler (name, length, language)
4095 char *name;
4096 int length;
4097 char *language;
4098 {
4099 struct compiler *cp;
4100
4101 /* Look for the language, if one is spec'd. */
4102 if (language != 0)
4103 {
4104 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
4105 {
4106 if (language != 0)
4107 {
4108 if (cp->suffix[0] == '@'
4109 && !strcmp (cp->suffix + 1, language))
4110 return cp;
4111 }
4112 }
4113 error ("language %s not recognized", language);
4114 }
4115
4116 /* Look for a suffix. */
4117 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
4118 {
4119 if (/* The suffix `-' matches only the file name `-'. */
4120 (!strcmp (cp->suffix, "-") && !strcmp (name, "-"))
4121 ||
4122 (strlen (cp->suffix) < length
4123 /* See if the suffix matches the end of NAME. */
4124 && !strcmp (cp->suffix,
4125 name + length - strlen (cp->suffix))))
4126 {
4127 if (cp->spec[0][0] == '@')
4128 {
4129 struct compiler *new;
4130 /* An alias entry maps a suffix to a language.
4131 Search for the language; pass 0 for NAME and LENGTH
4132 to avoid infinite recursion if language not found.
4133 Construct the new compiler spec. */
4134 language = cp->spec[0] + 1;
4135 new = (struct compiler *) xmalloc (sizeof (struct compiler));
4136 new->suffix = cp->suffix;
4137 bcopy (lookup_compiler (NULL_PTR, 0, language)->spec,
4138 new->spec, sizeof new->spec);
4139 return new;
4140 }
4141 /* A non-alias entry: return it. */
4142 return cp;
4143 }
4144 }
4145
4146 return 0;
4147 }
4148 \f
4149 char *
4150 xmalloc (size)
4151 unsigned size;
4152 {
4153 register char *value = (char *) malloc (size);
4154 if (value == 0)
4155 fatal ("virtual memory exhausted");
4156 return value;
4157 }
4158
4159 char *
4160 xrealloc (ptr, size)
4161 char *ptr;
4162 unsigned size;
4163 {
4164 register char *value = (char *) realloc (ptr, size);
4165 if (value == 0)
4166 fatal ("virtual memory exhausted");
4167 return value;
4168 }
4169
4170 /* Return a newly-allocated string whose contents concatenate those of s1, s2, s3. */
4171
4172 static char *
4173 concat (s1, s2, s3)
4174 char *s1, *s2, *s3;
4175 {
4176 int len1 = strlen (s1), len2 = strlen (s2), len3 = strlen (s3);
4177 char *result = xmalloc (len1 + len2 + len3 + 1);
4178
4179 strcpy (result, s1);
4180 strcpy (result + len1, s2);
4181 strcpy (result + len1 + len2, s3);
4182 *(result + len1 + len2 + len3) = 0;
4183
4184 return result;
4185 }
4186
4187 static char *
4188 save_string (s, len)
4189 char *s;
4190 int len;
4191 {
4192 register char *result = xmalloc (len + 1);
4193
4194 bcopy (s, result, len);
4195 result[len] = 0;
4196 return result;
4197 }
4198
4199 static void
4200 pfatal_with_name (name)
4201 char *name;
4202 {
4203 char *s;
4204
4205 if (errno < sys_nerr)
4206 s = concat ("%s: ", sys_errlist[errno], "");
4207 else
4208 s = "cannot open %s";
4209 fatal (s, name);
4210 }
4211
4212 static void
4213 perror_with_name (name)
4214 char *name;
4215 {
4216 char *s;
4217
4218 if (errno < sys_nerr)
4219 s = concat ("%s: ", sys_errlist[errno], "");
4220 else
4221 s = "cannot open %s";
4222 error (s, name);
4223 }
4224
4225 static void
4226 perror_exec (name)
4227 char *name;
4228 {
4229 char *s;
4230
4231 if (errno < sys_nerr)
4232 s = concat ("installation problem, cannot exec %s: ",
4233 sys_errlist[errno], "");
4234 else
4235 s = "installation problem, cannot exec %s";
4236 error (s, name);
4237 }
4238
4239 /* More 'friendly' abort that prints the line and file.
4240 config.h can #define abort fancy_abort if you like that sort of thing. */
4241
4242 void
4243 fancy_abort ()
4244 {
4245 fatal ("Internal gcc abort.");
4246 }
4247 \f
4248 #ifdef HAVE_VPRINTF
4249
4250 /* Output an error message and exit */
4251
4252 static void
4253 fatal VPROTO((char *format, ...))
4254 {
4255 #ifndef __STDC__
4256 char *format;
4257 #endif
4258 va_list ap;
4259
4260 VA_START (ap, format);
4261
4262 #ifndef __STDC__
4263 format = va_arg (ap, char*);
4264 #endif
4265
4266 fprintf (stderr, "%s: ", programname);
4267 vfprintf (stderr, format, ap);
4268 va_end (ap);
4269 fprintf (stderr, "\n");
4270 delete_temp_files ();
4271 exit (1);
4272 }
4273
4274 static void
4275 error VPROTO((char *format, ...))
4276 {
4277 #ifndef __STDC__
4278 char *format;
4279 #endif
4280 va_list ap;
4281
4282 VA_START (ap, format);
4283
4284 #ifndef __STDC__
4285 format = va_arg (ap, char*);
4286 #endif
4287
4288 fprintf (stderr, "%s: ", programname);
4289 vfprintf (stderr, format, ap);
4290 va_end (ap);
4291
4292 fprintf (stderr, "\n");
4293 }
4294
4295 #else /* not HAVE_VPRINTF */
4296
4297 static void
4298 fatal (msg, arg1, arg2)
4299 char *msg, *arg1, *arg2;
4300 {
4301 error (msg, arg1, arg2);
4302 delete_temp_files ();
4303 exit (1);
4304 }
4305
4306 static void
4307 error (msg, arg1, arg2)
4308 char *msg, *arg1, *arg2;
4309 {
4310 fprintf (stderr, "%s: ", programname);
4311 fprintf (stderr, msg, arg1, arg2);
4312 fprintf (stderr, "\n");
4313 }
4314
4315 #endif /* not HAVE_VPRINTF */
4316
4317 \f
4318 static void
4319 validate_all_switches ()
4320 {
4321 struct compiler *comp;
4322 register char *p;
4323 register char c;
4324 struct spec_list *spec;
4325
4326 for (comp = compilers; comp->spec[0]; comp++)
4327 {
4328 int i;
4329 for (i = 0; i < sizeof comp->spec / sizeof comp->spec[0] && comp->spec[i]; i++)
4330 {
4331 p = comp->spec[i];
4332 while (c = *p++)
4333 if (c == '%' && *p == '{')
4334 /* We have a switch spec. */
4335 validate_switches (p + 1);
4336 }
4337 }
4338
4339 /* look through the linked list of extra specs read from the specs file */
4340 for (spec = specs; spec ; spec = spec->next)
4341 {
4342 p = spec->spec;
4343 while (c = *p++)
4344 if (c == '%' && *p == '{')
4345 /* We have a switch spec. */
4346 validate_switches (p + 1);
4347 }
4348
4349 p = link_command_spec;
4350 while (c = *p++)
4351 if (c == '%' && *p == '{')
4352 /* We have a switch spec. */
4353 validate_switches (p + 1);
4354
4355 /* Now notice switches mentioned in the machine-specific specs. */
4356
4357 p = asm_spec;
4358 while (c = *p++)
4359 if (c == '%' && *p == '{')
4360 /* We have a switch spec. */
4361 validate_switches (p + 1);
4362
4363 p = asm_final_spec;
4364 while (c = *p++)
4365 if (c == '%' && *p == '{')
4366 /* We have a switch spec. */
4367 validate_switches (p + 1);
4368
4369 p = cpp_spec;
4370 while (c = *p++)
4371 if (c == '%' && *p == '{')
4372 /* We have a switch spec. */
4373 validate_switches (p + 1);
4374
4375 p = signed_char_spec;
4376 while (c = *p++)
4377 if (c == '%' && *p == '{')
4378 /* We have a switch spec. */
4379 validate_switches (p + 1);
4380
4381 p = cc1_spec;
4382 while (c = *p++)
4383 if (c == '%' && *p == '{')
4384 /* We have a switch spec. */
4385 validate_switches (p + 1);
4386
4387 p = cc1plus_spec;
4388 while (c = *p++)
4389 if (c == '%' && *p == '{')
4390 /* We have a switch spec. */
4391 validate_switches (p + 1);
4392
4393 p = link_spec;
4394 while (c = *p++)
4395 if (c == '%' && *p == '{')
4396 /* We have a switch spec. */
4397 validate_switches (p + 1);
4398
4399 p = lib_spec;
4400 while (c = *p++)
4401 if (c == '%' && *p == '{')
4402 /* We have a switch spec. */
4403 validate_switches (p + 1);
4404
4405 p = startfile_spec;
4406 while (c = *p++)
4407 if (c == '%' && *p == '{')
4408 /* We have a switch spec. */
4409 validate_switches (p + 1);
4410 }
4411
4412 /* Look at the switch-name that comes after START
4413 and mark as valid all supplied switches that match it. */
4414
4415 static void
4416 validate_switches (start)
4417 char *start;
4418 {
4419 register char *p = start;
4420 char *filter;
4421 register int i;
4422 int suffix = 0;
4423
4424 if (*p == '|')
4425 ++p;
4426
4427 if (*p == '!')
4428 ++p;
4429
4430 if (*p == '.')
4431 suffix = 1, ++p;
4432
4433 filter = p;
4434 while (*p != ':' && *p != '}') p++;
4435
4436 if (suffix)
4437 ;
4438 else if (p[-1] == '*')
4439 {
4440 /* Mark all matching switches as valid. */
4441 --p;
4442 for (i = 0; i < n_switches; i++)
4443 if (!strncmp (switches[i].part1, filter, p - filter))
4444 switches[i].valid = 1;
4445 }
4446 else
4447 {
4448 /* Mark an exact matching switch as valid. */
4449 for (i = 0; i < n_switches; i++)
4450 {
4451 if (!strncmp (switches[i].part1, filter, p - filter)
4452 && switches[i].part1[p - filter] == 0)
4453 switches[i].valid = 1;
4454 }
4455 }
4456 }