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