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