(*zeroextract[qs]i_compare0_scratch): Use const_int_operand
[official-gcc.git] / gcc / gcc.c
blobd2e71b9af9ab4f52ebffd08d6ad67cac2d9c0a30
1 /* Compiler driver program that can handle many languages.
2 Copyright (C) 1987, 89, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
4 This file is part of GNU CC.
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.
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.
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, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.
21 This paragraph is here to try to keep Sun CC from dying.
22 The number of chars here seems crucial!!!! */
24 /* This program is the user interface to the C compiler and possibly to
25 other compilers. It is used because compilation is a complicated procedure
26 which involves running several programs and passing temporary files between
27 them, forwarding the users switches to those programs selectively,
28 and deleting the temporary files at the end.
30 CC recognizes how to compile each input file by suffixes in the file names.
31 Once it knows which kind of compilation to perform, the procedure for
32 compilation is specified by a string called a "spec". */
34 #include <sys/types.h>
35 #include <ctype.h>
36 #include <signal.h>
37 #include <sys/stat.h>
38 #include <errno.h>
40 #ifndef _WIN32
41 #include <sys/file.h> /* May get R_OK, etc. on some systems. */
42 #else
43 #include <process.h>
44 int __spawnv ();
45 int __spawnvp ();
46 #endif
48 #include "config.h"
49 #include "obstack.h"
50 #ifdef __STDC__
51 #include <stdarg.h>
52 #else
53 #include <varargs.h>
54 #endif
55 #include <stdio.h>
57 /* Include multi-lib information. */
58 #include "multilib.h"
60 #ifndef R_OK
61 #define R_OK 4
62 #define W_OK 2
63 #define X_OK 1
64 #endif
66 #ifndef WIFSIGNALED
67 #define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f)
68 #endif
69 #ifndef WTERMSIG
70 #define WTERMSIG(S) ((S) & 0x7f)
71 #endif
72 #ifndef WIFEXITED
73 #define WIFEXITED(S) (((S) & 0xff) == 0)
74 #endif
75 #ifndef WEXITSTATUS
76 #define WEXITSTATUS(S) (((S) & 0xff00) >> 8)
77 #endif
79 /* Add prototype support. */
80 #ifndef PROTO
81 #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
82 #define PROTO(ARGS) ARGS
83 #else
84 #define PROTO(ARGS) ()
85 #endif
86 #endif
88 #ifndef VPROTO
89 #ifdef __STDC__
90 #define PVPROTO(ARGS) ARGS
91 #define VPROTO(ARGS) ARGS
92 #define VA_START(va_list,var) va_start(va_list,var)
93 #else
94 #define PVPROTO(ARGS) ()
95 #define VPROTO(ARGS) (va_alist) va_dcl
96 #define VA_START(va_list,var) va_start(va_list)
97 #endif
98 #endif
100 /* Define a generic NULL if one hasn't already been defined. */
102 #ifndef NULL
103 #define NULL 0
104 #endif
106 /* Define O_RDONLY if the system hasn't defined it for us. */
107 #ifndef O_RDONLY
108 #define O_RDONLY 0
109 #endif
111 #ifndef GENERIC_PTR
112 #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
113 #define GENERIC_PTR void *
114 #else
115 #define GENERIC_PTR char *
116 #endif
117 #endif
119 #ifndef NULL_PTR
120 #define NULL_PTR ((GENERIC_PTR)0)
121 #endif
123 #ifdef USG
124 #define vfork fork
125 #endif /* USG */
127 /* On MSDOS, write temp files in current dir
128 because there's no place else we can expect to use. */
129 #ifdef __MSDOS__
130 #ifndef P_tmpdir
131 #define P_tmpdir "."
132 #endif
133 #endif
135 /* Test if something is a normal file. */
136 #ifndef S_ISREG
137 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
138 #endif
140 /* Test if something is a directory. */
141 #ifndef S_ISDIR
142 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
143 #endif
145 /* By default there is no special suffix for executables. */
146 #ifndef EXECUTABLE_SUFFIX
147 #define EXECUTABLE_SUFFIX ""
148 #endif
150 /* By default, the suffix for object files is ".o". */
151 #ifdef OBJECT_SUFFIX
152 #define HAVE_OBJECT_SUFFIX
153 #else
154 #define OBJECT_SUFFIX ".o"
155 #endif
157 /* By default, colon separates directories in a path. */
158 #ifndef PATH_SEPARATOR
159 #define PATH_SEPARATOR ':'
160 #endif
162 #ifndef DIR_SEPARATOR
163 #define DIR_SEPARATOR '/'
164 #endif
166 static char dir_separator_str[] = {DIR_SEPARATOR, 0};
168 #define obstack_chunk_alloc xmalloc
169 #define obstack_chunk_free free
171 extern void free ();
172 extern char *getenv ();
174 #ifndef errno
175 extern int errno;
176 #endif
178 #ifndef HAVE_STRERROR
179 extern int sys_nerr;
180 #if defined(bsd4_4)
181 extern const char *const sys_errlist[];
182 #else
183 extern char *sys_errlist[];
184 #endif
185 #else
186 extern char *strerror();
187 #endif
189 extern int execv (), execvp ();
191 /* If a stage of compilation returns an exit status >= 1,
192 compilation of that file ceases. */
194 #define MIN_FATAL_STATUS 1
196 /* Flag saying to print the directories gcc will search through looking for
197 programs, libraries, etc. */
199 static int print_search_dirs;
201 /* Flag saying to print the full filename of this file
202 as found through our usual search mechanism. */
204 static char *print_file_name = NULL;
206 /* As print_file_name, but search for executable file. */
208 static char *print_prog_name = NULL;
210 /* Flag saying to print the relative path we'd use to
211 find libgcc.a given the current compiler flags. */
213 static int print_multi_directory;
215 /* Flag saying to print the list of subdirectories and
216 compiler flags used to select them in a standard form. */
218 static int print_multi_lib;
220 /* Flag indicating whether we should print the command and arguments */
222 static int verbose_flag;
224 /* Nonzero means write "temp" files in source directory
225 and use the source file's name in them, and don't delete them. */
227 static int save_temps_flag;
229 /* The compiler version. */
231 static char *compiler_version;
233 /* The target version specified with -V */
235 static char *spec_version = DEFAULT_TARGET_VERSION;
237 /* The target machine specified with -b. */
239 static char *spec_machine = DEFAULT_TARGET_MACHINE;
241 /* Nonzero if cross-compiling.
242 When -b is used, the value comes from the `specs' file. */
244 #ifdef CROSS_COMPILE
245 static int cross_compile = 1;
246 #else
247 static int cross_compile = 0;
248 #endif
250 /* The number of errors that have occurred; the link phase will not be
251 run if this is non-zero. */
252 static int error_count = 0;
254 /* This is the obstack which we use to allocate many strings. */
256 static struct obstack obstack;
258 /* This is the obstack to build an environment variable to pass to
259 collect2 that describes all of the relevant switches of what to
260 pass the compiler in building the list of pointers to constructors
261 and destructors. */
263 static struct obstack collect_obstack;
265 extern char *version_string;
267 /* Forward declaration for prototypes. */
268 struct path_prefix;
270 static void set_spec PROTO((char *, char *));
271 static struct compiler *lookup_compiler PROTO((char *, int, char *));
272 static char *build_search_list PROTO((struct path_prefix *, char *, int));
273 static void putenv_from_prefixes PROTO((struct path_prefix *, char *));
274 static char *find_a_file PROTO((struct path_prefix *, char *, int));
275 static void add_prefix PROTO((struct path_prefix *, char *, int, int, int *));
276 static char *skip_whitespace PROTO((char *));
277 static void record_temp_file PROTO((char *, int, int));
278 static void delete_if_ordinary PROTO((char *));
279 static void delete_temp_files PROTO((void));
280 static void delete_failure_queue PROTO((void));
281 static void clear_failure_queue PROTO((void));
282 static char *choose_temp_base_try PROTO((char *, char *));
283 static void choose_temp_base PROTO((void));
284 static int check_live_switch PROTO((int, int));
285 static char *handle_braces PROTO((char *));
286 static char *save_string PROTO((char *, int));
287 static char *concat PROTO((char *, char *));
288 static char *concat3 PROTO((char *, char *, char *));
289 static char *concat4 PROTO((char *, char *, char *, char *));
290 static char *concat6 PROTO((char *, char *, char *, char *, char *, \
291 char *));
292 static int do_spec PROTO((char *));
293 static int do_spec_1 PROTO((char *, int, char *));
294 static char *find_file PROTO((char *));
295 static int is_directory PROTO((char *, char *, int));
296 static void validate_switches PROTO((char *));
297 static void validate_all_switches PROTO((void));
298 static void give_switch PROTO((int, int));
299 static int used_arg PROTO((char *, int));
300 static int default_arg PROTO((char *, int));
301 static void set_multilib_dir PROTO((void));
302 static void print_multilib_info PROTO((void));
303 static void pfatal_with_name PROTO((char *));
304 static void perror_with_name PROTO((char *));
305 static void perror_exec PROTO((char *));
306 #ifdef HAVE_VPRINTF
307 static void fatal PVPROTO((char *, ...));
308 static void error PVPROTO((char *, ...));
309 #else
310 /* We must not provide any prototype here, even if ANSI C. */
311 static void fatal PROTO(());
312 static void error PROTO(());
313 #endif
315 void fancy_abort ();
316 char *xmalloc ();
317 char *xrealloc ();
319 /* Specs are strings containing lines, each of which (if not blank)
320 is made up of a program name, and arguments separated by spaces.
321 The program name must be exact and start from root, since no path
322 is searched and it is unreliable to depend on the current working directory.
323 Redirection of input or output is not supported; the subprograms must
324 accept filenames saying what files to read and write.
326 In addition, the specs can contain %-sequences to substitute variable text
327 or for conditional text. Here is a table of all defined %-sequences.
328 Note that spaces are not generated automatically around the results of
329 expanding these sequences; therefore, you can concatenate them together
330 or with constant text in a single argument.
332 %% substitute one % into the program name or argument.
333 %i substitute the name of the input file being processed.
334 %b substitute the basename of the input file being processed.
335 This is the substring up to (and not including) the last period
336 and not including the directory.
337 %g substitute the temporary-file-name-base. This is a string chosen
338 once per compilation. Different temporary file names are made by
339 concatenation of constant strings on the end, as in `%g.s'.
340 %g also has the same effect of %d.
341 %u like %g, but make the temporary file name unique.
342 %U returns the last file name generated with %u.
343 %d marks the argument containing or following the %d as a
344 temporary file name, so that that file will be deleted if CC exits
345 successfully. Unlike %g, this contributes no text to the argument.
346 %w marks the argument containing or following the %w as the
347 "output file" of this compilation. This puts the argument
348 into the sequence of arguments that %o will substitute later.
349 %W{...}
350 like %{...} but mark last argument supplied within
351 as a file to be deleted on failure.
352 %o substitutes the names of all the output files, with spaces
353 automatically placed around them. You should write spaces
354 around the %o as well or the results are undefined.
355 %o is for use in the specs for running the linker.
356 Input files whose names have no recognized suffix are not compiled
357 at all, but they are included among the output files, so they will
358 be linked.
359 %O substitutes the suffix for object files.
360 %p substitutes the standard macro predefinitions for the
361 current target machine. Use this when running cpp.
362 %P like %p, but puts `__' before and after the name of each macro.
363 (Except macros that already have __.)
364 This is for ANSI C.
365 %I Substitute a -iprefix option made from GCC_EXEC_PREFIX.
366 %s current argument is the name of a library or startup file of some sort.
367 Search for that file in a standard list of directories
368 and substitute the full name found.
369 %eSTR Print STR as an error message. STR is terminated by a newline.
370 Use this when inconsistent options are detected.
371 %x{OPTION} Accumulate an option for %X.
372 %X Output the accumulated linker options specified by compilations.
373 %Y Output the accumulated assembler options specified by compilations.
374 %Z Output the accumulated preprocessor options specified by compilations.
375 %v1 Substitute the major version number of GCC.
376 (For version 2.5.n, this is 2.)
377 %v2 Substitute the minor version number of GCC.
378 (For version 2.5.n, this is 5.)
379 %a process ASM_SPEC as a spec.
380 This allows config.h to specify part of the spec for running as.
381 %A process ASM_FINAL_SPEC as a spec. A capital A is actually
382 used here. This can be used to run a post-processor after the
383 assembler has done it's job.
384 %D Dump out a -L option for each directory in startfile_prefixes.
385 If multilib_dir is set, extra entries are generated with it affixed.
386 %l process LINK_SPEC as a spec.
387 %L process LIB_SPEC as a spec.
388 %G process LIBGCC_SPEC as a spec.
389 %S process STARTFILE_SPEC as a spec. A capital S is actually used here.
390 %E process ENDFILE_SPEC as a spec. A capital E is actually used here.
391 %c process SIGNED_CHAR_SPEC as a spec.
392 %C process CPP_SPEC as a spec. A capital C is actually used here.
393 %1 process CC1_SPEC as a spec.
394 %2 process CC1PLUS_SPEC as a spec.
395 %| output "-" if the input for the current command is coming from a pipe.
396 %* substitute the variable part of a matched option. (See below.)
397 Note that each comma in the substituted string is replaced by
398 a single space.
399 %{S} substitutes the -S switch, if that switch was given to CC.
400 If that switch was not specified, this substitutes nothing.
401 Here S is a metasyntactic variable.
402 %{S*} substitutes all the switches specified to CC whose names start
403 with -S. This is used for -o, -D, -I, etc; switches that take
404 arguments. CC considers `-o foo' as being one switch whose
405 name starts with `o'. %{o*} would substitute this text,
406 including the space; thus, two arguments would be generated.
407 %{S*:X} substitutes X if one or more switches whose names start with -S are
408 specified to CC. Note that the tail part of the -S option
409 (i.e. the part matched by the `*') will be substituted for each
410 occurrence of %* within X.
411 %{S:X} substitutes X, but only if the -S switch was given to CC.
412 %{!S:X} substitutes X, but only if the -S switch was NOT given to CC.
413 %{|S:X} like %{S:X}, but if no S switch, substitute `-'.
414 %{|!S:X} like %{!S:X}, but if there is an S switch, substitute `-'.
415 %{.S:X} substitutes X, but only if processing a file with suffix S.
416 %{!.S:X} substitutes X, but only if NOT processing a file with suffix S.
417 %(Spec) processes a specification defined in a specs file as *Spec:
418 %[Spec] as above, but put __ around -D arguments
420 The conditional text X in a %{S:X} or %{!S:X} construct may contain
421 other nested % constructs or spaces, or even newlines. They are
422 processed as usual, as described above.
424 The -O, -f, -m, and -W switches are handled specifically in these
425 constructs. If another value of -O or the negated form of a -f, -m, or
426 -W switch is found later in the command line, the earlier switch
427 value is ignored, except with {S*} where S is just one letter; this
428 passes all matching options.
430 The character | is used to indicate that a command should be piped to
431 the following command, but only if -pipe is specified.
433 Note that it is built into CC which switches take arguments and which
434 do not. You might think it would be useful to generalize this to
435 allow each compiler's spec to say which switches take arguments. But
436 this cannot be done in a consistent fashion. CC cannot even decide
437 which input files have been specified without knowing which switches
438 take arguments, and it must know which input files to compile in order
439 to tell which compilers to run.
441 CC also knows implicitly that arguments starting in `-l' are to be
442 treated as compiler output files, and passed to the linker in their
443 proper position among the other output files. */
445 /* Define the macros used for specs %a, %l, %L, %S, %c, %C, %1. */
447 /* config.h can define ASM_SPEC to provide extra args to the assembler
448 or extra switch-translations. */
449 #ifndef ASM_SPEC
450 #define ASM_SPEC ""
451 #endif
453 /* config.h can define ASM_FINAL_SPEC to run a post processor after
454 the assembler has run. */
455 #ifndef ASM_FINAL_SPEC
456 #define ASM_FINAL_SPEC ""
457 #endif
459 /* config.h can define CPP_SPEC to provide extra args to the C preprocessor
460 or extra switch-translations. */
461 #ifndef CPP_SPEC
462 #define CPP_SPEC ""
463 #endif
465 /* config.h can define CC1_SPEC to provide extra args to cc1 and cc1plus
466 or extra switch-translations. */
467 #ifndef CC1_SPEC
468 #define CC1_SPEC ""
469 #endif
471 /* config.h can define CC1PLUS_SPEC to provide extra args to cc1plus
472 or extra switch-translations. */
473 #ifndef CC1PLUS_SPEC
474 #define CC1PLUS_SPEC ""
475 #endif
477 /* config.h can define LINK_SPEC to provide extra args to the linker
478 or extra switch-translations. */
479 #ifndef LINK_SPEC
480 #define LINK_SPEC ""
481 #endif
483 /* config.h can define LIB_SPEC to override the default libraries. */
484 #ifndef LIB_SPEC
485 #define LIB_SPEC "%{!shared:%{g*:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}}"
486 #endif
488 /* config.h can define LIBGCC_SPEC to override how and when libgcc.a is
489 included. */
490 #ifndef LIBGCC_SPEC
491 #if defined(LINK_LIBGCC_SPECIAL) || defined(LINK_LIBGCC_SPECIAL_1)
492 /* Have gcc do the search for libgcc.a. */
493 #define LIBGCC_SPEC "libgcc.a%s"
494 #else
495 #define LIBGCC_SPEC "-lgcc"
496 #endif
497 #endif
499 /* config.h can define STARTFILE_SPEC to override the default crt0 files. */
500 #ifndef STARTFILE_SPEC
501 #define STARTFILE_SPEC \
502 "%{!shared:%{pg:gcrt0%O%s}%{!pg:%{p:mcrt0%O%s}%{!p:crt0%O%s}}}"
503 #endif
505 /* config.h can define SWITCHES_NEED_SPACES to control passing -o and -L.
506 Make the string nonempty to require spaces there. */
507 #ifndef SWITCHES_NEED_SPACES
508 #define SWITCHES_NEED_SPACES ""
509 #endif
511 /* config.h can define ENDFILE_SPEC to override the default crtn files. */
512 #ifndef ENDFILE_SPEC
513 #define ENDFILE_SPEC ""
514 #endif
516 /* This spec is used for telling cpp whether char is signed or not. */
517 #ifndef SIGNED_CHAR_SPEC
518 /* Use #if rather than ?:
519 because MIPS C compiler rejects like ?: in initializers. */
520 #if DEFAULT_SIGNED_CHAR
521 #define SIGNED_CHAR_SPEC "%{funsigned-char:-D__CHAR_UNSIGNED__}"
522 #else
523 #define SIGNED_CHAR_SPEC "%{!fsigned-char:-D__CHAR_UNSIGNED__}"
524 #endif
525 #endif
527 /* MULTILIB_SELECT comes from multilib.h. It gives a
528 string interpreted by set_multilib_dir to select a library
529 subdirectory based on the compiler options. */
530 #ifndef MULTILIB_SELECT
531 #define MULTILIB_SELECT ". ;"
532 #endif
534 static char *cpp_spec = CPP_SPEC;
535 static char *cpp_predefines = CPP_PREDEFINES;
536 static char *cc1_spec = CC1_SPEC;
537 static char *cc1plus_spec = CC1PLUS_SPEC;
538 static char *signed_char_spec = SIGNED_CHAR_SPEC;
539 static char *asm_spec = ASM_SPEC;
540 static char *asm_final_spec = ASM_FINAL_SPEC;
541 static char *link_spec = LINK_SPEC;
542 static char *lib_spec = LIB_SPEC;
543 static char *libgcc_spec = LIBGCC_SPEC;
544 static char *endfile_spec = ENDFILE_SPEC;
545 static char *startfile_spec = STARTFILE_SPEC;
546 static char *switches_need_spaces = SWITCHES_NEED_SPACES;
547 static char *multilib_select = MULTILIB_SELECT;
549 #ifdef EXTRA_SPECS
550 static struct { char *name, *spec; } extra_specs[] = { EXTRA_SPECS };
551 #endif
553 /* This defines which switch letters take arguments. */
555 #define DEFAULT_SWITCH_TAKES_ARG(CHAR) \
556 ((CHAR) == 'D' || (CHAR) == 'U' || (CHAR) == 'o' \
557 || (CHAR) == 'e' || (CHAR) == 'T' || (CHAR) == 'u' \
558 || (CHAR) == 'I' || (CHAR) == 'm' || (CHAR) == 'x' \
559 || (CHAR) == 'L' || (CHAR) == 'A')
561 #ifndef SWITCH_TAKES_ARG
562 #define SWITCH_TAKES_ARG(CHAR) DEFAULT_SWITCH_TAKES_ARG(CHAR)
563 #endif
565 /* This defines which multi-letter switches take arguments. */
567 #define DEFAULT_WORD_SWITCH_TAKES_ARG(STR) \
568 (!strcmp (STR, "Tdata") || !strcmp (STR, "Ttext") \
569 || !strcmp (STR, "Tbss") || !strcmp (STR, "include") \
570 || !strcmp (STR, "imacros") || !strcmp (STR, "aux-info") \
571 || !strcmp (STR, "idirafter") || !strcmp (STR, "iprefix") \
572 || !strcmp (STR, "iwithprefix") || !strcmp (STR, "iwithprefixbefore") \
573 || !strcmp (STR, "isystem"))
575 #ifndef WORD_SWITCH_TAKES_ARG
576 #define WORD_SWITCH_TAKES_ARG(STR) DEFAULT_WORD_SWITCH_TAKES_ARG (STR)
577 #endif
579 /* Record the mapping from file suffixes for compilation specs. */
581 struct compiler
583 char *suffix; /* Use this compiler for input files
584 whose names end in this suffix. */
586 char *spec[4]; /* To use this compiler, concatenate these
587 specs and pass to do_spec. */
590 /* Pointer to a vector of `struct compiler' that gives the spec for
591 compiling a file, based on its suffix.
592 A file that does not end in any of these suffixes will be passed
593 unchanged to the loader and nothing else will be done to it.
595 An entry containing two 0s is used to terminate the vector.
597 If multiple entries match a file, the last matching one is used. */
599 static struct compiler *compilers;
601 /* Number of entries in `compilers', not counting the null terminator. */
603 static int n_compilers;
605 /* The default list of file name suffixes and their compilation specs. */
607 static struct compiler default_compilers[] =
609 {".c", "@c"},
610 {"@c",
611 "cpp -lang-c%{ansi:89} %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\
612 %{C:%{!E:%eGNU C does not support -C without using -E}}\
613 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG}\
614 -undef -D__GNUC__=%v1 -D__GNUC_MINOR__=%v2\
615 %{ansi:-trigraphs -$ -D__STRICT_ANSI__}\
616 %{!undef:%{!ansi:%p} %P} %{trigraphs} \
617 %c %{O*:%{!O0:-D__OPTIMIZE__}} %{traditional} %{ftraditional:-traditional}\
618 %{traditional-cpp:-traditional}\
619 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
620 %i %{!M:%{!MM:%{!E:%{!pipe:%g.i}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n",
621 "%{!M:%{!MM:%{!E:cc1 %{!pipe:%g.i} %1 \
622 %{!Q:-quiet} -dumpbase %b.c %{d*} %{m*} %{a*}\
623 %{g*} %{O*} %{W*} %{w} %{pedantic*} %{ansi} \
624 %{traditional} %{v:-version} %{pg:-p} %{p} %{f*}\
625 %{aux-info*}\
626 %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
627 %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
628 %{!S:as %a %Y\
629 %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\
630 %{!pipe:%g.s} %A\n }}}}"},
631 {"-",
632 "%{E:cpp -lang-c%{ansi:89} %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\
633 %{C:%{!E:%eGNU C does not support -C without using -E}}\
634 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG}\
635 -undef -D__GNUC__=%v1 -D__GNUC_MINOR__=%v2\
636 %{ansi:-trigraphs -$ -D__STRICT_ANSI__}\
637 %{!undef:%{!ansi:%p} %P} %{trigraphs}\
638 %c %{O*:%{!O0:-D__OPTIMIZE__}} %{traditional} %{ftraditional:-traditional}\
639 %{traditional-cpp:-traditional}\
640 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
641 %i %W{o*}}\
642 %{!E:%e-E required when input is from standard input}"},
643 {".m", "@objective-c"},
644 {"@objective-c",
645 "cpp -lang-objc %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\
646 %{C:%{!E:%eGNU C does not support -C without using -E}}\
647 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG}\
648 -undef -D__OBJC__ -D__GNUC__=%v1 -D__GNUC_MINOR__=%v2\
649 %{ansi:-trigraphs -$ -D__STRICT_ANSI__}\
650 %{!undef:%{!ansi:%p} %P} %{trigraphs}\
651 %c %{O*:%{!O0:-D__OPTIMIZE__}} %{traditional} %{ftraditional:-traditional}\
652 %{traditional-cpp:-traditional}\
653 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
654 %i %{!M:%{!MM:%{!E:%{!pipe:%g.i}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n",
655 "%{!M:%{!MM:%{!E:cc1obj %{!pipe:%g.i} %1 \
656 %{!Q:-quiet} -dumpbase %b.m %{d*} %{m*} %{a*}\
657 %{g*} %{O*} %{W*} %{w} %{pedantic*} %{ansi} \
658 %{traditional} %{v:-version} %{pg:-p} %{p} %{f*} \
659 -lang-objc %{gen-decls} \
660 %{aux-info*}\
661 %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
662 %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
663 %{!S:as %a %Y\
664 %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\
665 %{!pipe:%g.s} %A\n }}}}"},
666 {".h", "@c-header"},
667 {"@c-header",
668 "%{!E:%eCompilation of header file requested} \
669 cpp %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\
670 %{C:%{!E:%eGNU C does not support -C without using -E}}\
671 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG}\
672 -undef -D__GNUC__=%v1 -D__GNUC_MINOR__=%v2\
673 %{ansi:-trigraphs -$ -D__STRICT_ANSI__}\
674 %{!undef:%{!ansi:%p} %P} %{trigraphs}\
675 %c %{O*:%{!O0:-D__OPTIMIZE__}} %{traditional} %{ftraditional:-traditional}\
676 %{traditional-cpp:-traditional}\
677 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
678 %i %W{o*}"},
679 {".i", "@cpp-output"},
680 {"@cpp-output",
681 "%{!M:%{!MM:%{!E:cc1 %i %1 %{!Q:-quiet} %{d*} %{m*} %{a*}\
682 %{g*} %{O*} %{W*} %{w} %{pedantic*} %{ansi}\
683 %{traditional} %{v:-version} %{pg:-p} %{p} %{f*}\
684 %{aux-info*}\
685 %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
686 %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
687 %{!S:as %a %Y\
688 %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\
689 %{!pipe:%g.s} %A\n }}}}"},
690 {".s", "@assembler"},
691 {"@assembler",
692 "%{!M:%{!MM:%{!E:%{!S:as %a %Y\
693 %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\
694 %i %A\n }}}}"},
695 {".S", "@assembler-with-cpp"},
696 {"@assembler-with-cpp",
697 "cpp -lang-asm %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\
698 %{C:%{!E:%eGNU C does not support -C without using -E}}\
699 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG} %{trigraphs}\
700 -undef -$ %{!undef:%p %P} -D__ASSEMBLER__ \
701 %c %{O*:%{!O0:-D__OPTIMIZE__}} %{traditional} %{ftraditional:-traditional}\
702 %{traditional-cpp:-traditional}\
703 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
704 %i %{!M:%{!MM:%{!E:%{!pipe:%g.s}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n",
705 "%{!M:%{!MM:%{!E:%{!S:as %a %Y\
706 %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\
707 %{!pipe:%g.s} %A\n }}}}"},
708 #include "specs.h"
709 /* Mark end of table */
710 {0, 0}
713 /* Number of elements in default_compilers, not counting the terminator. */
715 static int n_default_compilers
716 = (sizeof default_compilers / sizeof (struct compiler)) - 1;
718 /* Here is the spec for running the linker, after compiling all files. */
720 /* -u* was put back because both BSD and SysV seem to support it. */
721 /* %{static:} simply prevents an error message if the target machine
722 doesn't handle -static. */
723 /* We want %{T*} after %{L*} and %D so that it can be used to specify linker
724 scripts which exist in user specified directories, or in standard
725 directories. */
726 #ifdef LINK_LIBGCC_SPECIAL
727 /* Don't generate -L options. */
728 static char *link_command_spec = "\
729 %{!fsyntax-only: \
730 %{!c:%{!M:%{!MM:%{!E:%{!S:ld %l %X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} \
731 %{r} %{s} %{t} %{u*} %{x} %{z} %{Z}\
732 %{!A:%{!nostdlib:%{!nostartfiles:%S}}}\
733 %{static:} %{L*} %{T*} %o\
734 %{!nostdlib:%{!nodefaultlibs:%G %L %G}}\
735 %{!A:%{!nostdlib:%{!nostartfiles:%E}}}\n }}}}}}";
736 #else
737 /* Use -L. */
738 static char *link_command_spec = "\
739 %{!fsyntax-only: \
740 %{!c:%{!M:%{!MM:%{!E:%{!S:ld %l %X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} \
741 %{r} %{s} %{t} %{u*} %{x} %{z} %{Z}\
742 %{!A:%{!nostdlib:%{!nostartfiles:%S}}}\
743 %{static:} %{L*} %D %{T*} %o\
744 %{!nostdlib:%{!nodefaultlibs:%G %L %G}}\
745 %{!A:%{!nostdlib:%{!nostartfiles:%E}}}\n }}}}}}";
746 #endif
748 /* A vector of options to give to the linker.
749 These options are accumulated by %x,
750 and substituted into the linker command with %X. */
751 static int n_linker_options;
752 static char **linker_options;
754 /* A vector of options to give to the assembler.
755 These options are accumulated by -Wa,
756 and substituted into the assembler command with %Y. */
757 static int n_assembler_options;
758 static char **assembler_options;
760 /* A vector of options to give to the preprocessor.
761 These options are accumulated by -Wp,
762 and substituted into the preprocessor command with %Z. */
763 static int n_preprocessor_options;
764 static char **preprocessor_options;
766 /* Define how to map long options into short ones. */
768 /* This structure describes one mapping. */
769 struct option_map
771 /* The long option's name. */
772 char *name;
773 /* The equivalent short option. */
774 char *equivalent;
775 /* Argument info. A string of flag chars; NULL equals no options.
776 a => argument required.
777 o => argument optional.
778 j => join argument to equivalent, making one word.
779 * => require other text after NAME as an argument. */
780 char *arg_info;
783 /* This is the table of mappings. Mappings are tried sequentially
784 for each option encountered; the first one that matches, wins. */
786 struct option_map option_map[] =
788 {"--all-warnings", "-Wall", 0},
789 {"--ansi", "-ansi", 0},
790 {"--assemble", "-S", 0},
791 {"--assert", "-A", "a"},
792 {"--comments", "-C", 0},
793 {"--compile", "-c", 0},
794 {"--debug", "-g", "oj"},
795 {"--define-macro", "-D", "a"},
796 {"--dependencies", "-M", 0},
797 {"--dump", "-d", "a"},
798 {"--dumpbase", "-dumpbase", "a"},
799 {"--entry", "-e", 0},
800 {"--extra-warnings", "-W", 0},
801 {"--for-assembler", "-Wa", "a"},
802 {"--for-linker", "-Xlinker", "a"},
803 {"--force-link", "-u", "a"},
804 {"--imacros", "-imacros", "a"},
805 {"--include", "-include", "a"},
806 {"--include-barrier", "-I-", 0},
807 {"--include-directory", "-I", "a"},
808 {"--include-directory-after", "-idirafter", "a"},
809 {"--include-prefix", "-iprefix", "a"},
810 {"--include-with-prefix", "-iwithprefix", "a"},
811 {"--include-with-prefix-before", "-iwithprefixbefore", "a"},
812 {"--include-with-prefix-after", "-iwithprefix", "a"},
813 {"--language", "-x", "a"},
814 {"--library-directory", "-L", "a"},
815 {"--machine", "-m", "aj"},
816 {"--machine-", "-m", "*j"},
817 {"--no-line-commands", "-P", 0},
818 {"--no-precompiled-includes", "-noprecomp", 0},
819 {"--no-standard-includes", "-nostdinc", 0},
820 {"--no-standard-libraries", "-nostdlib", 0},
821 {"--no-warnings", "-w", 0},
822 {"--optimize", "-O", "oj"},
823 {"--output", "-o", "a"},
824 {"--pedantic", "-pedantic", 0},
825 {"--pedantic-errors", "-pedantic-errors", 0},
826 {"--pipe", "-pipe", 0},
827 {"--prefix", "-B", "a"},
828 {"--preprocess", "-E", 0},
829 {"--print-search-dirs", "-print-search-dirs", 0},
830 {"--print-file-name", "-print-file-name=", "aj"},
831 {"--print-libgcc-file-name", "-print-libgcc-file-name", 0},
832 {"--print-missing-file-dependencies", "-MG", 0},
833 {"--print-multi-lib", "-print-multi-lib", 0},
834 {"--print-multi-directory", "-print-multi-directory", 0},
835 {"--print-prog-name", "-print-prog-name=", "aj"},
836 {"--profile", "-p", 0},
837 {"--profile-blocks", "-a", 0},
838 {"--quiet", "-q", 0},
839 {"--save-temps", "-save-temps", 0},
840 {"--shared", "-shared", 0},
841 {"--silent", "-q", 0},
842 {"--static", "-static", 0},
843 {"--symbolic", "-symbolic", 0},
844 {"--target", "-b", "a"},
845 {"--trace-includes", "-H", 0},
846 {"--traditional", "-traditional", 0},
847 {"--traditional-cpp", "-traditional-cpp", 0},
848 {"--trigraphs", "-trigraphs", 0},
849 {"--undefine-macro", "-U", "a"},
850 {"--use-version", "-V", "a"},
851 {"--user-dependencies", "-MM", 0},
852 {"--verbose", "-v", 0},
853 {"--version", "-dumpversion", 0},
854 {"--warn-", "-W", "*j"},
855 {"--write-dependencies", "-MD", 0},
856 {"--write-user-dependencies", "-MMD", 0},
857 {"--", "-f", "*j"}
860 /* Translate the options described by *ARGCP and *ARGVP.
861 Make a new vector and store it back in *ARGVP,
862 and store its length in *ARGVC. */
864 static void
865 translate_options (argcp, argvp)
866 int *argcp;
867 char ***argvp;
869 int i, j, k;
870 int argc = *argcp;
871 char **argv = *argvp;
872 char **newv = (char **) xmalloc ((argc + 2) * 2 * sizeof (char *));
873 int newindex = 0;
875 i = 0;
876 newv[newindex++] = argv[i++];
878 while (i < argc)
880 /* Translate -- options. */
881 if (argv[i][0] == '-' && argv[i][1] == '-')
883 /* Find a mapping that applies to this option. */
884 for (j = 0; j < sizeof (option_map) / sizeof (option_map[0]); j++)
886 int optlen = strlen (option_map[j].name);
887 int arglen = strlen (argv[i]);
888 int complen = arglen > optlen ? optlen : arglen;
889 char *arginfo = option_map[j].arg_info;
891 if (arginfo == 0)
892 arginfo = "";
894 if (!strncmp (argv[i], option_map[j].name, complen))
896 char *arg = 0;
898 if (arglen < optlen)
900 for (k = j + 1;
901 k < sizeof (option_map) / sizeof (option_map[0]);
902 k++)
903 if (strlen (option_map[k].name) >= arglen
904 && !strncmp (argv[i], option_map[k].name, arglen))
906 error ("Ambiguous abbreviation %s", argv[i]);
907 break;
910 if (k != sizeof (option_map) / sizeof (option_map[0]))
911 break;
914 if (arglen > optlen)
916 /* If the option has an argument, accept that. */
917 if (argv[i][optlen] == '=')
918 arg = argv[i] + optlen + 1;
920 /* If this mapping requires extra text at end of name,
921 accept that as "argument". */
922 else if (index (arginfo, '*') != 0)
923 arg = argv[i] + optlen;
925 /* Otherwise, extra text at end means mismatch.
926 Try other mappings. */
927 else
928 continue;
931 else if (index (arginfo, '*') != 0)
933 error ("Incomplete `%s' option", option_map[j].name);
934 break;
937 /* Handle arguments. */
938 if (index (arginfo, 'a') != 0)
940 if (arg == 0)
942 if (i + 1 == argc)
944 error ("Missing argument to `%s' option",
945 option_map[j].name);
946 break;
949 arg = argv[++i];
952 else if (index (arginfo, '*') != 0)
954 else if (index (arginfo, 'o') == 0)
956 if (arg != 0)
957 error ("Extraneous argument to `%s' option",
958 option_map[j].name);
959 arg = 0;
962 /* Store the translation as one argv elt or as two. */
963 if (arg != 0 && index (arginfo, 'j') != 0)
964 newv[newindex++] = concat (option_map[j].equivalent, arg);
965 else if (arg != 0)
967 newv[newindex++] = option_map[j].equivalent;
968 newv[newindex++] = arg;
970 else
971 newv[newindex++] = option_map[j].equivalent;
973 break;
976 i++;
979 /* Handle old-fashioned options--just copy them through,
980 with their arguments. */
981 else if (argv[i][0] == '-')
983 char *p = argv[i] + 1;
984 int c = *p;
985 int nskip = 1;
987 if (SWITCH_TAKES_ARG (c) > (p[1] != 0))
988 nskip += SWITCH_TAKES_ARG (c) - (p[1] != 0);
989 else if (WORD_SWITCH_TAKES_ARG (p))
990 nskip += WORD_SWITCH_TAKES_ARG (p);
991 else if ((c == 'B' || c == 'b' || c == 'V' || c == 'x')
992 && p[1] == 0)
993 nskip += 1;
994 else if (! strcmp (p, "Xlinker"))
995 nskip += 1;
997 /* Watch out for an option at the end of the command line that
998 is missing arguments, and avoid skipping past the end of the
999 command line. */
1000 if (nskip + i > argc)
1001 nskip = argc - i;
1003 while (nskip > 0)
1005 newv[newindex++] = argv[i++];
1006 nskip--;
1009 else
1010 /* Ordinary operands, or +e options. */
1011 newv[newindex++] = argv[i++];
1014 newv[newindex] = 0;
1016 *argvp = newv;
1017 *argcp = newindex;
1020 char *
1021 my_strerror(e)
1022 int e;
1025 #ifdef HAVE_STRERROR
1026 return strerror(e);
1028 #else
1030 static char buffer[30];
1031 if (!e)
1032 return "cannot access";
1034 if (e > 0 && e < sys_nerr)
1035 return sys_errlist[e];
1037 sprintf (buffer, "Unknown error %d", e);
1038 return buffer;
1039 #endif
1042 /* Read compilation specs from a file named FILENAME,
1043 replacing the default ones.
1045 A suffix which starts with `*' is a definition for
1046 one of the machine-specific sub-specs. The "suffix" should be
1047 *asm, *cc1, *cpp, *link, *startfile, *signed_char, etc.
1048 The corresponding spec is stored in asm_spec, etc.,
1049 rather than in the `compilers' vector.
1051 Anything invalid in the file is a fatal error. */
1053 static void
1054 read_specs (filename)
1055 char *filename;
1057 int desc;
1058 int readlen;
1059 struct stat statbuf;
1060 char *buffer;
1061 register char *p;
1063 if (verbose_flag)
1064 fprintf (stderr, "Reading specs from %s\n", filename);
1066 /* Open and stat the file. */
1067 desc = open (filename, O_RDONLY, 0);
1068 if (desc < 0)
1069 pfatal_with_name (filename);
1070 if (stat (filename, &statbuf) < 0)
1071 pfatal_with_name (filename);
1073 /* Read contents of file into BUFFER. */
1074 buffer = xmalloc ((unsigned) statbuf.st_size + 1);
1075 readlen = read (desc, buffer, (unsigned) statbuf.st_size);
1076 if (readlen < 0)
1077 pfatal_with_name (filename);
1078 buffer[readlen] = 0;
1079 close (desc);
1081 /* Scan BUFFER for specs, putting them in the vector. */
1082 p = buffer;
1083 while (1)
1085 char *suffix;
1086 char *spec;
1087 char *in, *out, *p1, *p2;
1089 /* Advance P in BUFFER to the next nonblank nocomment line. */
1090 p = skip_whitespace (p);
1091 if (*p == 0)
1092 break;
1094 /* Find the colon that should end the suffix. */
1095 p1 = p;
1096 while (*p1 && *p1 != ':' && *p1 != '\n') p1++;
1097 /* The colon shouldn't be missing. */
1098 if (*p1 != ':')
1099 fatal ("specs file malformed after %d characters", p1 - buffer);
1100 /* Skip back over trailing whitespace. */
1101 p2 = p1;
1102 while (p2 > buffer && (p2[-1] == ' ' || p2[-1] == '\t')) p2--;
1103 /* Copy the suffix to a string. */
1104 suffix = save_string (p, p2 - p);
1105 /* Find the next line. */
1106 p = skip_whitespace (p1 + 1);
1107 if (p[1] == 0)
1108 fatal ("specs file malformed after %d characters", p - buffer);
1109 p1 = p;
1110 /* Find next blank line. */
1111 while (*p1 && !(*p1 == '\n' && p1[1] == '\n')) p1++;
1112 /* Specs end at the blank line and do not include the newline. */
1113 spec = save_string (p, p1 - p);
1114 p = p1;
1116 /* Delete backslash-newline sequences from the spec. */
1117 in = spec;
1118 out = spec;
1119 while (*in != 0)
1121 if (in[0] == '\\' && in[1] == '\n')
1122 in += 2;
1123 else if (in[0] == '#')
1125 while (*in && *in != '\n') in++;
1127 else
1128 *out++ = *in++;
1130 *out = 0;
1132 if (suffix[0] == '*')
1134 if (! strcmp (suffix, "*link_command"))
1135 link_command_spec = spec;
1136 else
1137 set_spec (suffix + 1, spec);
1139 else
1141 /* Add this pair to the vector. */
1142 compilers
1143 = ((struct compiler *)
1144 xrealloc (compilers, (n_compilers + 2) * sizeof (struct compiler)));
1145 compilers[n_compilers].suffix = suffix;
1146 bzero ((char *) compilers[n_compilers].spec,
1147 sizeof compilers[n_compilers].spec);
1148 compilers[n_compilers].spec[0] = spec;
1149 n_compilers++;
1150 bzero ((char *) &compilers[n_compilers],
1151 sizeof compilers[n_compilers]);
1154 if (*suffix == 0)
1155 link_command_spec = spec;
1158 if (link_command_spec == 0)
1159 fatal ("spec file has no spec for linking");
1162 static char *
1163 skip_whitespace (p)
1164 char *p;
1166 while (1)
1168 /* A fully-blank line is a delimiter in the SPEC file and shouldn't
1169 be considered whitespace. */
1170 if (p[0] == '\n' && p[1] == '\n' && p[2] == '\n')
1171 return p + 1;
1172 else if (*p == '\n' || *p == ' ' || *p == '\t')
1173 p++;
1174 else if (*p == '#')
1176 while (*p != '\n') p++;
1177 p++;
1179 else
1180 break;
1183 return p;
1186 /* Structure to keep track of the specs that have been defined so far. These
1187 are accessed using %(specname) or %[specname] in a compiler or link spec. */
1189 struct spec_list
1191 char *name; /* Name of the spec. */
1192 char *spec; /* The spec itself. */
1193 struct spec_list *next; /* Next spec in linked list. */
1196 /* List of specs that have been defined so far. */
1198 static struct spec_list *specs = (struct spec_list *) 0;
1200 /* Change the value of spec NAME to SPEC. If SPEC is empty, then the spec is
1201 removed; If the spec starts with a + then SPEC is added to the end of the
1202 current spec. */
1204 static void
1205 set_spec (name, spec)
1206 char *name;
1207 char *spec;
1209 struct spec_list *sl;
1210 char *old_spec;
1212 /* See if the spec already exists */
1213 for (sl = specs; sl; sl = sl->next)
1214 if (strcmp (sl->name, name) == 0)
1215 break;
1217 if (!sl)
1219 /* Not found - make it */
1220 sl = (struct spec_list *) xmalloc (sizeof (struct spec_list));
1221 sl->name = save_string (name, strlen (name));
1222 sl->spec = save_string ("", 0);
1223 sl->next = specs;
1224 specs = sl;
1227 old_spec = sl->spec;
1228 if (name && spec[0] == '+' && isspace (spec[1]))
1229 sl->spec = concat (old_spec, spec + 1);
1230 else
1231 sl->spec = save_string (spec, strlen (spec));
1233 if (! strcmp (name, "asm"))
1234 asm_spec = sl->spec;
1235 else if (! strcmp (name, "asm_final"))
1236 asm_final_spec = sl->spec;
1237 else if (! strcmp (name, "cc1"))
1238 cc1_spec = sl->spec;
1239 else if (! strcmp (name, "cc1plus"))
1240 cc1plus_spec = sl->spec;
1241 else if (! strcmp (name, "cpp"))
1242 cpp_spec = sl->spec;
1243 else if (! strcmp (name, "endfile"))
1244 endfile_spec = sl->spec;
1245 else if (! strcmp (name, "lib"))
1246 lib_spec = sl->spec;
1247 else if (! strcmp (name, "libgcc"))
1248 libgcc_spec = sl->spec;
1249 else if (! strcmp (name, "link"))
1250 link_spec = sl->spec;
1251 else if (! strcmp (name, "predefines"))
1252 cpp_predefines = sl->spec;
1253 else if (! strcmp (name, "signed_char"))
1254 signed_char_spec = sl->spec;
1255 else if (! strcmp (name, "startfile"))
1256 startfile_spec = sl->spec;
1257 else if (! strcmp (name, "switches_need_spaces"))
1258 switches_need_spaces = sl->spec;
1259 else if (! strcmp (name, "cross_compile"))
1260 cross_compile = atoi (sl->spec);
1261 else if (! strcmp (name, "multilib"))
1262 multilib_select = sl->spec;
1263 #ifdef EXTRA_SPECS
1264 else
1266 int i;
1267 for (i = 0; i < sizeof (extra_specs) / sizeof (extra_specs[0]); i++)
1269 if (! strcmp (name, extra_specs[i].name))
1271 extra_specs[i].spec = sl->spec;
1272 break;
1276 #endif
1278 /* Free the old spec */
1279 if (old_spec)
1280 free (old_spec);
1283 /* Accumulate a command (program name and args), and run it. */
1285 /* Vector of pointers to arguments in the current line of specifications. */
1287 static char **argbuf;
1289 /* Number of elements allocated in argbuf. */
1291 static int argbuf_length;
1293 /* Number of elements in argbuf currently in use (containing args). */
1295 static int argbuf_index;
1297 /* This is the list of suffixes and codes (%g/%u/%U) and the associated
1298 temp file. Used only if MKTEMP_EACH_FILE. */
1300 static struct temp_name {
1301 char *suffix; /* suffix associated with the code. */
1302 int length; /* strlen (suffix). */
1303 int unique; /* Indicates whether %g or %u/%U was used. */
1304 char *filename; /* associated filename. */
1305 int filename_length; /* strlen (filename). */
1306 struct temp_name *next;
1307 } *temp_names;
1309 /* Number of commands executed so far. */
1311 static int execution_count;
1313 /* Number of commands that exited with a signal. */
1315 static int signal_count;
1317 /* Name with which this program was invoked. */
1319 static char *programname;
1321 /* Structures to keep track of prefixes to try when looking for files. */
1323 struct prefix_list
1325 char *prefix; /* String to prepend to the path. */
1326 struct prefix_list *next; /* Next in linked list. */
1327 int require_machine_suffix; /* Don't use without machine_suffix. */
1328 /* 2 means try both machine_suffix and just_machine_suffix. */
1329 int *used_flag_ptr; /* 1 if a file was found with this prefix. */
1332 struct path_prefix
1334 struct prefix_list *plist; /* List of prefixes to try */
1335 int max_len; /* Max length of a prefix in PLIST */
1336 char *name; /* Name of this list (used in config stuff) */
1339 /* List of prefixes to try when looking for executables. */
1341 static struct path_prefix exec_prefixes = { 0, 0, "exec" };
1343 /* List of prefixes to try when looking for startup (crt0) files. */
1345 static struct path_prefix startfile_prefixes = { 0, 0, "startfile" };
1347 /* List of prefixes to try when looking for include files. */
1349 static struct path_prefix include_prefixes = { 0, 0, "include" };
1351 /* Suffix to attach to directories searched for commands.
1352 This looks like `MACHINE/VERSION/'. */
1354 static char *machine_suffix = 0;
1356 /* Suffix to attach to directories searched for commands.
1357 This is just `MACHINE/'. */
1359 static char *just_machine_suffix = 0;
1361 /* Adjusted value of GCC_EXEC_PREFIX envvar. */
1363 static char *gcc_exec_prefix;
1365 /* Default prefixes to attach to command names. */
1367 #ifdef CROSS_COMPILE /* Don't use these prefixes for a cross compiler. */
1368 #undef MD_EXEC_PREFIX
1369 #undef MD_STARTFILE_PREFIX
1370 #undef MD_STARTFILE_PREFIX_1
1371 #endif
1373 #ifndef STANDARD_EXEC_PREFIX
1374 #define STANDARD_EXEC_PREFIX "/usr/local/lib/gcc-lib/"
1375 #endif /* !defined STANDARD_EXEC_PREFIX */
1377 static char *standard_exec_prefix = STANDARD_EXEC_PREFIX;
1378 static char *standard_exec_prefix_1 = "/usr/lib/gcc/";
1379 #ifdef MD_EXEC_PREFIX
1380 static char *md_exec_prefix = MD_EXEC_PREFIX;
1381 #endif
1383 #ifndef STANDARD_STARTFILE_PREFIX
1384 #define STANDARD_STARTFILE_PREFIX "/usr/local/lib/"
1385 #endif /* !defined STANDARD_STARTFILE_PREFIX */
1387 #ifdef MD_STARTFILE_PREFIX
1388 static char *md_startfile_prefix = MD_STARTFILE_PREFIX;
1389 #endif
1390 #ifdef MD_STARTFILE_PREFIX_1
1391 static char *md_startfile_prefix_1 = MD_STARTFILE_PREFIX_1;
1392 #endif
1393 static char *standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
1394 static char *standard_startfile_prefix_1 = "/lib/";
1395 static char *standard_startfile_prefix_2 = "/usr/lib/";
1397 #ifndef TOOLDIR_BASE_PREFIX
1398 #define TOOLDIR_BASE_PREFIX "/usr/local/"
1399 #endif
1400 static char *tooldir_base_prefix = TOOLDIR_BASE_PREFIX;
1401 static char *tooldir_prefix;
1403 /* Subdirectory to use for locating libraries. Set by
1404 set_multilib_dir based on the compilation options. */
1406 static char *multilib_dir;
1408 /* Clear out the vector of arguments (after a command is executed). */
1410 static void
1411 clear_args ()
1413 argbuf_index = 0;
1416 /* Add one argument to the vector at the end.
1417 This is done when a space is seen or at the end of the line.
1418 If DELETE_ALWAYS is nonzero, the arg is a filename
1419 and the file should be deleted eventually.
1420 If DELETE_FAILURE is nonzero, the arg is a filename
1421 and the file should be deleted if this compilation fails. */
1423 static void
1424 store_arg (arg, delete_always, delete_failure)
1425 char *arg;
1426 int delete_always, delete_failure;
1428 if (argbuf_index + 1 == argbuf_length)
1430 argbuf = (char **) xrealloc (argbuf, (argbuf_length *= 2) * sizeof (char *));
1433 argbuf[argbuf_index++] = arg;
1434 argbuf[argbuf_index] = 0;
1436 if (delete_always || delete_failure)
1437 record_temp_file (arg, delete_always, delete_failure);
1440 /* Record the names of temporary files we tell compilers to write,
1441 and delete them at the end of the run. */
1443 /* This is the common prefix we use to make temp file names.
1444 It is chosen once for each run of this program.
1445 It is substituted into a spec by %g.
1446 Thus, all temp file names contain this prefix.
1447 In practice, all temp file names start with this prefix.
1449 This prefix comes from the envvar TMPDIR if it is defined;
1450 otherwise, from the P_tmpdir macro if that is defined;
1451 otherwise, in /usr/tmp or /tmp. */
1453 static char *temp_filename;
1455 /* Length of the prefix. */
1457 static int temp_filename_length;
1459 /* Define the list of temporary files to delete. */
1461 struct temp_file
1463 char *name;
1464 struct temp_file *next;
1467 /* Queue of files to delete on success or failure of compilation. */
1468 static struct temp_file *always_delete_queue;
1469 /* Queue of files to delete on failure of compilation. */
1470 static struct temp_file *failure_delete_queue;
1472 /* Record FILENAME as a file to be deleted automatically.
1473 ALWAYS_DELETE nonzero means delete it if all compilation succeeds;
1474 otherwise delete it in any case.
1475 FAIL_DELETE nonzero means delete it if a compilation step fails;
1476 otherwise delete it in any case. */
1478 static void
1479 record_temp_file (filename, always_delete, fail_delete)
1480 char *filename;
1481 int always_delete;
1482 int fail_delete;
1484 register char *name;
1485 name = xmalloc (strlen (filename) + 1);
1486 strcpy (name, filename);
1488 if (always_delete)
1490 register struct temp_file *temp;
1491 for (temp = always_delete_queue; temp; temp = temp->next)
1492 if (! strcmp (name, temp->name))
1493 goto already1;
1494 temp = (struct temp_file *) xmalloc (sizeof (struct temp_file));
1495 temp->next = always_delete_queue;
1496 temp->name = name;
1497 always_delete_queue = temp;
1498 already1:;
1501 if (fail_delete)
1503 register struct temp_file *temp;
1504 for (temp = failure_delete_queue; temp; temp = temp->next)
1505 if (! strcmp (name, temp->name))
1506 goto already2;
1507 temp = (struct temp_file *) xmalloc (sizeof (struct temp_file));
1508 temp->next = failure_delete_queue;
1509 temp->name = name;
1510 failure_delete_queue = temp;
1511 already2:;
1515 /* Delete all the temporary files whose names we previously recorded. */
1517 static void
1518 delete_if_ordinary (name)
1519 char *name;
1521 struct stat st;
1522 #ifdef DEBUG
1523 int i, c;
1525 printf ("Delete %s? (y or n) ", name);
1526 fflush (stdout);
1527 i = getchar ();
1528 if (i != '\n')
1529 while ((c = getchar ()) != '\n' && c != EOF) ;
1530 if (i == 'y' || i == 'Y')
1531 #endif /* DEBUG */
1532 if (stat (name, &st) >= 0 && S_ISREG (st.st_mode))
1533 if (unlink (name) < 0)
1534 if (verbose_flag)
1535 perror_with_name (name);
1538 static void
1539 delete_temp_files ()
1541 register struct temp_file *temp;
1543 for (temp = always_delete_queue; temp; temp = temp->next)
1544 delete_if_ordinary (temp->name);
1545 always_delete_queue = 0;
1548 /* Delete all the files to be deleted on error. */
1550 static void
1551 delete_failure_queue ()
1553 register struct temp_file *temp;
1555 for (temp = failure_delete_queue; temp; temp = temp->next)
1556 delete_if_ordinary (temp->name);
1559 static void
1560 clear_failure_queue ()
1562 failure_delete_queue = 0;
1565 /* Compute a string to use as the base of all temporary file names.
1566 It is substituted for %g. */
1568 static char *
1569 choose_temp_base_try (try, base)
1570 char *try;
1571 char *base;
1573 char *rv;
1574 if (base)
1575 rv = base;
1576 else if (try == (char *)0)
1577 rv = 0;
1578 else if (access (try, R_OK | W_OK) != 0)
1579 rv = 0;
1580 else
1581 rv = try;
1582 return rv;
1585 static void
1586 choose_temp_base ()
1588 char *base = 0;
1589 int len;
1591 base = choose_temp_base_try (getenv ("TMPDIR"), base);
1592 base = choose_temp_base_try (getenv ("TMP"), base);
1593 base = choose_temp_base_try (getenv ("TEMP"), base);
1595 #ifdef P_tmpdir
1596 base = choose_temp_base_try (P_tmpdir, base);
1597 #endif
1599 base = choose_temp_base_try (concat4 (dir_separator_str, "usr",
1600 dir_separator_str, "tmp"),
1601 base);
1602 base = choose_temp_base_try (concat (dir_separator_str, "tmp"), base);
1604 /* If all else fails, use the current directory! */
1605 if (base == (char *)0) base = concat(".", dir_separator_str);
1607 len = strlen (base);
1608 temp_filename = xmalloc (len + strlen (concat (dir_separator_str,
1609 "ccXXXXXX")) + 1);
1610 strcpy (temp_filename, base);
1611 if (len > 0 && temp_filename[len-1] != '/'
1612 && temp_filename[len-1] != DIR_SEPARATOR)
1613 temp_filename[len++] = DIR_SEPARATOR;
1614 strcpy (temp_filename + len, "ccXXXXXX");
1616 mktemp (temp_filename);
1617 temp_filename_length = strlen (temp_filename);
1618 if (temp_filename_length == 0)
1619 abort ();
1623 /* Routine to add variables to the environment. We do this to pass
1624 the pathname of the gcc driver, and the directories search to the
1625 collect2 program, which is being run as ld. This way, we can be
1626 sure of executing the right compiler when collect2 wants to build
1627 constructors and destructors. Since the environment variables we
1628 use come from an obstack, we don't have to worry about allocating
1629 space for them. */
1631 #ifndef HAVE_PUTENV
1633 void
1634 putenv (str)
1635 char *str;
1637 #ifndef VMS /* nor about VMS */
1639 extern char **environ;
1640 char **old_environ = environ;
1641 char **envp;
1642 int num_envs = 0;
1643 int name_len = 1;
1644 int str_len = strlen (str);
1645 char *p = str;
1646 int ch;
1648 while ((ch = *p++) != '\0' && ch != '=')
1649 name_len++;
1651 if (!ch)
1652 abort ();
1654 /* Search for replacing an existing environment variable, and
1655 count the number of total environment variables. */
1656 for (envp = old_environ; *envp; envp++)
1658 num_envs++;
1659 if (!strncmp (str, *envp, name_len))
1661 *envp = str;
1662 return;
1666 /* Add a new environment variable */
1667 environ = (char **) xmalloc (sizeof (char *) * (num_envs+2));
1668 *environ = str;
1669 bcopy ((char *) old_environ, (char *) (environ + 1),
1670 sizeof (char *) * (num_envs+1));
1672 #endif /* VMS */
1675 #endif /* HAVE_PUTENV */
1678 /* Build a list of search directories from PATHS.
1679 PREFIX is a string to prepend to the list.
1680 If CHECK_DIR_P is non-zero we ensure the directory exists.
1681 This is used mostly by putenv_from_prefixes so we use `collect_obstack'.
1682 It is also used by the --print-search-dirs flag. */
1684 static char *
1685 build_search_list (paths, prefix, check_dir_p)
1686 struct path_prefix *paths;
1687 char *prefix;
1688 int check_dir_p;
1690 int suffix_len = (machine_suffix) ? strlen (machine_suffix) : 0;
1691 int just_suffix_len
1692 = (just_machine_suffix) ? strlen (just_machine_suffix) : 0;
1693 int first_time = TRUE;
1694 struct prefix_list *pprefix;
1696 obstack_grow (&collect_obstack, prefix, strlen (prefix));
1698 for (pprefix = paths->plist; pprefix != 0; pprefix = pprefix->next)
1700 int len = strlen (pprefix->prefix);
1702 if (machine_suffix
1703 && (!check_dir_p
1704 || is_directory (pprefix->prefix, machine_suffix, 0)))
1706 if (!first_time)
1707 obstack_1grow (&collect_obstack, PATH_SEPARATOR);
1709 first_time = FALSE;
1710 obstack_grow (&collect_obstack, pprefix->prefix, len);
1711 obstack_grow (&collect_obstack, machine_suffix, suffix_len);
1714 if (just_machine_suffix
1715 && pprefix->require_machine_suffix == 2
1716 && (!check_dir_p
1717 || is_directory (pprefix->prefix, just_machine_suffix, 0)))
1719 if (!first_time)
1720 obstack_1grow (&collect_obstack, PATH_SEPARATOR);
1722 first_time = FALSE;
1723 obstack_grow (&collect_obstack, pprefix->prefix, len);
1724 obstack_grow (&collect_obstack, just_machine_suffix,
1725 just_suffix_len);
1728 if (!pprefix->require_machine_suffix)
1730 if (!first_time)
1731 obstack_1grow (&collect_obstack, PATH_SEPARATOR);
1733 first_time = FALSE;
1734 obstack_grow (&collect_obstack, pprefix->prefix, len);
1737 obstack_1grow (&collect_obstack, '\0');
1738 return obstack_finish (&collect_obstack);
1741 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables for collect. */
1743 static void
1744 putenv_from_prefixes (paths, env_var)
1745 struct path_prefix *paths;
1746 char *env_var;
1748 putenv (build_search_list (paths, env_var, 1));
1751 /* Search for NAME using the prefix list PREFIXES. MODE is passed to
1752 access to check permissions.
1753 Return 0 if not found, otherwise return its name, allocated with malloc. */
1755 static char *
1756 find_a_file (pprefix, name, mode)
1757 struct path_prefix *pprefix;
1758 char *name;
1759 int mode;
1761 char *temp;
1762 char *file_suffix = ((mode & X_OK) != 0 ? EXECUTABLE_SUFFIX : "");
1763 struct prefix_list *pl;
1764 int len = pprefix->max_len + strlen (name) + strlen (file_suffix) + 1;
1766 if (machine_suffix)
1767 len += strlen (machine_suffix);
1769 temp = xmalloc (len);
1771 /* Determine the filename to execute (special case for absolute paths). */
1773 if (*name == '/' || *name == DIR_SEPARATOR)
1775 if (access (name, mode))
1777 strcpy (temp, name);
1778 return temp;
1781 else
1782 for (pl = pprefix->plist; pl; pl = pl->next)
1784 if (machine_suffix)
1786 /* Some systems have a suffix for executable files.
1787 So try appending that first. */
1788 if (file_suffix[0] != 0)
1790 strcpy (temp, pl->prefix);
1791 strcat (temp, machine_suffix);
1792 strcat (temp, name);
1793 strcat (temp, file_suffix);
1794 if (access (temp, mode) == 0)
1796 if (pl->used_flag_ptr != 0)
1797 *pl->used_flag_ptr = 1;
1798 return temp;
1802 /* Now try just the name. */
1803 strcpy (temp, pl->prefix);
1804 strcat (temp, machine_suffix);
1805 strcat (temp, name);
1806 if (access (temp, mode) == 0)
1808 if (pl->used_flag_ptr != 0)
1809 *pl->used_flag_ptr = 1;
1810 return temp;
1814 /* Certain prefixes are tried with just the machine type,
1815 not the version. This is used for finding as, ld, etc. */
1816 if (just_machine_suffix && pl->require_machine_suffix == 2)
1818 /* Some systems have a suffix for executable files.
1819 So try appending that first. */
1820 if (file_suffix[0] != 0)
1822 strcpy (temp, pl->prefix);
1823 strcat (temp, just_machine_suffix);
1824 strcat (temp, name);
1825 strcat (temp, file_suffix);
1826 if (access (temp, mode) == 0)
1828 if (pl->used_flag_ptr != 0)
1829 *pl->used_flag_ptr = 1;
1830 return temp;
1834 strcpy (temp, pl->prefix);
1835 strcat (temp, just_machine_suffix);
1836 strcat (temp, name);
1837 if (access (temp, mode) == 0)
1839 if (pl->used_flag_ptr != 0)
1840 *pl->used_flag_ptr = 1;
1841 return temp;
1845 /* Certain prefixes can't be used without the machine suffix
1846 when the machine or version is explicitly specified. */
1847 if (!pl->require_machine_suffix)
1849 /* Some systems have a suffix for executable files.
1850 So try appending that first. */
1851 if (file_suffix[0] != 0)
1853 strcpy (temp, pl->prefix);
1854 strcat (temp, name);
1855 strcat (temp, file_suffix);
1856 if (access (temp, mode) == 0)
1858 if (pl->used_flag_ptr != 0)
1859 *pl->used_flag_ptr = 1;
1860 return temp;
1864 strcpy (temp, pl->prefix);
1865 strcat (temp, name);
1866 if (access (temp, mode) == 0)
1868 if (pl->used_flag_ptr != 0)
1869 *pl->used_flag_ptr = 1;
1870 return temp;
1875 free (temp);
1876 return 0;
1879 /* Add an entry for PREFIX in PLIST. If FIRST is set, it goes
1880 at the start of the list, otherwise it goes at the end.
1882 If WARN is nonzero, we will warn if no file is found
1883 through this prefix. WARN should point to an int
1884 which will be set to 1 if this entry is used.
1886 REQUIRE_MACHINE_SUFFIX is 1 if this prefix can't be used without
1887 the complete value of machine_suffix.
1888 2 means try both machine_suffix and just_machine_suffix. */
1890 static void
1891 add_prefix (pprefix, prefix, first, require_machine_suffix, warn)
1892 struct path_prefix *pprefix;
1893 char *prefix;
1894 int first;
1895 int require_machine_suffix;
1896 int *warn;
1898 struct prefix_list *pl, **prev;
1899 int len;
1901 if (!first && pprefix->plist)
1903 for (pl = pprefix->plist; pl->next; pl = pl->next)
1905 prev = &pl->next;
1907 else
1908 prev = &pprefix->plist;
1910 /* Keep track of the longest prefix */
1912 len = strlen (prefix);
1913 if (len > pprefix->max_len)
1914 pprefix->max_len = len;
1916 pl = (struct prefix_list *) xmalloc (sizeof (struct prefix_list));
1917 pl->prefix = save_string (prefix, len);
1918 pl->require_machine_suffix = require_machine_suffix;
1919 pl->used_flag_ptr = warn;
1920 if (warn)
1921 *warn = 0;
1923 if (*prev)
1924 pl->next = *prev;
1925 else
1926 pl->next = (struct prefix_list *) 0;
1927 *prev = pl;
1930 /* Print warnings for any prefixes in the list PPREFIX that were not used. */
1932 static void
1933 unused_prefix_warnings (pprefix)
1934 struct path_prefix *pprefix;
1936 struct prefix_list *pl = pprefix->plist;
1938 while (pl)
1940 if (pl->used_flag_ptr != 0 && !*pl->used_flag_ptr)
1942 if (pl->require_machine_suffix && machine_suffix)
1943 error ("file path prefix `%s%s' never used", pl->prefix,
1944 machine_suffix);
1945 else
1946 error ("file path prefix `%s' never used", pl->prefix);
1948 /* Prevent duplicate warnings. */
1949 *pl->used_flag_ptr = 1;
1951 pl = pl->next;
1955 /* Get rid of all prefixes built up so far in *PLISTP. */
1957 static void
1958 free_path_prefix (pprefix)
1959 struct path_prefix *pprefix;
1961 struct prefix_list *pl = pprefix->plist;
1962 struct prefix_list *temp;
1964 while (pl)
1966 temp = pl;
1967 pl = pl->next;
1968 free (temp->prefix);
1969 free ((char *) temp);
1971 pprefix->plist = (struct prefix_list *) 0;
1974 /* stdin file number. */
1975 #define STDIN_FILE_NO 0
1977 /* stdout file number. */
1978 #define STDOUT_FILE_NO 1
1980 /* value of `pipe': port index for reading. */
1981 #define READ_PORT 0
1983 /* value of `pipe': port index for writing. */
1984 #define WRITE_PORT 1
1986 /* Pipe waiting from last process, to be used as input for the next one.
1987 Value is STDIN_FILE_NO if no pipe is waiting
1988 (i.e. the next command is the first of a group). */
1990 static int last_pipe_input;
1992 /* Fork one piped subcommand. FUNC is the system call to use
1993 (either execv or execvp). ARGV is the arg vector to use.
1994 NOT_LAST is nonzero if this is not the last subcommand
1995 (i.e. its output should be piped to the next one.) */
1997 #ifdef __MSDOS__
1999 #include <process.h>
2000 static int
2001 pexecute (search_flag, program, argv, not_last)
2002 int search_flag;
2003 char *program;
2004 char *argv[];
2005 int not_last;
2007 #ifdef __GO32__
2008 int i = (search_flag ? spawnv : spawnvp) (1, program, argv);
2009 #else
2010 char *scmd, *rf;
2011 FILE *argfile;
2012 int i, el = search_flag ? 0 : 4;
2014 scmd = (char *)malloc (strlen (program) + strlen (temp_filename) + 6 + el);
2015 rf = scmd + strlen(program) + 2 + el;
2016 sprintf (scmd, "%s%s @%s.gp", program,
2017 (search_flag ? "" : ".exe"), temp_filename);
2018 argfile = fopen (rf, "w");
2019 if (argfile == 0)
2020 pfatal_with_name (rf);
2022 for (i=1; argv[i]; i++)
2024 char *cp;
2025 for (cp = argv[i]; *cp; cp++)
2027 if (*cp == '"' || *cp == '\'' || *cp == '\\' || isspace (*cp))
2028 fputc ('\\', argfile);
2029 fputc (*cp, argfile);
2031 fputc ('\n', argfile);
2033 fclose (argfile);
2035 i = system (scmd);
2037 remove (rf);
2038 #endif
2040 if (i == -1)
2042 perror_exec (program);
2043 return MIN_FATAL_STATUS << 8;
2045 return i << 8;
2048 #endif
2050 #if !defined(__MSDOS__) && !defined(OS2) && !defined(_WIN32)
2052 static int
2053 pexecute (search_flag, program, argv, not_last)
2054 int search_flag;
2055 char *program;
2056 char *argv[];
2057 int not_last;
2059 int (*func)() = (search_flag ? execv : execvp);
2060 int pid;
2061 int pdes[2];
2062 int input_desc = last_pipe_input;
2063 int output_desc = STDOUT_FILE_NO;
2064 int retries, sleep_interval;
2066 /* If this isn't the last process, make a pipe for its output,
2067 and record it as waiting to be the input to the next process. */
2069 if (not_last)
2071 if (pipe (pdes) < 0)
2072 pfatal_with_name ("pipe");
2073 output_desc = pdes[WRITE_PORT];
2074 last_pipe_input = pdes[READ_PORT];
2076 else
2077 last_pipe_input = STDIN_FILE_NO;
2079 /* Fork a subprocess; wait and retry if it fails. */
2080 sleep_interval = 1;
2081 for (retries = 0; retries < 4; retries++)
2083 pid = vfork ();
2084 if (pid >= 0)
2085 break;
2086 sleep (sleep_interval);
2087 sleep_interval *= 2;
2090 switch (pid)
2092 case -1:
2093 #ifdef vfork
2094 pfatal_with_name ("fork");
2095 #else
2096 pfatal_with_name ("vfork");
2097 #endif
2098 /* NOTREACHED */
2099 return 0;
2101 case 0: /* child */
2102 /* Move the input and output pipes into place, if nec. */
2103 if (input_desc != STDIN_FILE_NO)
2105 close (STDIN_FILE_NO);
2106 dup (input_desc);
2107 close (input_desc);
2109 if (output_desc != STDOUT_FILE_NO)
2111 close (STDOUT_FILE_NO);
2112 dup (output_desc);
2113 close (output_desc);
2116 /* Close the parent's descs that aren't wanted here. */
2117 if (last_pipe_input != STDIN_FILE_NO)
2118 close (last_pipe_input);
2120 /* Exec the program. */
2121 (*func) (program, argv);
2122 perror_exec (program);
2123 exit (-1);
2124 /* NOTREACHED */
2125 return 0;
2127 default:
2128 /* In the parent, after forking.
2129 Close the descriptors that we made for this child. */
2130 if (input_desc != STDIN_FILE_NO)
2131 close (input_desc);
2132 if (output_desc != STDOUT_FILE_NO)
2133 close (output_desc);
2135 /* Return child's process number. */
2136 return pid;
2140 #endif /* not __MSDOS__ and not OS2 and not _WIN32 */
2142 #if defined(OS2)
2144 static int
2145 pexecute (search_flag, program, argv, not_last)
2146 int search_flag;
2147 char *program;
2148 char *argv[];
2149 int not_last;
2151 return (search_flag ? spawnv : spawnvp) (1, program, argv);
2153 #endif /* OS2 */
2155 #if defined(_WIN32)
2157 static int
2158 pexecute (search_flag, program, argv, not_last)
2159 int search_flag;
2160 char *program;
2161 char *argv[];
2162 int not_last;
2164 return (search_flag ? __spawnv : __spawnvp) (1, program, argv);
2166 #endif /* _WIN32 */
2169 /* Execute the command specified by the arguments on the current line of spec.
2170 When using pipes, this includes several piped-together commands
2171 with `|' between them.
2173 Return 0 if successful, -1 if failed. */
2175 static int
2176 execute ()
2178 int i;
2179 int n_commands; /* # of command. */
2180 char *string;
2181 struct command
2183 char *prog; /* program name. */
2184 char **argv; /* vector of args. */
2185 int pid; /* pid of process for this command. */
2188 struct command *commands; /* each command buffer with above info. */
2190 /* Count # of piped commands. */
2191 for (n_commands = 1, i = 0; i < argbuf_index; i++)
2192 if (strcmp (argbuf[i], "|") == 0)
2193 n_commands++;
2195 /* Get storage for each command. */
2196 commands
2197 = (struct command *) alloca (n_commands * sizeof (struct command));
2199 /* Split argbuf into its separate piped processes,
2200 and record info about each one.
2201 Also search for the programs that are to be run. */
2203 commands[0].prog = argbuf[0]; /* first command. */
2204 commands[0].argv = &argbuf[0];
2205 string = find_a_file (&exec_prefixes, commands[0].prog, X_OK);
2206 if (string)
2207 commands[0].argv[0] = string;
2209 for (n_commands = 1, i = 0; i < argbuf_index; i++)
2210 if (strcmp (argbuf[i], "|") == 0)
2211 { /* each command. */
2212 #ifdef __MSDOS__
2213 fatal ("-pipe not supported under MS-DOS");
2214 #endif
2215 argbuf[i] = 0; /* termination of command args. */
2216 commands[n_commands].prog = argbuf[i + 1];
2217 commands[n_commands].argv = &argbuf[i + 1];
2218 string = find_a_file (&exec_prefixes, commands[n_commands].prog, X_OK);
2219 if (string)
2220 commands[n_commands].argv[0] = string;
2221 n_commands++;
2224 argbuf[argbuf_index] = 0;
2226 /* If -v, print what we are about to do, and maybe query. */
2228 if (verbose_flag)
2230 /* Print each piped command as a separate line. */
2231 for (i = 0; i < n_commands ; i++)
2233 char **j;
2235 for (j = commands[i].argv; *j; j++)
2236 fprintf (stderr, " %s", *j);
2238 /* Print a pipe symbol after all but the last command. */
2239 if (i + 1 != n_commands)
2240 fprintf (stderr, " |");
2241 fprintf (stderr, "\n");
2243 fflush (stderr);
2244 #ifdef DEBUG
2245 fprintf (stderr, "\nGo ahead? (y or n) ");
2246 fflush (stderr);
2247 i = getchar ();
2248 if (i != '\n')
2249 while (getchar () != '\n') ;
2250 if (i != 'y' && i != 'Y')
2251 return 0;
2252 #endif /* DEBUG */
2255 /* Run each piped subprocess. */
2257 last_pipe_input = STDIN_FILE_NO;
2258 for (i = 0; i < n_commands; i++)
2260 char *string = commands[i].argv[0];
2262 commands[i].pid = pexecute (string != commands[i].prog,
2263 string, commands[i].argv,
2264 i + 1 < n_commands);
2266 if (string != commands[i].prog)
2267 free (string);
2270 execution_count++;
2272 /* Wait for all the subprocesses to finish.
2273 We don't care what order they finish in;
2274 we know that N_COMMANDS waits will get them all.
2275 Ignore subprocesses that we don't know about,
2276 since they can be spawned by the process that exec'ed us. */
2279 int ret_code = 0;
2281 for (i = 0; i < n_commands; )
2283 int j;
2284 int status;
2285 int pid;
2287 #ifdef __MSDOS__
2288 status = pid = commands[i].pid;
2289 #else
2290 #ifdef _WIN32
2291 pid = cwait (&status, commands[i].pid, WAIT_CHILD);
2292 #else
2293 pid = wait (&status);
2294 #endif
2295 #endif
2296 if (pid < 0)
2297 abort ();
2299 for (j = 0; j < n_commands; j++)
2300 if (commands[j].pid == pid)
2302 i++;
2303 if (status != 0)
2305 if (WIFSIGNALED (status))
2307 fatal ("Internal compiler error: program %s got fatal signal %d",
2308 commands[j].prog, WTERMSIG (status));
2309 signal_count++;
2310 ret_code = -1;
2312 else if (WIFEXITED (status)
2313 && WEXITSTATUS (status) >= MIN_FATAL_STATUS)
2314 ret_code = -1;
2316 break;
2319 return ret_code;
2323 /* Find all the switches given to us
2324 and make a vector describing them.
2325 The elements of the vector are strings, one per switch given.
2326 If a switch uses following arguments, then the `part1' field
2327 is the switch itself and the `args' field
2328 is a null-terminated vector containing the following arguments.
2329 The `live_cond' field is 1 if the switch is true in a conditional spec,
2330 -1 if false (overridden by a later switch), and is initialized to zero.
2331 The `valid' field is nonzero if any spec has looked at this switch;
2332 if it remains zero at the end of the run, it must be meaningless. */
2334 struct switchstr
2336 char *part1;
2337 char **args;
2338 int live_cond;
2339 int valid;
2342 static struct switchstr *switches;
2344 static int n_switches;
2346 struct infile
2348 char *name;
2349 char *language;
2352 /* Also a vector of input files specified. */
2354 static struct infile *infiles;
2356 static int n_infiles;
2358 /* And a vector of corresponding output files is made up later. */
2360 static char **outfiles;
2362 /* Used to track if none of the -B paths are used. */
2363 static int warn_B;
2365 /* Used to track if standard path isn't used and -b or -V is specified. */
2366 static int warn_std;
2368 /* Gives value to pass as "warn" to add_prefix for standard prefixes. */
2369 static int *warn_std_ptr = 0;
2371 /* Create the vector `switches' and its contents.
2372 Store its length in `n_switches'. */
2374 static void
2375 process_command (argc, argv)
2376 int argc;
2377 char **argv;
2379 register int i;
2380 char *temp;
2381 char *spec_lang = 0;
2382 int last_language_n_infiles;
2383 int have_c = 0;
2384 int have_o = 0;
2385 int lang_n_infiles = 0;
2387 gcc_exec_prefix = getenv ("GCC_EXEC_PREFIX");
2389 n_switches = 0;
2390 n_infiles = 0;
2392 /* Figure compiler version from version string. */
2394 compiler_version = save_string (version_string, strlen (version_string));
2395 for (temp = compiler_version; *temp; ++temp)
2397 if (*temp == ' ')
2399 *temp = '\0';
2400 break;
2404 /* Set up the default search paths. */
2406 if (gcc_exec_prefix)
2408 add_prefix (&exec_prefixes, gcc_exec_prefix, 0, 0, NULL_PTR);
2409 add_prefix (&startfile_prefixes, gcc_exec_prefix, 0, 0, NULL_PTR);
2412 /* COMPILER_PATH and LIBRARY_PATH have values
2413 that are lists of directory names with colons. */
2415 temp = getenv ("COMPILER_PATH");
2416 if (temp)
2418 char *startp, *endp;
2419 char *nstore = (char *) alloca (strlen (temp) + 3);
2421 startp = endp = temp;
2422 while (1)
2424 if (*endp == PATH_SEPARATOR || *endp == 0)
2426 strncpy (nstore, startp, endp-startp);
2427 if (endp == startp)
2428 strcpy (nstore, concat (".", dir_separator_str));
2429 else if (endp[-1] != '/' && endp[-1] != DIR_SEPARATOR)
2431 nstore[endp-startp] = DIR_SEPARATOR;
2432 nstore[endp-startp+1] = 0;
2434 else
2435 nstore[endp-startp] = 0;
2436 add_prefix (&exec_prefixes, nstore, 0, 0, NULL_PTR);
2437 if (*endp == 0)
2438 break;
2439 endp = startp = endp + 1;
2441 else
2442 endp++;
2446 temp = getenv ("LIBRARY_PATH");
2447 if (temp && ! cross_compile)
2449 char *startp, *endp;
2450 char *nstore = (char *) alloca (strlen (temp) + 3);
2452 startp = endp = temp;
2453 while (1)
2455 if (*endp == PATH_SEPARATOR || *endp == 0)
2457 strncpy (nstore, startp, endp-startp);
2458 if (endp == startp)
2459 strcpy (nstore, concat (".", dir_separator_str));
2460 else if (endp[-1] != '/' && endp[-1] != DIR_SEPARATOR)
2462 nstore[endp-startp] = DIR_SEPARATOR;
2463 nstore[endp-startp+1] = 0;
2465 else
2466 nstore[endp-startp] = 0;
2467 add_prefix (&startfile_prefixes, nstore, 0, 0, NULL_PTR);
2468 if (*endp == 0)
2469 break;
2470 endp = startp = endp + 1;
2472 else
2473 endp++;
2477 /* Use LPATH like LIBRARY_PATH (for the CMU build program). */
2478 temp = getenv ("LPATH");
2479 if (temp && ! cross_compile)
2481 char *startp, *endp;
2482 char *nstore = (char *) alloca (strlen (temp) + 3);
2484 startp = endp = temp;
2485 while (1)
2487 if (*endp == PATH_SEPARATOR || *endp == 0)
2489 strncpy (nstore, startp, endp-startp);
2490 if (endp == startp)
2491 strcpy (nstore, concat (".", dir_separator_str));
2492 else if (endp[-1] != '/' && endp[-1] != DIR_SEPARATOR)
2494 nstore[endp-startp] = DIR_SEPARATOR;
2495 nstore[endp-startp+1] = 0;
2497 else
2498 nstore[endp-startp] = 0;
2499 add_prefix (&startfile_prefixes, nstore, 0, 0, NULL_PTR);
2500 if (*endp == 0)
2501 break;
2502 endp = startp = endp + 1;
2504 else
2505 endp++;
2509 /* Convert new-style -- options to old-style. */
2510 translate_options (&argc, &argv);
2512 /* Scan argv twice. Here, the first time, just count how many switches
2513 there will be in their vector, and how many input files in theirs.
2514 Here we also parse the switches that cc itself uses (e.g. -v). */
2516 for (i = 1; i < argc; i++)
2518 if (! strcmp (argv[i], "-dumpspecs"))
2520 printf ("*asm:\n%s\n\n", asm_spec);
2521 printf ("*asm_final:\n%s\n\n", asm_final_spec);
2522 printf ("*cpp:\n%s\n\n", cpp_spec);
2523 printf ("*cc1:\n%s\n\n", cc1_spec);
2524 printf ("*cc1plus:\n%s\n\n", cc1plus_spec);
2525 printf ("*endfile:\n%s\n\n", endfile_spec);
2526 printf ("*link:\n%s\n\n", link_spec);
2527 printf ("*lib:\n%s\n\n", lib_spec);
2528 printf ("*libgcc:\n%s\n\n", libgcc_spec);
2529 printf ("*startfile:\n%s\n\n", startfile_spec);
2530 printf ("*switches_need_spaces:\n%s\n\n", switches_need_spaces);
2531 printf ("*signed_char:\n%s\n\n", signed_char_spec);
2532 printf ("*predefines:\n%s\n\n", cpp_predefines);
2533 printf ("*cross_compile:\n%d\n\n", cross_compile);
2534 printf ("*multilib:\n%s\n\n", multilib_select);
2536 #ifdef EXTRA_SPECS
2538 int j;
2539 for (j = 0; j < sizeof (extra_specs) / sizeof (extra_specs[0]); j++)
2540 printf ("*%s:\n%s\n\n", extra_specs[j].name,
2541 (extra_specs[j].spec) ? extra_specs[j].spec : "");
2543 #endif
2544 exit (0);
2546 else if (! strcmp (argv[i], "-dumpversion"))
2548 printf ("%s\n", version_string);
2549 exit (0);
2551 else if (! strcmp (argv[i], "-dumpmachine"))
2553 printf ("%s\n", spec_machine);
2554 exit (0);
2556 else if (! strcmp (argv[i], "-print-search-dirs"))
2557 print_search_dirs = 1;
2558 else if (! strcmp (argv[i], "-print-libgcc-file-name"))
2559 print_file_name = "libgcc.a";
2560 else if (! strncmp (argv[i], "-print-file-name=", 17))
2561 print_file_name = argv[i] + 17;
2562 else if (! strncmp (argv[i], "-print-prog-name=", 17))
2563 print_prog_name = argv[i] + 17;
2564 else if (! strcmp (argv[i], "-print-multi-lib"))
2565 print_multi_lib = 1;
2566 else if (! strcmp (argv[i], "-print-multi-directory"))
2567 print_multi_directory = 1;
2568 else if (! strncmp (argv[i], "-Wa,", 4))
2570 int prev, j;
2571 /* Pass the rest of this option to the assembler. */
2573 n_assembler_options++;
2574 if (!assembler_options)
2575 assembler_options
2576 = (char **) xmalloc (n_assembler_options * sizeof (char **));
2577 else
2578 assembler_options
2579 = (char **) xrealloc (assembler_options,
2580 n_assembler_options * sizeof (char **));
2582 /* Split the argument at commas. */
2583 prev = 4;
2584 for (j = 4; argv[i][j]; j++)
2585 if (argv[i][j] == ',')
2587 assembler_options[n_assembler_options - 1]
2588 = save_string (argv[i] + prev, j - prev);
2589 n_assembler_options++;
2590 assembler_options
2591 = (char **) xrealloc (assembler_options,
2592 n_assembler_options * sizeof (char **));
2593 prev = j + 1;
2595 /* Record the part after the last comma. */
2596 assembler_options[n_assembler_options - 1] = argv[i] + prev;
2598 else if (! strncmp (argv[i], "-Wp,", 4))
2600 int prev, j;
2601 /* Pass the rest of this option to the preprocessor. */
2603 n_preprocessor_options++;
2604 if (!preprocessor_options)
2605 preprocessor_options
2606 = (char **) xmalloc (n_preprocessor_options * sizeof (char **));
2607 else
2608 preprocessor_options
2609 = (char **) xrealloc (preprocessor_options,
2610 n_preprocessor_options * sizeof (char **));
2612 /* Split the argument at commas. */
2613 prev = 4;
2614 for (j = 4; argv[i][j]; j++)
2615 if (argv[i][j] == ',')
2617 preprocessor_options[n_preprocessor_options - 1]
2618 = save_string (argv[i] + prev, j - prev);
2619 n_preprocessor_options++;
2620 preprocessor_options
2621 = (char **) xrealloc (preprocessor_options,
2622 n_preprocessor_options * sizeof (char **));
2623 prev = j + 1;
2625 /* Record the part after the last comma. */
2626 preprocessor_options[n_preprocessor_options - 1] = argv[i] + prev;
2628 else if (argv[i][0] == '+' && argv[i][1] == 'e')
2629 /* The +e options to the C++ front-end. */
2630 n_switches++;
2631 else if (strncmp (argv[i], "-Wl,", 4) == 0)
2633 int j;
2634 /* Split the argument at commas. */
2635 for (j = 3; argv[i][j]; j++)
2636 n_infiles += (argv[i][j] == ',');
2638 else if (strcmp (argv[i], "-Xlinker") == 0)
2640 if (i + 1 == argc)
2641 fatal ("argument to `-Xlinker' is missing");
2643 n_infiles++;
2644 i++;
2646 else if (strncmp (argv[i], "-l", 2) == 0)
2647 n_infiles++;
2648 else if (strcmp (argv[i], "-save-temps") == 0)
2650 save_temps_flag = 1;
2651 n_switches++;
2653 else if (argv[i][0] == '-' && argv[i][1] != 0)
2655 register char *p = &argv[i][1];
2656 register int c = *p;
2658 switch (c)
2660 case 'b':
2661 if (p[1] == 0 && i + 1 == argc)
2662 fatal ("argument to `-b' is missing");
2663 if (p[1] == 0)
2664 spec_machine = argv[++i];
2665 else
2666 spec_machine = p + 1;
2668 warn_std_ptr = &warn_std;
2669 break;
2671 case 'B':
2673 int *temp = (int *) xmalloc (sizeof (int));
2674 char *value;
2675 if (p[1] == 0 && i + 1 == argc)
2676 fatal ("argument to `-B' is missing");
2677 if (p[1] == 0)
2678 value = argv[++i];
2679 else
2680 value = p + 1;
2681 add_prefix (&exec_prefixes, value, 1, 0, &warn_B);
2682 add_prefix (&startfile_prefixes, value, 1, 0, &warn_B);
2683 add_prefix (&include_prefixes, concat (value, "include"),
2684 1, 0, NULL_PTR);
2686 /* As a kludge, if the arg is "[foo/]stageN/", just add
2687 "[foo/]include" to the include prefix. */
2689 int len = strlen (value);
2690 if ((len == 7
2691 || (len > 7
2692 && (value[len - 8] == '/'
2693 || value[len - 8] == DIR_SEPARATOR)))
2694 && strncmp (value + len - 7, "stage", 5) == 0
2695 && isdigit (value[len - 2])
2696 && (value[len - 1] == '/'
2697 || value[len - 1] == DIR_SEPARATOR))
2699 if (len == 7)
2700 add_prefix (&include_prefixes, "include",
2701 1, 0, NULL_PTR);
2702 else
2704 char *string = xmalloc (len + 1);
2705 strncpy (string, value, len-7);
2706 strcat (string, "include");
2707 add_prefix (&include_prefixes, string,
2708 1, 0, NULL_PTR);
2713 break;
2715 case 'v': /* Print our subcommands and print versions. */
2716 n_switches++;
2717 /* If they do anything other than exactly `-v', don't set
2718 verbose_flag; rather, continue on to give the error. */
2719 if (p[1] != 0)
2720 break;
2721 verbose_flag++;
2722 break;
2724 case 'V':
2725 if (p[1] == 0 && i + 1 == argc)
2726 fatal ("argument to `-V' is missing");
2727 if (p[1] == 0)
2728 spec_version = argv[++i];
2729 else
2730 spec_version = p + 1;
2731 compiler_version = spec_version;
2732 warn_std_ptr = &warn_std;
2733 break;
2735 case 'c':
2736 if (p[1] == 0)
2738 have_c = 1;
2739 n_switches++;
2740 break;
2742 goto normal_switch;
2744 case 'o':
2745 have_o = 1;
2746 goto normal_switch;
2748 default:
2749 normal_switch:
2750 n_switches++;
2752 if (SWITCH_TAKES_ARG (c) > (p[1] != 0))
2753 i += SWITCH_TAKES_ARG (c) - (p[1] != 0);
2754 else if (WORD_SWITCH_TAKES_ARG (p))
2755 i += WORD_SWITCH_TAKES_ARG (p);
2758 else
2760 n_infiles++;
2761 lang_n_infiles++;
2765 if (have_c && have_o && lang_n_infiles > 1)
2766 fatal ("cannot specify -o with -c and multiple compilations");
2768 /* Set up the search paths before we go looking for config files. */
2770 /* These come before the md prefixes so that we will find gcc's subcommands
2771 (such as cpp) rather than those of the host system. */
2772 /* Use 2 as fourth arg meaning try just the machine as a suffix,
2773 as well as trying the machine and the version. */
2774 #ifndef OS2
2775 add_prefix (&exec_prefixes, standard_exec_prefix, 0, 2, warn_std_ptr);
2776 add_prefix (&exec_prefixes, standard_exec_prefix_1, 0, 2, warn_std_ptr);
2777 #endif
2779 add_prefix (&startfile_prefixes, standard_exec_prefix, 0, 1, warn_std_ptr);
2780 add_prefix (&startfile_prefixes, standard_exec_prefix_1, 0, 1, warn_std_ptr);
2782 tooldir_prefix = concat3 (tooldir_base_prefix, spec_machine,
2783 dir_separator_str);
2785 /* If tooldir is relative, base it on exec_prefixes. A relative
2786 tooldir lets us move the installed tree as a unit.
2788 If GCC_EXEC_PREFIX is defined, then we want to add two relative
2789 directories, so that we can search both the user specified directory
2790 and the standard place. */
2792 if (*tooldir_prefix != '/' && *tooldir_prefix != DIR_SEPARATOR)
2794 if (gcc_exec_prefix)
2796 char *gcc_exec_tooldir_prefix
2797 = concat6 (gcc_exec_prefix, spec_machine, dir_separator_str,
2798 spec_version, dir_separator_str, tooldir_prefix);
2800 add_prefix (&exec_prefixes,
2801 concat3 (gcc_exec_tooldir_prefix, "bin",
2802 dir_separator_str),
2803 0, 0, NULL_PTR);
2804 add_prefix (&startfile_prefixes,
2805 concat3 (gcc_exec_tooldir_prefix, "lib",
2806 dir_separator_str),
2807 0, 0, NULL_PTR);
2810 tooldir_prefix = concat6 (standard_exec_prefix, spec_machine,
2811 dir_separator_str, spec_version,
2812 dir_separator_str, tooldir_prefix);
2815 add_prefix (&exec_prefixes,
2816 concat3 (tooldir_prefix, "bin", dir_separator_str),
2817 0, 0, NULL_PTR);
2818 add_prefix (&startfile_prefixes,
2819 concat3 (tooldir_prefix, "lib", dir_separator_str),
2820 0, 0, NULL_PTR);
2822 /* More prefixes are enabled in main, after we read the specs file
2823 and determine whether this is cross-compilation or not. */
2826 /* Then create the space for the vectors and scan again. */
2828 switches = ((struct switchstr *)
2829 xmalloc ((n_switches + 1) * sizeof (struct switchstr)));
2830 infiles = (struct infile *) xmalloc ((n_infiles + 1) * sizeof (struct infile));
2831 n_switches = 0;
2832 n_infiles = 0;
2833 last_language_n_infiles = -1;
2835 /* This, time, copy the text of each switch and store a pointer
2836 to the copy in the vector of switches.
2837 Store all the infiles in their vector. */
2839 for (i = 1; i < argc; i++)
2841 /* Just skip the switches that were handled by the preceding loop. */
2842 if (! strncmp (argv[i], "-Wa,", 4))
2844 else if (! strncmp (argv[i], "-Wp,", 4))
2846 else if (! strcmp (argv[i], "-print-search-dirs"))
2848 else if (! strcmp (argv[i], "-print-libgcc-file-name"))
2850 else if (! strncmp (argv[i], "-print-file-name=", 17))
2852 else if (! strncmp (argv[i], "-print-prog-name=", 17))
2854 else if (! strcmp (argv[i], "-print-multi-lib"))
2856 else if (! strcmp (argv[i], "-print-multi-directory"))
2858 else if (argv[i][0] == '+' && argv[i][1] == 'e')
2860 /* Compensate for the +e options to the C++ front-end;
2861 they're there simply for cfront call-compatibility. We do
2862 some magic in default_compilers to pass them down properly.
2863 Note we deliberately start at the `+' here, to avoid passing
2864 -e0 or -e1 down into the linker. */
2865 switches[n_switches].part1 = &argv[i][0];
2866 switches[n_switches].args = 0;
2867 switches[n_switches].live_cond = 0;
2868 switches[n_switches].valid = 0;
2869 n_switches++;
2871 else if (strncmp (argv[i], "-Wl,", 4) == 0)
2873 int prev, j;
2874 /* Split the argument at commas. */
2875 prev = 4;
2876 for (j = 4; argv[i][j]; j++)
2877 if (argv[i][j] == ',')
2879 infiles[n_infiles].language = 0;
2880 infiles[n_infiles++].name
2881 = save_string (argv[i] + prev, j - prev);
2882 prev = j + 1;
2884 /* Record the part after the last comma. */
2885 infiles[n_infiles].language = 0;
2886 infiles[n_infiles++].name = argv[i] + prev;
2888 else if (strcmp (argv[i], "-Xlinker") == 0)
2890 infiles[n_infiles].language = 0;
2891 infiles[n_infiles++].name = argv[++i];
2893 else if (strncmp (argv[i], "-l", 2) == 0)
2895 infiles[n_infiles].language = 0;
2896 infiles[n_infiles++].name = argv[i];
2898 else if (argv[i][0] == '-' && argv[i][1] != 0)
2900 register char *p = &argv[i][1];
2901 register int c = *p;
2903 if (c == 'B' || c == 'b' || c == 'V')
2905 /* Skip a separate arg, if any. */
2906 if (p[1] == 0)
2907 i++;
2908 continue;
2910 if (c == 'x')
2912 if (p[1] == 0 && i + 1 == argc)
2913 fatal ("argument to `-x' is missing");
2914 if (p[1] == 0)
2915 spec_lang = argv[++i];
2916 else
2917 spec_lang = p + 1;
2918 if (! strcmp (spec_lang, "none"))
2919 /* Suppress the warning if -xnone comes after the last input
2920 file, because alternate command interfaces like g++ might
2921 find it useful to place -xnone after each input file. */
2922 spec_lang = 0;
2923 else
2924 last_language_n_infiles = n_infiles;
2925 continue;
2927 switches[n_switches].part1 = p;
2928 /* Deal with option arguments in separate argv elements. */
2929 if ((SWITCH_TAKES_ARG (c) > (p[1] != 0))
2930 || WORD_SWITCH_TAKES_ARG (p))
2932 int j = 0;
2933 int n_args = WORD_SWITCH_TAKES_ARG (p);
2935 if (n_args == 0)
2937 /* Count only the option arguments in separate argv elements. */
2938 n_args = SWITCH_TAKES_ARG (c) - (p[1] != 0);
2940 if (i + n_args >= argc)
2941 fatal ("argument to `-%s' is missing", p);
2942 switches[n_switches].args
2943 = (char **) xmalloc ((n_args + 1) * sizeof (char *));
2944 while (j < n_args)
2945 switches[n_switches].args[j++] = argv[++i];
2946 /* Null-terminate the vector. */
2947 switches[n_switches].args[j] = 0;
2949 else if (*switches_need_spaces != 0 && (c == 'o' || c == 'L'))
2951 /* On some systems, ld cannot handle -o or -L without space.
2952 So split the -o or -L from its argument. */
2953 switches[n_switches].part1 = (c == 'o' ? "o" : "L");
2954 switches[n_switches].args = (char **) xmalloc (2 * sizeof (char *));
2955 switches[n_switches].args[0] = xmalloc (strlen (p));
2956 strcpy (switches[n_switches].args[0], &p[1]);
2957 switches[n_switches].args[1] = 0;
2959 else
2960 switches[n_switches].args = 0;
2962 switches[n_switches].live_cond = 0;
2963 switches[n_switches].valid = 0;
2964 /* This is always valid, since gcc.c itself understands it. */
2965 if (!strcmp (p, "save-temps"))
2966 switches[n_switches].valid = 1;
2967 n_switches++;
2969 else
2971 #ifdef HAVE_OBJECT_SUFFIX
2972 /* Convert x.o to x.obj if OBJECT_SUFFIX is ".obj". */
2973 if (strlen (argv[i]) > 2
2974 && argv[i][strlen (argv[i]) - 2] == '.'
2975 && argv[i][strlen (argv[i]) - 1] == 'o')
2977 int j;
2979 for (j = 0; j < strlen (argv[i]) - 2; j++)
2980 obstack_1grow (&obstack, argv[i][j]);
2982 obstack_grow (&obstack, OBJECT_SUFFIX, strlen (OBJECT_SUFFIX));
2983 obstack_1grow (&obstack, 0);
2984 argv[i] = obstack_finish (&obstack);
2986 #endif
2988 if (strcmp (argv[i], "-") != 0 && access (argv[i], R_OK) < 0)
2990 perror_with_name (argv[i]);
2991 error_count++;
2993 else
2995 infiles[n_infiles].language = spec_lang;
2996 infiles[n_infiles++].name = argv[i];
3001 if (n_infiles == last_language_n_infiles && spec_lang != 0)
3002 error ("Warning: `-x %s' after last input file has no effect", spec_lang);
3004 switches[n_switches].part1 = 0;
3005 infiles[n_infiles].name = 0;
3008 /* Process a spec string, accumulating and running commands. */
3010 /* These variables describe the input file name.
3011 input_file_number is the index on outfiles of this file,
3012 so that the output file name can be stored for later use by %o.
3013 input_basename is the start of the part of the input file
3014 sans all directory names, and basename_length is the number
3015 of characters starting there excluding the suffix .c or whatever. */
3017 static char *input_filename;
3018 static int input_file_number;
3019 static int input_filename_length;
3020 static int basename_length;
3021 static char *input_basename;
3022 static char *input_suffix;
3024 /* These are variables used within do_spec and do_spec_1. */
3026 /* Nonzero if an arg has been started and not yet terminated
3027 (with space, tab or newline). */
3028 static int arg_going;
3030 /* Nonzero means %d or %g has been seen; the next arg to be terminated
3031 is a temporary file name. */
3032 static int delete_this_arg;
3034 /* Nonzero means %w has been seen; the next arg to be terminated
3035 is the output file name of this compilation. */
3036 static int this_is_output_file;
3038 /* Nonzero means %s has been seen; the next arg to be terminated
3039 is the name of a library file and we should try the standard
3040 search dirs for it. */
3041 static int this_is_library_file;
3043 /* Nonzero means that the input of this command is coming from a pipe. */
3044 static int input_from_pipe;
3046 /* Process the spec SPEC and run the commands specified therein.
3047 Returns 0 if the spec is successfully processed; -1 if failed. */
3049 static int
3050 do_spec (spec)
3051 char *spec;
3053 int value;
3055 clear_args ();
3056 arg_going = 0;
3057 delete_this_arg = 0;
3058 this_is_output_file = 0;
3059 this_is_library_file = 0;
3060 input_from_pipe = 0;
3062 value = do_spec_1 (spec, 0, NULL_PTR);
3064 /* Force out any unfinished command.
3065 If -pipe, this forces out the last command if it ended in `|'. */
3066 if (value == 0)
3068 if (argbuf_index > 0 && !strcmp (argbuf[argbuf_index - 1], "|"))
3069 argbuf_index--;
3071 if (argbuf_index > 0)
3072 value = execute ();
3075 return value;
3078 /* Process the sub-spec SPEC as a portion of a larger spec.
3079 This is like processing a whole spec except that we do
3080 not initialize at the beginning and we do not supply a
3081 newline by default at the end.
3082 INSWITCH nonzero means don't process %-sequences in SPEC;
3083 in this case, % is treated as an ordinary character.
3084 This is used while substituting switches.
3085 INSWITCH nonzero also causes SPC not to terminate an argument.
3087 Value is zero unless a line was finished
3088 and the command on that line reported an error. */
3090 static int
3091 do_spec_1 (spec, inswitch, soft_matched_part)
3092 char *spec;
3093 int inswitch;
3094 char *soft_matched_part;
3096 register char *p = spec;
3097 register int c;
3098 int i;
3099 char *string;
3100 int value;
3102 while (c = *p++)
3103 /* If substituting a switch, treat all chars like letters.
3104 Otherwise, NL, SPC, TAB and % are special. */
3105 switch (inswitch ? 'a' : c)
3107 case '\n':
3108 /* End of line: finish any pending argument,
3109 then run the pending command if one has been started. */
3110 if (arg_going)
3112 obstack_1grow (&obstack, 0);
3113 string = obstack_finish (&obstack);
3114 if (this_is_library_file)
3115 string = find_file (string);
3116 store_arg (string, delete_this_arg, this_is_output_file);
3117 if (this_is_output_file)
3118 outfiles[input_file_number] = string;
3120 arg_going = 0;
3122 if (argbuf_index > 0 && !strcmp (argbuf[argbuf_index - 1], "|"))
3124 for (i = 0; i < n_switches; i++)
3125 if (!strcmp (switches[i].part1, "pipe"))
3126 break;
3128 /* A `|' before the newline means use a pipe here,
3129 but only if -pipe was specified.
3130 Otherwise, execute now and don't pass the `|' as an arg. */
3131 if (i < n_switches)
3133 input_from_pipe = 1;
3134 switches[i].valid = 1;
3135 break;
3137 else
3138 argbuf_index--;
3141 if (argbuf_index > 0)
3143 value = execute ();
3144 if (value)
3145 return value;
3147 /* Reinitialize for a new command, and for a new argument. */
3148 clear_args ();
3149 arg_going = 0;
3150 delete_this_arg = 0;
3151 this_is_output_file = 0;
3152 this_is_library_file = 0;
3153 input_from_pipe = 0;
3154 break;
3156 case '|':
3157 /* End any pending argument. */
3158 if (arg_going)
3160 obstack_1grow (&obstack, 0);
3161 string = obstack_finish (&obstack);
3162 if (this_is_library_file)
3163 string = find_file (string);
3164 store_arg (string, delete_this_arg, this_is_output_file);
3165 if (this_is_output_file)
3166 outfiles[input_file_number] = string;
3169 /* Use pipe */
3170 obstack_1grow (&obstack, c);
3171 arg_going = 1;
3172 break;
3174 case '\t':
3175 case ' ':
3176 /* Space or tab ends an argument if one is pending. */
3177 if (arg_going)
3179 obstack_1grow (&obstack, 0);
3180 string = obstack_finish (&obstack);
3181 if (this_is_library_file)
3182 string = find_file (string);
3183 store_arg (string, delete_this_arg, this_is_output_file);
3184 if (this_is_output_file)
3185 outfiles[input_file_number] = string;
3187 /* Reinitialize for a new argument. */
3188 arg_going = 0;
3189 delete_this_arg = 0;
3190 this_is_output_file = 0;
3191 this_is_library_file = 0;
3192 break;
3194 case '%':
3195 switch (c = *p++)
3197 case 0:
3198 fatal ("Invalid specification! Bug in cc.");
3200 case 'b':
3201 obstack_grow (&obstack, input_basename, basename_length);
3202 arg_going = 1;
3203 break;
3205 case 'd':
3206 delete_this_arg = 2;
3207 break;
3209 /* Dump out the directories specified with LIBRARY_PATH,
3210 followed by the absolute directories
3211 that we search for startfiles. */
3212 case 'D':
3214 struct prefix_list *pl = startfile_prefixes.plist;
3215 int bufsize = 100;
3216 char *buffer = (char *) xmalloc (bufsize);
3217 int idx;
3219 for (; pl; pl = pl->next)
3221 #ifdef RELATIVE_PREFIX_NOT_LINKDIR
3222 /* Used on systems which record the specified -L dirs
3223 and use them to search for dynamic linking. */
3224 /* Relative directories always come from -B,
3225 and it is better not to use them for searching
3226 at run time. In particular, stage1 loses */
3227 if (pl->prefix[0] != '/' && pl->prefix[0] != DIR_SEPARATOR)
3228 continue;
3229 #endif
3230 /* Try subdirectory if there is one. */
3231 if (multilib_dir != NULL)
3233 if (machine_suffix)
3235 if (strlen (pl->prefix) + strlen (machine_suffix)
3236 >= bufsize)
3237 bufsize = (strlen (pl->prefix)
3238 + strlen (machine_suffix)) * 2 + 1;
3239 buffer = (char *) xrealloc (buffer, bufsize);
3240 strcpy (buffer, pl->prefix);
3241 strcat (buffer, machine_suffix);
3242 if (is_directory (buffer, multilib_dir, 1))
3244 do_spec_1 ("-L", 0, NULL_PTR);
3245 #ifdef SPACE_AFTER_L_OPTION
3246 do_spec_1 (" ", 0, NULL_PTR);
3247 #endif
3248 do_spec_1 (buffer, 1, NULL_PTR);
3249 do_spec_1 (multilib_dir, 1, NULL_PTR);
3250 /* Make this a separate argument. */
3251 do_spec_1 (" ", 0, NULL_PTR);
3254 if (!pl->require_machine_suffix)
3256 if (is_directory (pl->prefix, multilib_dir, 1))
3258 do_spec_1 ("-L", 0, NULL_PTR);
3259 #ifdef SPACE_AFTER_L_OPTION
3260 do_spec_1 (" ", 0, NULL_PTR);
3261 #endif
3262 do_spec_1 (pl->prefix, 1, NULL_PTR);
3263 do_spec_1 (multilib_dir, 1, NULL_PTR);
3264 /* Make this a separate argument. */
3265 do_spec_1 (" ", 0, NULL_PTR);
3269 if (machine_suffix)
3271 if (is_directory (pl->prefix, machine_suffix, 1))
3273 do_spec_1 ("-L", 0, NULL_PTR);
3274 #ifdef SPACE_AFTER_L_OPTION
3275 do_spec_1 (" ", 0, NULL_PTR);
3276 #endif
3277 do_spec_1 (pl->prefix, 1, NULL_PTR);
3278 /* Remove slash from machine_suffix. */
3279 if (strlen (machine_suffix) >= bufsize)
3280 bufsize = strlen (machine_suffix) * 2 + 1;
3281 buffer = (char *) xrealloc (buffer, bufsize);
3282 strcpy (buffer, machine_suffix);
3283 idx = strlen (buffer);
3284 if (buffer[idx - 1] == '/'
3285 || buffer[idx - 1] == DIR_SEPARATOR)
3286 buffer[idx - 1] = 0;
3287 do_spec_1 (buffer, 1, NULL_PTR);
3288 /* Make this a separate argument. */
3289 do_spec_1 (" ", 0, NULL_PTR);
3292 if (!pl->require_machine_suffix)
3294 if (is_directory (pl->prefix, "", 1))
3296 do_spec_1 ("-L", 0, NULL_PTR);
3297 #ifdef SPACE_AFTER_L_OPTION
3298 do_spec_1 (" ", 0, NULL_PTR);
3299 #endif
3300 /* Remove slash from pl->prefix. */
3301 if (strlen (pl->prefix) >= bufsize)
3302 bufsize = strlen (pl->prefix) * 2 + 1;
3303 buffer = (char *) xrealloc (buffer, bufsize);
3304 strcpy (buffer, pl->prefix);
3305 idx = strlen (buffer);
3306 if (buffer[idx - 1] == '/'
3307 || buffer[idx - 1] == DIR_SEPARATOR)
3308 buffer[idx - 1] = 0;
3309 do_spec_1 (buffer, 1, NULL_PTR);
3310 /* Make this a separate argument. */
3311 do_spec_1 (" ", 0, NULL_PTR);
3315 free (buffer);
3317 break;
3319 case 'e':
3320 /* {...:%efoo} means report an error with `foo' as error message
3321 and don't execute any more commands for this file. */
3323 char *q = p;
3324 char *buf;
3325 while (*p != 0 && *p != '\n') p++;
3326 buf = (char *) alloca (p - q + 1);
3327 strncpy (buf, q, p - q);
3328 buf[p - q] = 0;
3329 error ("%s", buf);
3330 return -1;
3332 break;
3334 case 'g':
3335 case 'u':
3336 case 'U':
3337 if (save_temps_flag)
3339 obstack_grow (&obstack, input_basename, basename_length);
3340 delete_this_arg = 0;
3342 else
3344 #ifdef MKTEMP_EACH_FILE
3345 /* ??? This has a problem: the total number of
3346 values mktemp can return is limited.
3347 That matters for the names of object files.
3348 In 2.4, do something about that. */
3349 struct temp_name *t;
3350 char *suffix = p;
3351 while (*p == '.' || isalpha (*p)
3352 || (p[0] == '%' && p[1] == 'O'))
3353 p++;
3355 /* See if we already have an association of %g/%u/%U and
3356 suffix. */
3357 for (t = temp_names; t; t = t->next)
3358 if (t->length == p - suffix
3359 && strncmp (t->suffix, suffix, p - suffix) == 0
3360 && t->unique == (c != 'g'))
3361 break;
3363 /* Make a new association if needed. %u requires one. */
3364 if (t == 0 || c == 'u')
3366 if (t == 0)
3368 t = (struct temp_name *) xmalloc (sizeof (struct temp_name));
3369 t->next = temp_names;
3370 temp_names = t;
3372 t->length = p - suffix;
3373 t->suffix = save_string (suffix, p - suffix);
3374 t->unique = (c != 'g');
3375 choose_temp_base ();
3376 t->filename = temp_filename;
3377 t->filename_length = temp_filename_length;
3380 obstack_grow (&obstack, t->filename, t->filename_length);
3381 delete_this_arg = 1;
3382 #else
3383 obstack_grow (&obstack, temp_filename, temp_filename_length);
3384 if (c == 'u' || c == 'U')
3386 static int unique;
3387 char buff[9];
3388 if (c == 'u')
3389 unique++;
3390 sprintf (buff, "%d", unique);
3391 obstack_grow (&obstack, buff, strlen (buff));
3393 #endif
3394 delete_this_arg = 1;
3396 arg_going = 1;
3397 break;
3399 case 'i':
3400 obstack_grow (&obstack, input_filename, input_filename_length);
3401 arg_going = 1;
3402 break;
3404 case 'I':
3406 struct prefix_list *pl = include_prefixes.plist;
3408 if (gcc_exec_prefix)
3410 do_spec_1 ("-iprefix", 1, NULL_PTR);
3411 /* Make this a separate argument. */
3412 do_spec_1 (" ", 0, NULL_PTR);
3413 do_spec_1 (gcc_exec_prefix, 1, NULL_PTR);
3414 do_spec_1 (" ", 0, NULL_PTR);
3417 for (; pl; pl = pl->next)
3419 do_spec_1 ("-isystem", 1, NULL_PTR);
3420 /* Make this a separate argument. */
3421 do_spec_1 (" ", 0, NULL_PTR);
3422 do_spec_1 (pl->prefix, 1, NULL_PTR);
3423 do_spec_1 (" ", 0, NULL_PTR);
3426 break;
3428 case 'o':
3429 for (i = 0; i < n_infiles; i++)
3430 store_arg (outfiles[i], 0, 0);
3431 break;
3433 case 'O':
3434 obstack_grow (&obstack, OBJECT_SUFFIX, strlen (OBJECT_SUFFIX));
3435 arg_going = 1;
3436 break;
3438 case 's':
3439 this_is_library_file = 1;
3440 break;
3442 case 'w':
3443 this_is_output_file = 1;
3444 break;
3446 case 'W':
3448 int cur_index = argbuf_index;
3449 /* Handle the {...} following the %W. */
3450 if (*p != '{')
3451 abort ();
3452 p = handle_braces (p + 1);
3453 if (p == 0)
3454 return -1;
3455 /* If any args were output, mark the last one for deletion
3456 on failure. */
3457 if (argbuf_index != cur_index)
3458 record_temp_file (argbuf[argbuf_index - 1], 0, 1);
3459 break;
3462 /* %x{OPTION} records OPTION for %X to output. */
3463 case 'x':
3465 char *p1 = p;
3466 char *string;
3468 /* Skip past the option value and make a copy. */
3469 if (*p != '{')
3470 abort ();
3471 while (*p++ != '}')
3473 string = save_string (p1 + 1, p - p1 - 2);
3475 /* See if we already recorded this option. */
3476 for (i = 0; i < n_linker_options; i++)
3477 if (! strcmp (string, linker_options[i]))
3479 free (string);
3480 return 0;
3483 /* This option is new; add it. */
3484 n_linker_options++;
3485 if (!linker_options)
3486 linker_options
3487 = (char **) xmalloc (n_linker_options * sizeof (char **));
3488 else
3489 linker_options
3490 = (char **) xrealloc (linker_options,
3491 n_linker_options * sizeof (char **));
3493 linker_options[n_linker_options - 1] = string;
3495 break;
3497 /* Dump out the options accumulated previously using %x. */
3498 case 'X':
3499 for (i = 0; i < n_linker_options; i++)
3501 do_spec_1 (linker_options[i], 1, NULL_PTR);
3502 /* Make each accumulated option a separate argument. */
3503 do_spec_1 (" ", 0, NULL_PTR);
3505 break;
3507 /* Dump out the options accumulated previously using -Wa,. */
3508 case 'Y':
3509 for (i = 0; i < n_assembler_options; i++)
3511 do_spec_1 (assembler_options[i], 1, NULL_PTR);
3512 /* Make each accumulated option a separate argument. */
3513 do_spec_1 (" ", 0, NULL_PTR);
3515 break;
3517 /* Dump out the options accumulated previously using -Wp,. */
3518 case 'Z':
3519 for (i = 0; i < n_preprocessor_options; i++)
3521 do_spec_1 (preprocessor_options[i], 1, NULL_PTR);
3522 /* Make each accumulated option a separate argument. */
3523 do_spec_1 (" ", 0, NULL_PTR);
3525 break;
3527 /* Here are digits and numbers that just process
3528 a certain constant string as a spec. */
3530 case '1':
3531 value = do_spec_1 (cc1_spec, 0, NULL_PTR);
3532 if (value != 0)
3533 return value;
3534 break;
3536 case '2':
3537 value = do_spec_1 (cc1plus_spec, 0, NULL_PTR);
3538 if (value != 0)
3539 return value;
3540 break;
3542 case 'a':
3543 value = do_spec_1 (asm_spec, 0, NULL_PTR);
3544 if (value != 0)
3545 return value;
3546 break;
3548 case 'A':
3549 value = do_spec_1 (asm_final_spec, 0, NULL_PTR);
3550 if (value != 0)
3551 return value;
3552 break;
3554 case 'c':
3555 value = do_spec_1 (signed_char_spec, 0, NULL_PTR);
3556 if (value != 0)
3557 return value;
3558 break;
3560 case 'C':
3561 value = do_spec_1 (cpp_spec, 0, NULL_PTR);
3562 if (value != 0)
3563 return value;
3564 break;
3566 case 'E':
3567 value = do_spec_1 (endfile_spec, 0, NULL_PTR);
3568 if (value != 0)
3569 return value;
3570 break;
3572 case 'l':
3573 value = do_spec_1 (link_spec, 0, NULL_PTR);
3574 if (value != 0)
3575 return value;
3576 break;
3578 case 'L':
3579 value = do_spec_1 (lib_spec, 0, NULL_PTR);
3580 if (value != 0)
3581 return value;
3582 break;
3584 case 'G':
3585 value = do_spec_1 (libgcc_spec, 0, NULL_PTR);
3586 if (value != 0)
3587 return value;
3588 break;
3590 case 'p':
3592 char *x = (char *) alloca (strlen (cpp_predefines) + 1);
3593 char *buf = x;
3594 char *y;
3596 /* Copy all of the -D options in CPP_PREDEFINES into BUF. */
3597 y = cpp_predefines;
3598 while (*y != 0)
3600 if (! strncmp (y, "-D", 2))
3601 /* Copy the whole option. */
3602 while (*y && *y != ' ' && *y != '\t')
3603 *x++ = *y++;
3604 else if (*y == ' ' || *y == '\t')
3605 /* Copy whitespace to the result. */
3606 *x++ = *y++;
3607 /* Don't copy other options. */
3608 else
3609 y++;
3612 *x = 0;
3614 value = do_spec_1 (buf, 0, NULL_PTR);
3615 if (value != 0)
3616 return value;
3618 break;
3620 case 'P':
3622 char *x = (char *) alloca (strlen (cpp_predefines) * 4 + 1);
3623 char *buf = x;
3624 char *y;
3626 /* Copy all of CPP_PREDEFINES into BUF,
3627 but put __ after every -D and at the end of each arg. */
3628 y = cpp_predefines;
3629 while (*y != 0)
3631 if (! strncmp (y, "-D", 2))
3633 int flag = 0;
3635 *x++ = *y++;
3636 *x++ = *y++;
3638 if (*y != '_'
3639 || (*(y+1) != '_' && ! isupper (*(y+1))))
3641 /* Stick __ at front of macro name. */
3642 *x++ = '_';
3643 *x++ = '_';
3644 /* Arrange to stick __ at the end as well. */
3645 flag = 1;
3648 /* Copy the macro name. */
3649 while (*y && *y != '=' && *y != ' ' && *y != '\t')
3650 *x++ = *y++;
3652 if (flag)
3654 *x++ = '_';
3655 *x++ = '_';
3658 /* Copy the value given, if any. */
3659 while (*y && *y != ' ' && *y != '\t')
3660 *x++ = *y++;
3662 else if (*y == ' ' || *y == '\t')
3663 /* Copy whitespace to the result. */
3664 *x++ = *y++;
3665 /* Don't copy -A options */
3666 else
3667 y++;
3669 *x++ = ' ';
3671 /* Copy all of CPP_PREDEFINES into BUF,
3672 but put __ after every -D. */
3673 y = cpp_predefines;
3674 while (*y != 0)
3676 if (! strncmp (y, "-D", 2))
3678 y += 2;
3680 if (*y != '_'
3681 || (*(y+1) != '_' && ! isupper (*(y+1))))
3683 /* Stick -D__ at front of macro name. */
3684 *x++ = '-';
3685 *x++ = 'D';
3686 *x++ = '_';
3687 *x++ = '_';
3689 /* Copy the macro name. */
3690 while (*y && *y != '=' && *y != ' ' && *y != '\t')
3691 *x++ = *y++;
3693 /* Copy the value given, if any. */
3694 while (*y && *y != ' ' && *y != '\t')
3695 *x++ = *y++;
3697 else
3699 /* Do not copy this macro - we have just done it before */
3700 while (*y && *y != ' ' && *y != '\t')
3701 y++;
3704 else if (*y == ' ' || *y == '\t')
3705 /* Copy whitespace to the result. */
3706 *x++ = *y++;
3707 /* Don't copy -A options */
3708 else
3709 y++;
3711 *x++ = ' ';
3713 /* Copy all of the -A options in CPP_PREDEFINES into BUF. */
3714 y = cpp_predefines;
3715 while (*y != 0)
3717 if (! strncmp (y, "-A", 2))
3718 /* Copy the whole option. */
3719 while (*y && *y != ' ' && *y != '\t')
3720 *x++ = *y++;
3721 else if (*y == ' ' || *y == '\t')
3722 /* Copy whitespace to the result. */
3723 *x++ = *y++;
3724 /* Don't copy other options. */
3725 else
3726 y++;
3729 *x = 0;
3731 value = do_spec_1 (buf, 0, NULL_PTR);
3732 if (value != 0)
3733 return value;
3735 break;
3737 case 'S':
3738 value = do_spec_1 (startfile_spec, 0, NULL_PTR);
3739 if (value != 0)
3740 return value;
3741 break;
3743 /* Here we define characters other than letters and digits. */
3745 case '{':
3746 p = handle_braces (p);
3747 if (p == 0)
3748 return -1;
3749 break;
3751 case '%':
3752 obstack_1grow (&obstack, '%');
3753 break;
3755 case '*':
3756 do_spec_1 (soft_matched_part, 1, NULL_PTR);
3757 do_spec_1 (" ", 0, NULL_PTR);
3758 break;
3760 /* Process a string found as the value of a spec given by name.
3761 This feature allows individual machine descriptions
3762 to add and use their own specs.
3763 %[...] modifies -D options the way %P does;
3764 %(...) uses the spec unmodified. */
3765 case '(':
3766 case '[':
3768 char *name = p;
3769 struct spec_list *sl;
3770 int len;
3772 /* The string after the S/P is the name of a spec that is to be
3773 processed. */
3774 while (*p && *p != ')' && *p != ']')
3775 p++;
3777 /* See if it's in the list */
3778 for (len = p - name, sl = specs; sl; sl = sl->next)
3779 if (strncmp (sl->name, name, len) == 0 && !sl->name[len])
3781 name = sl->spec;
3782 break;
3785 if (sl)
3787 if (c == '(')
3789 value = do_spec_1 (name, 0, NULL_PTR);
3790 if (value != 0)
3791 return value;
3793 else
3795 char *x = (char *) alloca (strlen (name) * 2 + 1);
3796 char *buf = x;
3797 char *y = name;
3799 /* Copy all of NAME into BUF, but put __ after
3800 every -D and at the end of each arg, */
3801 while (1)
3803 if (! strncmp (y, "-D", 2))
3805 *x++ = '-';
3806 *x++ = 'D';
3807 *x++ = '_';
3808 *x++ = '_';
3809 y += 2;
3811 else if (*y == ' ' || *y == 0)
3813 *x++ = '_';
3814 *x++ = '_';
3815 if (*y == 0)
3816 break;
3817 else
3818 *x++ = *y++;
3820 else
3821 *x++ = *y++;
3823 *x = 0;
3825 value = do_spec_1 (buf, 0, NULL_PTR);
3826 if (value != 0)
3827 return value;
3831 /* Discard the closing paren or bracket. */
3832 if (*p)
3833 p++;
3835 break;
3837 case 'v':
3839 int c1 = *p++; /* Select first or second version number. */
3840 char *v = compiler_version;
3841 char *q, *copy;
3842 /* If desired, advance to second version number. */
3843 if (c1 == '2')
3845 /* Set V after the first period. */
3846 while (*v != 0 && *v != ' ' && *v != '.')
3847 v++;
3848 if (*v == '.')
3849 v++;
3851 /* Set Q at the next period or at the end. */
3852 q = v;
3853 while (*q != 0 && *q != ' ' && *q != '.')
3854 q++;
3855 /* Empty string means zero. */
3856 if (v == q)
3858 v = "0";
3859 q = v + 1;
3861 /* Put that part into the command. */
3862 obstack_grow (&obstack, v, q - v);
3863 arg_going = 1;
3865 break;
3867 case '|':
3868 if (input_from_pipe)
3869 do_spec_1 ("-", 0, NULL_PTR);
3870 break;
3872 default:
3873 abort ();
3875 break;
3877 case '\\':
3878 /* Backslash: treat next character as ordinary. */
3879 c = *p++;
3881 /* fall through */
3882 default:
3883 /* Ordinary character: put it into the current argument. */
3884 obstack_1grow (&obstack, c);
3885 arg_going = 1;
3888 return 0; /* End of string */
3891 /* Return 0 if we call do_spec_1 and that returns -1. */
3893 static char *
3894 handle_braces (p)
3895 register char *p;
3897 register char *q;
3898 char *filter;
3899 int pipe_p = 0;
3900 int negate = 0;
3901 int suffix = 0;
3903 if (*p == '|')
3904 /* A `|' after the open-brace means,
3905 if the test fails, output a single minus sign rather than nothing.
3906 This is used in %{|!pipe:...}. */
3907 pipe_p = 1, ++p;
3909 if (*p == '!')
3910 /* A `!' after the open-brace negates the condition:
3911 succeed if the specified switch is not present. */
3912 negate = 1, ++p;
3914 if (*p == '.')
3915 /* A `.' after the open-brace means test against the current suffix. */
3917 if (pipe_p)
3918 abort ();
3920 suffix = 1;
3921 ++p;
3924 filter = p;
3925 while (*p != ':' && *p != '}') p++;
3926 if (*p != '}')
3928 register int count = 1;
3929 q = p + 1;
3930 while (count > 0)
3932 if (*q == '{')
3933 count++;
3934 else if (*q == '}')
3935 count--;
3936 else if (*q == 0)
3937 abort ();
3938 q++;
3941 else
3942 q = p + 1;
3944 if (suffix)
3946 int found = (input_suffix != 0
3947 && strlen (input_suffix) == p - filter
3948 && strncmp (input_suffix, filter, p - filter) == 0);
3950 if (p[0] == '}')
3951 abort ();
3953 if (negate != found
3954 && do_spec_1 (save_string (p + 1, q - p - 2), 0, NULL_PTR) < 0)
3955 return 0;
3957 return q;
3959 else if (p[-1] == '*' && p[0] == '}')
3961 /* Substitute all matching switches as separate args. */
3962 register int i;
3963 --p;
3964 for (i = 0; i < n_switches; i++)
3965 if (!strncmp (switches[i].part1, filter, p - filter)
3966 && check_live_switch (i, p - filter))
3967 give_switch (i, 0);
3969 else
3971 /* Test for presence of the specified switch. */
3972 register int i;
3973 int present = 0;
3975 /* If name specified ends in *, as in {x*:...},
3976 check for %* and handle that case. */
3977 if (p[-1] == '*' && !negate)
3979 int substitution;
3980 char *r = p;
3982 /* First see whether we have %*. */
3983 substitution = 0;
3984 while (r < q)
3986 if (*r == '%' && r[1] == '*')
3987 substitution = 1;
3988 r++;
3990 /* If we do, handle that case. */
3991 if (substitution)
3993 /* Substitute all matching switches as separate args.
3994 But do this by substituting for %*
3995 in the text that follows the colon. */
3997 unsigned hard_match_len = p - filter - 1;
3998 char *string = save_string (p + 1, q - p - 2);
4000 for (i = 0; i < n_switches; i++)
4001 if (!strncmp (switches[i].part1, filter, hard_match_len)
4002 && check_live_switch (i, -1))
4004 do_spec_1 (string, 0, &switches[i].part1[hard_match_len]);
4005 /* Pass any arguments this switch has. */
4006 give_switch (i, 1);
4009 return q;
4013 /* If name specified ends in *, as in {x*:...},
4014 check for presence of any switch name starting with x. */
4015 if (p[-1] == '*')
4017 for (i = 0; i < n_switches; i++)
4019 unsigned hard_match_len = p - filter - 1;
4021 if (!strncmp (switches[i].part1, filter, hard_match_len)
4022 && check_live_switch (i, hard_match_len))
4024 present = 1;
4028 /* Otherwise, check for presence of exact name specified. */
4029 else
4031 for (i = 0; i < n_switches; i++)
4033 if (!strncmp (switches[i].part1, filter, p - filter)
4034 && switches[i].part1[p - filter] == 0
4035 && check_live_switch (i, -1))
4037 present = 1;
4038 break;
4043 /* If it is as desired (present for %{s...}, absent for %{-s...})
4044 then substitute either the switch or the specified
4045 conditional text. */
4046 if (present != negate)
4048 if (*p == '}')
4050 give_switch (i, 0);
4052 else
4054 if (do_spec_1 (save_string (p + 1, q - p - 2), 0, NULL_PTR) < 0)
4055 return 0;
4058 else if (pipe_p)
4060 /* Here if a %{|...} conditional fails: output a minus sign,
4061 which means "standard output" or "standard input". */
4062 do_spec_1 ("-", 0, NULL_PTR);
4066 return q;
4069 /* Return 0 iff switch number SWITCHNUM is obsoleted by a later switch
4070 on the command line. PREFIX_LENGTH is the length of XXX in an {XXX*}
4071 spec, or -1 if either exact match or %* is used.
4073 A -O switch is obsoleted by a later -O switch. A -f, -m, or -W switch
4074 whose value does not begin with "no-" is obsoleted by the same value
4075 with the "no-", similarly for a switch with the "no-" prefix. */
4077 static int
4078 check_live_switch (switchnum, prefix_length)
4079 int switchnum;
4080 int prefix_length;
4082 char *name = switches[switchnum].part1;
4083 int i;
4085 /* In the common case of {<at-most-one-letter>*}, a negating
4086 switch would always match, so ignore that case. We will just
4087 send the conflicting switches to the compiler phase. */
4088 if (prefix_length >= 0 && prefix_length <= 1)
4089 return 1;
4091 /* If we already processed this switch and determined if it was
4092 live or not, return our past determination. */
4093 if (switches[switchnum].live_cond != 0)
4094 return switches[switchnum].live_cond > 0;
4096 /* Now search for duplicate in a manner that depends on the name. */
4097 switch (*name)
4099 case 'O':
4100 for (i = switchnum + 1; i < n_switches; i++)
4101 if (switches[i].part1[0] == 'O')
4103 switches[switchnum].valid = 1;
4104 switches[switchnum].live_cond = -1;
4105 return 0;
4107 break;
4109 case 'W': case 'f': case 'm':
4110 if (! strncmp (name + 1, "no-", 3))
4112 /* We have Xno-YYY, search for XYYY. */
4113 for (i = switchnum + 1; i < n_switches; i++)
4114 if (switches[i].part1[0] == name[0]
4115 && ! strcmp (&switches[i].part1[1], &name[4]))
4117 switches[switchnum].valid = 1;
4118 switches[switchnum].live_cond = -1;
4119 return 0;
4122 else
4124 /* We have XYYY, search for Xno-YYY. */
4125 for (i = switchnum + 1; i < n_switches; i++)
4126 if (switches[i].part1[0] == name[0]
4127 && switches[i].part1[1] == 'n'
4128 && switches[i].part1[2] == 'o'
4129 && switches[i].part1[3] == '-'
4130 && !strcmp (&switches[i].part1[4], &name[1]))
4132 switches[switchnum].valid = 1;
4133 switches[switchnum].live_cond = -1;
4134 return 0;
4137 break;
4140 /* Otherwise the switch is live. */
4141 switches[switchnum].live_cond = 1;
4142 return 1;
4145 /* Pass a switch to the current accumulating command
4146 in the same form that we received it.
4147 SWITCHNUM identifies the switch; it is an index into
4148 the vector of switches gcc received, which is `switches'.
4149 This cannot fail since it never finishes a command line.
4151 If OMIT_FIRST_WORD is nonzero, then we omit .part1 of the argument. */
4153 static void
4154 give_switch (switchnum, omit_first_word)
4155 int switchnum;
4156 int omit_first_word;
4158 if (!omit_first_word)
4160 do_spec_1 ("-", 0, NULL_PTR);
4161 do_spec_1 (switches[switchnum].part1, 1, NULL_PTR);
4163 do_spec_1 (" ", 0, NULL_PTR);
4164 if (switches[switchnum].args != 0)
4166 char **p;
4167 for (p = switches[switchnum].args; *p; p++)
4169 do_spec_1 (*p, 1, NULL_PTR);
4170 do_spec_1 (" ", 0, NULL_PTR);
4173 switches[switchnum].valid = 1;
4176 /* Search for a file named NAME trying various prefixes including the
4177 user's -B prefix and some standard ones.
4178 Return the absolute file name found. If nothing is found, return NAME. */
4180 static char *
4181 find_file (name)
4182 char *name;
4184 char *newname;
4186 /* Try multilib_dir if it is defined. */
4187 if (multilib_dir != NULL)
4189 char *try;
4191 try = (char *) alloca (strlen (multilib_dir) + strlen (name) + 2);
4192 strcpy (try, multilib_dir);
4193 strcat (try, dir_separator_str);
4194 strcat (try, name);
4196 newname = find_a_file (&startfile_prefixes, try, R_OK);
4198 /* If we don't find it in the multi library dir, then fall
4199 through and look for it in the normal places. */
4200 if (newname != NULL)
4201 return newname;
4204 newname = find_a_file (&startfile_prefixes, name, R_OK);
4205 return newname ? newname : name;
4208 /* Determine whether a directory exists. If LINKER, return 0 for
4209 certain fixed names not needed by the linker. If not LINKER, it is
4210 only important to return 0 if the host machine has a small ARG_MAX
4211 limit. */
4213 static int
4214 is_directory (path1, path2, linker)
4215 char *path1;
4216 char *path2;
4217 int linker;
4219 int len1 = strlen (path1);
4220 int len2 = strlen (path2);
4221 char *path = (char *) alloca (3 + len1 + len2);
4222 char *cp;
4223 struct stat st;
4225 #ifndef SMALL_ARG_MAX
4226 if (! linker)
4227 return 1;
4228 #endif
4230 /* Construct the path from the two parts. Ensure the string ends with "/.".
4231 The resulting path will be a directory even if the given path is a
4232 symbolic link. */
4233 bcopy (path1, path, len1);
4234 bcopy (path2, path + len1, len2);
4235 cp = path + len1 + len2;
4236 if (cp[-1] != '/' && cp[-1] != DIR_SEPARATOR)
4237 *cp++ = DIR_SEPARATOR;
4238 *cp++ = '.';
4239 *cp = '\0';
4241 /* Exclude directories that the linker is known to search. */
4242 if (linker
4243 && ((cp - path == 6
4244 && strcmp (path, concat4 (dir_separator_str, "lib",
4245 dir_separator_str, ".")) == 0)
4246 || (cp - path == 10
4247 && strcmp (path, concat6 (dir_separator_str, "usr",
4248 dir_separator_str, "lib",
4249 dir_separator_str, ".")) == 0)))
4250 return 0;
4252 return (stat (path, &st) >= 0 && S_ISDIR (st.st_mode));
4255 /* On fatal signals, delete all the temporary files. */
4257 static void
4258 fatal_error (signum)
4259 int signum;
4261 signal (signum, SIG_DFL);
4262 delete_failure_queue ();
4263 delete_temp_files ();
4264 /* Get the same signal again, this time not handled,
4265 so its normal effect occurs. */
4266 kill (getpid (), signum);
4270 main (argc, argv)
4271 int argc;
4272 char **argv;
4274 register int i;
4275 int j;
4276 int value;
4277 int linker_was_run = 0;
4278 char *explicit_link_files;
4279 char *specs_file;
4280 char *p;
4282 p = argv[0] + strlen (argv[0]);
4283 while (p != argv[0] && p[-1] != '/' && p[-1] != DIR_SEPARATOR) --p;
4284 programname = p;
4286 if (signal (SIGINT, SIG_IGN) != SIG_IGN)
4287 signal (SIGINT, fatal_error);
4288 #ifdef SIGHUP
4289 if (signal (SIGHUP, SIG_IGN) != SIG_IGN)
4290 signal (SIGHUP, fatal_error);
4291 #endif
4292 if (signal (SIGTERM, SIG_IGN) != SIG_IGN)
4293 signal (SIGTERM, fatal_error);
4294 #ifdef SIGPIPE
4295 if (signal (SIGPIPE, SIG_IGN) != SIG_IGN)
4296 signal (SIGPIPE, fatal_error);
4297 #endif
4299 argbuf_length = 10;
4300 argbuf = (char **) xmalloc (argbuf_length * sizeof (char *));
4302 obstack_init (&obstack);
4304 /* Set up to remember the pathname of gcc and any options
4305 needed for collect. We use argv[0] instead of programname because
4306 we need the complete pathname. */
4307 obstack_init (&collect_obstack);
4308 obstack_grow (&collect_obstack, "COLLECT_GCC=", sizeof ("COLLECT_GCC=")-1);
4309 obstack_grow (&collect_obstack, argv[0], strlen (argv[0])+1);
4310 putenv (obstack_finish (&collect_obstack));
4312 #ifdef INIT_ENVIRONMENT
4313 /* Set up any other necessary machine specific environment variables. */
4314 putenv (INIT_ENVIRONMENT);
4315 #endif
4317 /* Choose directory for temp files. */
4319 choose_temp_base ();
4321 /* Make a table of what switches there are (switches, n_switches).
4322 Make a table of specified input files (infiles, n_infiles).
4323 Decode switches that are handled locally. */
4325 process_command (argc, argv);
4327 /* Initialize the vector of specs to just the default.
4328 This means one element containing 0s, as a terminator. */
4330 compilers = (struct compiler *) xmalloc (sizeof default_compilers);
4331 bcopy ((char *) default_compilers, (char *) compilers,
4332 sizeof default_compilers);
4333 n_compilers = n_default_compilers;
4335 /* Read specs from a file if there is one. */
4337 machine_suffix = concat4 (spec_machine, dir_separator_str,
4338 spec_version, dir_separator_str);
4339 just_machine_suffix = concat (spec_machine, dir_separator_str);
4341 specs_file = find_a_file (&startfile_prefixes, "specs", R_OK);
4342 /* Read the specs file unless it is a default one. */
4343 if (specs_file != 0 && strcmp (specs_file, "specs"))
4344 read_specs (specs_file);
4346 #ifdef EXTRA_SPECS
4347 else
4349 int k;
4350 for (k = 0; k < sizeof (extra_specs) / sizeof (extra_specs[0]); k++)
4351 set_spec (extra_specs[k].name, extra_specs[k].spec);
4353 #endif
4355 /* If not cross-compiling, look for startfiles in the standard places. */
4356 /* The fact that these are done here, after reading the specs file,
4357 means that it cannot be found in these directories.
4358 But that's okay. It should never be there anyway. */
4359 if (!cross_compile)
4361 #ifdef MD_EXEC_PREFIX
4362 add_prefix (&exec_prefixes, md_exec_prefix, 0, 0, NULL_PTR);
4363 add_prefix (&startfile_prefixes, md_exec_prefix, 0, 0, NULL_PTR);
4364 #endif
4366 #ifdef MD_STARTFILE_PREFIX
4367 add_prefix (&startfile_prefixes, md_startfile_prefix, 0, 0, NULL_PTR);
4368 #endif
4370 #ifdef MD_STARTFILE_PREFIX_1
4371 add_prefix (&startfile_prefixes, md_startfile_prefix_1, 0, 0, NULL_PTR);
4372 #endif
4374 /* If standard_startfile_prefix is relative, base it on
4375 standard_exec_prefix. This lets us move the installed tree
4376 as a unit. If GCC_EXEC_PREFIX is defined, base
4377 standard_startfile_prefix on that as well. */
4378 if (*standard_startfile_prefix == '/'
4379 || *standard_startfile_prefix == DIR_SEPARATOR)
4380 add_prefix (&startfile_prefixes, standard_startfile_prefix, 0, 0,
4381 NULL_PTR);
4382 else
4384 if (gcc_exec_prefix)
4385 add_prefix (&startfile_prefixes,
4386 concat3 (gcc_exec_prefix, machine_suffix,
4387 standard_startfile_prefix),
4388 0, 0, NULL_PTR);
4389 add_prefix (&startfile_prefixes,
4390 concat3 (standard_exec_prefix,
4391 machine_suffix,
4392 standard_startfile_prefix),
4393 0, 0, NULL_PTR);
4396 add_prefix (&startfile_prefixes, standard_startfile_prefix_1, 0, 0,
4397 NULL_PTR);
4398 add_prefix (&startfile_prefixes, standard_startfile_prefix_2, 0, 0,
4399 NULL_PTR);
4400 #if 0 /* Can cause surprises, and one can use -B./ instead. */
4401 add_prefix (&startfile_prefixes, "./", 0, 1, NULL_PTR);
4402 #endif
4404 else
4406 if (*standard_startfile_prefix != DIR_SEPARATOR && gcc_exec_prefix)
4407 add_prefix (&startfile_prefixes,
4408 concat3 (gcc_exec_prefix, machine_suffix,
4409 standard_startfile_prefix),
4410 0, 0, NULL_PTR);
4413 /* If we have a GCC_EXEC_PREFIX envvar, modify it for cpp's sake. */
4414 if (gcc_exec_prefix)
4416 char * temp = (char *) xmalloc (strlen (gcc_exec_prefix)
4417 + strlen (spec_version)
4418 + strlen (spec_machine) + 3);
4419 strcpy (temp, gcc_exec_prefix);
4420 strcat (temp, spec_machine);
4421 strcat (temp, dir_separator_str);
4422 strcat (temp, spec_version);
4423 strcat (temp, dir_separator_str);
4424 gcc_exec_prefix = temp;
4427 /* Now we have the specs.
4428 Set the `valid' bits for switches that match anything in any spec. */
4430 validate_all_switches ();
4432 /* Now that we have the switches and the specs, set
4433 the subdirectory based on the options. */
4434 set_multilib_dir ();
4436 /* Warn about any switches that no pass was interested in. */
4438 for (i = 0; i < n_switches; i++)
4439 if (! switches[i].valid)
4440 error ("unrecognized option `-%s'", switches[i].part1);
4442 /* Obey some of the options. */
4444 if (print_search_dirs)
4446 printf ("install: %s%s\n", standard_exec_prefix, machine_suffix);
4447 printf ("programs: %s\n", build_search_list (&exec_prefixes, "", 0));
4448 printf ("libraries: %s\n", build_search_list (&startfile_prefixes, "", 0));
4449 exit (0);
4452 if (print_file_name)
4454 printf ("%s\n", find_file (print_file_name));
4455 exit (0);
4458 if (print_prog_name)
4460 char *newname = find_a_file (&exec_prefixes, print_prog_name, X_OK);
4461 printf ("%s\n", (newname ? newname : print_prog_name));
4462 exit (0);
4465 if (print_multi_lib)
4467 print_multilib_info ();
4468 exit (0);
4471 if (print_multi_directory)
4473 if (multilib_dir == NULL)
4474 printf (".\n");
4475 else
4476 printf ("%s\n", multilib_dir);
4477 exit (0);
4480 if (verbose_flag)
4482 if (! strcmp (version_string, compiler_version))
4483 fprintf (stderr, "gcc version %s\n", version_string);
4484 else
4485 fprintf (stderr, "gcc driver version %s executing gcc version %s\n",
4486 version_string, compiler_version);
4488 if (n_infiles == 0)
4489 exit (0);
4492 if (n_infiles == 0)
4493 fatal ("No input files");
4495 /* Make a place to record the compiler output file names
4496 that correspond to the input files. */
4498 outfiles = (char **) xmalloc (n_infiles * sizeof (char *));
4499 bzero ((char *) outfiles, n_infiles * sizeof (char *));
4501 /* Record which files were specified explicitly as link input. */
4503 explicit_link_files = xmalloc (n_infiles);
4504 bzero (explicit_link_files, n_infiles);
4506 for (i = 0; i < n_infiles; i++)
4508 register struct compiler *cp = 0;
4509 int this_file_error = 0;
4511 /* Tell do_spec what to substitute for %i. */
4513 input_filename = infiles[i].name;
4514 input_filename_length = strlen (input_filename);
4515 input_file_number = i;
4517 /* Use the same thing in %o, unless cp->spec says otherwise. */
4519 outfiles[i] = input_filename;
4521 /* Figure out which compiler from the file's suffix. */
4523 cp = lookup_compiler (infiles[i].name, input_filename_length,
4524 infiles[i].language);
4526 if (cp)
4528 /* Ok, we found an applicable compiler. Run its spec. */
4529 /* First say how much of input_filename to substitute for %b */
4530 register char *p;
4531 int len;
4533 input_basename = input_filename;
4534 for (p = input_filename; *p; p++)
4535 if (*p == '/' || *p == DIR_SEPARATOR)
4536 input_basename = p + 1;
4538 /* Find a suffix starting with the last period,
4539 and set basename_length to exclude that suffix. */
4540 basename_length = strlen (input_basename);
4541 p = input_basename + basename_length;
4542 while (p != input_basename && *p != '.') --p;
4543 if (*p == '.' && p != input_basename)
4545 basename_length = p - input_basename;
4546 input_suffix = p + 1;
4548 else
4549 input_suffix = "";
4551 len = 0;
4552 for (j = 0; j < sizeof cp->spec / sizeof cp->spec[0]; j++)
4553 if (cp->spec[j])
4554 len += strlen (cp->spec[j]);
4556 p = (char *) xmalloc (len + 1);
4558 len = 0;
4559 for (j = 0; j < sizeof cp->spec / sizeof cp->spec[0]; j++)
4560 if (cp->spec[j])
4562 strcpy (p + len, cp->spec[j]);
4563 len += strlen (cp->spec[j]);
4566 value = do_spec (p);
4567 free (p);
4568 if (value < 0)
4569 this_file_error = 1;
4572 /* If this file's name does not contain a recognized suffix,
4573 record it as explicit linker input. */
4575 else
4576 explicit_link_files[i] = 1;
4578 /* Clear the delete-on-failure queue, deleting the files in it
4579 if this compilation failed. */
4581 if (this_file_error)
4583 delete_failure_queue ();
4584 error_count++;
4586 /* If this compilation succeeded, don't delete those files later. */
4587 clear_failure_queue ();
4590 /* Run ld to link all the compiler output files. */
4592 if (error_count == 0)
4594 int tmp = execution_count;
4595 int i;
4596 int first_time;
4598 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
4599 for collect. */
4600 putenv_from_prefixes (&exec_prefixes, "COMPILER_PATH=");
4601 putenv_from_prefixes (&startfile_prefixes, "LIBRARY_PATH=");
4603 /* Build COLLECT_GCC_OPTIONS to have all of the options specified to
4604 the compiler. */
4605 obstack_grow (&collect_obstack, "COLLECT_GCC_OPTIONS=",
4606 sizeof ("COLLECT_GCC_OPTIONS=")-1);
4608 first_time = TRUE;
4609 for (i = 0; i < n_switches; i++)
4611 char **args;
4612 if (!first_time)
4613 obstack_grow (&collect_obstack, " ", 1);
4615 first_time = FALSE;
4616 obstack_grow (&collect_obstack, "-", 1);
4617 obstack_grow (&collect_obstack, switches[i].part1,
4618 strlen (switches[i].part1));
4620 for (args = switches[i].args; args && *args; args++)
4622 obstack_grow (&collect_obstack, " ", 1);
4623 obstack_grow (&collect_obstack, *args, strlen (*args));
4626 obstack_grow (&collect_obstack, "\0", 1);
4627 putenv (obstack_finish (&collect_obstack));
4629 value = do_spec (link_command_spec);
4630 if (value < 0)
4631 error_count = 1;
4632 linker_was_run = (tmp != execution_count);
4635 /* Warn if a -B option was specified but the prefix was never used. */
4636 unused_prefix_warnings (&exec_prefixes);
4637 unused_prefix_warnings (&startfile_prefixes);
4639 /* If options said don't run linker,
4640 complain about input files to be given to the linker. */
4642 if (! linker_was_run && error_count == 0)
4643 for (i = 0; i < n_infiles; i++)
4644 if (explicit_link_files[i])
4645 error ("%s: linker input file unused since linking not done",
4646 outfiles[i]);
4648 /* Delete some or all of the temporary files we made. */
4650 if (error_count)
4651 delete_failure_queue ();
4652 delete_temp_files ();
4654 exit (error_count > 0 ? (signal_count ? 2 : 1) : 0);
4655 /* NOTREACHED */
4656 return 0;
4659 /* Find the proper compilation spec for the file name NAME,
4660 whose length is LENGTH. LANGUAGE is the specified language,
4661 or 0 if none specified. */
4663 static struct compiler *
4664 lookup_compiler (name, length, language)
4665 char *name;
4666 int length;
4667 char *language;
4669 struct compiler *cp;
4671 /* Look for the language, if one is spec'd. */
4672 if (language != 0)
4674 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
4676 if (language != 0)
4678 if (cp->suffix[0] == '@'
4679 && !strcmp (cp->suffix + 1, language))
4680 return cp;
4683 error ("language %s not recognized", language);
4686 /* Look for a suffix. */
4687 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
4689 if (/* The suffix `-' matches only the file name `-'. */
4690 (!strcmp (cp->suffix, "-") && !strcmp (name, "-"))
4692 (strlen (cp->suffix) < length
4693 /* See if the suffix matches the end of NAME. */
4694 #ifdef OS2
4695 && (!strcmp (cp->suffix,
4696 name + length - strlen (cp->suffix))
4697 || !strpbrk (cp->suffix, "ABCDEFGHIJKLMNOPQRSTUVWXYZ")
4698 && !strcasecmp (cp->suffix,
4699 name + length - strlen (cp->suffix)))))
4700 #else
4701 && !strcmp (cp->suffix,
4702 name + length - strlen (cp->suffix))))
4703 #endif
4705 if (cp->spec[0][0] == '@')
4707 struct compiler *new;
4708 /* An alias entry maps a suffix to a language.
4709 Search for the language; pass 0 for NAME and LENGTH
4710 to avoid infinite recursion if language not found.
4711 Construct the new compiler spec. */
4712 language = cp->spec[0] + 1;
4713 new = (struct compiler *) xmalloc (sizeof (struct compiler));
4714 new->suffix = cp->suffix;
4715 bcopy ((char *) lookup_compiler (NULL_PTR, 0, language)->spec,
4716 (char *) new->spec, sizeof new->spec);
4717 return new;
4719 /* A non-alias entry: return it. */
4720 return cp;
4724 return 0;
4727 char *
4728 xmalloc (size)
4729 unsigned size;
4731 register char *value = (char *) malloc (size);
4732 if (value == 0)
4733 fatal ("virtual memory exhausted");
4734 return value;
4737 char *
4738 xrealloc (ptr, size)
4739 char *ptr;
4740 unsigned size;
4742 register char *value = (char *) realloc (ptr, size);
4743 if (value == 0)
4744 fatal ("virtual memory exhausted");
4745 return value;
4748 /* Return a newly-allocated string whose contents concatenate those of s1, s2 */
4750 static char *
4751 concat (s1, s2)
4752 char *s1, *s2;
4754 int len1 = strlen (s1);
4755 int len2 = strlen (s2);
4756 char *result = xmalloc (len1 + len2 + 1);
4758 strcpy (result, s1);
4759 strcpy (result + len1, s2);
4760 *(result + len1 + len2) = 0;
4762 return result;
4765 static char *
4766 concat3 (s1, s2, s3)
4767 char *s1, *s2, *s3;
4769 return concat (concat (s1, s2), s3);
4772 static char *
4773 concat4 (s1, s2, s3, s4)
4774 char *s1, *s2, *s3, *s4;
4776 return concat (concat (s1, s2), concat (s3, s4));
4779 static char *
4780 concat6 (s1, s2, s3, s4, s5, s6)
4781 char *s1, *s2, *s3, *s4, *s5, *s6;
4783 return concat3 (concat (s1, s2), concat (s3, s4), concat (s5, s6));
4786 static char *
4787 save_string (s, len)
4788 char *s;
4789 int len;
4791 register char *result = xmalloc (len + 1);
4793 bcopy (s, result, len);
4794 result[len] = 0;
4795 return result;
4798 static void
4799 pfatal_with_name (name)
4800 char *name;
4802 fatal ("%s: %s", name, my_strerror (errno));
4805 static void
4806 perror_with_name (name)
4807 char *name;
4809 error ("%s: %s", name, my_strerror (errno));
4812 static void
4813 perror_exec (name)
4814 char *name;
4816 error ("installation problem, cannot exec `%s': %s",
4817 name, my_strerror (errno));
4820 /* More 'friendly' abort that prints the line and file.
4821 config.h can #define abort fancy_abort if you like that sort of thing. */
4823 void
4824 fancy_abort ()
4826 fatal ("Internal gcc abort.");
4829 #ifdef HAVE_VPRINTF
4831 /* Output an error message and exit */
4833 static void
4834 fatal VPROTO((char *format, ...))
4836 #ifndef __STDC__
4837 char *format;
4838 #endif
4839 va_list ap;
4841 VA_START (ap, format);
4843 #ifndef __STDC__
4844 format = va_arg (ap, char*);
4845 #endif
4847 fprintf (stderr, "%s: ", programname);
4848 vfprintf (stderr, format, ap);
4849 va_end (ap);
4850 fprintf (stderr, "\n");
4851 delete_temp_files ();
4852 exit (1);
4855 static void
4856 error VPROTO((char *format, ...))
4858 #ifndef __STDC__
4859 char *format;
4860 #endif
4861 va_list ap;
4863 VA_START (ap, format);
4865 #ifndef __STDC__
4866 format = va_arg (ap, char*);
4867 #endif
4869 fprintf (stderr, "%s: ", programname);
4870 vfprintf (stderr, format, ap);
4871 va_end (ap);
4873 fprintf (stderr, "\n");
4876 #else /* not HAVE_VPRINTF */
4878 static void
4879 fatal (msg, arg1, arg2)
4880 char *msg, *arg1, *arg2;
4882 error (msg, arg1, arg2);
4883 delete_temp_files ();
4884 exit (1);
4887 static void
4888 error (msg, arg1, arg2)
4889 char *msg, *arg1, *arg2;
4891 fprintf (stderr, "%s: ", programname);
4892 fprintf (stderr, msg, arg1, arg2);
4893 fprintf (stderr, "\n");
4896 #endif /* not HAVE_VPRINTF */
4899 static void
4900 validate_all_switches ()
4902 struct compiler *comp;
4903 register char *p;
4904 register char c;
4905 struct spec_list *spec;
4907 for (comp = compilers; comp->spec[0]; comp++)
4909 int i;
4910 for (i = 0; i < sizeof comp->spec / sizeof comp->spec[0] && comp->spec[i]; i++)
4912 p = comp->spec[i];
4913 while (c = *p++)
4914 if (c == '%' && *p == '{')
4915 /* We have a switch spec. */
4916 validate_switches (p + 1);
4920 /* look through the linked list of extra specs read from the specs file */
4921 for (spec = specs; spec ; spec = spec->next)
4923 p = spec->spec;
4924 while (c = *p++)
4925 if (c == '%' && *p == '{')
4926 /* We have a switch spec. */
4927 validate_switches (p + 1);
4930 p = link_command_spec;
4931 while (c = *p++)
4932 if (c == '%' && *p == '{')
4933 /* We have a switch spec. */
4934 validate_switches (p + 1);
4936 /* Now notice switches mentioned in the machine-specific specs. */
4938 p = asm_spec;
4939 while (c = *p++)
4940 if (c == '%' && *p == '{')
4941 /* We have a switch spec. */
4942 validate_switches (p + 1);
4944 p = asm_final_spec;
4945 while (c = *p++)
4946 if (c == '%' && *p == '{')
4947 /* We have a switch spec. */
4948 validate_switches (p + 1);
4950 p = cpp_spec;
4951 while (c = *p++)
4952 if (c == '%' && *p == '{')
4953 /* We have a switch spec. */
4954 validate_switches (p + 1);
4956 p = signed_char_spec;
4957 while (c = *p++)
4958 if (c == '%' && *p == '{')
4959 /* We have a switch spec. */
4960 validate_switches (p + 1);
4962 p = cc1_spec;
4963 while (c = *p++)
4964 if (c == '%' && *p == '{')
4965 /* We have a switch spec. */
4966 validate_switches (p + 1);
4968 p = cc1plus_spec;
4969 while (c = *p++)
4970 if (c == '%' && *p == '{')
4971 /* We have a switch spec. */
4972 validate_switches (p + 1);
4974 p = link_spec;
4975 while (c = *p++)
4976 if (c == '%' && *p == '{')
4977 /* We have a switch spec. */
4978 validate_switches (p + 1);
4980 p = lib_spec;
4981 while (c = *p++)
4982 if (c == '%' && *p == '{')
4983 /* We have a switch spec. */
4984 validate_switches (p + 1);
4986 p = libgcc_spec;
4987 while (c = *p++)
4988 if (c == '%' && *p == '{')
4989 /* We have a switch spec. */
4990 validate_switches (p + 1);
4992 p = startfile_spec;
4993 while (c = *p++)
4994 if (c == '%' && *p == '{')
4995 /* We have a switch spec. */
4996 validate_switches (p + 1);
4998 #ifdef EXTRA_SPECS
5000 int i;
5001 for (i = 0; i < sizeof (extra_specs) / sizeof (extra_specs[0]); i++)
5003 p = extra_specs[i].spec;
5004 while (c = *p++)
5005 if (c == '%' && *p == '{')
5006 /* We have a switch spec. */
5007 validate_switches (p + 1);
5010 #endif
5014 /* Look at the switch-name that comes after START
5015 and mark as valid all supplied switches that match it. */
5017 static void
5018 validate_switches (start)
5019 char *start;
5021 register char *p = start;
5022 char *filter;
5023 register int i;
5024 int suffix = 0;
5026 if (*p == '|')
5027 ++p;
5029 if (*p == '!')
5030 ++p;
5032 if (*p == '.')
5033 suffix = 1, ++p;
5035 filter = p;
5036 while (*p != ':' && *p != '}') p++;
5038 if (suffix)
5040 else if (p[-1] == '*')
5042 /* Mark all matching switches as valid. */
5043 --p;
5044 for (i = 0; i < n_switches; i++)
5045 if (!strncmp (switches[i].part1, filter, p - filter))
5046 switches[i].valid = 1;
5048 else
5050 /* Mark an exact matching switch as valid. */
5051 for (i = 0; i < n_switches; i++)
5053 if (!strncmp (switches[i].part1, filter, p - filter)
5054 && switches[i].part1[p - filter] == 0)
5055 switches[i].valid = 1;
5060 /* Check whether a particular argument was used. */
5062 static int
5063 used_arg (p, len)
5064 char *p;
5065 int len;
5067 int i;
5069 for (i = 0; i < n_switches; i++)
5070 if (! strncmp (switches[i].part1, p, len)
5071 && strlen (switches[i].part1) == len)
5072 return 1;
5073 return 0;
5076 /* Check whether a particular argument is a default argument. */
5078 #ifndef MULTILIB_DEFAULTS
5079 #define MULTILIB_DEFAULTS { NULL }
5080 #endif
5082 static char *multilib_defaults[] = MULTILIB_DEFAULTS;
5084 static int
5085 default_arg (p, len)
5086 char *p;
5087 int len;
5089 int count = sizeof multilib_defaults / sizeof multilib_defaults[0];
5090 int i;
5092 for (i = 0; i < count; i++)
5093 if (multilib_defaults[i] != NULL
5094 && strncmp (multilib_defaults[i], p, len) == 0
5095 && multilib_defaults[i][len] == '\0')
5096 return 1;
5098 return 0;
5101 /* Work out the subdirectory to use based on the
5102 options. The format of multilib_select is a list of elements.
5103 Each element is a subdirectory name followed by a list of options
5104 followed by a semicolon. gcc will consider each line in turn. If
5105 none of the options beginning with an exclamation point are
5106 present, and all of the other options are present, that
5107 subdirectory will be used. */
5109 static void
5110 set_multilib_dir ()
5112 char *p = multilib_select;
5113 int this_path_len;
5114 char *this_path, *this_arg;
5115 int not_arg;
5116 int ok;
5118 while (*p != '\0')
5120 /* Ignore newlines. */
5121 if (*p == '\n')
5123 ++p;
5124 continue;
5127 /* Get the initial path. */
5128 this_path = p;
5129 while (*p != ' ')
5131 if (*p == '\0')
5132 abort ();
5133 ++p;
5135 this_path_len = p - this_path;
5137 /* Check the arguments. */
5138 ok = 1;
5139 ++p;
5140 while (*p != ';')
5142 if (*p == '\0')
5143 abort ();
5145 if (! ok)
5147 ++p;
5148 continue;
5151 this_arg = p;
5152 while (*p != ' ' && *p != ';')
5154 if (*p == '\0')
5155 abort ();
5156 ++p;
5159 if (*this_arg != '!')
5160 not_arg = 0;
5161 else
5163 not_arg = 1;
5164 ++this_arg;
5167 /* If this is a default argument, we can just ignore it.
5168 This is true even if this_arg begins with '!'. Beginning
5169 with '!' does not mean that this argument is necessarily
5170 inappropriate for this library: it merely means that
5171 there is a more specific library which uses this
5172 argument. If this argument is a default, we need not
5173 consider that more specific library. */
5174 if (! default_arg (this_arg, p - this_arg))
5176 ok = used_arg (this_arg, p - this_arg);
5177 if (not_arg)
5178 ok = ! ok;
5181 if (*p == ' ')
5182 ++p;
5185 if (ok)
5187 if (this_path_len != 1
5188 || this_path[0] != '.')
5190 multilib_dir = xmalloc (this_path_len + 1);
5191 strncpy (multilib_dir, this_path, this_path_len);
5192 multilib_dir[this_path_len] = '\0';
5194 break;
5197 ++p;
5201 /* Print out the multiple library subdirectory selection
5202 information. This prints out a series of lines. Each line looks
5203 like SUBDIRECTORY;@OPTION@OPTION, with as many options as is
5204 required. Only the desired options are printed out, the negative
5205 matches. The options are print without a leading dash. There are
5206 no spaces to make it easy to use the information in the shell.
5207 Each subdirectory is printed only once. This assumes the ordering
5208 generated by the genmultilib script. */
5210 static void
5211 print_multilib_info ()
5213 char *p = multilib_select;
5214 char *last_path = 0, *this_path;
5215 int skip;
5216 int last_path_len = 0;
5218 while (*p != '\0')
5220 /* Ignore newlines. */
5221 if (*p == '\n')
5223 ++p;
5224 continue;
5227 /* Get the initial path. */
5228 this_path = p;
5229 while (*p != ' ')
5231 if (*p == '\0')
5232 abort ();
5233 ++p;
5236 /* If this is a duplicate, skip it. */
5237 skip = (last_path != 0 && p - this_path == last_path_len
5238 && ! strncmp (last_path, this_path, last_path_len));
5240 last_path = this_path;
5241 last_path_len = p - this_path;
5243 /* If this directory requires any default arguments, we can skip
5244 it. We will already have printed a directory identical to
5245 this one which does not require that default argument. */
5246 if (! skip)
5248 char *q;
5250 q = p + 1;
5251 while (*q != ';')
5253 char *arg;
5255 if (*q == '\0')
5256 abort ();
5258 if (*q == '!')
5259 arg = NULL;
5260 else
5261 arg = q;
5263 while (*q != ' ' && *q != ';')
5265 if (*q == '\0')
5266 abort ();
5267 ++q;
5270 if (arg != NULL
5271 && default_arg (arg, q - arg))
5273 skip = 1;
5274 break;
5277 if (*q == ' ')
5278 ++q;
5282 if (! skip)
5284 char *p1;
5286 for (p1 = last_path; p1 < p; p1++)
5287 putchar (*p1);
5288 putchar (';');
5291 ++p;
5292 while (*p != ';')
5294 int use_arg;
5296 if (*p == '\0')
5297 abort ();
5299 if (skip)
5301 ++p;
5302 continue;
5305 use_arg = *p != '!';
5307 if (use_arg)
5308 putchar ('@');
5310 while (*p != ' ' && *p != ';')
5312 if (*p == '\0')
5313 abort ();
5314 if (use_arg)
5315 putchar (*p);
5316 ++p;
5319 if (*p == ' ')
5320 ++p;
5323 if (! skip)
5324 putchar ('\n');
5326 ++p;