1 /* Compiler driver program that can handle many languages.
2 Copyright (C) 1987, 89, 92, 93, 94, 1995 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)
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, 675 Mass Ave, Cambridge, MA 02139, USA.
20 This paragraph is here to try to keep Sun CC from dying.
21 The number of chars here seems crucial!!!! */
23 /* This program is the user interface to the C compiler and possibly to
24 other compilers. It is used because compilation is a complicated procedure
25 which involves running several programs and passing temporary files between
26 them, forwarding the users switches to those programs selectively,
27 and deleting the temporary files at the end.
29 CC recognizes how to compile each input file by suffixes in the file names.
30 Once it knows which kind of compilation to perform, the procedure for
31 compilation is specified by a string called a "spec". */
33 #include <sys/types.h>
40 #include <sys/file.h> /* May get R_OK, etc. on some systems. */
54 /* Include multi-lib information. */
64 #define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f)
67 #define WTERMSIG(S) ((S) & 0x7f)
70 #define WIFEXITED(S) (((S) & 0xff) == 0)
73 #define WEXITSTATUS(S) (((S) & 0xff00) >> 8)
76 /* Add prototype support. */
78 #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
79 #define PROTO(ARGS) ARGS
81 #define PROTO(ARGS) ()
87 #define PVPROTO(ARGS) ARGS
88 #define VPROTO(ARGS) ARGS
89 #define VA_START(va_list,var) va_start(va_list,var)
91 #define PVPROTO(ARGS) ()
92 #define VPROTO(ARGS) (va_alist) va_dcl
93 #define VA_START(va_list,var) va_start(va_list)
97 /* Define a generic NULL if one hasn't already been defined. */
103 /* Define O_RDONLY if the system hasn't defined it for us. */
109 #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
110 #define GENERIC_PTR void *
112 #define GENERIC_PTR char *
117 #define NULL_PTR ((GENERIC_PTR)0)
124 /* On MSDOS, write temp files in current dir
125 because there's no place else we can expect to use. */
132 /* Test if something is a normal file. */
134 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
137 /* Test if something is a directory. */
139 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
142 /* By default there is no special suffix for executables. */
143 #ifndef EXECUTABLE_SUFFIX
144 #define EXECUTABLE_SUFFIX ""
147 /* By default, the suffix for object files is the letter "o". */
148 #ifndef OBJECT_SUFFIX
149 #define OBJECT_SUFFIX "o"
152 /* By default, colon separates directories in a path. */
153 #ifndef PATH_SEPARATOR
154 #define PATH_SEPARATOR ':'
157 #ifndef DIR_SEPARATOR
158 #define DIR_SEPARATOR '/'
161 static char dir_separator_str
[] = {DIR_SEPARATOR
, 0};
163 #define obstack_chunk_alloc xmalloc
164 #define obstack_chunk_free free
167 extern char *getenv ();
174 #if defined(bsd4_4) || defined(__NetBSD__)
175 extern const char *const sys_errlist
[];
177 extern char *sys_errlist
[];
180 extern int execv (), execvp ();
182 /* If a stage of compilation returns an exit status >= 1,
183 compilation of that file ceases. */
185 #define MIN_FATAL_STATUS 1
187 /* Flag saying to print the full filename of this file
188 as found through our usual search mechanism. */
190 static char *print_file_name
= NULL
;
192 /* As print_file_name, but search for executable file. */
194 static char *print_prog_name
= NULL
;
196 /* Flag saying to print the relative path we'd use to
197 find libgcc.a given the current compiler flags. */
199 static int print_multi_directory
;
201 /* Flag saying to print the list of subdirectories and
202 compiler flags used to select them in a standard form. */
204 static int print_multi_lib
;
206 /* Flag indicating whether we should print the command and arguments */
208 static int verbose_flag
;
210 /* Nonzero means write "temp" files in source directory
211 and use the source file's name in them, and don't delete them. */
213 static int save_temps_flag
;
215 /* The compiler version. */
217 static char *compiler_version
;
219 /* The target version specified with -V */
221 static char *spec_version
= DEFAULT_TARGET_VERSION
;
223 /* The target machine specified with -b. */
225 static char *spec_machine
= DEFAULT_TARGET_MACHINE
;
227 /* Nonzero if cross-compiling.
228 When -b is used, the value comes from the `specs' file. */
231 static int cross_compile
= 1;
233 static int cross_compile
= 0;
236 /* The number of errors that have occurred; the link phase will not be
237 run if this is non-zero. */
238 static int error_count
= 0;
240 /* This is the obstack which we use to allocate many strings. */
242 static struct obstack obstack
;
244 /* This is the obstack to build an environment variable to pass to
245 collect2 that describes all of the relevant switches of what to
246 pass the compiler in building the list of pointers to constructors
249 static struct obstack collect_obstack
;
251 extern char *version_string
;
253 /* Forward declaration for prototypes. */
256 static void set_spec
PROTO((char *, char *));
257 static struct compiler
*lookup_compiler
PROTO((char *, int, char *));
258 static char *find_a_file
PROTO((struct path_prefix
*, char *, int));
259 static void add_prefix
PROTO((struct path_prefix
*, char *, int, int, int *));
260 static char *skip_whitespace
PROTO((char *));
261 static void record_temp_file
PROTO((char *, int, int));
262 static void delete_if_ordinary
PROTO((char *));
263 static void delete_temp_files
PROTO((void));
264 static void delete_failure_queue
PROTO((void));
265 static void clear_failure_queue
PROTO((void));
266 static char *choose_temp_base_try
PROTO((char *, char *));
267 static void choose_temp_base
PROTO((void));
268 static int check_live_switch
PROTO((int, int));
269 static char *handle_braces
PROTO((char *));
270 static char *save_string
PROTO((char *, int));
271 static char *concat
PROTO((char *, char *));
272 static char *concat3
PROTO((char *, char *, char *));
273 static char *concat4
PROTO((char *, char *, char *, char *));
274 static char *concat6
PROTO((char *, char *, char *, char *, char *, \
276 static int do_spec
PROTO((char *));
277 static int do_spec_1
PROTO((char *, int, char *));
278 static char *find_file
PROTO((char *));
279 static int is_directory
PROTO((char *, char *, int));
280 static void validate_switches
PROTO((char *));
281 static void validate_all_switches
PROTO((void));
282 static void give_switch
PROTO((int, int));
283 static int used_arg
PROTO((char *, int));
284 static void set_multilib_dir
PROTO((void));
285 static void print_multilib_info
PROTO((void));
286 static void pfatal_with_name
PROTO((char *));
287 static void perror_with_name
PROTO((char *));
288 static void perror_exec
PROTO((char *));
290 static void fatal
PVPROTO((char *, ...));
291 static void error
PVPROTO((char *, ...));
293 /* We must not provide any prototype here, even if ANSI C. */
294 static void fatal
PROTO(());
295 static void error
PROTO(());
302 /* Specs are strings containing lines, each of which (if not blank)
303 is made up of a program name, and arguments separated by spaces.
304 The program name must be exact and start from root, since no path
305 is searched and it is unreliable to depend on the current working directory.
306 Redirection of input or output is not supported; the subprograms must
307 accept filenames saying what files to read and write.
309 In addition, the specs can contain %-sequences to substitute variable text
310 or for conditional text. Here is a table of all defined %-sequences.
311 Note that spaces are not generated automatically around the results of
312 expanding these sequences; therefore, you can concatenate them together
313 or with constant text in a single argument.
315 %% substitute one % into the program name or argument.
316 %i substitute the name of the input file being processed.
317 %b substitute the basename of the input file being processed.
318 This is the substring up to (and not including) the last period
319 and not including the directory.
320 %g substitute the temporary-file-name-base. This is a string chosen
321 once per compilation. Different temporary file names are made by
322 concatenation of constant strings on the end, as in `%g.s'.
323 %g also has the same effect of %d.
324 %u like %g, but make the temporary file name unique.
325 %U returns the last file name generated with %u.
326 %d marks the argument containing or following the %d as a
327 temporary file name, so that that file will be deleted if CC exits
328 successfully. Unlike %g, this contributes no text to the argument.
329 %w marks the argument containing or following the %w as the
330 "output file" of this compilation. This puts the argument
331 into the sequence of arguments that %o will substitute later.
333 like %{...} but mark last argument supplied within
334 as a file to be deleted on failure.
335 %o substitutes the names of all the output files, with spaces
336 automatically placed around them. You should write spaces
337 around the %o as well or the results are undefined.
338 %o is for use in the specs for running the linker.
339 Input files whose names have no recognized suffix are not compiled
340 at all, but they are included among the output files, so they will
342 %O substitutes the suffix for object files.
343 %p substitutes the standard macro predefinitions for the
344 current target machine. Use this when running cpp.
345 %P like %p, but puts `__' before and after the name of each macro.
346 (Except macros that already have __.)
348 %I Substitute a -iprefix option made from GCC_EXEC_PREFIX.
349 %s current argument is the name of a library or startup file of some sort.
350 Search for that file in a standard list of directories
351 and substitute the full name found.
352 %eSTR Print STR as an error message. STR is terminated by a newline.
353 Use this when inconsistent options are detected.
354 %x{OPTION} Accumulate an option for %X.
355 %X Output the accumulated linker options specified by compilations.
356 %Y Output the accumulated assembler options specified by compilations.
357 %Z Output the accumulated preprocessor options specified by compilations.
358 %v1 Substitute the major version number of GCC.
359 (For version 2.5.n, this is 2.)
360 %v2 Substitute the minor version number of GCC.
361 (For version 2.5.n, this is 5.)
362 %a process ASM_SPEC as a spec.
363 This allows config.h to specify part of the spec for running as.
364 %A process ASM_FINAL_SPEC as a spec. A capital A is actually
365 used here. This can be used to run a post-processor after the
366 assembler has done it's job.
367 %D Dump out a -L option for each directory in startfile_prefixes.
368 If multilib_dir is set, extra entries are generated with it affixed.
369 %l process LINK_SPEC as a spec.
370 %L process LIB_SPEC as a spec.
371 %G process LIBGCC_SPEC as a spec.
372 %S process STARTFILE_SPEC as a spec. A capital S is actually used here.
373 %E process ENDFILE_SPEC as a spec. A capital E is actually used here.
374 %c process SIGNED_CHAR_SPEC as a spec.
375 %C process CPP_SPEC as a spec. A capital C is actually used here.
376 %1 process CC1_SPEC as a spec.
377 %2 process CC1PLUS_SPEC as a spec.
378 %| output "-" if the input for the current command is coming from a pipe.
379 %* substitute the variable part of a matched option. (See below.)
380 Note that each comma in the substituted string is replaced by
382 %{S} substitutes the -S switch, if that switch was given to CC.
383 If that switch was not specified, this substitutes nothing.
384 Here S is a metasyntactic variable.
385 %{S*} substitutes all the switches specified to CC whose names start
386 with -S. This is used for -o, -D, -I, etc; switches that take
387 arguments. CC considers `-o foo' as being one switch whose
388 name starts with `o'. %{o*} would substitute this text,
389 including the space; thus, two arguments would be generated.
390 %{S*:X} substitutes X if one or more switches whose names start with -S are
391 specified to CC. Note that the tail part of the -S option
392 (i.e. the part matched by the `*') will be substituted for each
393 occurrence of %* within X.
394 %{S:X} substitutes X, but only if the -S switch was given to CC.
395 %{!S:X} substitutes X, but only if the -S switch was NOT given to CC.
396 %{|S:X} like %{S:X}, but if no S switch, substitute `-'.
397 %{|!S:X} like %{!S:X}, but if there is an S switch, substitute `-'.
398 %{.S:X} substitutes X, but only if processing a file with suffix S.
399 %{!.S:X} substitutes X, but only if NOT processing a file with suffix S.
400 %(Spec) processes a specification defined in a specs file as *Spec:
401 %[Spec] as above, but put __ around -D arguments
403 The conditional text X in a %{S:X} or %{!S:X} construct may contain
404 other nested % constructs or spaces, or even newlines. They are
405 processed as usual, as described above.
407 The -O, -f, -m, and -W switches are handled specifically in these
408 constructs. If another value of -O or the negated form of a -f, -m, or
409 -W switch is found later in the command line, the earlier switch
410 value is ignored, except with {S*} where S is just one letter; this
411 passes all matching options.
413 The character | is used to indicate that a command should be piped to
414 the following command, but only if -pipe is specified.
416 Note that it is built into CC which switches take arguments and which
417 do not. You might think it would be useful to generalize this to
418 allow each compiler's spec to say which switches take arguments. But
419 this cannot be done in a consistent fashion. CC cannot even decide
420 which input files have been specified without knowing which switches
421 take arguments, and it must know which input files to compile in order
422 to tell which compilers to run.
424 CC also knows implicitly that arguments starting in `-l' are to be
425 treated as compiler output files, and passed to the linker in their
426 proper position among the other output files. */
428 /* Define the macros used for specs %a, %l, %L, %S, %c, %C, %1. */
430 /* config.h can define ASM_SPEC to provide extra args to the assembler
431 or extra switch-translations. */
436 /* config.h can define ASM_FINAL_SPEC to run a post processor after
437 the assembler has run. */
438 #ifndef ASM_FINAL_SPEC
439 #define ASM_FINAL_SPEC ""
442 /* config.h can define CPP_SPEC to provide extra args to the C preprocessor
443 or extra switch-translations. */
448 /* config.h can define CC1_SPEC to provide extra args to cc1 and cc1plus
449 or extra switch-translations. */
454 /* config.h can define CC1PLUS_SPEC to provide extra args to cc1plus
455 or extra switch-translations. */
457 #define CC1PLUS_SPEC ""
460 /* config.h can define LINK_SPEC to provide extra args to the linker
461 or extra switch-translations. */
466 /* config.h can define LIB_SPEC to override the default libraries. */
468 #define LIB_SPEC "%{!shared:%{g*:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}}"
471 /* config.h can define LIBGCC_SPEC to override how and when libgcc.a is
474 #if defined(LINK_LIBGCC_SPECIAL) || defined(LINK_LIBGCC_SPECIAL_1)
475 /* Have gcc do the search for libgcc.a. */
476 #define LIBGCC_SPEC "%{!shared:libgcc.a%s}"
478 #define LIBGCC_SPEC "%{!shared:-lgcc}"
482 /* config.h can define STARTFILE_SPEC to override the default crt0 files. */
483 #ifndef STARTFILE_SPEC
484 #define STARTFILE_SPEC \
485 "%{!shared:%{pg:gcrt0.%O%s}%{!pg:%{p:mcrt0.%O%s}%{!p:crt0.%O%s}}}"
488 /* config.h can define SWITCHES_NEED_SPACES to control passing -o and -L.
489 Make the string nonempty to require spaces there. */
490 #ifndef SWITCHES_NEED_SPACES
491 #define SWITCHES_NEED_SPACES ""
494 /* config.h can define ENDFILE_SPEC to override the default crtn files. */
496 #define ENDFILE_SPEC ""
499 /* This spec is used for telling cpp whether char is signed or not. */
500 #ifndef SIGNED_CHAR_SPEC
501 /* Use #if rather than ?:
502 because MIPS C compiler rejects like ?: in initializers. */
503 #if DEFAULT_SIGNED_CHAR
504 #define SIGNED_CHAR_SPEC "%{funsigned-char:-D__CHAR_UNSIGNED__}"
506 #define SIGNED_CHAR_SPEC "%{!fsigned-char:-D__CHAR_UNSIGNED__}"
510 /* MULTILIB_SELECT comes from multilib.h. It gives a
511 string interpreted by set_multilib_dir to select a library
512 subdirectory based on the compiler options. */
513 #ifndef MULTILIB_SELECT
514 #define MULTILIB_SELECT ". ;"
517 static char *cpp_spec
= CPP_SPEC
;
518 static char *cpp_predefines
= CPP_PREDEFINES
;
519 static char *cc1_spec
= CC1_SPEC
;
520 static char *cc1plus_spec
= CC1PLUS_SPEC
;
521 static char *signed_char_spec
= SIGNED_CHAR_SPEC
;
522 static char *asm_spec
= ASM_SPEC
;
523 static char *asm_final_spec
= ASM_FINAL_SPEC
;
524 static char *link_spec
= LINK_SPEC
;
525 static char *lib_spec
= LIB_SPEC
;
526 static char *libgcc_spec
= LIBGCC_SPEC
;
527 static char *endfile_spec
= ENDFILE_SPEC
;
528 static char *startfile_spec
= STARTFILE_SPEC
;
529 static char *switches_need_spaces
= SWITCHES_NEED_SPACES
;
530 static char *multilib_select
= MULTILIB_SELECT
;
532 /* This defines which switch letters take arguments. */
534 #ifndef SWITCH_TAKES_ARG
535 #define SWITCH_TAKES_ARG(CHAR) \
536 ((CHAR) == 'D' || (CHAR) == 'U' || (CHAR) == 'o' \
537 || (CHAR) == 'e' || (CHAR) == 'T' || (CHAR) == 'u' \
538 || (CHAR) == 'I' || (CHAR) == 'm' \
539 || (CHAR) == 'L' || (CHAR) == 'A')
542 /* This defines which multi-letter switches take arguments. */
544 #define DEFAULT_WORD_SWITCH_TAKES_ARG(STR) \
545 (!strcmp (STR, "Tdata") || !strcmp (STR, "Ttext") \
546 || !strcmp (STR, "Tbss") || !strcmp (STR, "include") \
547 || !strcmp (STR, "imacros") || !strcmp (STR, "aux-info") \
548 || !strcmp (STR, "idirafter") || !strcmp (STR, "iprefix") \
549 || !strcmp (STR, "iwithprefix") || !strcmp (STR, "iwithprefixbefore") \
550 || !strcmp (STR, "isystem"))
552 #ifndef WORD_SWITCH_TAKES_ARG
553 #define WORD_SWITCH_TAKES_ARG(STR) DEFAULT_WORD_SWITCH_TAKES_ARG (STR)
556 /* Record the mapping from file suffixes for compilation specs. */
560 char *suffix
; /* Use this compiler for input files
561 whose names end in this suffix. */
563 char *spec
[4]; /* To use this compiler, concatenate these
564 specs and pass to do_spec. */
567 /* Pointer to a vector of `struct compiler' that gives the spec for
568 compiling a file, based on its suffix.
569 A file that does not end in any of these suffixes will be passed
570 unchanged to the loader and nothing else will be done to it.
572 An entry containing two 0s is used to terminate the vector.
574 If multiple entries match a file, the last matching one is used. */
576 static struct compiler
*compilers
;
578 /* Number of entries in `compilers', not counting the null terminator. */
580 static int n_compilers
;
582 /* The default list of file name suffixes and their compilation specs. */
584 static struct compiler default_compilers
[] =
586 {".F", "@f77-cpp-output"},
588 /* For f77 we want -traditional to avoid errors with, for
589 instance, mismatched '. Also, we avoid unpleasant surprises
590 with substitution of names not prefixed by `_ by' using %P
591 rather than %p (although this isn't consistent with SGI and
592 Sun f77, at least) so you test `__unix' rather than `unix'.
593 -D_LANGUAGE_FORTRAN is used by some compilers like SGI and
594 might as well be in there. */
595 "cpp -lang-c -P %{nostdinc*} %{C} %{v} %{A*} %{I*} %I\
596 %{C:%{!E:%eGNU C does not support -C without using -E}}\
597 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG}\
598 -undef -D__GNUC__=2 %{ansi:-trigraphs -$ -D__STRICT_ANSI__}\
599 %{!undef:%P} -D_LANGUAGE_FORTRAN %{trigraphs} \
600 %c %{O*:-D__OPTIMIZE__} -traditional %{ftraditional:-traditional}\
601 %{traditional-cpp:-traditional}\
602 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
603 %i %{!M:%{!MM:%{!E:%{!pipe:%g.i}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n",
604 "f771 %{!pipe:%g.i} \
605 %{!Q:-quiet} -dumpbase %b.F %{d*} %{m*} %{a}\
606 %{g*} %{O*} %{W*} %{w} %{pedantic*} \
607 %{v:-version -fversion} %{f*}\
608 %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
609 %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
610 %{!S:as %{R} %{j} %{J} %{h} %{d2} %a %{keep-local-as-symbols:-L} \
611 %{c:%W{o*}%{!o*:-o %w%b.o}}%{!c:-o %d%w%u.o}\
612 %{!pipe:%g.s} %A\n }"},
616 %{!Q:-quiet} -dumpbase %b.f %{d*} %{m*} %{a}\
617 %{g*} %{O*} %{W*} %{w} %{pedantic*} \
618 %{v:-version -fversion} %{f*}\
619 %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
620 %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
621 %{!S:as %{R} %{j} %{J} %{h} %{d2} %a %{keep-local-as-symbols:-L} \
622 %{c:%W{o*}%{!o*:-o %w%b.o}}%{!c:-o %d%w%u.o}\
623 %{!pipe:%g.s} %A\n }"},
626 "cpp -lang-c %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\
627 %{C:%{!E:%eGNU C does not support -C without using -E}}\
628 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG}\
629 -undef -D__GNUC__=%v1 -D__GNUC_MINOR__=%v2\
630 %{ansi:-trigraphs -$ -D__STRICT_ANSI__}\
631 %{!undef:%{!ansi:%p} %P} %{trigraphs} \
632 %c %{O*:%{!O0:-D__OPTIMIZE__}} %{traditional} %{ftraditional:-traditional}\
633 %{traditional-cpp:-traditional}\
634 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
635 %i %{!M:%{!MM:%{!E:%{!pipe:%g.i}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n",
636 "%{!M:%{!MM:%{!E:cc1 %{!pipe:%g.i} %1 \
637 %{!Q:-quiet} -dumpbase %b.c %{d*} %{m*} %{a}\
638 %{g*} %{O*} %{W*} %{w} %{pedantic*} %{ansi} \
639 %{traditional} %{v:-version} %{pg:-p} %{p} %{f*}\
641 %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
642 %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
643 %{!S:as %{R} %{j} %{J} %{h} %{d2} %a %Y\
644 %{c:%W{o*}%{!o*:-o %w%b.%O}}%{!c:-o %d%w%u.%O}\
645 %{!pipe:%g.s} %A\n }}}}"},
647 "%{E:cpp -lang-c %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\
648 %{C:%{!E:%eGNU C does not support -C without using -E}}\
649 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG}\
650 -undef -D__GNUC__=%v1 -D__GNUC_MINOR__=%v2\
651 %{ansi:-trigraphs -$ -D__STRICT_ANSI__}\
652 %{!undef:%{!ansi:%p} %P} %{trigraphs}\
653 %c %{O*:%{!O0:-D__OPTIMIZE__}} %{traditional} %{ftraditional:-traditional}\
654 %{traditional-cpp:-traditional}\
655 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
657 %{!E:%e-E required when input is from standard input}"},
658 {".m", "@objective-c"},
660 "cpp -lang-objc %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\
661 %{C:%{!E:%eGNU C does not support -C without using -E}}\
662 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG}\
663 -undef -D__OBJC__ -D__GNUC__=%v1 -D__GNUC_MINOR__=%v2\
664 %{ansi:-trigraphs -$ -D__STRICT_ANSI__}\
665 %{!undef:%{!ansi:%p} %P} %{trigraphs}\
666 %c %{O*:%{!O0:-D__OPTIMIZE__}} %{traditional} %{ftraditional:-traditional}\
667 %{traditional-cpp:-traditional}\
668 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
669 %i %{!M:%{!MM:%{!E:%{!pipe:%g.i}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n",
670 "%{!M:%{!MM:%{!E:cc1obj %{!pipe:%g.i} %1 \
671 %{!Q:-quiet} -dumpbase %b.m %{d*} %{m*} %{a}\
672 %{g*} %{O*} %{W*} %{w} %{pedantic*} %{ansi} \
673 %{traditional} %{v:-version} %{pg:-p} %{p} %{f*} \
674 -lang-objc %{gen-decls} \
676 %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
677 %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
678 %{!S:as %{R} %{j} %{J} %{h} %{d2} %a %Y\
679 %{c:%W{o*}%{!o*:-o %w%b.%O}}%{!c:-o %d%w%u.%O}\
680 %{!pipe:%g.s} %A\n }}}}"},
683 "%{!E:%eCompilation of header file requested} \
684 cpp %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\
685 %{C:%{!E:%eGNU C does not support -C without using -E}}\
686 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG}\
687 -undef -D__GNUC__=%v1 -D__GNUC_MINOR__=%v2\
688 %{ansi:-trigraphs -$ -D__STRICT_ANSI__}\
689 %{!undef:%{!ansi:%p} %P} %{trigraphs}\
690 %c %{O*:%{!O0:-D__OPTIMIZE__}} %{traditional} %{ftraditional:-traditional}\
691 %{traditional-cpp:-traditional}\
692 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
697 "cpp -lang-chill %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\
698 %{C:%{!E:%eGNU CHILL does not support -C without using -E}}\
699 -undef -D__GNUCHILL__=%v1 -D__GNUC_MINOR__=%v2\
700 %c %{O*:-D__OPTIMIZE__} %{traditional} %{ftraditional:-traditional}\
701 %{traditional-cpp:-traditional} %{!undef:%{!ansi:%p} %P} %{trigraphs}\
702 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
703 %i %{!E:%g.i}%{E:%W{o*}} \n",
704 "%{!E:cc1chill %g.i %1 \
705 %{!Q:-quiet} -dumpbase %b.ch %{d*} %{m*} %{a}\
706 %{g*} %{O*} %{W*} %{w} %{pedantic*} %{itu} \
707 %{v:-version} %{pg:-p} %{p} %{f*} %{I*} \
709 %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
710 %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
711 %{!S:as %{R} %{j} %{J} %{h} %{d2} %a %Y %{keep-local-as-symbols:-L} \
712 %{c:%W{o*}%{!o*:-o %w%b.o}}%{!c:-o %d%w%u.o}\
713 %{!pipe:%g.s} %A\n }}"},
720 "cpp -lang-c++ %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\
721 %{C:%{!E:%eGNU C++ does not support -C without using -E}}\
722 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG}\
723 -undef -D__GNUC__=%v1 -D__GNUG__=%v1 -D__cplusplus -D__GNUC_MINOR__=%v2\
724 %{ansi:-trigraphs -$ -D__STRICT_ANSI__} %{!undef:%{!ansi:%p} %P}\
725 %c %{O*:%{!O0:-D__OPTIMIZE__}} %{traditional} %{ftraditional:-traditional}\
726 %{traditional-cpp:-traditional} %{trigraphs}\
727 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
728 %i %{!M:%{!MM:%{!E:%{!pipe:%g.ii}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n",
729 "%{!M:%{!MM:%{!E:cc1plus %{!pipe:%g.ii} %1 %2\
730 %{!Q:-quiet} -dumpbase %b.cc %{d*} %{m*} %{a}\
731 %{g*} %{O*} %{W*} %{w} %{pedantic*} %{ansi}\
732 %{traditional} %{v:-version} %{pg:-p} %{p}\
733 %{f*} %{+e*} %{aux-info*}\
734 %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
735 %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}}|\n\
736 %{!S:as %{R} %{j} %{J} %{h} %{d2} %a %Y\
737 %{c:%W{o*}%{!o*:-o %w%b.%O}}%{!c:-o %d%w%u.%O}\
738 %{!pipe:%g.s} %A\n }}}}"},
739 {".i", "@cpp-output"},
741 "%{!M:%{!MM:%{!E:cc1 %i %1 %{!Q:-quiet} %{d*} %{m*} %{a}\
742 %{g*} %{O*} %{W*} %{w} %{pedantic*} %{ansi}\
743 %{traditional} %{v:-version} %{pg:-p} %{p} %{f*}\
745 %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
746 %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
747 %{!S:as %{R} %{j} %{J} %{h} %{d2} %a %Y\
748 %{c:%W{o*}%{!o*:-o %w%b.%O}}%{!c:-o %d%w%u.%O}\
749 %{!pipe:%g.s} %A\n }}}}"},
750 {".ii", "@c++-cpp-output"},
752 "%{!M:%{!MM:%{!E:cc1plus %i %1 %2 %{!Q:-quiet} %{d*} %{m*} %{a}\
753 %{g*} %{O*} %{W*} %{w} %{pedantic*} %{ansi}\
754 %{traditional} %{v:-version} %{pg:-p} %{p}\
755 %{f*} %{+e*} %{aux-info*}\
756 %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
757 %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
758 %{!S:as %{R} %{j} %{J} %{h} %{d2} %a %Y\
759 %{c:%W{o*}%{!o*:-o %w%b.%O}}%{!c:-o %d%w%u.%O}\
760 %{!pipe:%g.s} %A\n }}}}"},
761 {".s", "@assembler"},
763 "%{!M:%{!MM:%{!E:%{!S:as %{R} %{j} %{J} %{h} %{d2} %a %Y\
764 %{c:%W{o*}%{!o*:-o %w%b.%O}}%{!c:-o %d%w%u.%O}\
766 {".S", "@assembler-with-cpp"},
767 {"@assembler-with-cpp",
768 "cpp -lang-asm %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\
769 %{C:%{!E:%eGNU C does not support -C without using -E}}\
770 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG} %{trigraphs}\
771 -undef -$ %{!undef:%p %P} -D__ASSEMBLER__ \
772 %c %{O*:%{!O0:-D__OPTIMIZE__}} %{traditional} %{ftraditional:-traditional}\
773 %{traditional-cpp:-traditional}\
774 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
775 %i %{!M:%{!MM:%{!E:%{!pipe:%g.s}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n",
776 "%{!M:%{!MM:%{!E:%{!S:as %{R} %{j} %{J} %{h} %{d2} %a %Y\
777 %{c:%W{o*}%{!o*:-o %w%b.%O}}%{!c:-o %d%w%u.%O}\
778 %{!pipe:%g.s} %A\n }}}}"},
783 "%{!M:%{!MM:%{!E:gnat1 %{k8:-gnatk8} %{w:-gnatws} %{!Q:-quiet}\
784 -dumpbase %b.ada %{g*} %{O*} %{p} %{pg:-p} %{f*}\
786 %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
787 %i %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
788 %{!S:%{!gnatc:%{!gnats:as %{R} %{j} %{J} %{h} %{d2} %a %Y\
789 %{c:%W{o*}%{!o*:-o %w%b.%O}}\
790 %{!c:-o %d%w%u.%O} %{!pipe:%g.s} %A\n}}}}}} "},
791 /* Mark end of table */
795 /* Number of elements in default_compilers, not counting the terminator. */
797 static int n_default_compilers
798 = (sizeof default_compilers
/ sizeof (struct compiler
)) - 1;
800 /* Here is the spec for running the linker, after compiling all files. */
802 /* -u* was put back because both BSD and SysV seem to support it. */
803 /* %{static:} simply prevents an error message if the target machine
804 doesn't handle -static. */
805 /* We want %{T*} after %{L*} and %D so that it can be used to specify linker
806 scripts which exist in user specified directories, or in standard
808 #ifdef LINK_LIBGCC_SPECIAL
809 /* Don't generate -L options. */
810 static char *link_command_spec
= "\
812 %{!c:%{!M:%{!MM:%{!E:%{!S:ld %l %X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} \
813 %{r} %{s} %{t} %{u*} %{x} %{z} %{Z}\
814 %{!A:%{!nostartfiles:%{!nostdlib:%S}}} %{static:}\
815 %{L*} %{T*} %o %{!nostdlib:%G %L %G %{!A:%E}}\n }}}}}}";
818 static char *link_command_spec
= "\
820 %{!c:%{!M:%{!MM:%{!E:%{!S:ld %l %X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} \
821 %{r} %{s} %{t} %{u*} %{x} %{z} %{Z}\
822 %{!A:%{!nostartfiles:%{!nostdlib:%S}}} %{static:}\
823 %{L*} %D %{T*} %o %{!nostdlib:%G %L %G %{!A:%E}}\n }}}}}}";
826 /* A vector of options to give to the linker.
827 These options are accumulated by %x,
828 and substituted into the linker command with %X. */
829 static int n_linker_options
;
830 static char **linker_options
;
832 /* A vector of options to give to the assembler.
833 These options are accumulated by -Wa,
834 and substituted into the assembler command with %Y. */
835 static int n_assembler_options
;
836 static char **assembler_options
;
838 /* A vector of options to give to the preprocessor.
839 These options are accumulated by -Wp,
840 and substituted into the preprocessor command with %Z. */
841 static int n_preprocessor_options
;
842 static char **preprocessor_options
;
844 /* Define how to map long options into short ones. */
846 /* This structure describes one mapping. */
849 /* The long option's name. */
851 /* The equivalent short option. */
853 /* Argument info. A string of flag chars; NULL equals no options.
854 a => argument required.
855 o => argument optional.
856 j => join argument to equivalent, making one word.
857 * => require other text after NAME as an argument. */
861 /* This is the table of mappings. Mappings are tried sequentially
862 for each option encountered; the first one that matches, wins. */
864 struct option_map option_map
[] =
866 {"--all-warnings", "-Wall", 0},
867 {"--ansi", "-ansi", 0},
868 {"--assemble", "-S", 0},
869 {"--assert", "-A", "a"},
870 {"--comments", "-C", 0},
871 {"--compile", "-c", 0},
872 {"--debug", "-g", "oj"},
873 {"--define-macro", "-D", "a"},
874 {"--dependencies", "-M", 0},
875 {"--dump", "-d", "a"},
876 {"--dumpbase", "-dumpbase", "a"},
877 {"--entry", "-e", 0},
878 {"--extra-warnings", "-W", 0},
879 {"--for-assembler", "-Wa", "a"},
880 {"--for-linker", "-Xlinker", "a"},
881 {"--force-link", "-u", "a"},
882 {"--imacros", "-imacros", "a"},
883 {"--include", "-include", "a"},
884 {"--include-barrier", "-I-", 0},
885 {"--include-directory", "-I", "a"},
886 {"--include-directory-after", "-idirafter", "a"},
887 {"--include-prefix", "-iprefix", "a"},
888 {"--include-with-prefix", "-iwithprefix", "a"},
889 {"--include-with-prefix-before", "-iwithprefixbefore", "a"},
890 {"--include-with-prefix-after", "-iwithprefix", "a"},
891 {"--language", "-x", "a"},
892 {"--library-directory", "-L", "a"},
893 {"--machine", "-m", "aj"},
894 {"--machine-", "-m", "*j"},
895 {"--no-line-commands", "-P", 0},
896 {"--no-precompiled-includes", "-noprecomp", 0},
897 {"--no-standard-includes", "-nostdinc", 0},
898 {"--no-standard-libraries", "-nostdlib", 0},
899 {"--no-warnings", "-w", 0},
900 {"--optimize", "-O", "oj"},
901 {"--output", "-o", "a"},
902 {"--pedantic", "-pedantic", 0},
903 {"--pedantic-errors", "-pedantic-errors", 0},
904 {"--pipe", "-pipe", 0},
905 {"--prefix", "-B", "a"},
906 {"--preprocess", "-E", 0},
907 {"--print-file-name", "-print-file-name=", "aj"},
908 {"--print-libgcc-file-name", "-print-libgcc-file-name", 0},
909 {"--print-missing-file-dependencies", "-MG", 0},
910 {"--print-multi-lib", "-print-multi-lib", 0},
911 {"--print-multi-directory", "-print-multi-directory", 0},
912 {"--print-prog-name", "-print-prog-name=", "aj"},
913 {"--profile", "-p", 0},
914 {"--profile-blocks", "-a", 0},
915 {"--quiet", "-q", 0},
916 {"--save-temps", "-save-temps", 0},
917 {"--shared", "-shared", 0},
918 {"--silent", "-q", 0},
919 {"--static", "-static", 0},
920 {"--symbolic", "-symbolic", 0},
921 {"--target", "-b", "a"},
922 {"--trace-includes", "-H", 0},
923 {"--traditional", "-traditional", 0},
924 {"--traditional-cpp", "-traditional-cpp", 0},
925 {"--trigraphs", "-trigraphs", 0},
926 {"--undefine-macro", "-U", "a"},
927 {"--use-version", "-V", "a"},
928 {"--user-dependencies", "-MM", 0},
929 {"--verbose", "-v", 0},
930 {"--version", "-dumpversion", 0},
931 {"--warn-", "-W", "*j"},
932 {"--write-dependencies", "-MD", 0},
933 {"--write-user-dependencies", "-MMD", 0},
937 /* Translate the options described by *ARGCP and *ARGVP.
938 Make a new vector and store it back in *ARGVP,
939 and store its length in *ARGVC. */
942 translate_options (argcp
, argvp
)
948 char **argv
= *argvp
;
949 char **newv
= (char **) xmalloc ((argc
+ 2) * 2 * sizeof (char *));
953 newv
[newindex
++] = argv
[i
++];
957 /* Translate -- options. */
958 if (argv
[i
][0] == '-' && argv
[i
][1] == '-')
960 /* Find a mapping that applies to this option. */
961 for (j
= 0; j
< sizeof (option_map
) / sizeof (option_map
[0]); j
++)
963 int optlen
= strlen (option_map
[j
].name
);
964 int arglen
= strlen (argv
[i
]);
965 int complen
= arglen
> optlen
? optlen
: arglen
;
966 char *arginfo
= option_map
[j
].arg_info
;
971 if (!strncmp (argv
[i
], option_map
[j
].name
, complen
))
978 k
< sizeof (option_map
) / sizeof (option_map
[0]);
980 if (strlen (option_map
[k
].name
) >= arglen
981 && !strncmp (argv
[i
], option_map
[k
].name
, arglen
))
983 error ("Ambiguous abbreviation %s", argv
[i
]);
987 if (k
!= sizeof (option_map
) / sizeof (option_map
[0]))
993 /* If the option has an argument, accept that. */
994 if (argv
[i
][optlen
] == '=')
995 arg
= argv
[i
] + optlen
+ 1;
997 /* If this mapping requires extra text at end of name,
998 accept that as "argument". */
999 else if (index (arginfo
, '*') != 0)
1000 arg
= argv
[i
] + optlen
;
1002 /* Otherwise, extra text at end means mismatch.
1003 Try other mappings. */
1008 else if (index (arginfo
, '*') != 0)
1010 error ("Incomplete `%s' option", option_map
[j
].name
);
1014 /* Handle arguments. */
1015 if (index (arginfo
, 'a') != 0)
1021 error ("Missing argument to `%s' option",
1022 option_map
[j
].name
);
1029 else if (index (arginfo
, '*') != 0)
1031 else if (index (arginfo
, 'o') == 0)
1034 error ("Extraneous argument to `%s' option",
1035 option_map
[j
].name
);
1039 /* Store the translation as one argv elt or as two. */
1040 if (arg
!= 0 && index (arginfo
, 'j') != 0)
1041 newv
[newindex
++] = concat (option_map
[j
].equivalent
, arg
);
1044 newv
[newindex
++] = option_map
[j
].equivalent
;
1045 newv
[newindex
++] = arg
;
1048 newv
[newindex
++] = option_map
[j
].equivalent
;
1056 /* Handle old-fashioned options--just copy them through,
1057 with their arguments. */
1058 else if (argv
[i
][0] == '-')
1060 char *p
= argv
[i
] + 1;
1064 if (SWITCH_TAKES_ARG (c
) > (p
[1] != 0))
1065 nskip
+= SWITCH_TAKES_ARG (c
) - (p
[1] != 0);
1066 else if (WORD_SWITCH_TAKES_ARG (p
))
1067 nskip
+= WORD_SWITCH_TAKES_ARG (p
);
1068 else if ((c
== 'B' || c
== 'b' || c
== 'V' || c
== 'x')
1071 else if (! strcmp (p
, "Xlinker"))
1074 /* Watch out for an option at the end of the command line that
1075 is missing arguments, and avoid skipping past the end of the
1077 if (nskip
+ i
> argc
)
1082 newv
[newindex
++] = argv
[i
++];
1087 /* Ordinary operands, or +e options. */
1088 newv
[newindex
++] = argv
[i
++];
1097 /* Read compilation specs from a file named FILENAME,
1098 replacing the default ones.
1100 A suffix which starts with `*' is a definition for
1101 one of the machine-specific sub-specs. The "suffix" should be
1102 *asm, *cc1, *cpp, *link, *startfile, *signed_char, etc.
1103 The corresponding spec is stored in asm_spec, etc.,
1104 rather than in the `compilers' vector.
1106 Anything invalid in the file is a fatal error. */
1109 read_specs (filename
)
1114 struct stat statbuf
;
1119 fprintf (stderr
, "Reading specs from %s\n", filename
);
1121 /* Open and stat the file. */
1122 desc
= open (filename
, O_RDONLY
, 0);
1124 pfatal_with_name (filename
);
1125 if (stat (filename
, &statbuf
) < 0)
1126 pfatal_with_name (filename
);
1128 /* Read contents of file into BUFFER. */
1129 buffer
= xmalloc ((unsigned) statbuf
.st_size
+ 1);
1130 readlen
= read (desc
, buffer
, (unsigned) statbuf
.st_size
);
1132 pfatal_with_name (filename
);
1133 buffer
[readlen
] = 0;
1136 /* Scan BUFFER for specs, putting them in the vector. */
1142 char *in
, *out
, *p1
, *p2
;
1144 /* Advance P in BUFFER to the next nonblank nocomment line. */
1145 p
= skip_whitespace (p
);
1149 /* Find the colon that should end the suffix. */
1151 while (*p1
&& *p1
!= ':' && *p1
!= '\n') p1
++;
1152 /* The colon shouldn't be missing. */
1154 fatal ("specs file malformed after %d characters", p1
- buffer
);
1155 /* Skip back over trailing whitespace. */
1157 while (p2
> buffer
&& (p2
[-1] == ' ' || p2
[-1] == '\t')) p2
--;
1158 /* Copy the suffix to a string. */
1159 suffix
= save_string (p
, p2
- p
);
1160 /* Find the next line. */
1161 p
= skip_whitespace (p1
+ 1);
1163 fatal ("specs file malformed after %d characters", p
- buffer
);
1165 /* Find next blank line. */
1166 while (*p1
&& !(*p1
== '\n' && p1
[1] == '\n')) p1
++;
1167 /* Specs end at the blank line and do not include the newline. */
1168 spec
= save_string (p
, p1
- p
);
1171 /* Delete backslash-newline sequences from the spec. */
1176 if (in
[0] == '\\' && in
[1] == '\n')
1178 else if (in
[0] == '#')
1180 while (*in
&& *in
!= '\n') in
++;
1187 if (suffix
[0] == '*')
1189 if (! strcmp (suffix
, "*link_command"))
1190 link_command_spec
= spec
;
1192 set_spec (suffix
+ 1, spec
);
1196 /* Add this pair to the vector. */
1198 = ((struct compiler
*)
1199 xrealloc (compilers
, (n_compilers
+ 2) * sizeof (struct compiler
)));
1200 compilers
[n_compilers
].suffix
= suffix
;
1201 bzero ((char *) compilers
[n_compilers
].spec
,
1202 sizeof compilers
[n_compilers
].spec
);
1203 compilers
[n_compilers
].spec
[0] = spec
;
1205 bzero ((char *) &compilers
[n_compilers
],
1206 sizeof compilers
[n_compilers
]);
1210 link_command_spec
= spec
;
1213 if (link_command_spec
== 0)
1214 fatal ("spec file has no spec for linking");
1223 /* A fully-blank line is a delimiter in the SPEC file and shouldn't
1224 be considered whitespace. */
1225 if (p
[0] == '\n' && p
[1] == '\n' && p
[2] == '\n')
1227 else if (*p
== '\n' || *p
== ' ' || *p
== '\t')
1231 while (*p
!= '\n') p
++;
1241 /* Structure to keep track of the specs that have been defined so far. These
1242 are accessed using %(specname) or %[specname] in a compiler or link spec. */
1246 char *name
; /* Name of the spec. */
1247 char *spec
; /* The spec itself. */
1248 struct spec_list
*next
; /* Next spec in linked list. */
1251 /* List of specs that have been defined so far. */
1253 static struct spec_list
*specs
= (struct spec_list
*) 0;
1255 /* Change the value of spec NAME to SPEC. If SPEC is empty, then the spec is
1256 removed; If the spec starts with a + then SPEC is added to the end of the
1260 set_spec (name
, spec
)
1264 struct spec_list
*sl
;
1267 /* See if the spec already exists */
1268 for (sl
= specs
; sl
; sl
= sl
->next
)
1269 if (strcmp (sl
->name
, name
) == 0)
1274 /* Not found - make it */
1275 sl
= (struct spec_list
*) xmalloc (sizeof (struct spec_list
));
1276 sl
->name
= save_string (name
, strlen (name
));
1277 sl
->spec
= save_string ("", 0);
1282 old_spec
= sl
->spec
;
1283 if (name
&& spec
[0] == '+' && isspace (spec
[1]))
1284 sl
->spec
= concat (old_spec
, spec
+ 1);
1286 sl
->spec
= save_string (spec
, strlen (spec
));
1288 if (! strcmp (name
, "asm"))
1289 asm_spec
= sl
->spec
;
1290 else if (! strcmp (name
, "asm_final"))
1291 asm_final_spec
= sl
->spec
;
1292 else if (! strcmp (name
, "cc1"))
1293 cc1_spec
= sl
->spec
;
1294 else if (! strcmp (name
, "cc1plus"))
1295 cc1plus_spec
= sl
->spec
;
1296 else if (! strcmp (name
, "cpp"))
1297 cpp_spec
= sl
->spec
;
1298 else if (! strcmp (name
, "endfile"))
1299 endfile_spec
= sl
->spec
;
1300 else if (! strcmp (name
, "lib"))
1301 lib_spec
= sl
->spec
;
1302 else if (! strcmp (name
, "libgcc"))
1303 libgcc_spec
= sl
->spec
;
1304 else if (! strcmp (name
, "link"))
1305 link_spec
= sl
->spec
;
1306 else if (! strcmp (name
, "predefines"))
1307 cpp_predefines
= sl
->spec
;
1308 else if (! strcmp (name
, "signed_char"))
1309 signed_char_spec
= sl
->spec
;
1310 else if (! strcmp (name
, "startfile"))
1311 startfile_spec
= sl
->spec
;
1312 else if (! strcmp (name
, "switches_need_spaces"))
1313 switches_need_spaces
= sl
->spec
;
1314 else if (! strcmp (name
, "cross_compile"))
1315 cross_compile
= atoi (sl
->spec
);
1316 else if (! strcmp (name
, "multilib"))
1317 multilib_select
= sl
->spec
;
1318 /* Free the old spec */
1323 /* Accumulate a command (program name and args), and run it. */
1325 /* Vector of pointers to arguments in the current line of specifications. */
1327 static char **argbuf
;
1329 /* Number of elements allocated in argbuf. */
1331 static int argbuf_length
;
1333 /* Number of elements in argbuf currently in use (containing args). */
1335 static int argbuf_index
;
1337 /* This is the list of suffixes and codes (%g/%u/%U) and the associated
1338 temp file. Used only if MKTEMP_EACH_FILE. */
1340 static struct temp_name
{
1341 char *suffix
; /* suffix associated with the code. */
1342 int length
; /* strlen (suffix). */
1343 int unique
; /* Indicates whether %g or %u/%U was used. */
1344 char *filename
; /* associated filename. */
1345 int filename_length
; /* strlen (filename). */
1346 struct temp_name
*next
;
1349 /* Number of commands executed so far. */
1351 static int execution_count
;
1353 /* Number of commands that exited with a signal. */
1355 static int signal_count
;
1357 /* Name with which this program was invoked. */
1359 static char *programname
;
1361 /* Structures to keep track of prefixes to try when looking for files. */
1365 char *prefix
; /* String to prepend to the path. */
1366 struct prefix_list
*next
; /* Next in linked list. */
1367 int require_machine_suffix
; /* Don't use without machine_suffix. */
1368 /* 2 means try both machine_suffix and just_machine_suffix. */
1369 int *used_flag_ptr
; /* 1 if a file was found with this prefix. */
1374 struct prefix_list
*plist
; /* List of prefixes to try */
1375 int max_len
; /* Max length of a prefix in PLIST */
1376 char *name
; /* Name of this list (used in config stuff) */
1379 /* List of prefixes to try when looking for executables. */
1381 static struct path_prefix exec_prefixes
= { 0, 0, "exec" };
1383 /* List of prefixes to try when looking for startup (crt0) files. */
1385 static struct path_prefix startfile_prefixes
= { 0, 0, "startfile" };
1387 /* List of prefixes to try when looking for include files. */
1389 static struct path_prefix include_prefixes
= { 0, 0, "include" };
1391 /* Suffix to attach to directories searched for commands.
1392 This looks like `MACHINE/VERSION/'. */
1394 static char *machine_suffix
= 0;
1396 /* Suffix to attach to directories searched for commands.
1397 This is just `MACHINE/'. */
1399 static char *just_machine_suffix
= 0;
1401 /* Adjusted value of GCC_EXEC_PREFIX envvar. */
1403 static char *gcc_exec_prefix
;
1405 /* Default prefixes to attach to command names. */
1407 #ifdef CROSS_COMPILE /* Don't use these prefixes for a cross compiler. */
1408 #undef MD_EXEC_PREFIX
1409 #undef MD_STARTFILE_PREFIX
1410 #undef MD_STARTFILE_PREFIX_1
1413 #ifndef STANDARD_EXEC_PREFIX
1414 #define STANDARD_EXEC_PREFIX "/usr/local/lib/gcc-lib/"
1415 #endif /* !defined STANDARD_EXEC_PREFIX */
1417 static char *standard_exec_prefix
= STANDARD_EXEC_PREFIX
;
1418 static char *standard_exec_prefix_1
= "/usr/lib/gcc/";
1419 #ifdef MD_EXEC_PREFIX
1420 static char *md_exec_prefix
= MD_EXEC_PREFIX
;
1423 #ifndef STANDARD_STARTFILE_PREFIX
1424 #define STANDARD_STARTFILE_PREFIX "/usr/local/lib/"
1425 #endif /* !defined STANDARD_STARTFILE_PREFIX */
1427 #ifdef MD_STARTFILE_PREFIX
1428 static char *md_startfile_prefix
= MD_STARTFILE_PREFIX
;
1430 #ifdef MD_STARTFILE_PREFIX_1
1431 static char *md_startfile_prefix_1
= MD_STARTFILE_PREFIX_1
;
1433 static char *standard_startfile_prefix
= STANDARD_STARTFILE_PREFIX
;
1434 static char *standard_startfile_prefix_1
= "/lib/";
1435 static char *standard_startfile_prefix_2
= "/usr/lib/";
1437 #ifndef TOOLDIR_BASE_PREFIX
1438 #define TOOLDIR_BASE_PREFIX "/usr/local/"
1440 static char *tooldir_base_prefix
= TOOLDIR_BASE_PREFIX
;
1441 static char *tooldir_prefix
;
1443 /* Subdirectory to use for locating libraries. Set by
1444 set_multilib_dir based on the compilation options. */
1446 static char *multilib_dir
;
1448 /* Clear out the vector of arguments (after a command is executed). */
1456 /* Add one argument to the vector at the end.
1457 This is done when a space is seen or at the end of the line.
1458 If DELETE_ALWAYS is nonzero, the arg is a filename
1459 and the file should be deleted eventually.
1460 If DELETE_FAILURE is nonzero, the arg is a filename
1461 and the file should be deleted if this compilation fails. */
1464 store_arg (arg
, delete_always
, delete_failure
)
1466 int delete_always
, delete_failure
;
1468 if (argbuf_index
+ 1 == argbuf_length
)
1470 argbuf
= (char **) xrealloc (argbuf
, (argbuf_length
*= 2) * sizeof (char *));
1473 argbuf
[argbuf_index
++] = arg
;
1474 argbuf
[argbuf_index
] = 0;
1476 if (delete_always
|| delete_failure
)
1477 record_temp_file (arg
, delete_always
, delete_failure
);
1480 /* Record the names of temporary files we tell compilers to write,
1481 and delete them at the end of the run. */
1483 /* This is the common prefix we use to make temp file names.
1484 It is chosen once for each run of this program.
1485 It is substituted into a spec by %g.
1486 Thus, all temp file names contain this prefix.
1487 In practice, all temp file names start with this prefix.
1489 This prefix comes from the envvar TMPDIR if it is defined;
1490 otherwise, from the P_tmpdir macro if that is defined;
1491 otherwise, in /usr/tmp or /tmp. */
1493 static char *temp_filename
;
1495 /* Length of the prefix. */
1497 static int temp_filename_length
;
1499 /* Define the list of temporary files to delete. */
1504 struct temp_file
*next
;
1507 /* Queue of files to delete on success or failure of compilation. */
1508 static struct temp_file
*always_delete_queue
;
1509 /* Queue of files to delete on failure of compilation. */
1510 static struct temp_file
*failure_delete_queue
;
1512 /* Record FILENAME as a file to be deleted automatically.
1513 ALWAYS_DELETE nonzero means delete it if all compilation succeeds;
1514 otherwise delete it in any case.
1515 FAIL_DELETE nonzero means delete it if a compilation step fails;
1516 otherwise delete it in any case. */
1519 record_temp_file (filename
, always_delete
, fail_delete
)
1524 register char *name
;
1525 name
= xmalloc (strlen (filename
) + 1);
1526 strcpy (name
, filename
);
1530 register struct temp_file
*temp
;
1531 for (temp
= always_delete_queue
; temp
; temp
= temp
->next
)
1532 if (! strcmp (name
, temp
->name
))
1534 temp
= (struct temp_file
*) xmalloc (sizeof (struct temp_file
));
1535 temp
->next
= always_delete_queue
;
1537 always_delete_queue
= temp
;
1543 register struct temp_file
*temp
;
1544 for (temp
= failure_delete_queue
; temp
; temp
= temp
->next
)
1545 if (! strcmp (name
, temp
->name
))
1547 temp
= (struct temp_file
*) xmalloc (sizeof (struct temp_file
));
1548 temp
->next
= failure_delete_queue
;
1550 failure_delete_queue
= temp
;
1555 /* Delete all the temporary files whose names we previously recorded. */
1558 delete_if_ordinary (name
)
1565 printf ("Delete %s? (y or n) ", name
);
1569 while ((c
= getchar ()) != '\n' && c
!= EOF
) ;
1570 if (i
== 'y' || i
== 'Y')
1572 if (stat (name
, &st
) >= 0 && S_ISREG (st
.st_mode
))
1573 if (unlink (name
) < 0)
1575 perror_with_name (name
);
1579 delete_temp_files ()
1581 register struct temp_file
*temp
;
1583 for (temp
= always_delete_queue
; temp
; temp
= temp
->next
)
1584 delete_if_ordinary (temp
->name
);
1585 always_delete_queue
= 0;
1588 /* Delete all the files to be deleted on error. */
1591 delete_failure_queue ()
1593 register struct temp_file
*temp
;
1595 for (temp
= failure_delete_queue
; temp
; temp
= temp
->next
)
1596 delete_if_ordinary (temp
->name
);
1600 clear_failure_queue ()
1602 failure_delete_queue
= 0;
1605 /* Compute a string to use as the base of all temporary file names.
1606 It is substituted for %g. */
1609 choose_temp_base_try (try, base
)
1616 else if (try == (char *)0)
1618 else if (access (try, R_OK
| W_OK
) != 0)
1631 base
= choose_temp_base_try (getenv ("TMPDIR"), base
);
1632 base
= choose_temp_base_try (getenv ("TMP"), base
);
1633 base
= choose_temp_base_try (getenv ("TEMP"), base
);
1636 base
= choose_temp_base_try (P_tmpdir
, base
);
1639 base
= choose_temp_base_try (concat4 (dir_separator_str
, "usr",
1640 dir_separator_str
, "tmp"),
1642 base
= choose_temp_base_try (concat (dir_separator_str
, "tmp"), base
);
1644 /* If all else fails, use the current directory! */
1645 if (base
== (char *)0) base
= concat(".", dir_separator_str
);
1647 len
= strlen (base
);
1648 temp_filename
= xmalloc (len
+ strlen (concat (dir_separator_str
,
1650 strcpy (temp_filename
, base
);
1651 if (len
> 0 && temp_filename
[len
-1] != '/'
1652 && temp_filename
[len
-1] != DIR_SEPARATOR
)
1653 temp_filename
[len
++] = DIR_SEPARATOR
;
1654 strcpy (temp_filename
+ len
, "ccXXXXXX");
1656 mktemp (temp_filename
);
1657 temp_filename_length
= strlen (temp_filename
);
1658 if (temp_filename_length
== 0)
1663 /* Routine to add variables to the environment. We do this to pass
1664 the pathname of the gcc driver, and the directories search to the
1665 collect2 program, which is being run as ld. This way, we can be
1666 sure of executing the right compiler when collect2 wants to build
1667 constructors and destructors. Since the environment variables we
1668 use come from an obstack, we don't have to worry about allocating
1677 #ifndef VMS /* nor about VMS */
1679 extern char **environ
;
1680 char **old_environ
= environ
;
1684 int str_len
= strlen (str
);
1688 while ((ch
= *p
++) != '\0' && ch
!= '=')
1694 /* Search for replacing an existing environment variable, and
1695 count the number of total environment variables. */
1696 for (envp
= old_environ
; *envp
; envp
++)
1699 if (!strncmp (str
, *envp
, name_len
))
1706 /* Add a new environment variable */
1707 environ
= (char **) xmalloc (sizeof (char *) * (num_envs
+2));
1709 bcopy ((char *) old_environ
, (char *) (environ
+ 1),
1710 sizeof (char *) * (num_envs
+1));
1715 #endif /* HAVE_PUTENV */
1718 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables for collect. */
1721 putenv_from_prefixes (paths
, env_var
)
1722 struct path_prefix
*paths
;
1725 int suffix_len
= (machine_suffix
) ? strlen (machine_suffix
) : 0;
1727 = (just_machine_suffix
) ? strlen (just_machine_suffix
) : 0;
1728 int first_time
= TRUE
;
1729 struct prefix_list
*pprefix
;
1731 obstack_grow (&collect_obstack
, env_var
, strlen (env_var
));
1733 for (pprefix
= paths
->plist
; pprefix
!= 0; pprefix
= pprefix
->next
)
1735 int len
= strlen (pprefix
->prefix
);
1738 && is_directory (pprefix
->prefix
, machine_suffix
, 0))
1741 obstack_1grow (&collect_obstack
, PATH_SEPARATOR
);
1744 obstack_grow (&collect_obstack
, pprefix
->prefix
, len
);
1745 obstack_grow (&collect_obstack
, machine_suffix
, suffix_len
);
1748 if (just_machine_suffix
1749 && pprefix
->require_machine_suffix
== 2
1750 && is_directory (pprefix
->prefix
, just_machine_suffix
, 0))
1753 obstack_1grow (&collect_obstack
, PATH_SEPARATOR
);
1756 obstack_grow (&collect_obstack
, pprefix
->prefix
, len
);
1757 obstack_grow (&collect_obstack
, just_machine_suffix
,
1761 if (!pprefix
->require_machine_suffix
)
1764 obstack_1grow (&collect_obstack
, PATH_SEPARATOR
);
1767 obstack_grow (&collect_obstack
, pprefix
->prefix
, len
);
1770 obstack_1grow (&collect_obstack
, '\0');
1771 putenv (obstack_finish (&collect_obstack
));
1775 /* Search for NAME using the prefix list PREFIXES. MODE is passed to
1776 access to check permissions.
1777 Return 0 if not found, otherwise return its name, allocated with malloc. */
1780 find_a_file (pprefix
, name
, mode
)
1781 struct path_prefix
*pprefix
;
1786 char *file_suffix
= ((mode
& X_OK
) != 0 ? EXECUTABLE_SUFFIX
: "");
1787 struct prefix_list
*pl
;
1788 int len
= pprefix
->max_len
+ strlen (name
) + strlen (file_suffix
) + 1;
1791 len
+= strlen (machine_suffix
);
1793 temp
= xmalloc (len
);
1795 /* Determine the filename to execute (special case for absolute paths). */
1797 if (*name
== '/' || *name
== DIR_SEPARATOR
)
1799 if (access (name
, mode
))
1801 strcpy (temp
, name
);
1806 for (pl
= pprefix
->plist
; pl
; pl
= pl
->next
)
1810 /* Some systems have a suffix for executable files.
1811 So try appending that first. */
1812 if (file_suffix
[0] != 0)
1814 strcpy (temp
, pl
->prefix
);
1815 strcat (temp
, machine_suffix
);
1816 strcat (temp
, name
);
1817 strcat (temp
, file_suffix
);
1818 if (access (temp
, mode
) == 0)
1820 if (pl
->used_flag_ptr
!= 0)
1821 *pl
->used_flag_ptr
= 1;
1826 /* Now try just the name. */
1827 strcpy (temp
, pl
->prefix
);
1828 strcat (temp
, machine_suffix
);
1829 strcat (temp
, name
);
1830 if (access (temp
, mode
) == 0)
1832 if (pl
->used_flag_ptr
!= 0)
1833 *pl
->used_flag_ptr
= 1;
1838 /* Certain prefixes are tried with just the machine type,
1839 not the version. This is used for finding as, ld, etc. */
1840 if (just_machine_suffix
&& pl
->require_machine_suffix
== 2)
1842 /* Some systems have a suffix for executable files.
1843 So try appending that first. */
1844 if (file_suffix
[0] != 0)
1846 strcpy (temp
, pl
->prefix
);
1847 strcat (temp
, just_machine_suffix
);
1848 strcat (temp
, name
);
1849 strcat (temp
, file_suffix
);
1850 if (access (temp
, mode
) == 0)
1852 if (pl
->used_flag_ptr
!= 0)
1853 *pl
->used_flag_ptr
= 1;
1858 strcpy (temp
, pl
->prefix
);
1859 strcat (temp
, just_machine_suffix
);
1860 strcat (temp
, name
);
1861 if (access (temp
, mode
) == 0)
1863 if (pl
->used_flag_ptr
!= 0)
1864 *pl
->used_flag_ptr
= 1;
1869 /* Certain prefixes can't be used without the machine suffix
1870 when the machine or version is explicitly specified. */
1871 if (!pl
->require_machine_suffix
)
1873 /* Some systems have a suffix for executable files.
1874 So try appending that first. */
1875 if (file_suffix
[0] != 0)
1877 strcpy (temp
, pl
->prefix
);
1878 strcat (temp
, name
);
1879 strcat (temp
, file_suffix
);
1880 if (access (temp
, mode
) == 0)
1882 if (pl
->used_flag_ptr
!= 0)
1883 *pl
->used_flag_ptr
= 1;
1888 strcpy (temp
, pl
->prefix
);
1889 strcat (temp
, name
);
1890 if (access (temp
, mode
) == 0)
1892 if (pl
->used_flag_ptr
!= 0)
1893 *pl
->used_flag_ptr
= 1;
1903 /* Add an entry for PREFIX in PLIST. If FIRST is set, it goes
1904 at the start of the list, otherwise it goes at the end.
1906 If WARN is nonzero, we will warn if no file is found
1907 through this prefix. WARN should point to an int
1908 which will be set to 1 if this entry is used.
1910 REQUIRE_MACHINE_SUFFIX is 1 if this prefix can't be used without
1911 the complete value of machine_suffix.
1912 2 means try both machine_suffix and just_machine_suffix. */
1915 add_prefix (pprefix
, prefix
, first
, require_machine_suffix
, warn
)
1916 struct path_prefix
*pprefix
;
1919 int require_machine_suffix
;
1922 struct prefix_list
*pl
, **prev
;
1925 if (!first
&& pprefix
->plist
)
1927 for (pl
= pprefix
->plist
; pl
->next
; pl
= pl
->next
)
1932 prev
= &pprefix
->plist
;
1934 /* Keep track of the longest prefix */
1936 len
= strlen (prefix
);
1937 if (len
> pprefix
->max_len
)
1938 pprefix
->max_len
= len
;
1940 pl
= (struct prefix_list
*) xmalloc (sizeof (struct prefix_list
));
1941 pl
->prefix
= save_string (prefix
, len
);
1942 pl
->require_machine_suffix
= require_machine_suffix
;
1943 pl
->used_flag_ptr
= warn
;
1950 pl
->next
= (struct prefix_list
*) 0;
1954 /* Print warnings for any prefixes in the list PPREFIX that were not used. */
1957 unused_prefix_warnings (pprefix
)
1958 struct path_prefix
*pprefix
;
1960 struct prefix_list
*pl
= pprefix
->plist
;
1964 if (pl
->used_flag_ptr
!= 0 && !*pl
->used_flag_ptr
)
1966 error ("file path prefix `%s' never used",
1968 /* Prevent duplicate warnings. */
1969 *pl
->used_flag_ptr
= 1;
1975 /* Get rid of all prefixes built up so far in *PLISTP. */
1978 free_path_prefix (pprefix
)
1979 struct path_prefix
*pprefix
;
1981 struct prefix_list
*pl
= pprefix
->plist
;
1982 struct prefix_list
*temp
;
1988 free (temp
->prefix
);
1989 free ((char *) temp
);
1991 pprefix
->plist
= (struct prefix_list
*) 0;
1994 /* stdin file number. */
1995 #define STDIN_FILE_NO 0
1997 /* stdout file number. */
1998 #define STDOUT_FILE_NO 1
2000 /* value of `pipe': port index for reading. */
2003 /* value of `pipe': port index for writing. */
2004 #define WRITE_PORT 1
2006 /* Pipe waiting from last process, to be used as input for the next one.
2007 Value is STDIN_FILE_NO if no pipe is waiting
2008 (i.e. the next command is the first of a group). */
2010 static int last_pipe_input
;
2012 /* Fork one piped subcommand. FUNC is the system call to use
2013 (either execv or execvp). ARGV is the arg vector to use.
2014 NOT_LAST is nonzero if this is not the last subcommand
2015 (i.e. its output should be piped to the next one.) */
2019 #include <process.h>
2021 pexecute (search_flag
, program
, argv
, not_last
)
2028 int i
= (search_flag
? spawnv
: spawnvp
) (1, program
, argv
);
2032 int i
, el
= search_flag
? 0 : 4;
2034 scmd
= (char *)malloc (strlen (program
) + strlen (temp_filename
) + 6 + el
);
2035 rf
= scmd
+ strlen(program
) + 2 + el
;
2036 sprintf (scmd
, "%s%s @%s.gp", program
,
2037 (search_flag
? "" : ".exe"), temp_filename
);
2038 argfile
= fopen (rf
, "w");
2040 pfatal_with_name (rf
);
2042 for (i
=1; argv
[i
]; i
++)
2045 for (cp
= argv
[i
]; *cp
; cp
++)
2047 if (*cp
== '"' || *cp
== '\'' || *cp
== '\\' || isspace (*cp
))
2048 fputc ('\\', argfile
);
2049 fputc (*cp
, argfile
);
2051 fputc ('\n', argfile
);
2062 perror_exec (program
);
2063 return MIN_FATAL_STATUS
<< 8;
2070 #if !defined(__MSDOS__) && !defined(OS2) && !defined(WINNT)
2073 pexecute (search_flag
, program
, argv
, not_last
)
2079 int (*func
)() = (search_flag
? execv
: execvp
);
2082 int input_desc
= last_pipe_input
;
2083 int output_desc
= STDOUT_FILE_NO
;
2084 int retries
, sleep_interval
;
2086 /* If this isn't the last process, make a pipe for its output,
2087 and record it as waiting to be the input to the next process. */
2091 if (pipe (pdes
) < 0)
2092 pfatal_with_name ("pipe");
2093 output_desc
= pdes
[WRITE_PORT
];
2094 last_pipe_input
= pdes
[READ_PORT
];
2097 last_pipe_input
= STDIN_FILE_NO
;
2099 /* Fork a subprocess; wait and retry if it fails. */
2101 for (retries
= 0; retries
< 4; retries
++)
2106 sleep (sleep_interval
);
2107 sleep_interval
*= 2;
2114 pfatal_with_name ("fork");
2116 pfatal_with_name ("vfork");
2122 /* Move the input and output pipes into place, if nec. */
2123 if (input_desc
!= STDIN_FILE_NO
)
2125 close (STDIN_FILE_NO
);
2129 if (output_desc
!= STDOUT_FILE_NO
)
2131 close (STDOUT_FILE_NO
);
2133 close (output_desc
);
2136 /* Close the parent's descs that aren't wanted here. */
2137 if (last_pipe_input
!= STDIN_FILE_NO
)
2138 close (last_pipe_input
);
2140 /* Exec the program. */
2141 (*func
) (program
, argv
);
2142 perror_exec (program
);
2148 /* In the parent, after forking.
2149 Close the descriptors that we made for this child. */
2150 if (input_desc
!= STDIN_FILE_NO
)
2152 if (output_desc
!= STDOUT_FILE_NO
)
2153 close (output_desc
);
2155 /* Return child's process number. */
2160 #endif /* not __MSDOS__ and not OS2 and not WINNT */
2162 #if defined(OS2) || defined(WINNT)
2172 for (i
= 1; argvec
[i
] != 0; i
++)
2175 char *temp
, *newtemp
;
2178 len
= strlen (temp
);
2179 for (j
= 0; j
< len
; j
++)
2183 newtemp
= xmalloc (len
+ 2);
2184 strncpy (newtemp
, temp
, j
);
2186 strncpy (&newtemp
[j
+1], &temp
[j
], len
-j
);
2187 newtemp
[len
+1] = 0;
2201 #define FIX_ARGV(a) fix_argv(a)
2205 #define FIX_ARGV(a) a
2207 #endif /* OS2 or WINNT */
2210 pexecute (search_flag
, program
, argv
, not_last
)
2216 return (search_flag
? spawnv
: spawnvp
) (1, program
, FIX_ARGV (argv
));
2218 #endif /* OS2 or WINNT */
2221 /* Execute the command specified by the arguments on the current line of spec.
2222 When using pipes, this includes several piped-together commands
2223 with `|' between them.
2225 Return 0 if successful, -1 if failed. */
2231 int n_commands
; /* # of command. */
2235 char *prog
; /* program name. */
2236 char **argv
; /* vector of args. */
2237 int pid
; /* pid of process for this command. */
2240 struct command
*commands
; /* each command buffer with above info. */
2242 /* Count # of piped commands. */
2243 for (n_commands
= 1, i
= 0; i
< argbuf_index
; i
++)
2244 if (strcmp (argbuf
[i
], "|") == 0)
2247 /* Get storage for each command. */
2249 = (struct command
*) alloca (n_commands
* sizeof (struct command
));
2251 /* Split argbuf into its separate piped processes,
2252 and record info about each one.
2253 Also search for the programs that are to be run. */
2255 commands
[0].prog
= argbuf
[0]; /* first command. */
2256 commands
[0].argv
= &argbuf
[0];
2257 string
= find_a_file (&exec_prefixes
, commands
[0].prog
, X_OK
);
2259 commands
[0].argv
[0] = string
;
2261 for (n_commands
= 1, i
= 0; i
< argbuf_index
; i
++)
2262 if (strcmp (argbuf
[i
], "|") == 0)
2263 { /* each command. */
2265 fatal ("-pipe not supported under MS-DOS");
2267 argbuf
[i
] = 0; /* termination of command args. */
2268 commands
[n_commands
].prog
= argbuf
[i
+ 1];
2269 commands
[n_commands
].argv
= &argbuf
[i
+ 1];
2270 string
= find_a_file (&exec_prefixes
, commands
[n_commands
].prog
, X_OK
);
2272 commands
[n_commands
].argv
[0] = string
;
2276 argbuf
[argbuf_index
] = 0;
2278 /* If -v, print what we are about to do, and maybe query. */
2282 /* Print each piped command as a separate line. */
2283 for (i
= 0; i
< n_commands
; i
++)
2287 for (j
= commands
[i
].argv
; *j
; j
++)
2288 fprintf (stderr
, " %s", *j
);
2290 /* Print a pipe symbol after all but the last command. */
2291 if (i
+ 1 != n_commands
)
2292 fprintf (stderr
, " |");
2293 fprintf (stderr
, "\n");
2297 fprintf (stderr
, "\nGo ahead? (y or n) ");
2301 while (getchar () != '\n') ;
2302 if (i
!= 'y' && i
!= 'Y')
2307 /* Run each piped subprocess. */
2309 last_pipe_input
= STDIN_FILE_NO
;
2310 for (i
= 0; i
< n_commands
; i
++)
2312 char *string
= commands
[i
].argv
[0];
2314 commands
[i
].pid
= pexecute (string
!= commands
[i
].prog
,
2315 string
, commands
[i
].argv
,
2316 i
+ 1 < n_commands
);
2318 if (string
!= commands
[i
].prog
)
2324 /* Wait for all the subprocesses to finish.
2325 We don't care what order they finish in;
2326 we know that N_COMMANDS waits will get them all.
2327 Ignore subprocesses that we don't know about,
2328 since they can be spawned by the process that exec'ed us. */
2333 for (i
= 0; i
< n_commands
; )
2340 status
= pid
= commands
[i
].pid
;
2343 pid
= cwait (&status
, commands
[i
].pid
, WAIT_CHILD
);
2345 pid
= wait (&status
);
2351 for (j
= 0; j
< n_commands
; j
++)
2352 if (commands
[j
].pid
== pid
)
2357 if (WIFSIGNALED (status
))
2359 fatal ("Internal compiler error: program %s got fatal signal %d",
2360 commands
[j
].prog
, WTERMSIG (status
));
2364 else if (WIFEXITED (status
)
2365 && WEXITSTATUS (status
) >= MIN_FATAL_STATUS
)
2375 /* Find all the switches given to us
2376 and make a vector describing them.
2377 The elements of the vector are strings, one per switch given.
2378 If a switch uses following arguments, then the `part1' field
2379 is the switch itself and the `args' field
2380 is a null-terminated vector containing the following arguments.
2381 The `live_cond' field is 1 if the switch is true in a conditional spec,
2382 -1 if false (overridden by a later switch), and is initialized to zero.
2383 The `valid' field is nonzero if any spec has looked at this switch;
2384 if it remains zero at the end of the run, it must be meaningless. */
2394 static struct switchstr
*switches
;
2396 static int n_switches
;
2404 /* Also a vector of input files specified. */
2406 static struct infile
*infiles
;
2408 static int n_infiles
;
2410 /* And a vector of corresponding output files is made up later. */
2412 static char **outfiles
;
2414 /* Create the vector `switches' and its contents.
2415 Store its length in `n_switches'. */
2418 process_command (argc
, argv
)
2424 char *spec_lang
= 0;
2425 int last_language_n_infiles
;
2427 gcc_exec_prefix
= getenv ("GCC_EXEC_PREFIX");
2432 /* Figure compiler version from version string. */
2434 compiler_version
= save_string (version_string
, strlen (version_string
));
2435 for (temp
= compiler_version
; *temp
; ++temp
)
2444 /* Set up the default search paths. */
2446 if (gcc_exec_prefix
)
2448 add_prefix (&exec_prefixes
, gcc_exec_prefix
, 0, 0, NULL_PTR
);
2449 add_prefix (&startfile_prefixes
, gcc_exec_prefix
, 0, 0, NULL_PTR
);
2452 /* COMPILER_PATH and LIBRARY_PATH have values
2453 that are lists of directory names with colons. */
2455 temp
= getenv ("COMPILER_PATH");
2458 char *startp
, *endp
;
2459 char *nstore
= (char *) alloca (strlen (temp
) + 3);
2461 startp
= endp
= temp
;
2464 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
2466 strncpy (nstore
, startp
, endp
-startp
);
2468 strcpy (nstore
, concat (".", dir_separator_str
));
2469 else if (endp
[-1] != '/' && endp
[-1] != DIR_SEPARATOR
)
2471 nstore
[endp
-startp
] = DIR_SEPARATOR
;
2472 nstore
[endp
-startp
+1] = 0;
2475 nstore
[endp
-startp
] = 0;
2476 add_prefix (&exec_prefixes
, nstore
, 0, 0, NULL_PTR
);
2479 endp
= startp
= endp
+ 1;
2486 temp
= getenv ("LIBRARY_PATH");
2487 if (temp
&& ! cross_compile
)
2489 char *startp
, *endp
;
2490 char *nstore
= (char *) alloca (strlen (temp
) + 3);
2492 startp
= endp
= temp
;
2495 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
2497 strncpy (nstore
, startp
, endp
-startp
);
2499 strcpy (nstore
, concat (".", dir_separator_str
));
2500 else if (endp
[-1] != '/' && endp
[-1] != DIR_SEPARATOR
)
2502 nstore
[endp
-startp
] = DIR_SEPARATOR
;
2503 nstore
[endp
-startp
+1] = 0;
2506 nstore
[endp
-startp
] = 0;
2507 add_prefix (&startfile_prefixes
, nstore
, 0, 0, NULL_PTR
);
2510 endp
= startp
= endp
+ 1;
2517 /* Use LPATH like LIBRARY_PATH (for the CMU build program). */
2518 temp
= getenv ("LPATH");
2519 if (temp
&& ! cross_compile
)
2521 char *startp
, *endp
;
2522 char *nstore
= (char *) alloca (strlen (temp
) + 3);
2524 startp
= endp
= temp
;
2527 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
2529 strncpy (nstore
, startp
, endp
-startp
);
2531 strcpy (nstore
, concat (".", dir_separator_str
));
2532 else if (endp
[-1] != '/' && endp
[-1] != DIR_SEPARATOR
)
2534 nstore
[endp
-startp
] = DIR_SEPARATOR
;
2535 nstore
[endp
-startp
+1] = 0;
2538 nstore
[endp
-startp
] = 0;
2539 add_prefix (&startfile_prefixes
, nstore
, 0, 0, NULL_PTR
);
2542 endp
= startp
= endp
+ 1;
2549 /* Convert new-style -- options to old-style. */
2550 translate_options (&argc
, &argv
);
2552 /* Scan argv twice. Here, the first time, just count how many switches
2553 there will be in their vector, and how many input files in theirs.
2554 Here we also parse the switches that cc itself uses (e.g. -v). */
2556 for (i
= 1; i
< argc
; i
++)
2558 if (! strcmp (argv
[i
], "-dumpspecs"))
2560 printf ("*asm:\n%s\n\n", asm_spec
);
2561 printf ("*asm_final:\n%s\n\n", asm_final_spec
);
2562 printf ("*cpp:\n%s\n\n", cpp_spec
);
2563 printf ("*cc1:\n%s\n\n", cc1_spec
);
2564 printf ("*cc1plus:\n%s\n\n", cc1plus_spec
);
2565 printf ("*endfile:\n%s\n\n", endfile_spec
);
2566 printf ("*link:\n%s\n\n", link_spec
);
2567 printf ("*lib:\n%s\n\n", lib_spec
);
2568 printf ("*libgcc:\n%s\n\n", libgcc_spec
);
2569 printf ("*startfile:\n%s\n\n", startfile_spec
);
2570 printf ("*switches_need_spaces:\n%s\n\n", switches_need_spaces
);
2571 printf ("*signed_char:\n%s\n\n", signed_char_spec
);
2572 printf ("*predefines:\n%s\n\n", cpp_predefines
);
2573 printf ("*cross_compile:\n%d\n\n", cross_compile
);
2574 printf ("*multilib:\n%s\n\n", multilib_select
);
2578 else if (! strcmp (argv
[i
], "-dumpversion"))
2580 printf ("%s\n", version_string
);
2583 else if (! strcmp (argv
[i
], "-dumpmachine"))
2585 printf ("%s\n", spec_machine
);
2588 else if (! strcmp (argv
[i
], "-print-libgcc-file-name"))
2589 print_file_name
= "libgcc.a";
2590 else if (! strncmp (argv
[i
], "-print-file-name=", 17))
2591 print_file_name
= argv
[i
] + 17;
2592 else if (! strncmp (argv
[i
], "-print-prog-name=", 17))
2593 print_prog_name
= argv
[i
] + 17;
2594 else if (! strcmp (argv
[i
], "-print-multi-lib"))
2595 print_multi_lib
= 1;
2596 else if (! strcmp (argv
[i
], "-print-multi-directory"))
2597 print_multi_directory
= 1;
2598 else if (! strncmp (argv
[i
], "-Wa,", 4))
2601 /* Pass the rest of this option to the assembler. */
2603 n_assembler_options
++;
2604 if (!assembler_options
)
2606 = (char **) xmalloc (n_assembler_options
* sizeof (char **));
2609 = (char **) xrealloc (assembler_options
,
2610 n_assembler_options
* sizeof (char **));
2612 /* Split the argument at commas. */
2614 for (j
= 4; argv
[i
][j
]; j
++)
2615 if (argv
[i
][j
] == ',')
2617 assembler_options
[n_assembler_options
- 1]
2618 = save_string (argv
[i
] + prev
, j
- prev
);
2619 n_assembler_options
++;
2621 = (char **) xrealloc (assembler_options
,
2622 n_assembler_options
* sizeof (char **));
2625 /* Record the part after the last comma. */
2626 assembler_options
[n_assembler_options
- 1] = argv
[i
] + prev
;
2628 else if (! strncmp (argv
[i
], "-Wp,", 4))
2631 /* Pass the rest of this option to the preprocessor. */
2633 n_preprocessor_options
++;
2634 if (!preprocessor_options
)
2635 preprocessor_options
2636 = (char **) xmalloc (n_preprocessor_options
* sizeof (char **));
2638 preprocessor_options
2639 = (char **) xrealloc (preprocessor_options
,
2640 n_preprocessor_options
* sizeof (char **));
2642 /* Split the argument at commas. */
2644 for (j
= 4; argv
[i
][j
]; j
++)
2645 if (argv
[i
][j
] == ',')
2647 preprocessor_options
[n_preprocessor_options
- 1]
2648 = save_string (argv
[i
] + prev
, j
- prev
);
2649 n_preprocessor_options
++;
2650 preprocessor_options
2651 = (char **) xrealloc (preprocessor_options
,
2652 n_preprocessor_options
* sizeof (char **));
2655 /* Record the part after the last comma. */
2656 preprocessor_options
[n_preprocessor_options
- 1] = argv
[i
] + prev
;
2658 else if (argv
[i
][0] == '+' && argv
[i
][1] == 'e')
2659 /* The +e options to the C++ front-end. */
2661 else if (strncmp (argv
[i
], "-Wl,", 4) == 0)
2664 /* Split the argument at commas. */
2665 for (j
= 3; argv
[i
][j
]; j
++)
2666 n_infiles
+= (argv
[i
][j
] == ',');
2668 else if (strcmp (argv
[i
], "-Xlinker") == 0)
2671 fatal ("argument to `-Xlinker' is missing");
2676 else if (strncmp (argv
[i
], "-l", 2) == 0)
2678 else if (argv
[i
][0] == '-' && argv
[i
][1] != 0)
2680 register char *p
= &argv
[i
][1];
2681 register int c
= *p
;
2686 if (p
[1] == 0 && i
+ 1 == argc
)
2687 fatal ("argument to `-b' is missing");
2689 spec_machine
= argv
[++i
];
2691 spec_machine
= p
+ 1;
2696 int *temp
= (int *) xmalloc (sizeof (int));
2698 if (p
[1] == 0 && i
+ 1 == argc
)
2699 fatal ("argument to `-B' is missing");
2704 add_prefix (&exec_prefixes
, value
, 1, 0, temp
);
2705 add_prefix (&startfile_prefixes
, value
, 1, 0, temp
);
2706 add_prefix (&include_prefixes
, concat (value
, "include"),
2709 /* As a kludge, if the arg is "[foo/]stageN/", just add
2710 "[foo/]include" to the include prefix. */
2712 int len
= strlen (value
);
2715 && (value
[len
- 8] == '/'
2716 || value
[len
- 8] == DIR_SEPARATOR
)))
2717 && strncmp (value
+ len
- 7, "stage", 5) == 0
2718 && isdigit (value
[len
- 2])
2719 && (value
[len
- 1] == '/'
2720 || value
[len
- 1] == DIR_SEPARATOR
))
2723 add_prefix (&include_prefixes
, "include", 1, 0, 0);
2726 char *string
= xmalloc (len
+ 1);
2727 strncpy (string
, value
, len
-7);
2728 strcat (string
, "include");
2729 add_prefix (&include_prefixes
, string
, 1, 0, 0);
2736 case 'v': /* Print our subcommands and print versions. */
2738 /* If they do anything other than exactly `-v', don't set
2739 verbose_flag; rather, continue on to give the error. */
2746 if (p
[1] == 0 && i
+ 1 == argc
)
2747 fatal ("argument to `-V' is missing");
2749 spec_version
= argv
[++i
];
2751 spec_version
= p
+ 1;
2752 compiler_version
= spec_version
;
2756 if (!strcmp (p
, "save-temps"))
2758 save_temps_flag
= 1;
2765 if (SWITCH_TAKES_ARG (c
) > (p
[1] != 0))
2766 i
+= SWITCH_TAKES_ARG (c
) - (p
[1] != 0);
2767 else if (WORD_SWITCH_TAKES_ARG (p
))
2768 i
+= WORD_SWITCH_TAKES_ARG (p
);
2775 /* Set up the search paths before we go looking for config files. */
2777 /* These come before the md prefixes so that we will find gcc's subcommands
2778 (such as cpp) rather than those of the host system. */
2779 /* Use 2 as fourth arg meaning try just the machine as a suffix,
2780 as well as trying the machine and the version. */
2782 add_prefix (&exec_prefixes
, standard_exec_prefix
, 0, 2, NULL_PTR
);
2783 add_prefix (&exec_prefixes
, standard_exec_prefix_1
, 0, 2, NULL_PTR
);
2786 add_prefix (&startfile_prefixes
, standard_exec_prefix
, 0, 1, NULL_PTR
);
2787 add_prefix (&startfile_prefixes
, standard_exec_prefix_1
, 0, 1, NULL_PTR
);
2789 tooldir_prefix
= concat3 (tooldir_base_prefix
, spec_machine
,
2792 /* If tooldir is relative, base it on exec_prefixes. A relative
2793 tooldir lets us move the installed tree as a unit.
2795 If GCC_EXEC_PREFIX is defined, then we want to add two relative
2796 directories, so that we can search both the user specified directory
2797 and the standard place. */
2799 if (*tooldir_prefix
!= '/' && *tooldir_prefix
!= DIR_SEPARATOR
)
2801 if (gcc_exec_prefix
)
2803 char *gcc_exec_tooldir_prefix
2804 = concat6 (gcc_exec_prefix
, spec_machine
, dir_separator_str
,
2805 spec_version
, dir_separator_str
, tooldir_prefix
);
2807 add_prefix (&exec_prefixes
,
2808 concat3 (gcc_exec_tooldir_prefix
, "bin",
2811 add_prefix (&startfile_prefixes
,
2812 concat3 (gcc_exec_tooldir_prefix
, "lib",
2817 tooldir_prefix
= concat6 (standard_exec_prefix
, spec_machine
,
2818 dir_separator_str
, spec_version
,
2819 dir_separator_str
, tooldir_prefix
);
2822 add_prefix (&exec_prefixes
,
2823 concat3 (tooldir_prefix
, "bin", dir_separator_str
),
2825 add_prefix (&startfile_prefixes
,
2826 concat3 (tooldir_prefix
, "lib", dir_separator_str
),
2829 /* More prefixes are enabled in main, after we read the specs file
2830 and determine whether this is cross-compilation or not. */
2833 /* Then create the space for the vectors and scan again. */
2835 switches
= ((struct switchstr
*)
2836 xmalloc ((n_switches
+ 1) * sizeof (struct switchstr
)));
2837 infiles
= (struct infile
*) xmalloc ((n_infiles
+ 1) * sizeof (struct infile
));
2840 last_language_n_infiles
= -1;
2842 /* This, time, copy the text of each switch and store a pointer
2843 to the copy in the vector of switches.
2844 Store all the infiles in their vector. */
2846 for (i
= 1; i
< argc
; i
++)
2848 /* Just skip the switches that were handled by the preceding loop. */
2849 if (! strncmp (argv
[i
], "-Wa,", 4))
2851 else if (! strncmp (argv
[i
], "-Wp,", 4))
2853 else if (! strcmp (argv
[i
], "-print-libgcc-file-name"))
2855 else if (! strncmp (argv
[i
], "-print-file-name=", 17))
2857 else if (! strncmp (argv
[i
], "-print-prog-name=", 17))
2859 else if (! strcmp (argv
[i
], "-print-multi-lib"))
2861 else if (! strcmp (argv
[i
], "-print-multi-directory"))
2863 else if (argv
[i
][0] == '+' && argv
[i
][1] == 'e')
2865 /* Compensate for the +e options to the C++ front-end;
2866 they're there simply for cfront call-compatibility. We do
2867 some magic in default_compilers to pass them down properly.
2868 Note we deliberately start at the `+' here, to avoid passing
2869 -e0 or -e1 down into the linker. */
2870 switches
[n_switches
].part1
= &argv
[i
][0];
2871 switches
[n_switches
].args
= 0;
2872 switches
[n_switches
].live_cond
= 0;
2873 switches
[n_switches
].valid
= 0;
2876 else if (strncmp (argv
[i
], "-Wl,", 4) == 0)
2879 /* Split the argument at commas. */
2881 for (j
= 4; argv
[i
][j
]; j
++)
2882 if (argv
[i
][j
] == ',')
2884 infiles
[n_infiles
].language
= spec_lang
;
2885 infiles
[n_infiles
++].name
2886 = save_string (argv
[i
] + prev
, j
- prev
);
2889 /* Record the part after the last comma. */
2890 infiles
[n_infiles
].language
= spec_lang
;
2891 infiles
[n_infiles
++].name
= argv
[i
] + prev
;
2893 else if (strcmp (argv
[i
], "-Xlinker") == 0)
2895 infiles
[n_infiles
].language
= spec_lang
;
2896 infiles
[n_infiles
++].name
= argv
[++i
];
2898 else if (strncmp (argv
[i
], "-l", 2) == 0)
2900 infiles
[n_infiles
].language
= spec_lang
;
2901 infiles
[n_infiles
++].name
= argv
[i
];
2903 else if (argv
[i
][0] == '-' && argv
[i
][1] != 0)
2905 register char *p
= &argv
[i
][1];
2906 register int c
= *p
;
2908 if (c
== 'B' || c
== 'b' || c
== 'V')
2910 /* Skip a separate arg, if any. */
2917 if (p
[1] == 0 && i
+ 1 == argc
)
2918 fatal ("argument to `-x' is missing");
2920 spec_lang
= argv
[++i
];
2923 if (! strcmp (spec_lang
, "none"))
2924 /* Suppress the warning if -xnone comes after the last input file,
2925 because alternate command interfaces like g++ might find it
2926 useful to place -xnone after each input file. */
2929 last_language_n_infiles
= n_infiles
;
2932 switches
[n_switches
].part1
= p
;
2933 /* Deal with option arguments in separate argv elements. */
2934 if ((SWITCH_TAKES_ARG (c
) > (p
[1] != 0))
2935 || WORD_SWITCH_TAKES_ARG (p
))
2938 int n_args
= WORD_SWITCH_TAKES_ARG (p
);
2942 /* Count only the option arguments in separate argv elements. */
2943 n_args
= SWITCH_TAKES_ARG (c
) - (p
[1] != 0);
2945 if (i
+ n_args
>= argc
)
2946 fatal ("argument to `-%s' is missing", p
);
2947 switches
[n_switches
].args
2948 = (char **) xmalloc ((n_args
+ 1) * sizeof (char *));
2950 switches
[n_switches
].args
[j
++] = argv
[++i
];
2951 /* Null-terminate the vector. */
2952 switches
[n_switches
].args
[j
] = 0;
2954 else if (*switches_need_spaces
!= 0 && (c
== 'o' || c
== 'L'))
2956 /* On some systems, ld cannot handle -o or -L without space.
2957 So split the -o or -L from its argument. */
2958 switches
[n_switches
].part1
= (c
== 'o' ? "o" : "L");
2959 switches
[n_switches
].args
= (char **) xmalloc (2 * sizeof (char *));
2960 switches
[n_switches
].args
[0] = xmalloc (strlen (p
));
2961 strcpy (switches
[n_switches
].args
[0], &p
[1]);
2962 switches
[n_switches
].args
[1] = 0;
2965 switches
[n_switches
].args
= 0;
2967 switches
[n_switches
].live_cond
= 0;
2968 switches
[n_switches
].valid
= 0;
2969 /* This is always valid, since gcc.c itself understands it. */
2970 if (!strcmp (p
, "save-temps"))
2971 switches
[n_switches
].valid
= 1;
2976 if (strcmp (argv
[i
], "-") != 0 && access (argv
[i
], R_OK
) < 0)
2978 perror_with_name (argv
[i
]);
2983 infiles
[n_infiles
].language
= spec_lang
;
2984 infiles
[n_infiles
++].name
= argv
[i
];
2989 if (n_infiles
== last_language_n_infiles
&& spec_lang
!= 0)
2990 error ("Warning: `-x %s' after last input file has no effect", spec_lang
);
2992 switches
[n_switches
].part1
= 0;
2993 infiles
[n_infiles
].name
= 0;
2995 /* If we have a GCC_EXEC_PREFIX envvar, modify it for cpp's sake. */
2996 if (gcc_exec_prefix
)
2998 temp
= (char *) xmalloc (strlen (gcc_exec_prefix
) + strlen (spec_version
)
2999 + strlen (spec_machine
) + 3);
3000 strcpy (temp
, gcc_exec_prefix
);
3001 strcat (temp
, spec_machine
);
3002 strcat (temp
, dir_separator_str
);
3003 strcat (temp
, spec_version
);
3004 strcat (temp
, dir_separator_str
);
3005 gcc_exec_prefix
= temp
;
3009 /* Process a spec string, accumulating and running commands. */
3011 /* These variables describe the input file name.
3012 input_file_number is the index on outfiles of this file,
3013 so that the output file name can be stored for later use by %o.
3014 input_basename is the start of the part of the input file
3015 sans all directory names, and basename_length is the number
3016 of characters starting there excluding the suffix .c or whatever. */
3018 static char *input_filename
;
3019 static int input_file_number
;
3020 static int input_filename_length
;
3021 static int basename_length
;
3022 static char *input_basename
;
3023 static char *input_suffix
;
3025 /* These are variables used within do_spec and do_spec_1. */
3027 /* Nonzero if an arg has been started and not yet terminated
3028 (with space, tab or newline). */
3029 static int arg_going
;
3031 /* Nonzero means %d or %g has been seen; the next arg to be terminated
3032 is a temporary file name. */
3033 static int delete_this_arg
;
3035 /* Nonzero means %w has been seen; the next arg to be terminated
3036 is the output file name of this compilation. */
3037 static int this_is_output_file
;
3039 /* Nonzero means %s has been seen; the next arg to be terminated
3040 is the name of a library file and we should try the standard
3041 search dirs for it. */
3042 static int this_is_library_file
;
3044 /* Nonzero means that the input of this command is coming from a pipe. */
3045 static int input_from_pipe
;
3047 /* Process the spec SPEC and run the commands specified therein.
3048 Returns 0 if the spec is successfully processed; -1 if failed. */
3058 delete_this_arg
= 0;
3059 this_is_output_file
= 0;
3060 this_is_library_file
= 0;
3061 input_from_pipe
= 0;
3063 value
= do_spec_1 (spec
, 0, NULL_PTR
);
3065 /* Force out any unfinished command.
3066 If -pipe, this forces out the last command if it ended in `|'. */
3069 if (argbuf_index
> 0 && !strcmp (argbuf
[argbuf_index
- 1], "|"))
3072 if (argbuf_index
> 0)
3079 /* Process the sub-spec SPEC as a portion of a larger spec.
3080 This is like processing a whole spec except that we do
3081 not initialize at the beginning and we do not supply a
3082 newline by default at the end.
3083 INSWITCH nonzero means don't process %-sequences in SPEC;
3084 in this case, % is treated as an ordinary character.
3085 This is used while substituting switches.
3086 INSWITCH nonzero also causes SPC not to terminate an argument.
3088 Value is zero unless a line was finished
3089 and the command on that line reported an error. */
3092 do_spec_1 (spec
, inswitch
, soft_matched_part
)
3095 char *soft_matched_part
;
3097 register char *p
= spec
;
3104 /* If substituting a switch, treat all chars like letters.
3105 Otherwise, NL, SPC, TAB and % are special. */
3106 switch (inswitch
? 'a' : c
)
3109 /* End of line: finish any pending argument,
3110 then run the pending command if one has been started. */
3113 obstack_1grow (&obstack
, 0);
3114 string
= obstack_finish (&obstack
);
3115 if (this_is_library_file
)
3116 string
= find_file (string
);
3117 store_arg (string
, delete_this_arg
, this_is_output_file
);
3118 if (this_is_output_file
)
3119 outfiles
[input_file_number
] = string
;
3123 if (argbuf_index
> 0 && !strcmp (argbuf
[argbuf_index
- 1], "|"))
3126 for (i
= 0; i
< n_switches
; i
++)
3127 if (!strcmp (switches
[i
].part1
, "pipe"))
3130 /* A `|' before the newline means use a pipe here,
3131 but only if -pipe was specified.
3132 Otherwise, execute now and don't pass the `|' as an arg. */
3135 input_from_pipe
= 1;
3136 switches
[i
].valid
= 1;
3143 if (argbuf_index
> 0)
3149 /* Reinitialize for a new command, and for a new argument. */
3152 delete_this_arg
= 0;
3153 this_is_output_file
= 0;
3154 this_is_library_file
= 0;
3155 input_from_pipe
= 0;
3159 /* End any pending argument. */
3162 obstack_1grow (&obstack
, 0);
3163 string
= obstack_finish (&obstack
);
3164 if (this_is_library_file
)
3165 string
= find_file (string
);
3166 store_arg (string
, delete_this_arg
, this_is_output_file
);
3167 if (this_is_output_file
)
3168 outfiles
[input_file_number
] = string
;
3172 obstack_1grow (&obstack
, c
);
3178 /* Space or tab ends an argument if one is pending. */
3181 obstack_1grow (&obstack
, 0);
3182 string
= obstack_finish (&obstack
);
3183 if (this_is_library_file
)
3184 string
= find_file (string
);
3185 store_arg (string
, delete_this_arg
, this_is_output_file
);
3186 if (this_is_output_file
)
3187 outfiles
[input_file_number
] = string
;
3189 /* Reinitialize for a new argument. */
3191 delete_this_arg
= 0;
3192 this_is_output_file
= 0;
3193 this_is_library_file
= 0;
3200 fatal ("Invalid specification! Bug in cc.");
3203 obstack_grow (&obstack
, input_basename
, basename_length
);
3208 delete_this_arg
= 2;
3211 /* Dump out the directories specified with LIBRARY_PATH,
3212 followed by the absolute directories
3213 that we search for startfiles. */
3216 struct prefix_list
*pl
= startfile_prefixes
.plist
;
3218 char *buffer
= (char *) xmalloc (bufsize
);
3221 for (; pl
; pl
= pl
->next
)
3223 #ifdef RELATIVE_PREFIX_NOT_LINKDIR
3224 /* Used on systems which record the specified -L dirs
3225 and use them to search for dynamic linking. */
3226 /* Relative directories always come from -B,
3227 and it is better not to use them for searching
3228 at run time. In particular, stage1 loses */
3229 if (pl
->prefix
[0] != '/' && pl
->prefix
[0] != DIR_SEPARATOR
)
3232 /* Try subdirectory if there is one. */
3233 if (multilib_dir
!= NULL
)
3237 if (strlen (pl
->prefix
) + strlen (machine_suffix
)
3239 bufsize
= (strlen (pl
->prefix
)
3240 + strlen (machine_suffix
)) * 2 + 1;
3241 buffer
= (char *) xrealloc (buffer
, bufsize
);
3242 strcpy (buffer
, pl
->prefix
);
3243 strcat (buffer
, machine_suffix
);
3244 if (is_directory (buffer
, multilib_dir
, 1))
3246 do_spec_1 ("-L", 0, NULL_PTR
);
3247 #ifdef SPACE_AFTER_L_OPTION
3248 do_spec_1 (" ", 0, NULL_PTR
);
3250 do_spec_1 (buffer
, 1, NULL_PTR
);
3251 do_spec_1 (multilib_dir
, 1, NULL_PTR
);
3252 /* Make this a separate argument. */
3253 do_spec_1 (" ", 0, NULL_PTR
);
3256 if (!pl
->require_machine_suffix
)
3258 if (is_directory (pl
->prefix
, multilib_dir
, 1))
3260 do_spec_1 ("-L", 0, NULL_PTR
);
3261 #ifdef SPACE_AFTER_L_OPTION
3262 do_spec_1 (" ", 0, NULL_PTR
);
3264 do_spec_1 (pl
->prefix
, 1, NULL_PTR
);
3265 do_spec_1 (multilib_dir
, 1, NULL_PTR
);
3266 /* Make this a separate argument. */
3267 do_spec_1 (" ", 0, NULL_PTR
);
3273 if (is_directory (pl
->prefix
, machine_suffix
, 1))
3275 do_spec_1 ("-L", 0, NULL_PTR
);
3276 #ifdef SPACE_AFTER_L_OPTION
3277 do_spec_1 (" ", 0, NULL_PTR
);
3279 do_spec_1 (pl
->prefix
, 1, NULL_PTR
);
3280 /* Remove slash from machine_suffix. */
3281 if (strlen (machine_suffix
) >= bufsize
)
3282 bufsize
= strlen (machine_suffix
) * 2 + 1;
3283 buffer
= (char *) xrealloc (buffer
, bufsize
);
3284 strcpy (buffer
, machine_suffix
);
3285 idx
= strlen (buffer
);
3286 if (buffer
[idx
- 1] == '/'
3287 || buffer
[idx
- 1] == DIR_SEPARATOR
)
3288 buffer
[idx
- 1] = 0;
3289 do_spec_1 (buffer
, 1, NULL_PTR
);
3290 /* Make this a separate argument. */
3291 do_spec_1 (" ", 0, NULL_PTR
);
3294 if (!pl
->require_machine_suffix
)
3296 if (is_directory (pl
->prefix
, "", 1))
3298 do_spec_1 ("-L", 0, NULL_PTR
);
3299 #ifdef SPACE_AFTER_L_OPTION
3300 do_spec_1 (" ", 0, NULL_PTR
);
3302 /* Remove slash from pl->prefix. */
3303 if (strlen (pl
->prefix
) >= bufsize
)
3304 bufsize
= strlen (pl
->prefix
) * 2 + 1;
3305 buffer
= (char *) xrealloc (buffer
, bufsize
);
3306 strcpy (buffer
, pl
->prefix
);
3307 idx
= strlen (buffer
);
3308 if (buffer
[idx
- 1] == '/'
3309 || buffer
[idx
- 1] == DIR_SEPARATOR
)
3310 buffer
[idx
- 1] = 0;
3311 do_spec_1 (buffer
, 1, NULL_PTR
);
3312 /* Make this a separate argument. */
3313 do_spec_1 (" ", 0, NULL_PTR
);
3322 /* {...:%efoo} means report an error with `foo' as error message
3323 and don't execute any more commands for this file. */
3327 while (*p
!= 0 && *p
!= '\n') p
++;
3328 buf
= (char *) alloca (p
- q
+ 1);
3329 strncpy (buf
, q
, p
- q
);
3339 if (save_temps_flag
)
3341 obstack_grow (&obstack
, input_basename
, basename_length
);
3342 delete_this_arg
= 0;
3346 #ifdef MKTEMP_EACH_FILE
3347 /* ??? This has a problem: the total number of
3348 values mktemp can return is limited.
3349 That matters for the names of object files.
3350 In 2.4, do something about that. */
3351 struct temp_name
*t
;
3353 while (*p
== '.' || isalpha (*p
))
3356 /* See if we already have an association of %g/%u/%U and
3358 for (t
= temp_names
; t
; t
= t
->next
)
3359 if (t
->length
== p
- suffix
3360 && strncmp (t
->suffix
, suffix
, p
- suffix
) == 0
3361 && t
->unique
== (c
!= 'g'))
3364 /* Make a new association if needed. %u requires one. */
3365 if (t
== 0 || c
== 'u')
3369 t
= (struct temp_name
*) xmalloc (sizeof (struct temp_name
));
3370 t
->next
= temp_names
;
3373 t
->length
= p
- suffix
;
3374 t
->suffix
= save_string (suffix
, p
- suffix
);
3375 t
->unique
= (c
!= 'g');
3376 choose_temp_base ();
3377 t
->filename
= temp_filename
;
3378 t
->filename_length
= temp_filename_length
;
3381 obstack_grow (&obstack
, t
->filename
, t
->filename_length
);
3382 delete_this_arg
= 1;
3384 obstack_grow (&obstack
, temp_filename
, temp_filename_length
);
3385 if (c
== 'u' || c
== 'U')
3391 sprintf (buff
, "%d", unique
);
3392 obstack_grow (&obstack
, buff
, strlen (buff
));
3395 delete_this_arg
= 1;
3401 obstack_grow (&obstack
, input_filename
, input_filename_length
);
3407 struct prefix_list
*pl
= include_prefixes
.plist
;
3409 if (gcc_exec_prefix
)
3411 do_spec_1 ("-iprefix", 1, NULL_PTR
);
3412 /* Make this a separate argument. */
3413 do_spec_1 (" ", 0, NULL_PTR
);
3414 do_spec_1 (gcc_exec_prefix
, 1, NULL_PTR
);
3415 do_spec_1 (" ", 0, NULL_PTR
);
3418 for (; pl
; pl
= pl
->next
)
3420 do_spec_1 ("-isystem", 1, NULL_PTR
);
3421 /* Make this a separate argument. */
3422 do_spec_1 (" ", 0, NULL_PTR
);
3423 do_spec_1 (pl
->prefix
, 1, NULL_PTR
);
3424 do_spec_1 (" ", 0, NULL_PTR
);
3432 for (f
= 0; f
< n_infiles
; f
++)
3433 store_arg (outfiles
[f
], 0, 0);
3438 obstack_grow (&obstack
, OBJECT_SUFFIX
, strlen (OBJECT_SUFFIX
));
3443 this_is_library_file
= 1;
3447 this_is_output_file
= 1;
3452 int index
= argbuf_index
;
3453 /* Handle the {...} following the %W. */
3456 p
= handle_braces (p
+ 1);
3459 /* If any args were output, mark the last one for deletion
3461 if (argbuf_index
!= index
)
3462 record_temp_file (argbuf
[argbuf_index
- 1], 0, 1);
3466 /* %x{OPTION} records OPTION for %X to output. */
3472 /* Skip past the option value and make a copy. */
3477 string
= save_string (p1
+ 1, p
- p1
- 2);
3479 /* See if we already recorded this option. */
3480 for (i
= 0; i
< n_linker_options
; i
++)
3481 if (! strcmp (string
, linker_options
[i
]))
3487 /* This option is new; add it. */
3489 if (!linker_options
)
3491 = (char **) xmalloc (n_linker_options
* sizeof (char **));
3494 = (char **) xrealloc (linker_options
,
3495 n_linker_options
* sizeof (char **));
3497 linker_options
[n_linker_options
- 1] = string
;
3501 /* Dump out the options accumulated previously using %x. */
3503 for (i
= 0; i
< n_linker_options
; i
++)
3505 do_spec_1 (linker_options
[i
], 1, NULL_PTR
);
3506 /* Make each accumulated option a separate argument. */
3507 do_spec_1 (" ", 0, NULL_PTR
);
3511 /* Dump out the options accumulated previously using -Wa,. */
3513 for (i
= 0; i
< n_assembler_options
; i
++)
3515 do_spec_1 (assembler_options
[i
], 1, NULL_PTR
);
3516 /* Make each accumulated option a separate argument. */
3517 do_spec_1 (" ", 0, NULL_PTR
);
3521 /* Dump out the options accumulated previously using -Wp,. */
3523 for (i
= 0; i
< n_preprocessor_options
; i
++)
3525 do_spec_1 (preprocessor_options
[i
], 1, NULL_PTR
);
3526 /* Make each accumulated option a separate argument. */
3527 do_spec_1 (" ", 0, NULL_PTR
);
3531 /* Here are digits and numbers that just process
3532 a certain constant string as a spec. */
3535 value
= do_spec_1 (cc1_spec
, 0, NULL_PTR
);
3541 value
= do_spec_1 (cc1plus_spec
, 0, NULL_PTR
);
3547 value
= do_spec_1 (asm_spec
, 0, NULL_PTR
);
3553 value
= do_spec_1 (asm_final_spec
, 0, NULL_PTR
);
3559 value
= do_spec_1 (signed_char_spec
, 0, NULL_PTR
);
3565 value
= do_spec_1 (cpp_spec
, 0, NULL_PTR
);
3571 value
= do_spec_1 (endfile_spec
, 0, NULL_PTR
);
3577 value
= do_spec_1 (link_spec
, 0, NULL_PTR
);
3583 value
= do_spec_1 (lib_spec
, 0, NULL_PTR
);
3589 value
= do_spec_1 (libgcc_spec
, 0, NULL_PTR
);
3596 char *x
= (char *) alloca (strlen (cpp_predefines
) + 1);
3600 /* Copy all of the -D options in CPP_PREDEFINES into BUF. */
3604 if (! strncmp (y
, "-D", 2))
3605 /* Copy the whole option. */
3606 while (*y
&& *y
!= ' ' && *y
!= '\t')
3608 else if (*y
== ' ' || *y
== '\t')
3609 /* Copy whitespace to the result. */
3611 /* Don't copy other options. */
3618 value
= do_spec_1 (buf
, 0, NULL_PTR
);
3626 char *x
= (char *) alloca (strlen (cpp_predefines
) * 4 + 1);
3630 /* Copy all of CPP_PREDEFINES into BUF,
3631 but put __ after every -D and at the end of each arg. */
3635 if (! strncmp (y
, "-D", 2))
3643 || (*(y
+1) != '_' && ! isupper (*(y
+1))))
3645 /* Stick __ at front of macro name. */
3648 /* Arrange to stick __ at the end as well. */
3652 /* Copy the macro name. */
3653 while (*y
&& *y
!= '=' && *y
!= ' ' && *y
!= '\t')
3662 /* Copy the value given, if any. */
3663 while (*y
&& *y
!= ' ' && *y
!= '\t')
3666 else if (*y
== ' ' || *y
== '\t')
3667 /* Copy whitespace to the result. */
3669 /* Don't copy -A options */
3675 /* Copy all of CPP_PREDEFINES into BUF,
3676 but put __ after every -D. */
3680 if (! strncmp (y
, "-D", 2))
3685 || (*(y
+1) != '_' && ! isupper (*(y
+1))))
3687 /* Stick -D__ at front of macro name. */
3693 /* Copy the macro name. */
3694 while (*y
&& *y
!= '=' && *y
!= ' ' && *y
!= '\t')
3697 /* Copy the value given, if any. */
3698 while (*y
&& *y
!= ' ' && *y
!= '\t')
3703 /* Do not copy this macro - we have just done it before */
3704 while (*y
&& *y
!= ' ' && *y
!= '\t')
3708 else if (*y
== ' ' || *y
== '\t')
3709 /* Copy whitespace to the result. */
3711 /* Don't copy -A options */
3717 /* Copy all of the -A options in CPP_PREDEFINES into BUF. */
3721 if (! strncmp (y
, "-A", 2))
3722 /* Copy the whole option. */
3723 while (*y
&& *y
!= ' ' && *y
!= '\t')
3725 else if (*y
== ' ' || *y
== '\t')
3726 /* Copy whitespace to the result. */
3728 /* Don't copy other options. */
3735 value
= do_spec_1 (buf
, 0, NULL_PTR
);
3742 value
= do_spec_1 (startfile_spec
, 0, NULL_PTR
);
3747 /* Here we define characters other than letters and digits. */
3750 p
= handle_braces (p
);
3756 obstack_1grow (&obstack
, '%');
3760 do_spec_1 (soft_matched_part
, 1, NULL_PTR
);
3761 do_spec_1 (" ", 0, NULL_PTR
);
3764 /* Process a string found as the value of a spec given by name.
3765 This feature allows individual machine descriptions
3766 to add and use their own specs.
3767 %[...] modifies -D options the way %P does;
3768 %(...) uses the spec unmodified. */
3773 struct spec_list
*sl
;
3776 /* The string after the S/P is the name of a spec that is to be
3778 while (*p
&& *p
!= ')' && *p
!= ']')
3781 /* See if it's in the list */
3782 for (len
= p
- name
, sl
= specs
; sl
; sl
= sl
->next
)
3783 if (strncmp (sl
->name
, name
, len
) == 0 && !sl
->name
[len
])
3793 value
= do_spec_1 (name
, 0, NULL_PTR
);
3799 char *x
= (char *) alloca (strlen (name
) * 2 + 1);
3803 /* Copy all of NAME into BUF, but put __ after
3804 every -D and at the end of each arg, */
3807 if (! strncmp (y
, "-D", 2))
3815 else if (*y
== ' ' || *y
== 0)
3829 value
= do_spec_1 (buf
, 0, NULL_PTR
);
3835 /* Discard the closing paren or bracket. */
3843 int c1
= *p
++; /* Select first or second version number. */
3844 char *v
= compiler_version
;
3846 /* If desired, advance to second version number. */
3849 /* Set P after the first period. */
3850 while (*v
!= 0 && *v
!= ' ' && *v
!= '.')
3855 /* Set Q at the next period or at the end. */
3857 while (*q
!= 0 && *q
!= ' ' && *q
!= '.')
3859 /* Empty string means zero. */
3865 /* Put that part into the command. */
3866 obstack_grow (&obstack
, v
, q
- v
);
3872 if (input_from_pipe
)
3873 do_spec_1 ("-", 0, NULL_PTR
);
3882 /* Backslash: treat next character as ordinary. */
3887 /* Ordinary character: put it into the current argument. */
3888 obstack_1grow (&obstack
, c
);
3892 return 0; /* End of string */
3895 /* Return 0 if we call do_spec_1 and that returns -1. */
3908 /* A `|' after the open-brace means,
3909 if the test fails, output a single minus sign rather than nothing.
3910 This is used in %{|!pipe:...}. */
3914 /* A `!' after the open-brace negates the condition:
3915 succeed if the specified switch is not present. */
3919 /* A `.' after the open-brace means test against the current suffix. */
3929 while (*p
!= ':' && *p
!= '}') p
++;
3932 register int count
= 1;
3950 int found
= (input_suffix
!= 0
3951 && strlen (input_suffix
) == p
- filter
3952 && strncmp (input_suffix
, filter
, p
- filter
) == 0);
3958 && do_spec_1 (save_string (p
+ 1, q
- p
- 2), 0, NULL_PTR
) < 0)
3963 else if (p
[-1] == '*' && p
[0] == '}')
3965 /* Substitute all matching switches as separate args. */
3968 for (i
= 0; i
< n_switches
; i
++)
3969 if (!strncmp (switches
[i
].part1
, filter
, p
- filter
)
3970 && check_live_switch (i
, p
- filter
))
3975 /* Test for presence of the specified switch. */
3979 /* If name specified ends in *, as in {x*:...},
3980 check for %* and handle that case. */
3981 if (p
[-1] == '*' && !negate
)
3986 /* First see whether we have %*. */
3990 if (*r
== '%' && r
[1] == '*')
3994 /* If we do, handle that case. */
3997 /* Substitute all matching switches as separate args.
3998 But do this by substituting for %*
3999 in the text that follows the colon. */
4001 unsigned hard_match_len
= p
- filter
- 1;
4002 char *string
= save_string (p
+ 1, q
- p
- 2);
4004 for (i
= 0; i
< n_switches
; i
++)
4005 if (!strncmp (switches
[i
].part1
, filter
, hard_match_len
)
4006 && check_live_switch (i
, -1))
4008 do_spec_1 (string
, 0, &switches
[i
].part1
[hard_match_len
]);
4009 /* Pass any arguments this switch has. */
4017 /* If name specified ends in *, as in {x*:...},
4018 check for presence of any switch name starting with x. */
4021 for (i
= 0; i
< n_switches
; i
++)
4023 unsigned hard_match_len
= p
- filter
- 1;
4025 if (!strncmp (switches
[i
].part1
, filter
, hard_match_len
)
4026 && check_live_switch (i
, hard_match_len
))
4032 /* Otherwise, check for presence of exact name specified. */
4035 for (i
= 0; i
< n_switches
; i
++)
4037 if (!strncmp (switches
[i
].part1
, filter
, p
- filter
)
4038 && switches
[i
].part1
[p
- filter
] == 0
4039 && check_live_switch (i
, -1))
4047 /* If it is as desired (present for %{s...}, absent for %{-s...})
4048 then substitute either the switch or the specified
4049 conditional text. */
4050 if (present
!= negate
)
4058 if (do_spec_1 (save_string (p
+ 1, q
- p
- 2), 0, NULL_PTR
) < 0)
4064 /* Here if a %{|...} conditional fails: output a minus sign,
4065 which means "standard output" or "standard input". */
4066 do_spec_1 ("-", 0, NULL_PTR
);
4073 /* Return 0 iff switch number SWITCHNUM is obsoleted by a later switch
4074 on the command line. PREFIX_LENGTH is the length of XXX in an {XXX*}
4075 spec, or -1 if either exact match or %* is used.
4077 A -O switch is obsoleted by a later -O switch. A -f, -m, or -W switch
4078 whose value does not begin with "no-" is obsoleted by the same value
4079 with the "no-", similarly for a switch with the "no-" prefix. */
4082 check_live_switch (switchnum
, prefix_length
)
4086 char *name
= switches
[switchnum
].part1
;
4089 /* In the common case of {<at-most-one-letter>*}, a negating
4090 switch would always match, so ignore that case. We will just
4091 send the conflicting switches to the compiler phase. */
4092 if (prefix_length
>= 0 && prefix_length
<= 1)
4095 /* If we already processed this switch and determined if it was
4096 live or not, return our past determination. */
4097 if (switches
[switchnum
].live_cond
!= 0)
4098 return switches
[switchnum
].live_cond
> 0;
4100 /* Now search for duplicate in a manner that depends on the name. */
4104 for (i
= switchnum
+ 1; i
< n_switches
; i
++)
4105 if (switches
[i
].part1
[0] == 'O')
4107 switches
[switchnum
].valid
= 1;
4108 switches
[switchnum
].live_cond
= -1;
4113 case 'W': case 'f': case 'm':
4114 if (! strncmp (name
+ 1, "no-", 3))
4116 /* We have Xno-YYY, search for XYYY. */
4117 for (i
= switchnum
+ 1; i
< n_switches
; i
++)
4118 if (switches
[i
].part1
[0] == name
[0]
4119 && ! strcmp (&switches
[i
].part1
[1], &name
[4]))
4121 switches
[switchnum
].valid
= 1;
4122 switches
[switchnum
].live_cond
= -1;
4128 /* We have XYYY, search for Xno-YYY. */
4129 for (i
= switchnum
+ 1; i
< n_switches
; i
++)
4130 if (switches
[i
].part1
[0] == name
[0]
4131 && switches
[i
].part1
[1] == 'n'
4132 && switches
[i
].part1
[2] == 'o'
4133 && switches
[i
].part1
[3] == '-'
4134 && !strcmp (&switches
[i
].part1
[4], &name
[1]))
4136 switches
[switchnum
].valid
= 1;
4137 switches
[switchnum
].live_cond
= -1;
4144 /* Otherwise the switch is live. */
4145 switches
[switchnum
].live_cond
= 1;
4149 /* Pass a switch to the current accumulating command
4150 in the same form that we received it.
4151 SWITCHNUM identifies the switch; it is an index into
4152 the vector of switches gcc received, which is `switches'.
4153 This cannot fail since it never finishes a command line.
4155 If OMIT_FIRST_WORD is nonzero, then we omit .part1 of the argument. */
4158 give_switch (switchnum
, omit_first_word
)
4160 int omit_first_word
;
4162 if (!omit_first_word
)
4164 do_spec_1 ("-", 0, NULL_PTR
);
4165 do_spec_1 (switches
[switchnum
].part1
, 1, NULL_PTR
);
4167 do_spec_1 (" ", 0, NULL_PTR
);
4168 if (switches
[switchnum
].args
!= 0)
4171 for (p
= switches
[switchnum
].args
; *p
; p
++)
4173 do_spec_1 (*p
, 1, NULL_PTR
);
4174 do_spec_1 (" ", 0, NULL_PTR
);
4177 switches
[switchnum
].valid
= 1;
4180 /* Search for a file named NAME trying various prefixes including the
4181 user's -B prefix and some standard ones.
4182 Return the absolute file name found. If nothing is found, return NAME. */
4190 /* Try multilib_dir if it is defined. */
4191 if (multilib_dir
!= NULL
)
4195 try = (char *) alloca (strlen (multilib_dir
) + strlen (name
) + 2);
4196 strcpy (try, multilib_dir
);
4197 strcat (try, dir_separator_str
);
4200 newname
= find_a_file (&startfile_prefixes
, try, R_OK
);
4202 /* If we don't find it in the multi library dir, then fall
4203 through and look for it in the normal places. */
4204 if (newname
!= NULL
)
4208 newname
= find_a_file (&startfile_prefixes
, name
, R_OK
);
4209 return newname
? newname
: name
;
4212 /* Determine whether a directory exists. If LINKER, return 0 for
4213 certain fixed names not needed by the linker. If not LINKER, it is
4214 only important to return 0 if the host machine has a small ARG_MAX
4218 is_directory (path1
, path2
, linker
)
4223 int len1
= strlen (path1
);
4224 int len2
= strlen (path2
);
4225 char *path
= (char *) alloca (3 + len1
+ len2
);
4229 #ifndef SMALL_ARG_MAX
4234 /* Construct the path from the two parts. Ensure the string ends with "/.".
4235 The resulting path will be a directory even if the given path is a
4237 bcopy (path1
, path
, len1
);
4238 bcopy (path2
, path
+ len1
, len2
);
4239 cp
= path
+ len1
+ len2
;
4240 if (cp
[-1] != '/' && cp
[-1] != DIR_SEPARATOR
)
4241 *cp
++ = DIR_SEPARATOR
;
4245 /* Exclude directories that the linker is known to search. */
4248 && strcmp (path
, concat4 (dir_separator_str
, "lib",
4249 dir_separator_str
, ".")) == 0)
4251 && strcmp (path
, concat6 (dir_separator_str
, "usr",
4252 dir_separator_str
, "lib",
4253 dir_separator_str
, ".")) == 0)))
4256 return (stat (path
, &st
) >= 0 && S_ISDIR (st
.st_mode
));
4259 /* On fatal signals, delete all the temporary files. */
4262 fatal_error (signum
)
4265 signal (signum
, SIG_DFL
);
4266 delete_failure_queue ();
4267 delete_temp_files ();
4268 /* Get the same signal again, this time not handled,
4269 so its normal effect occurs. */
4270 kill (getpid (), signum
);
4281 int linker_was_run
= 0;
4282 char *explicit_link_files
;
4286 p
= argv
[0] + strlen (argv
[0]);
4287 while (p
!= argv
[0] && p
[-1] != '/' && p
[-1] != DIR_SEPARATOR
) --p
;
4290 if (signal (SIGINT
, SIG_IGN
) != SIG_IGN
)
4291 signal (SIGINT
, fatal_error
);
4293 if (signal (SIGHUP
, SIG_IGN
) != SIG_IGN
)
4294 signal (SIGHUP
, fatal_error
);
4296 if (signal (SIGTERM
, SIG_IGN
) != SIG_IGN
)
4297 signal (SIGTERM
, fatal_error
);
4299 if (signal (SIGPIPE
, SIG_IGN
) != SIG_IGN
)
4300 signal (SIGPIPE
, fatal_error
);
4304 argbuf
= (char **) xmalloc (argbuf_length
* sizeof (char *));
4306 obstack_init (&obstack
);
4308 /* Set up to remember the pathname of gcc and any options
4309 needed for collect. We use argv[0] instead of programname because
4310 we need the complete pathname. */
4311 obstack_init (&collect_obstack
);
4312 obstack_grow (&collect_obstack
, "COLLECT_GCC=", sizeof ("COLLECT_GCC=")-1);
4313 obstack_grow (&collect_obstack
, argv
[0], strlen (argv
[0])+1);
4314 putenv (obstack_finish (&collect_obstack
));
4316 /* Choose directory for temp files. */
4318 choose_temp_base ();
4320 /* Make a table of what switches there are (switches, n_switches).
4321 Make a table of specified input files (infiles, n_infiles).
4322 Decode switches that are handled locally. */
4324 process_command (argc
, argv
);
4326 /* Initialize the vector of specs to just the default.
4327 This means one element containing 0s, as a terminator. */
4329 compilers
= (struct compiler
*) xmalloc (sizeof default_compilers
);
4330 bcopy ((char *) default_compilers
, (char *) compilers
,
4331 sizeof default_compilers
);
4332 n_compilers
= n_default_compilers
;
4334 /* Read specs from a file if there is one. */
4336 machine_suffix
= concat4 (spec_machine
, dir_separator_str
,
4337 spec_version
, dir_separator_str
);
4338 just_machine_suffix
= concat (spec_machine
, dir_separator_str
);
4340 specs_file
= find_a_file (&startfile_prefixes
, "specs", R_OK
);
4341 /* Read the specs file unless it is a default one. */
4342 if (specs_file
!= 0 && strcmp (specs_file
, "specs"))
4343 read_specs (specs_file
);
4345 /* If not cross-compiling, look for startfiles in the standard places. */
4346 /* The fact that these are done here, after reading the specs file,
4347 means that it cannot be found in these directories.
4348 But that's okay. It should never be there anyway. */
4351 #ifdef MD_EXEC_PREFIX
4352 add_prefix (&exec_prefixes
, md_exec_prefix
, 0, 0, NULL_PTR
);
4353 add_prefix (&startfile_prefixes
, md_exec_prefix
, 0, 0, NULL_PTR
);
4356 #ifdef MD_STARTFILE_PREFIX
4357 add_prefix (&startfile_prefixes
, md_startfile_prefix
, 0, 0, NULL_PTR
);
4360 #ifdef MD_STARTFILE_PREFIX_1
4361 add_prefix (&startfile_prefixes
, md_startfile_prefix_1
, 0, 0, NULL_PTR
);
4364 /* If standard_startfile_prefix is relative, base it on
4365 standard_exec_prefix. This lets us move the installed tree
4366 as a unit. If GCC_EXEC_PREFIX is defined, base
4367 standard_startfile_prefix on that as well. */
4368 if (*standard_startfile_prefix
== '/'
4369 || *standard_startfile_prefix
== DIR_SEPARATOR
)
4370 add_prefix (&startfile_prefixes
, standard_startfile_prefix
, 0, 0,
4374 if (gcc_exec_prefix
)
4375 add_prefix (&startfile_prefixes
,
4376 concat (gcc_exec_prefix
, standard_startfile_prefix
),
4378 add_prefix (&startfile_prefixes
,
4379 concat3 (standard_exec_prefix
,
4381 standard_startfile_prefix
),
4385 add_prefix (&startfile_prefixes
, standard_startfile_prefix_1
, 0, 0,
4387 add_prefix (&startfile_prefixes
, standard_startfile_prefix_2
, 0, 0,
4389 #if 0 /* Can cause surprises, and one can use -B./ instead. */
4390 add_prefix (&startfile_prefixes
, "./", 0, 1, NULL_PTR
);
4394 /* Now we have the specs.
4395 Set the `valid' bits for switches that match anything in any spec. */
4397 validate_all_switches ();
4399 /* Now that we have the switches and the specs, set
4400 the subdirectory based on the options. */
4401 set_multilib_dir ();
4403 /* Warn about any switches that no pass was interested in. */
4405 for (i
= 0; i
< n_switches
; i
++)
4406 if (! switches
[i
].valid
)
4407 error ("unrecognized option `-%s'", switches
[i
].part1
);
4409 /* Obey some of the options. */
4411 if (print_file_name
)
4413 printf ("%s\n", find_file (print_file_name
));
4417 if (print_prog_name
)
4419 char *newname
= find_a_file (&exec_prefixes
, print_prog_name
, X_OK
);
4420 printf ("%s\n", (newname
? newname
: print_prog_name
));
4424 if (print_multi_lib
)
4426 print_multilib_info ();
4430 if (print_multi_directory
)
4432 if (multilib_dir
== NULL
)
4435 printf ("%s\n", multilib_dir
);
4441 if (! strcmp (version_string
, compiler_version
))
4442 fprintf (stderr
, "gcc version %s\n", version_string
);
4444 fprintf (stderr
, "gcc driver version %s executing gcc version %s\n",
4445 version_string
, compiler_version
);
4452 fatal ("No input files");
4454 /* Make a place to record the compiler output file names
4455 that correspond to the input files. */
4457 outfiles
= (char **) xmalloc (n_infiles
* sizeof (char *));
4458 bzero ((char *) outfiles
, n_infiles
* sizeof (char *));
4460 /* Record which files were specified explicitly as link input. */
4462 explicit_link_files
= xmalloc (n_infiles
);
4463 bzero (explicit_link_files
, n_infiles
);
4465 for (i
= 0; i
< n_infiles
; i
++)
4467 register struct compiler
*cp
= 0;
4468 int this_file_error
= 0;
4470 /* Tell do_spec what to substitute for %i. */
4472 input_filename
= infiles
[i
].name
;
4473 input_filename_length
= strlen (input_filename
);
4474 input_file_number
= i
;
4476 /* Use the same thing in %o, unless cp->spec says otherwise. */
4478 outfiles
[i
] = input_filename
;
4480 /* Figure out which compiler from the file's suffix. */
4482 cp
= lookup_compiler (infiles
[i
].name
, input_filename_length
,
4483 infiles
[i
].language
);
4487 /* Ok, we found an applicable compiler. Run its spec. */
4488 /* First say how much of input_filename to substitute for %b */
4492 input_basename
= input_filename
;
4493 for (p
= input_filename
; *p
; p
++)
4494 if (*p
== '/' || *p
== DIR_SEPARATOR
)
4495 input_basename
= p
+ 1;
4497 /* Find a suffix starting with the last period,
4498 and set basename_length to exclude that suffix. */
4499 basename_length
= strlen (input_basename
);
4500 p
= input_basename
+ basename_length
;
4501 while (p
!= input_basename
&& *p
!= '.') --p
;
4502 if (*p
== '.' && p
!= input_basename
)
4504 basename_length
= p
- input_basename
;
4505 input_suffix
= p
+ 1;
4511 for (j
= 0; j
< sizeof cp
->spec
/ sizeof cp
->spec
[0]; j
++)
4513 len
+= strlen (cp
->spec
[j
]);
4515 p
= (char *) xmalloc (len
+ 1);
4518 for (j
= 0; j
< sizeof cp
->spec
/ sizeof cp
->spec
[0]; j
++)
4521 strcpy (p
+ len
, cp
->spec
[j
]);
4522 len
+= strlen (cp
->spec
[j
]);
4525 value
= do_spec (p
);
4528 this_file_error
= 1;
4531 /* If this file's name does not contain a recognized suffix,
4532 record it as explicit linker input. */
4535 explicit_link_files
[i
] = 1;
4537 /* Clear the delete-on-failure queue, deleting the files in it
4538 if this compilation failed. */
4540 if (this_file_error
)
4542 delete_failure_queue ();
4545 /* If this compilation succeeded, don't delete those files later. */
4546 clear_failure_queue ();
4549 /* Run ld to link all the compiler output files. */
4551 if (error_count
== 0)
4553 int tmp
= execution_count
;
4557 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
4559 putenv_from_prefixes (&exec_prefixes
, "COMPILER_PATH=");
4560 putenv_from_prefixes (&startfile_prefixes
, "LIBRARY_PATH=");
4562 /* Build COLLECT_GCC_OPTIONS to have all of the options specified to
4564 obstack_grow (&collect_obstack
, "COLLECT_GCC_OPTIONS=",
4565 sizeof ("COLLECT_GCC_OPTIONS=")-1);
4568 for (i
= 0; i
< n_switches
; i
++)
4572 obstack_grow (&collect_obstack
, " ", 1);
4575 obstack_grow (&collect_obstack
, "-", 1);
4576 obstack_grow (&collect_obstack
, switches
[i
].part1
,
4577 strlen (switches
[i
].part1
));
4579 for (args
= switches
[i
].args
; args
&& *args
; args
++)
4581 obstack_grow (&collect_obstack
, " ", 1);
4582 obstack_grow (&collect_obstack
, *args
, strlen (*args
));
4585 obstack_grow (&collect_obstack
, "\0", 1);
4586 putenv (obstack_finish (&collect_obstack
));
4588 value
= do_spec (link_command_spec
);
4591 linker_was_run
= (tmp
!= execution_count
);
4594 /* Warn if a -B option was specified but the prefix was never used. */
4595 unused_prefix_warnings (&exec_prefixes
);
4596 unused_prefix_warnings (&startfile_prefixes
);
4598 /* If options said don't run linker,
4599 complain about input files to be given to the linker. */
4601 if (! linker_was_run
&& error_count
== 0)
4602 for (i
= 0; i
< n_infiles
; i
++)
4603 if (explicit_link_files
[i
])
4604 error ("%s: linker input file unused since linking not done",
4607 /* Delete some or all of the temporary files we made. */
4610 delete_failure_queue ();
4611 delete_temp_files ();
4613 exit (error_count
> 0 ? (signal_count
? 2 : 1) : 0);
4618 /* Find the proper compilation spec for the file name NAME,
4619 whose length is LENGTH. LANGUAGE is the specified language,
4620 or 0 if none specified. */
4622 static struct compiler
*
4623 lookup_compiler (name
, length
, language
)
4628 struct compiler
*cp
;
4630 /* Look for the language, if one is spec'd. */
4633 for (cp
= compilers
+ n_compilers
- 1; cp
>= compilers
; cp
--)
4637 if (cp
->suffix
[0] == '@'
4638 && !strcmp (cp
->suffix
+ 1, language
))
4642 error ("language %s not recognized", language
);
4645 /* Look for a suffix. */
4646 for (cp
= compilers
+ n_compilers
- 1; cp
>= compilers
; cp
--)
4648 if (/* The suffix `-' matches only the file name `-'. */
4649 (!strcmp (cp
->suffix
, "-") && !strcmp (name
, "-"))
4651 (strlen (cp
->suffix
) < length
4652 /* See if the suffix matches the end of NAME. */
4654 && (!strcmp (cp
->suffix
,
4655 name
+ length
- strlen (cp
->suffix
))
4656 || !strpbrk (cp
->suffix
, "ABCDEFGHIJKLMNOPQRSTUVWXYZ")
4657 && !strcasecmp (cp
->suffix
,
4658 name
+ length
- strlen (cp
->suffix
)))))
4660 && !strcmp (cp
->suffix
,
4661 name
+ length
- strlen (cp
->suffix
))))
4664 if (cp
->spec
[0][0] == '@')
4666 struct compiler
*new;
4667 /* An alias entry maps a suffix to a language.
4668 Search for the language; pass 0 for NAME and LENGTH
4669 to avoid infinite recursion if language not found.
4670 Construct the new compiler spec. */
4671 language
= cp
->spec
[0] + 1;
4672 new = (struct compiler
*) xmalloc (sizeof (struct compiler
));
4673 new->suffix
= cp
->suffix
;
4674 bcopy ((char *) lookup_compiler (NULL_PTR
, 0, language
)->spec
,
4675 (char *) new->spec
, sizeof new->spec
);
4678 /* A non-alias entry: return it. */
4690 register char *value
= (char *) malloc (size
);
4692 fatal ("virtual memory exhausted");
4697 xrealloc (ptr
, size
)
4701 register char *value
= (char *) realloc (ptr
, size
);
4703 fatal ("virtual memory exhausted");
4707 /* Return a newly-allocated string whose contents concatenate those of s1, s2 */
4713 int len1
= strlen (s1
);
4714 int len2
= strlen (s2
);
4715 char *result
= xmalloc (len1
+ len2
+ 1);
4717 strcpy (result
, s1
);
4718 strcpy (result
+ len1
, s2
);
4719 *(result
+ len1
+ len2
) = 0;
4725 concat3 (s1
, s2
, s3
)
4728 return concat (concat (s1
, s2
), s3
);
4732 concat4 (s1
, s2
, s3
, s4
)
4733 char *s1
, *s2
, *s3
, *s4
;
4735 return concat (concat (s1
, s2
), concat (s3
, s4
));
4739 concat6 (s1
, s2
, s3
, s4
, s5
, s6
)
4740 char *s1
, *s2
, *s3
, *s4
, *s5
, *s6
;
4742 return concat3 (concat (s1
, s2
), concat (s3
, s4
), concat (s5
, s6
));
4746 save_string (s
, len
)
4750 register char *result
= xmalloc (len
+ 1);
4752 bcopy (s
, result
, len
);
4758 pfatal_with_name (name
)
4763 if (errno
< sys_nerr
)
4764 s
= concat ("%s: ", sys_errlist
[errno
]);
4766 s
= "cannot open %s";
4771 perror_with_name (name
)
4776 if (errno
< sys_nerr
)
4777 s
= concat ("%s: ", sys_errlist
[errno
]);
4779 s
= "cannot open %s";
4789 if (errno
< sys_nerr
)
4790 s
= concat ("installation problem, cannot exec %s: ", sys_errlist
[errno
]);
4792 s
= "installation problem, cannot exec %s";
4796 /* More 'friendly' abort that prints the line and file.
4797 config.h can #define abort fancy_abort if you like that sort of thing. */
4802 fatal ("Internal gcc abort.");
4807 /* Output an error message and exit */
4810 fatal
VPROTO((char *format
, ...))
4817 VA_START (ap
, format
);
4820 format
= va_arg (ap
, char*);
4823 fprintf (stderr
, "%s: ", programname
);
4824 vfprintf (stderr
, format
, ap
);
4826 fprintf (stderr
, "\n");
4827 delete_temp_files ();
4832 error
VPROTO((char *format
, ...))
4839 VA_START (ap
, format
);
4842 format
= va_arg (ap
, char*);
4845 fprintf (stderr
, "%s: ", programname
);
4846 vfprintf (stderr
, format
, ap
);
4849 fprintf (stderr
, "\n");
4852 #else /* not HAVE_VPRINTF */
4855 fatal (msg
, arg1
, arg2
)
4856 char *msg
, *arg1
, *arg2
;
4858 error (msg
, arg1
, arg2
);
4859 delete_temp_files ();
4864 error (msg
, arg1
, arg2
)
4865 char *msg
, *arg1
, *arg2
;
4867 fprintf (stderr
, "%s: ", programname
);
4868 fprintf (stderr
, msg
, arg1
, arg2
);
4869 fprintf (stderr
, "\n");
4872 #endif /* not HAVE_VPRINTF */
4876 validate_all_switches ()
4878 struct compiler
*comp
;
4881 struct spec_list
*spec
;
4883 for (comp
= compilers
; comp
->spec
[0]; comp
++)
4886 for (i
= 0; i
< sizeof comp
->spec
/ sizeof comp
->spec
[0] && comp
->spec
[i
]; i
++)
4890 if (c
== '%' && *p
== '{')
4891 /* We have a switch spec. */
4892 validate_switches (p
+ 1);
4896 /* look through the linked list of extra specs read from the specs file */
4897 for (spec
= specs
; spec
; spec
= spec
->next
)
4901 if (c
== '%' && *p
== '{')
4902 /* We have a switch spec. */
4903 validate_switches (p
+ 1);
4906 p
= link_command_spec
;
4908 if (c
== '%' && *p
== '{')
4909 /* We have a switch spec. */
4910 validate_switches (p
+ 1);
4912 /* Now notice switches mentioned in the machine-specific specs. */
4916 if (c
== '%' && *p
== '{')
4917 /* We have a switch spec. */
4918 validate_switches (p
+ 1);
4922 if (c
== '%' && *p
== '{')
4923 /* We have a switch spec. */
4924 validate_switches (p
+ 1);
4928 if (c
== '%' && *p
== '{')
4929 /* We have a switch spec. */
4930 validate_switches (p
+ 1);
4932 p
= signed_char_spec
;
4934 if (c
== '%' && *p
== '{')
4935 /* We have a switch spec. */
4936 validate_switches (p
+ 1);
4940 if (c
== '%' && *p
== '{')
4941 /* We have a switch spec. */
4942 validate_switches (p
+ 1);
4946 if (c
== '%' && *p
== '{')
4947 /* We have a switch spec. */
4948 validate_switches (p
+ 1);
4952 if (c
== '%' && *p
== '{')
4953 /* We have a switch spec. */
4954 validate_switches (p
+ 1);
4958 if (c
== '%' && *p
== '{')
4959 /* We have a switch spec. */
4960 validate_switches (p
+ 1);
4964 if (c
== '%' && *p
== '{')
4965 /* We have a switch spec. */
4966 validate_switches (p
+ 1);
4970 if (c
== '%' && *p
== '{')
4971 /* We have a switch spec. */
4972 validate_switches (p
+ 1);
4975 /* Look at the switch-name that comes after START
4976 and mark as valid all supplied switches that match it. */
4979 validate_switches (start
)
4982 register char *p
= start
;
4997 while (*p
!= ':' && *p
!= '}') p
++;
5001 else if (p
[-1] == '*')
5003 /* Mark all matching switches as valid. */
5005 for (i
= 0; i
< n_switches
; i
++)
5006 if (!strncmp (switches
[i
].part1
, filter
, p
- filter
))
5007 switches
[i
].valid
= 1;
5011 /* Mark an exact matching switch as valid. */
5012 for (i
= 0; i
< n_switches
; i
++)
5014 if (!strncmp (switches
[i
].part1
, filter
, p
- filter
)
5015 && switches
[i
].part1
[p
- filter
] == 0)
5016 switches
[i
].valid
= 1;
5021 /* Check whether a particular argument was used. */
5030 for (i
= 0; i
< n_switches
; i
++)
5031 if (! strncmp (switches
[i
].part1
, p
, len
)
5032 && strlen (switches
[i
].part1
) == len
)
5037 /* Work out the subdirectory to use based on the
5038 options. The format of multilib_select is a list of elements.
5039 Each element is a subdirectory name followed by a list of options
5040 followed by a semicolon. gcc will consider each line in turn. If
5041 none of the options beginning with an exclamation point are
5042 present, and all of the other options are present, that
5043 subdirectory will be used. */
5048 char *p
= multilib_select
;
5050 char *this_path
, *this_arg
;
5055 /* Ignore newlines. */
5062 /* Get the initial path. */
5070 this_path_len
= p
- this_path
;
5072 /* Check the arguments. */
5087 while (*p
!= ' ' && *p
!= ';')
5094 if (*this_arg
== '!')
5095 failed
= used_arg (this_arg
+ 1, p
- (this_arg
+ 1));
5097 failed
= ! used_arg (this_arg
, p
- this_arg
);
5105 if (this_path_len
!= 1
5106 || this_path
[0] != '.')
5108 multilib_dir
= xmalloc (this_path_len
+ 1);
5109 strncpy (multilib_dir
, this_path
, this_path_len
);
5110 multilib_dir
[this_path_len
] = '\0';
5119 /* Print out the multiple library subdirectory selection
5120 information. This prints out a series of lines. Each line looks
5121 like SUBDIRECTORY;@OPTION@OPTION, with as many options as is
5122 required. Only the desired options are printed out, the negative
5123 matches. The options are print without a leading dash. There are
5124 no spaces to make it easy to use the information in the shell.
5125 Each subdirectory is printed only once. This assumes the ordering
5126 generated by the genmultilib script. */
5129 print_multilib_info ()
5131 char *p
= multilib_select
;
5132 char *last_path
, *this_path
;
5134 int last_path_len
= 0;
5138 /* Ignore newlines. */
5145 /* Get the initial path. */
5154 /* If this is a duplicate, skip it. */
5155 skip
= (p
- this_path
== last_path_len
5156 && ! strncmp (last_path
, this_path
, last_path_len
));
5158 last_path
= this_path
;
5159 last_path_len
= p
- this_path
;
5165 for (p1
= last_path
; p1
< p
; p1
++)
5184 use_arg
= *p
!= '!';
5189 while (*p
!= ' ' && *p
!= ';')