1 /* Compiler driver program that can handle many languages.
2 Copyright (C) 1987, 89, 92-98, 1999 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, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.
21 This paragraph is here to try to keep Sun CC from dying.
22 The number of chars here seems crucial!!!! */
24 /* This program is the user interface to the C compiler and possibly to
25 other compilers. It is used because compilation is a complicated procedure
26 which involves running several programs and passing temporary files between
27 them, forwarding the users switches to those programs selectively,
28 and deleting the temporary files at the end.
30 CC recognizes how to compile each input file by suffixes in the file names.
31 Once it knows which kind of compilation to perform, the procedure for
32 compilation is specified by a string called a "spec". */
44 #define exit __posix_exit
47 #ifdef HAVE_SYS_RESOURCE_H
48 #include <sys/resource.h>
50 #ifdef NEED_DECLARATION_GETRUSAGE
51 extern int getrusage
PROTO ((int, struct rusage
*));
54 /* By default there is no special suffix for executables. */
55 #ifdef EXECUTABLE_SUFFIX
56 #define HAVE_EXECUTABLE_SUFFIX
58 #define EXECUTABLE_SUFFIX ""
61 /* By default, the suffix for object files is ".o". */
63 #define HAVE_OBJECT_SUFFIX
65 #define OBJECT_SUFFIX ".o"
68 /* By default, colon separates directories in a path. */
69 #ifndef PATH_SEPARATOR
70 #define PATH_SEPARATOR ':'
74 #define DIR_SEPARATOR '/'
77 /* Define IS_DIR_SEPARATOR. */
78 #ifndef DIR_SEPARATOR_2
79 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)
80 #else /* DIR_SEPARATOR_2 */
81 # define IS_DIR_SEPARATOR(ch) \
82 (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))
83 #endif /* DIR_SEPARATOR_2 */
85 static char dir_separator_str
[] = {DIR_SEPARATOR
, 0};
87 #define obstack_chunk_alloc xmalloc
88 #define obstack_chunk_free free
90 #ifndef GET_ENV_PATH_LIST
91 #define GET_ENV_PATH_LIST(VAR,NAME) do { (VAR) = getenv (NAME); } while (0)
95 #define kill(p,s) raise(s)
98 /* If a stage of compilation returns an exit status >= 1,
99 compilation of that file ceases. */
101 #define MIN_FATAL_STATUS 1
103 /* Flag saying to print the directories gcc will search through looking for
104 programs, libraries, etc. */
106 static int print_search_dirs
;
108 /* Flag saying to print the full filename of this file
109 as found through our usual search mechanism. */
111 static const char *print_file_name
= NULL
;
113 /* As print_file_name, but search for executable file. */
115 static const char *print_prog_name
= NULL
;
117 /* Flag saying to print the relative path we'd use to
118 find libgcc.a given the current compiler flags. */
120 static int print_multi_directory
;
122 /* Flag saying to print the list of subdirectories and
123 compiler flags used to select them in a standard form. */
125 static int print_multi_lib
;
127 /* Flag saying to print the command line options understood by gcc and its
130 static int print_help_list
;
132 /* Flag indicating whether we should print the command and arguments */
134 static int verbose_flag
;
136 /* Flag indicating whether we should report subprocess execution times
137 (if this is supported by the system - see pexecute.c). */
139 static int report_times
;
141 /* Nonzero means write "temp" files in source directory
142 and use the source file's name in them, and don't delete them. */
144 static int save_temps_flag
;
146 /* The compiler version. */
148 static char *compiler_version
;
150 /* The target version specified with -V */
152 static char *spec_version
= DEFAULT_TARGET_VERSION
;
154 /* The target machine specified with -b. */
156 static const char *spec_machine
= DEFAULT_TARGET_MACHINE
;
158 /* Nonzero if cross-compiling.
159 When -b is used, the value comes from the `specs' file. */
162 static char *cross_compile
= "1";
164 static char *cross_compile
= "0";
167 /* The number of errors that have occurred; the link phase will not be
168 run if this is non-zero. */
169 static int error_count
= 0;
171 /* This is the obstack which we use to allocate many strings. */
173 static struct obstack obstack
;
175 /* This is the obstack to build an environment variable to pass to
176 collect2 that describes all of the relevant switches of what to
177 pass the compiler in building the list of pointers to constructors
180 static struct obstack collect_obstack
;
182 /* These structs are used to collect resource usage information for
184 #ifdef HAVE_GETRUSAGE
185 static struct rusage rus
, prus
;
188 extern char *version_string
;
190 /* Forward declaration for prototypes. */
193 static void init_spec
PROTO((void));
194 static void read_specs
PROTO((const char *, int));
195 static void set_spec
PROTO((const char *, const char *));
196 static struct compiler
*lookup_compiler
PROTO((const char *, size_t, const char *));
197 static char *build_search_list
PROTO((struct path_prefix
*, const char *, int));
198 static void putenv_from_prefixes
PROTO((struct path_prefix
*, const char *));
199 static int access_check
PROTO((const char *, int));
200 static char *find_a_file
PROTO((struct path_prefix
*, const char *, int));
201 static void add_prefix
PROTO((struct path_prefix
*, const char *,
202 const char *, int, int, int *));
203 static char *skip_whitespace
PROTO((char *));
204 static void record_temp_file
PROTO((const char *, int, int));
205 static void delete_if_ordinary
PROTO((const char *));
206 static void delete_temp_files
PROTO((void));
207 static void delete_failure_queue
PROTO((void));
208 static void clear_failure_queue
PROTO((void));
209 static int check_live_switch
PROTO((int, int));
210 static const char *handle_braces
PROTO((const char *));
211 static char *save_string
PROTO((const char *, int));
212 static int do_spec_1
PROTO((const char *, int, const char *));
213 static const char *find_file
PROTO((const char *));
214 static int is_directory
PROTO((const char *, const char *, int));
215 static void validate_switches
PROTO((const char *));
216 static void validate_all_switches
PROTO((void));
217 static void give_switch
PROTO((int, int, int));
218 static int used_arg
PROTO((const char *, int));
219 static int default_arg
PROTO((const char *, int));
220 static void set_multilib_dir
PROTO((void));
221 static void print_multilib_info
PROTO((void));
222 static void pfatal_with_name
PROTO((const char *)) ATTRIBUTE_NORETURN
;
223 static void perror_with_name
PROTO((const char *));
224 static void pfatal_pexecute
PROTO((const char *, const char *))
226 static void error
PVPROTO((const char *, ...))
228 static void notice
PVPROTO((const char *, ...))
230 static void display_help
PROTO((void));
231 static void add_preprocessor_option
PROTO ((const char *, int));
232 static void add_assembler_option
PROTO ((const char *, int));
233 static void add_linker_option
PROTO ((const char *, int));
234 static void process_command
PROTO ((int, char **));
235 static int execute
PROTO ((void));
236 static void unused_prefix_warnings
PROTO ((struct path_prefix
*));
237 static void clear_args
PROTO ((void));
238 static void fatal_error
PROTO ((int));
240 /* Specs are strings containing lines, each of which (if not blank)
241 is made up of a program name, and arguments separated by spaces.
242 The program name must be exact and start from root, since no path
243 is searched and it is unreliable to depend on the current working directory.
244 Redirection of input or output is not supported; the subprograms must
245 accept filenames saying what files to read and write.
247 In addition, the specs can contain %-sequences to substitute variable text
248 or for conditional text. Here is a table of all defined %-sequences.
249 Note that spaces are not generated automatically around the results of
250 expanding these sequences; therefore, you can concatenate them together
251 or with constant text in a single argument.
253 %% substitute one % into the program name or argument.
254 %i substitute the name of the input file being processed.
255 %b substitute the basename of the input file being processed.
256 This is the substring up to (and not including) the last period
257 and not including the directory.
259 substitute a file name that has suffix SUFFIX and is chosen
260 once per compilation, and mark the argument a la %d. To reduce
261 exposure to denial-of-service attacks, the file name is now
262 chosen in a way that is hard to predict even when previously
263 chosen file names are known. For example, `%g.s ... %g.o ... %g.s'
264 might turn into `ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s'. SUFFIX matches
265 the regexp "[.A-Za-z]*" or the special string "%O", which is
266 treated exactly as if %O had been pre-processed. Previously, %g
267 was simply substituted with a file name chosen once per compilation,
268 without regard to any appended suffix (which was therefore treated
269 just like ordinary text), making such attacks more likely to succeed.
271 like %g, but generates a new temporary file name even if %uSUFFIX
274 substitutes the last file name generated with %uSUFFIX, generating a
275 new one if there is no such last file name. In the absence of any
276 %uSUFFIX, this is just like %gSUFFIX, except they don't share
277 the same suffix "space", so `%g.s ... %U.s ... %g.s ... %U.s'
278 would involve the generation of two distinct file names, one
279 for each `%g.s' and another for each `%U.s'. Previously, %U was
280 simply substituted with a file name chosen for the previous %u,
281 without regard to any appended suffix.
282 %d marks the argument containing or following the %d as a
283 temporary file name, so that that file will be deleted if CC exits
284 successfully. Unlike %g, this contributes no text to the argument.
285 %w marks the argument containing or following the %w as the
286 "output file" of this compilation. This puts the argument
287 into the sequence of arguments that %o will substitute later.
289 like %{...} but mark last argument supplied within
290 as a file to be deleted on failure.
291 %o substitutes the names of all the output files, with spaces
292 automatically placed around them. You should write spaces
293 around the %o as well or the results are undefined.
294 %o is for use in the specs for running the linker.
295 Input files whose names have no recognized suffix are not compiled
296 at all, but they are included among the output files, so they will
298 %O substitutes the suffix for object files. Note that this is
299 handled specially when it immediately follows %g, %u, or %U,
300 because of the need for those to form complete file names. The
301 handling is such that %O is treated exactly as if it had already
302 been substituted, except that %g, %u, and %U do not currently
303 support additional SUFFIX characters following %O as they would
304 following, for example, `.o'.
305 %p substitutes the standard macro predefinitions for the
306 current target machine. Use this when running cpp.
307 %P like %p, but puts `__' before and after the name of each macro.
308 (Except macros that already have __.)
310 %I Substitute a -iprefix option made from GCC_EXEC_PREFIX.
311 %s current argument is the name of a library or startup file of some sort.
312 Search for that file in a standard list of directories
313 and substitute the full name found.
314 %eSTR Print STR as an error message. STR is terminated by a newline.
315 Use this when inconsistent options are detected.
316 %x{OPTION} Accumulate an option for %X.
317 %X Output the accumulated linker options specified by compilations.
318 %Y Output the accumulated assembler options specified by compilations.
319 %Z Output the accumulated preprocessor options specified by compilations.
320 %v1 Substitute the major version number of GCC.
321 (For version 2.5.n, this is 2.)
322 %v2 Substitute the minor version number of GCC.
323 (For version 2.5.n, this is 5.)
324 %a process ASM_SPEC as a spec.
325 This allows config.h to specify part of the spec for running as.
326 %A process ASM_FINAL_SPEC as a spec. A capital A is actually
327 used here. This can be used to run a post-processor after the
328 assembler has done its job.
329 %D Dump out a -L option for each directory in startfile_prefixes.
330 If multilib_dir is set, extra entries are generated with it affixed.
331 %l process LINK_SPEC as a spec.
332 %L process LIB_SPEC as a spec.
333 %G process LIBGCC_SPEC as a spec.
334 %S process STARTFILE_SPEC as a spec. A capital S is actually used here.
335 %E process ENDFILE_SPEC as a spec. A capital E is actually used here.
336 %c process SIGNED_CHAR_SPEC as a spec.
337 %C process CPP_SPEC as a spec. A capital C is actually used here.
338 %1 process CC1_SPEC as a spec.
339 %2 process CC1PLUS_SPEC as a spec.
340 %| output "-" if the input for the current command is coming from a pipe.
341 %* substitute the variable part of a matched option. (See below.)
342 Note that each comma in the substituted string is replaced by
344 %{S} substitutes the -S switch, if that switch was given to CC.
345 If that switch was not specified, this substitutes nothing.
346 Here S is a metasyntactic variable.
347 %{S*} substitutes all the switches specified to CC whose names start
348 with -S. This is used for -o, -D, -I, etc; switches that take
349 arguments. CC considers `-o foo' as being one switch whose
350 name starts with `o'. %{o*} would substitute this text,
351 including the space; thus, two arguments would be generated.
352 %{^S*} likewise, but don't put a blank between a switch and any args.
353 %{S*:X} substitutes X if one or more switches whose names start with -S are
354 specified to CC. Note that the tail part of the -S option
355 (i.e. the part matched by the `*') will be substituted for each
356 occurrence of %* within X.
357 %{S:X} substitutes X, but only if the -S switch was given to CC.
358 %{!S:X} substitutes X, but only if the -S switch was NOT given to CC.
359 %{|S:X} like %{S:X}, but if no S switch, substitute `-'.
360 %{|!S:X} like %{!S:X}, but if there is an S switch, substitute `-'.
361 %{.S:X} substitutes X, but only if processing a file with suffix S.
362 %{!.S:X} substitutes X, but only if NOT processing a file with suffix S.
363 %{S|P:X} substitutes X if either -S or -P was given to CC. This may be
364 combined with ! and . as above binding stronger than the OR.
365 %(Spec) processes a specification defined in a specs file as *Spec:
366 %[Spec] as above, but put __ around -D arguments
368 The conditional text X in a %{S:X} or %{!S:X} construct may contain
369 other nested % constructs or spaces, or even newlines. They are
370 processed as usual, as described above.
372 The -O, -f, -m, and -W switches are handled specifically in these
373 constructs. If another value of -O or the negated form of a -f, -m, or
374 -W switch is found later in the command line, the earlier switch
375 value is ignored, except with {S*} where S is just one letter; this
376 passes all matching options.
378 The character | at the beginning of the predicate text is used to indicate
379 that a command should be piped to the following command, but only if -pipe
382 Note that it is built into CC which switches take arguments and which
383 do not. You might think it would be useful to generalize this to
384 allow each compiler's spec to say which switches take arguments. But
385 this cannot be done in a consistent fashion. CC cannot even decide
386 which input files have been specified without knowing which switches
387 take arguments, and it must know which input files to compile in order
388 to tell which compilers to run.
390 CC also knows implicitly that arguments starting in `-l' are to be
391 treated as compiler output files, and passed to the linker in their
392 proper position among the other output files. */
394 /* Define the macros used for specs %a, %l, %L, %S, %c, %C, %1. */
396 /* config.h can define ASM_SPEC to provide extra args to the assembler
397 or extra switch-translations. */
402 /* config.h can define ASM_FINAL_SPEC to run a post processor after
403 the assembler has run. */
404 #ifndef ASM_FINAL_SPEC
405 #define ASM_FINAL_SPEC ""
408 /* config.h can define CPP_SPEC to provide extra args to the C preprocessor
409 or extra switch-translations. */
414 /* config.h can define CC1_SPEC to provide extra args to cc1 and cc1plus
415 or extra switch-translations. */
420 /* config.h can define CC1PLUS_SPEC to provide extra args to cc1plus
421 or extra switch-translations. */
423 #define CC1PLUS_SPEC ""
426 /* config.h can define LINK_SPEC to provide extra args to the linker
427 or extra switch-translations. */
432 /* config.h can define LIB_SPEC to override the default libraries. */
434 #define LIB_SPEC "%{!shared:%{g*:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}}"
437 /* config.h can define LIBGCC_SPEC to override how and when libgcc.a is
440 #if defined(LINK_LIBGCC_SPECIAL) || defined(LINK_LIBGCC_SPECIAL_1)
441 /* Have gcc do the search for libgcc.a. */
442 #define LIBGCC_SPEC "libgcc.a%s"
444 #define LIBGCC_SPEC "-lgcc"
448 /* config.h can define STARTFILE_SPEC to override the default crt0 files. */
449 #ifndef STARTFILE_SPEC
450 #define STARTFILE_SPEC \
451 "%{!shared:%{pg:gcrt0%O%s}%{!pg:%{p:mcrt0%O%s}%{!p:crt0%O%s}}}"
454 /* config.h can define SWITCHES_NEED_SPACES to control which options
455 require spaces between the option and the argument. */
456 #ifndef SWITCHES_NEED_SPACES
457 #define SWITCHES_NEED_SPACES ""
460 /* config.h can define ENDFILE_SPEC to override the default crtn files. */
462 #define ENDFILE_SPEC ""
465 /* This spec is used for telling cpp whether char is signed or not. */
466 #ifndef SIGNED_CHAR_SPEC
467 /* Use #if rather than ?:
468 because MIPS C compiler rejects like ?: in initializers. */
469 #if DEFAULT_SIGNED_CHAR
470 #define SIGNED_CHAR_SPEC "%{funsigned-char:-D__CHAR_UNSIGNED__}"
472 #define SIGNED_CHAR_SPEC "%{!fsigned-char:-D__CHAR_UNSIGNED__}"
477 #define LINKER_NAME "collect2"
480 static char *cpp_spec
= CPP_SPEC
;
481 static char *cpp_predefines
= CPP_PREDEFINES
;
482 static char *cc1_spec
= CC1_SPEC
;
483 static char *cc1plus_spec
= CC1PLUS_SPEC
;
484 static char *signed_char_spec
= SIGNED_CHAR_SPEC
;
485 static char *asm_spec
= ASM_SPEC
;
486 static char *asm_final_spec
= ASM_FINAL_SPEC
;
487 static char *link_spec
= LINK_SPEC
;
488 static char *lib_spec
= LIB_SPEC
;
489 static char *libgcc_spec
= LIBGCC_SPEC
;
490 static char *endfile_spec
= ENDFILE_SPEC
;
491 static char *startfile_spec
= STARTFILE_SPEC
;
492 static char *switches_need_spaces
= SWITCHES_NEED_SPACES
;
493 static char *linker_name_spec
= LINKER_NAME
;
495 /* Some compilers have limits on line lengths, and the multilib_select
496 and/or multilib_matches strings can be very long, so we build them at
498 static struct obstack multilib_obstack
;
499 static char *multilib_select
;
500 static char *multilib_matches
;
501 static char *multilib_defaults
;
502 #include "multilib.h"
504 /* Check whether a particular argument is a default argument. */
506 #ifndef MULTILIB_DEFAULTS
507 #define MULTILIB_DEFAULTS { "" }
510 static const char *const multilib_defaults_raw
[] = MULTILIB_DEFAULTS
;
513 struct user_specs
*next
;
514 const char *filename
;
517 static struct user_specs
*user_specs_head
, *user_specs_tail
;
519 /* This defines which switch letters take arguments. */
521 #define DEFAULT_SWITCH_TAKES_ARG(CHAR) \
522 ((CHAR) == 'D' || (CHAR) == 'U' || (CHAR) == 'o' \
523 || (CHAR) == 'e' || (CHAR) == 'T' || (CHAR) == 'u' \
524 || (CHAR) == 'I' || (CHAR) == 'm' || (CHAR) == 'x' \
525 || (CHAR) == 'L' || (CHAR) == 'A' || (CHAR) == 'V' \
526 || (CHAR) == 'B' || (CHAR) == 'b')
528 #ifndef SWITCH_TAKES_ARG
529 #define SWITCH_TAKES_ARG(CHAR) DEFAULT_SWITCH_TAKES_ARG(CHAR)
532 /* This defines which multi-letter switches take arguments. */
534 #define DEFAULT_WORD_SWITCH_TAKES_ARG(STR) \
535 (!strcmp (STR, "Tdata") || !strcmp (STR, "Ttext") \
536 || !strcmp (STR, "Tbss") || !strcmp (STR, "include") \
537 || !strcmp (STR, "imacros") || !strcmp (STR, "aux-info") \
538 || !strcmp (STR, "idirafter") || !strcmp (STR, "iprefix") \
539 || !strcmp (STR, "iwithprefix") || !strcmp (STR, "iwithprefixbefore") \
540 || !strcmp (STR, "isystem") || !strcmp (STR, "specs"))
542 #ifndef WORD_SWITCH_TAKES_ARG
543 #define WORD_SWITCH_TAKES_ARG(STR) DEFAULT_WORD_SWITCH_TAKES_ARG (STR)
547 #ifdef HAVE_EXECUTABLE_SUFFIX
548 /* This defines which switches stop a full compilation. */
549 #define DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR) \
550 ((CHAR) == 'c' || (CHAR) == 'S')
552 #ifndef SWITCH_CURTAILS_COMPILATION
553 #define SWITCH_CURTAILS_COMPILATION(CHAR) \
554 DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR)
558 /* Record the mapping from file suffixes for compilation specs. */
562 const char *suffix
; /* Use this compiler for input files
563 whose names end in this suffix. */
565 const char *spec
[4]; /* To use this compiler, concatenate these
566 specs and pass to do_spec. */
569 /* Pointer to a vector of `struct compiler' that gives the spec for
570 compiling a file, based on its suffix.
571 A file that does not end in any of these suffixes will be passed
572 unchanged to the loader and nothing else will be done to it.
574 An entry containing two 0s is used to terminate the vector.
576 If multiple entries match a file, the last matching one is used. */
578 static struct compiler
*compilers
;
580 /* Number of entries in `compilers', not counting the null terminator. */
582 static int n_compilers
;
584 /* The default list of file name suffixes and their compilation specs. */
586 static struct compiler default_compilers
[] =
588 /* Add lists of suffixes of known languages here. If those languages
589 were not present when we built the driver, we will hit these copies
590 and be given a more meaningful error than "file not used since
591 linking is not done". */
592 {".m", {"#Objective-C"}},
593 {".cc", {"#C++"}}, {".cxx", {"#C++"}}, {".cpp", {"#C++"}},
594 {".c++", {"#C++"}}, {".C", {"#C++"}},
595 {".ads", {"#Ada"}}, {".adb", {"#Ada"}}, {".ada", {"#Ada"}},
596 {".f", {"#Fortran"}}, {".for", {"#Fortran"}}, {".F", {"#Fortran"}},
597 {".fpp", {"#Fortran"}},
598 {".p", {"#Pascal"}}, {".pas", {"#Pascal"}},
599 /* Next come the entries for C. */
604 "%{E|M|MM:cpp -lang-c %{ansi:-std=c89} %{std*} %{nostdinc*}\
605 %{C} %{v} %{A*} %{I*} %{P} %{$} %I\
606 %{C:%{!E:%eGNU C does not support -C without using -E}}\
607 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG}\
608 %{!no-gcc:-D__GNUC__=%v1 -D__GNUC_MINOR__=%v2}\
609 %{ansi|std=*:%{!std=gnu*:-trigraphs -D__STRICT_ANSI__}}\
610 %{!undef:%{!ansi:%{!std=*:%p}%{std=gnu*:%p}} %P} %{trigraphs}\
611 %c %{Os:-D__OPTIMIZE_SIZE__} %{O*:%{!O0:-D__OPTIMIZE__}}\
612 %{ffast-math:-D__FAST_MATH__}\
613 %{fshort-wchar:-D__WCHAR_TYPE__=short\\ unsigned\\ int}\
614 %{traditional} %{ftraditional:-traditional}\
615 %{traditional-cpp:-traditional}\
616 %{fleading-underscore} %{fno-leading-underscore}\
617 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
618 %i %{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}}\n}\
619 %{!E:%{!M:%{!MM:cc1 %i %1 \
620 %{std*} %{nostdinc*} %{A*} %{I*} %I\
621 %{!Q:-quiet} -dumpbase %b.c %{d*} %{m*} %{a*}\
622 %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG}\
623 %{!no-gcc:-D__GNUC__=%v1 -D__GNUC_MINOR__=%v2}\
624 %{ansi|std=*:%{!std=gnu*:-trigraphs -D__STRICT_ANSI__}}\
625 %{!undef:%{!ansi:%{!std=*:%p}%{std=gnu*:%p}} %P} %{trigraphs}\
626 %c %{Os:-D__OPTIMIZE_SIZE__} %{O*:%{!O0:-D__OPTIMIZE__}}\
627 %{ffast-math:-D__FAST_MATH__}\
628 %{fshort-wchar:-D__WCHAR_TYPE__=short\\ unsigned\\ int}\
629 %{fshort-wchar:-D__WCHAR_TYPE__=short\\ unsigned\\ int}\
630 %{H} %C %{D*} %{U*} %{i*} %Z\
631 %{ftraditional:-traditional}\
632 %{traditional-cpp:-traditional}\
633 %{traditional} %{v:-version} %{pg:-p} %{p} %{f*}\
634 %{aux-info*} %{Qn:-fno-ident}\
636 %{g*} %{O*} %{W*} %{w} %{pedantic*}\
637 %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
638 %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
640 %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\
641 %{!pipe:%g.s} %A\n }}}}"
642 #else /* ! USE_CPPLIB */
643 "cpp -lang-c %{ansi:-std=c89} %{std*} %{nostdinc*}\
644 %{C} %{v} %{A*} %{I*} %{P} %{$} %I\
645 %{C:%{!E:%eGNU C does not support -C without using -E}}\
646 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG}\
647 %{!no-gcc:-D__GNUC__=%v1 -D__GNUC_MINOR__=%v2}\
648 %{ansi|std=*:%{!std=gnu*:-trigraphs -D__STRICT_ANSI__}}\
649 %{!undef:%{!ansi:%{!std=*:%p}%{std=gnu*:%p}} %P} %{trigraphs}\
650 %c %{Os:-D__OPTIMIZE_SIZE__} %{O*:%{!O0:-D__OPTIMIZE__}}\
651 %{ffast-math:-D__FAST_MATH__}\
652 %{fshort-wchar:-D__WCHAR_TYPE__=short\\ unsigned\\ int}\
653 %{traditional} %{ftraditional:-traditional}\
654 %{traditional-cpp:-traditional}\
655 %{fleading-underscore} %{fno-leading-underscore}\
656 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
657 %i %{!M:%{!MM:%{!E:%{!pipe:%g.i}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n",
658 "%{!M:%{!MM:%{!E:cc1 %{!pipe:%g.i} %1 \
659 %{!Q:-quiet} -dumpbase %b.c %{d*} %{m*} %{a*}\
660 %{g*} %{O*} %{W*} %{w} %{pedantic*} %{std*}\
661 %{traditional} %{v:-version} %{pg:-p} %{p} %{f*}\
662 %{aux-info*} %{Qn:-fno-ident}\
664 %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
665 %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
667 %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\
668 %{!pipe:%g.s} %A\n }}}}"
669 #endif /* ! USE_CPPLIB */
672 {"%{E:cpp -lang-c %{ansi:-std=c89} %{std*} %{nostdinc*}\
673 %{C} %{v} %{A*} %{I*} %{P} %{$} %I\
674 %{C:%{!E:%eGNU C does not support -C without using -E}}\
675 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG}\
676 %{!no-gcc:-D__GNUC__=%v1 -D__GNUC_MINOR__=%v2}\
677 %{ansi|std=*:%{!std=gnu*:-trigraphs -D__STRICT_ANSI__}}\
678 %{!undef:%{!ansi:%{!std=*:%p}%{std=gnu*:%p}} %P} %{trigraphs}\
679 %c %{Os:-D__OPTIMIZE_SIZE__} %{O*:%{!O0:-D__OPTIMIZE__}}\
680 %{ffast-math:-D__FAST_MATH__}\
681 %{fshort-wchar:-D__WCHAR_TYPE__=short\\ unsigned\\ int}\
682 %{traditional} %{ftraditional:-traditional}\
683 %{traditional-cpp:-traditional}\
684 %{fleading-underscore} %{fno-leading-underscore}\
685 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
687 %{!E:%e-E required when input is from standard input}"}},
688 {".h", {"@c-header"}},
690 {"%{!E:%eCompilation of header file requested} \
691 cpp %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %{$} %I\
692 %{C:%{!E:%eGNU C does not support -C without using -E}}\
693 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG}\
694 %{!no-gcc:-D__GNUC__=%v1 -D__GNUC_MINOR__=%v2}\
695 %{std=*:%{!std=gnu*:-trigraphs -D__STRICT_ANSI__}}\
696 %{!undef:%{!std=*:%p}%{std=gnu*:%p} %P} %{trigraphs}\
697 %c %{Os:-D__OPTIMIZE_SIZE__} %{O*:%{!O0:-D__OPTIMIZE__}}\
698 %{ffast-math:-D__FAST_MATH__}\
699 %{fshort-wchar:-D__WCHAR_TYPE__=short\\ unsigned\\ int}\
700 %{fshort-wchar:-D__WCHAR_TYPE__=short\\ unsigned\\ int}\
701 %{traditional} %{ftraditional:-traditional}\
702 %{traditional-cpp:-traditional}\
703 %{fleading-underscore} %{fno-leading-underscore}\
704 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
706 {".i", {"@cpp-output"}},
708 {"%{!M:%{!MM:%{!E:cc1 %i %1 %{!Q:-quiet} %{d*} %{m*} %{a*}\
709 %{g*} %{O*} %{W*} %{w} %{pedantic*} %{std*}\
710 %{traditional} %{v:-version} %{pg:-p} %{p} %{f*}\
711 %{aux-info*} %{Qn:-fno-ident} -fpreprocessed\
712 %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
713 %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
715 %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\
716 %{!pipe:%g.s} %A\n }}}}"}},
717 {".s", {"@assembler"}},
719 {"%{!M:%{!MM:%{!E:%{!S:as %a %Y\
720 %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\
722 {".S", {"@assembler-with-cpp"}},
723 {"@assembler-with-cpp",
724 {"cpp -lang-asm %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %{$} %I\
725 %{C:%{!E:%eGNU C does not support -C without using -E}}\
726 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG} %{trigraphs}\
727 -$ %{!undef:%p %P} -D__ASSEMBLER__ \
728 %c %{Os:-D__OPTIMIZE_SIZE__} %{O*:%{!O0:-D__OPTIMIZE__}}\
729 %{ffast-math:-D__FAST_MATH__}\
730 %{fshort-wchar:-D__WCHAR_TYPE__=short\\ unsigned\\ int}\
731 %{traditional} %{ftraditional:-traditional}\
732 %{traditional-cpp:-traditional}\
733 %{fleading-underscore} %{fno-leading-underscore}\
734 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
735 %i %{!M:%{!MM:%{!E:%{!pipe:%g.s}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n",
736 "%{!M:%{!MM:%{!E:%{!S:as %a %Y\
737 %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\
738 %{!pipe:%g.s} %A\n }}}}"}},
740 /* Mark end of table */
744 /* Number of elements in default_compilers, not counting the terminator. */
746 static int n_default_compilers
747 = (sizeof default_compilers
/ sizeof (struct compiler
)) - 1;
749 /* Here is the spec for running the linker, after compiling all files. */
751 /* -u* was put back because both BSD and SysV seem to support it. */
752 /* %{static:} simply prevents an error message if the target machine
753 doesn't handle -static. */
754 /* We want %{T*} after %{L*} and %D so that it can be used to specify linker
755 scripts which exist in user specified directories, or in standard
757 #ifdef LINK_COMMAND_SPEC
758 /* Provide option to override link_command_spec from machine specific
759 configuration files. */
760 static const char *link_command_spec
=
763 #ifdef LINK_LIBGCC_SPECIAL
764 /* Don't generate -L options. */
765 static const char *link_command_spec
= "\
767 %{!c:%{!M:%{!MM:%{!E:%{!S:%(linker) %l %X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} \
768 %{r} %{s} %{t} %{u*} %{x} %{z} %{Z}\
769 %{!A:%{!nostdlib:%{!nostartfiles:%S}}}\
771 %{!nostdlib:%{!nodefaultlibs:%G %L %G}}\
772 %{!A:%{!nostdlib:%{!nostartfiles:%E}}}\
777 static const char *link_command_spec
= "\
779 %{!c:%{!M:%{!MM:%{!E:%{!S:%(linker) %l %X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} \
780 %{r} %{s} %{t} %{u*} %{x} %{z} %{Z}\
781 %{!A:%{!nostdlib:%{!nostartfiles:%S}}}\
782 %{static:} %{L*} %D %o\
783 %{!nostdlib:%{!nodefaultlibs:%G %L %G}}\
784 %{!A:%{!nostdlib:%{!nostartfiles:%E}}}\
790 /* A vector of options to give to the linker.
791 These options are accumulated by %x,
792 and substituted into the linker command with %X. */
793 static int n_linker_options
;
794 static char **linker_options
;
796 /* A vector of options to give to the assembler.
797 These options are accumulated by -Wa,
798 and substituted into the assembler command with %Y. */
799 static int n_assembler_options
;
800 static char **assembler_options
;
802 /* A vector of options to give to the preprocessor.
803 These options are accumulated by -Wp,
804 and substituted into the preprocessor command with %Z. */
805 static int n_preprocessor_options
;
806 static char **preprocessor_options
;
808 /* Define how to map long options into short ones. */
810 /* This structure describes one mapping. */
813 /* The long option's name. */
815 /* The equivalent short option. */
816 const char *equivalent
;
817 /* Argument info. A string of flag chars; NULL equals no options.
818 a => argument required.
819 o => argument optional.
820 j => join argument to equivalent, making one word.
821 * => require other text after NAME as an argument. */
822 const char *arg_info
;
825 /* This is the table of mappings. Mappings are tried sequentially
826 for each option encountered; the first one that matches, wins. */
828 struct option_map option_map
[] =
830 {"--all-warnings", "-Wall", 0},
831 {"--ansi", "-ansi", 0},
832 {"--assemble", "-S", 0},
833 {"--assert", "-A", "a"},
834 {"--classpath", "-fclasspath=", "aj"},
835 {"--CLASSPATH", "-fCLASSPATH=", "aj"},
836 {"--comments", "-C", 0},
837 {"--compile", "-c", 0},
838 {"--debug", "-g", "oj"},
839 {"--define-macro", "-D", "aj"},
840 {"--dependencies", "-M", 0},
841 {"--dump", "-d", "a"},
842 {"--dumpbase", "-dumpbase", "a"},
843 {"--entry", "-e", 0},
844 {"--extra-warnings", "-W", 0},
845 {"--for-assembler", "-Wa", "a"},
846 {"--for-linker", "-Xlinker", "a"},
847 {"--force-link", "-u", "a"},
848 {"--imacros", "-imacros", "a"},
849 {"--include", "-include", "a"},
850 {"--include-barrier", "-I-", 0},
851 {"--include-directory", "-I", "aj"},
852 {"--include-directory-after", "-idirafter", "a"},
853 {"--include-prefix", "-iprefix", "a"},
854 {"--include-with-prefix", "-iwithprefix", "a"},
855 {"--include-with-prefix-before", "-iwithprefixbefore", "a"},
856 {"--include-with-prefix-after", "-iwithprefix", "a"},
857 {"--language", "-x", "a"},
858 {"--library-directory", "-L", "a"},
859 {"--machine", "-m", "aj"},
860 {"--machine-", "-m", "*j"},
861 {"--no-line-commands", "-P", 0},
862 {"--no-precompiled-includes", "-noprecomp", 0},
863 {"--no-standard-includes", "-nostdinc", 0},
864 {"--no-standard-libraries", "-nostdlib", 0},
865 {"--no-warnings", "-w", 0},
866 {"--optimize", "-O", "oj"},
867 {"--output", "-o", "a"},
868 {"--output-class-directory", "-foutput-class-dir=", "ja"},
869 {"--pedantic", "-pedantic", 0},
870 {"--pedantic-errors", "-pedantic-errors", 0},
871 {"--pipe", "-pipe", 0},
872 {"--prefix", "-B", "a"},
873 {"--preprocess", "-E", 0},
874 {"--print-search-dirs", "-print-search-dirs", 0},
875 {"--print-file-name", "-print-file-name=", "aj"},
876 {"--print-libgcc-file-name", "-print-libgcc-file-name", 0},
877 {"--print-missing-file-dependencies", "-MG", 0},
878 {"--print-multi-lib", "-print-multi-lib", 0},
879 {"--print-multi-directory", "-print-multi-directory", 0},
880 {"--print-prog-name", "-print-prog-name=", "aj"},
881 {"--profile", "-p", 0},
882 {"--profile-blocks", "-a", 0},
883 {"--quiet", "-q", 0},
884 {"--save-temps", "-save-temps", 0},
885 {"--shared", "-shared", 0},
886 {"--silent", "-q", 0},
887 {"--specs", "-specs=", "aj"},
888 {"--static", "-static", 0},
889 {"--std", "-std=", "aj"},
890 {"--symbolic", "-symbolic", 0},
891 {"--target", "-b", "a"},
892 {"--time", "-time", 0},
893 {"--trace-includes", "-H", 0},
894 {"--traditional", "-traditional", 0},
895 {"--traditional-cpp", "-traditional-cpp", 0},
896 {"--trigraphs", "-trigraphs", 0},
897 {"--undefine-macro", "-U", "aj"},
898 {"--use-version", "-V", "a"},
899 {"--user-dependencies", "-MM", 0},
900 {"--verbose", "-v", 0},
901 {"--version", "-dumpversion", 0},
902 {"--warn-", "-W", "*j"},
903 {"--write-dependencies", "-MD", 0},
904 {"--write-user-dependencies", "-MMD", 0},
908 /* Translate the options described by *ARGCP and *ARGVP.
909 Make a new vector and store it back in *ARGVP,
910 and store its length in *ARGVC. */
913 translate_options (argcp
, argvp
)
919 const char **argv
= *argvp
;
921 (const char **) xmalloc ((argc
+ 2) * 2 * sizeof (const char *));
925 newv
[newindex
++] = argv
[i
++];
929 /* Translate -- options. */
930 if (argv
[i
][0] == '-' && argv
[i
][1] == '-')
933 /* Find a mapping that applies to this option. */
934 for (j
= 0; j
< sizeof (option_map
) / sizeof (option_map
[0]); j
++)
936 size_t optlen
= strlen (option_map
[j
].name
);
937 size_t arglen
= strlen (argv
[i
]);
938 size_t complen
= arglen
> optlen
? optlen
: arglen
;
939 const char *arginfo
= option_map
[j
].arg_info
;
944 if (!strncmp (argv
[i
], option_map
[j
].name
, complen
))
952 k
< sizeof (option_map
) / sizeof (option_map
[0]);
954 if (strlen (option_map
[k
].name
) >= arglen
955 && !strncmp (argv
[i
], option_map
[k
].name
, arglen
))
957 error ("Ambiguous abbreviation %s", argv
[i
]);
961 if (k
!= sizeof (option_map
) / sizeof (option_map
[0]))
967 /* If the option has an argument, accept that. */
968 if (argv
[i
][optlen
] == '=')
969 arg
= argv
[i
] + optlen
+ 1;
971 /* If this mapping requires extra text at end of name,
972 accept that as "argument". */
973 else if (index (arginfo
, '*') != 0)
974 arg
= argv
[i
] + optlen
;
976 /* Otherwise, extra text at end means mismatch.
977 Try other mappings. */
982 else if (index (arginfo
, '*') != 0)
984 error ("Incomplete `%s' option", option_map
[j
].name
);
988 /* Handle arguments. */
989 if (index (arginfo
, 'a') != 0)
995 error ("Missing argument to `%s' option",
1003 else if (index (arginfo
, '*') != 0)
1005 else if (index (arginfo
, 'o') == 0)
1008 error ("Extraneous argument to `%s' option",
1009 option_map
[j
].name
);
1013 /* Store the translation as one argv elt or as two. */
1014 if (arg
!= 0 && index (arginfo
, 'j') != 0)
1015 newv
[newindex
++] = concat (option_map
[j
].equivalent
, arg
,
1019 newv
[newindex
++] = option_map
[j
].equivalent
;
1020 newv
[newindex
++] = arg
;
1023 newv
[newindex
++] = option_map
[j
].equivalent
;
1031 /* Handle old-fashioned options--just copy them through,
1032 with their arguments. */
1033 else if (argv
[i
][0] == '-')
1035 const char *p
= argv
[i
] + 1;
1039 if (SWITCH_TAKES_ARG (c
) > (p
[1] != 0))
1040 nskip
+= SWITCH_TAKES_ARG (c
) - (p
[1] != 0);
1041 else if (WORD_SWITCH_TAKES_ARG (p
))
1042 nskip
+= WORD_SWITCH_TAKES_ARG (p
);
1043 else if ((c
== 'B' || c
== 'b' || c
== 'V' || c
== 'x')
1046 else if (! strcmp (p
, "Xlinker"))
1049 /* Watch out for an option at the end of the command line that
1050 is missing arguments, and avoid skipping past the end of the
1052 if (nskip
+ i
> argc
)
1057 newv
[newindex
++] = argv
[i
++];
1062 /* Ordinary operands, or +e options. */
1063 newv
[newindex
++] = argv
[i
++];
1078 /* A fully-blank line is a delimiter in the SPEC file and shouldn't
1079 be considered whitespace. */
1080 if (p
[0] == '\n' && p
[1] == '\n' && p
[2] == '\n')
1082 else if (*p
== '\n' || *p
== ' ' || *p
== '\t')
1086 while (*p
!= '\n') p
++;
1096 /* Structure to keep track of the specs that have been defined so far.
1097 These are accessed using %(specname) or %[specname] in a compiler
1102 /* The following 2 fields must be first */
1103 /* to allow EXTRA_SPECS to be initialized */
1104 char *name
; /* name of the spec. */
1105 char *ptr
; /* available ptr if no static pointer */
1107 /* The following fields are not initialized */
1108 /* by EXTRA_SPECS */
1109 char **ptr_spec
; /* pointer to the spec itself. */
1110 struct spec_list
*next
; /* Next spec in linked list. */
1111 int name_len
; /* length of the name */
1112 int alloc_p
; /* whether string was allocated */
1115 #define INIT_STATIC_SPEC(NAME,PTR) \
1116 { NAME, NULL_PTR, PTR, (struct spec_list *)0, sizeof (NAME)-1, 0 }
1118 /* List of statically defined specs */
1119 static struct spec_list static_specs
[] = {
1120 INIT_STATIC_SPEC ("asm", &asm_spec
),
1121 INIT_STATIC_SPEC ("asm_final", &asm_final_spec
),
1122 INIT_STATIC_SPEC ("cpp", &cpp_spec
),
1123 INIT_STATIC_SPEC ("cc1", &cc1_spec
),
1124 INIT_STATIC_SPEC ("cc1plus", &cc1plus_spec
),
1125 INIT_STATIC_SPEC ("endfile", &endfile_spec
),
1126 INIT_STATIC_SPEC ("link", &link_spec
),
1127 INIT_STATIC_SPEC ("lib", &lib_spec
),
1128 INIT_STATIC_SPEC ("libgcc", &libgcc_spec
),
1129 INIT_STATIC_SPEC ("startfile", &startfile_spec
),
1130 INIT_STATIC_SPEC ("switches_need_spaces", &switches_need_spaces
),
1131 INIT_STATIC_SPEC ("signed_char", &signed_char_spec
),
1132 INIT_STATIC_SPEC ("predefines", &cpp_predefines
),
1133 INIT_STATIC_SPEC ("cross_compile", &cross_compile
),
1134 INIT_STATIC_SPEC ("version", &compiler_version
),
1135 INIT_STATIC_SPEC ("multilib", &multilib_select
),
1136 INIT_STATIC_SPEC ("multilib_defaults", &multilib_defaults
),
1137 INIT_STATIC_SPEC ("multilib_extra", &multilib_extra
),
1138 INIT_STATIC_SPEC ("multilib_matches", &multilib_matches
),
1139 INIT_STATIC_SPEC ("linker", &linker_name_spec
),
1142 #ifdef EXTRA_SPECS /* additional specs needed */
1143 /* Structure to keep track of just the first two args of a spec_list.
1144 That is all that the EXTRA_SPECS macro gives us. */
1151 static struct spec_list_1 extra_specs_1
[] = { EXTRA_SPECS
};
1152 static struct spec_list
* extra_specs
= (struct spec_list
*)0;
1155 /* List of dynamically allocates specs that have been defined so far. */
1157 static struct spec_list
*specs
= (struct spec_list
*)0;
1160 /* Initialize the specs lookup routines. */
1165 struct spec_list
*next
= (struct spec_list
*)0;
1166 struct spec_list
*sl
= (struct spec_list
*)0;
1170 return; /* already initialized */
1173 notice ("Using builtin specs.\n");
1176 extra_specs
= (struct spec_list
*)
1177 xcalloc (sizeof(struct spec_list
),
1178 (sizeof(extra_specs_1
)/sizeof(extra_specs_1
[0])));
1180 for (i
= (sizeof(extra_specs_1
) / sizeof(extra_specs_1
[0])) - 1; i
>= 0; i
--)
1182 sl
= &extra_specs
[i
];
1183 sl
->name
= extra_specs_1
[i
].name
;
1184 sl
->ptr
= extra_specs_1
[i
].ptr
;
1186 sl
->name_len
= strlen (sl
->name
);
1187 sl
->ptr_spec
= &sl
->ptr
;
1192 for (i
= (sizeof (static_specs
) / sizeof (static_specs
[0])) - 1; i
>= 0; i
--)
1194 sl
= &static_specs
[i
];
1203 /* Change the value of spec NAME to SPEC. If SPEC is empty, then the spec is
1204 removed; If the spec starts with a + then SPEC is added to the end of the
1208 set_spec (name
, spec
)
1212 struct spec_list
*sl
;
1214 int name_len
= strlen (name
);
1217 /* If this is the first call, initialize the statically allocated specs */
1220 struct spec_list
*next
= (struct spec_list
*)0;
1221 for (i
= (sizeof (static_specs
) / sizeof (static_specs
[0])) - 1;
1224 sl
= &static_specs
[i
];
1231 /* See if the spec already exists */
1232 for (sl
= specs
; sl
; sl
= sl
->next
)
1233 if (name_len
== sl
->name_len
&& !strcmp (sl
->name
, name
))
1238 /* Not found - make it */
1239 sl
= (struct spec_list
*) xmalloc (sizeof (struct spec_list
));
1240 sl
->name
= xstrdup (name
);
1241 sl
->name_len
= name_len
;
1242 sl
->ptr_spec
= &sl
->ptr
;
1244 *(sl
->ptr_spec
) = "";
1249 old_spec
= *(sl
->ptr_spec
);
1250 *(sl
->ptr_spec
) = ((spec
[0] == '+' && ISSPACE ((unsigned char)spec
[1]))
1251 ? concat (old_spec
, spec
+ 1, NULL_PTR
)
1256 notice ("Setting spec %s to '%s'\n\n", name
, *(sl
->ptr_spec
));
1259 /* Free the old spec */
1260 if (old_spec
&& sl
->alloc_p
)
1266 /* Accumulate a command (program name and args), and run it. */
1268 /* Vector of pointers to arguments in the current line of specifications. */
1270 static char **argbuf
;
1272 /* Number of elements allocated in argbuf. */
1274 static int argbuf_length
;
1276 /* Number of elements in argbuf currently in use (containing args). */
1278 static int argbuf_index
;
1280 /* We want this on by default all the time now. */
1281 #define MKTEMP_EACH_FILE
1283 #ifdef MKTEMP_EACH_FILE
1285 /* This is the list of suffixes and codes (%g/%u/%U) and the associated
1288 static struct temp_name
{
1289 const char *suffix
; /* suffix associated with the code. */
1290 int length
; /* strlen (suffix). */
1291 int unique
; /* Indicates whether %g or %u/%U was used. */
1292 const char *filename
; /* associated filename. */
1293 int filename_length
; /* strlen (filename). */
1294 struct temp_name
*next
;
1299 /* Number of commands executed so far. */
1301 static int execution_count
;
1303 /* Number of commands that exited with a signal. */
1305 static int signal_count
;
1307 /* Name with which this program was invoked. */
1309 static const char *programname
;
1311 /* Structures to keep track of prefixes to try when looking for files. */
1315 char *prefix
; /* String to prepend to the path. */
1316 struct prefix_list
*next
; /* Next in linked list. */
1317 int require_machine_suffix
; /* Don't use without machine_suffix. */
1318 /* 2 means try both machine_suffix and just_machine_suffix. */
1319 int *used_flag_ptr
; /* 1 if a file was found with this prefix. */
1324 struct prefix_list
*plist
; /* List of prefixes to try */
1325 int max_len
; /* Max length of a prefix in PLIST */
1326 const char *name
; /* Name of this list (used in config stuff) */
1329 /* List of prefixes to try when looking for executables. */
1331 static struct path_prefix exec_prefixes
= { 0, 0, "exec" };
1333 /* List of prefixes to try when looking for startup (crt0) files. */
1335 static struct path_prefix startfile_prefixes
= { 0, 0, "startfile" };
1337 /* List of prefixes to try when looking for include files. */
1339 static struct path_prefix include_prefixes
= { 0, 0, "include" };
1341 /* Suffix to attach to directories searched for commands.
1342 This looks like `MACHINE/VERSION/'. */
1344 static const char *machine_suffix
= 0;
1346 /* Suffix to attach to directories searched for commands.
1347 This is just `MACHINE/'. */
1349 static const char *just_machine_suffix
= 0;
1351 /* Adjusted value of GCC_EXEC_PREFIX envvar. */
1353 static const char *gcc_exec_prefix
;
1355 /* Default prefixes to attach to command names. */
1357 #ifdef CROSS_COMPILE /* Don't use these prefixes for a cross compiler. */
1358 #undef MD_EXEC_PREFIX
1359 #undef MD_STARTFILE_PREFIX
1360 #undef MD_STARTFILE_PREFIX_1
1363 #ifndef STANDARD_EXEC_PREFIX
1364 #define STANDARD_EXEC_PREFIX "/usr/local/lib/gcc-lib/"
1365 #endif /* !defined STANDARD_EXEC_PREFIX */
1367 static const char *standard_exec_prefix
= STANDARD_EXEC_PREFIX
;
1368 static const char *standard_exec_prefix_1
= "/usr/lib/gcc/";
1369 #ifdef MD_EXEC_PREFIX
1370 static const char *md_exec_prefix
= MD_EXEC_PREFIX
;
1373 #ifndef STANDARD_STARTFILE_PREFIX
1374 #define STANDARD_STARTFILE_PREFIX "/usr/local/lib/"
1375 #endif /* !defined STANDARD_STARTFILE_PREFIX */
1377 #ifdef MD_STARTFILE_PREFIX
1378 static const char *md_startfile_prefix
= MD_STARTFILE_PREFIX
;
1380 #ifdef MD_STARTFILE_PREFIX_1
1381 static const char *md_startfile_prefix_1
= MD_STARTFILE_PREFIX_1
;
1383 static const char *standard_startfile_prefix
= STANDARD_STARTFILE_PREFIX
;
1384 static const char *standard_startfile_prefix_1
= "/lib/";
1385 static const char *standard_startfile_prefix_2
= "/usr/lib/";
1387 #ifndef TOOLDIR_BASE_PREFIX
1388 #define TOOLDIR_BASE_PREFIX "/usr/local/"
1390 static const char *tooldir_base_prefix
= TOOLDIR_BASE_PREFIX
;
1391 static const char *tooldir_prefix
;
1393 /* Subdirectory to use for locating libraries. Set by
1394 set_multilib_dir based on the compilation options. */
1396 static const char *multilib_dir
;
1398 /* Clear out the vector of arguments (after a command is executed). */
1406 /* Add one argument to the vector at the end.
1407 This is done when a space is seen or at the end of the line.
1408 If DELETE_ALWAYS is nonzero, the arg is a filename
1409 and the file should be deleted eventually.
1410 If DELETE_FAILURE is nonzero, the arg is a filename
1411 and the file should be deleted if this compilation fails. */
1414 store_arg (arg
, delete_always
, delete_failure
)
1416 int delete_always
, delete_failure
;
1418 if (argbuf_index
+ 1 == argbuf_length
)
1420 = (char **) xrealloc (argbuf
, (argbuf_length
*= 2) * sizeof (char *));
1422 argbuf
[argbuf_index
++] = arg
;
1423 argbuf
[argbuf_index
] = 0;
1425 if (delete_always
|| delete_failure
)
1426 record_temp_file (arg
, delete_always
, delete_failure
);
1429 /* Read compilation specs from a file named FILENAME,
1430 replacing the default ones.
1432 A suffix which starts with `*' is a definition for
1433 one of the machine-specific sub-specs. The "suffix" should be
1434 *asm, *cc1, *cpp, *link, *startfile, *signed_char, etc.
1435 The corresponding spec is stored in asm_spec, etc.,
1436 rather than in the `compilers' vector.
1438 Anything invalid in the file is a fatal error. */
1441 read_specs (filename
, main_p
)
1442 const char *filename
;
1447 struct stat statbuf
;
1452 notice ("Reading specs from %s\n", filename
);
1454 /* Open and stat the file. */
1455 desc
= open (filename
, O_RDONLY
, 0);
1457 pfatal_with_name (filename
);
1458 if (stat (filename
, &statbuf
) < 0)
1459 pfatal_with_name (filename
);
1461 /* Read contents of file into BUFFER. */
1462 buffer
= xmalloc ((unsigned) statbuf
.st_size
+ 1);
1463 readlen
= read (desc
, buffer
, (unsigned) statbuf
.st_size
);
1465 pfatal_with_name (filename
);
1466 buffer
[readlen
] = 0;
1469 /* Scan BUFFER for specs, putting them in the vector. */
1475 char *in
, *out
, *p1
, *p2
, *p3
;
1477 /* Advance P in BUFFER to the next nonblank nocomment line. */
1478 p
= skip_whitespace (p
);
1482 /* Is this a special command that starts with '%'? */
1483 /* Don't allow this for the main specs file, since it would
1484 encourage people to overwrite it. */
1485 if (*p
== '%' && !main_p
)
1488 while (*p
&& *p
!= '\n')
1491 p
++; /* Skip '\n' */
1493 if (!strncmp (p1
, "%include", sizeof ("%include")-1)
1494 && (p1
[sizeof "%include" - 1] == ' '
1495 || p1
[sizeof "%include" - 1] == '\t'))
1499 p1
+= sizeof ("%include");
1500 while (*p1
== ' ' || *p1
== '\t')
1503 if (*p1
++ != '<' || p
[-2] != '>')
1504 fatal ("specs %%include syntax malformed after %ld characters",
1505 (long) (p1
- buffer
+ 1));
1508 new_filename
= find_a_file (&startfile_prefixes
, p1
, R_OK
);
1509 read_specs (new_filename
? new_filename
: p1
, FALSE
);
1512 else if (!strncmp (p1
, "%include_noerr", sizeof "%include_noerr" - 1)
1513 && (p1
[sizeof "%include_noerr" - 1] == ' '
1514 || p1
[sizeof "%include_noerr" - 1] == '\t'))
1518 p1
+= sizeof "%include_noerr";
1519 while (*p1
== ' ' || *p1
== '\t') p1
++;
1521 if (*p1
++ != '<' || p
[-2] != '>')
1522 fatal ("specs %%include syntax malformed after %ld characters",
1523 (long) (p1
- buffer
+ 1));
1526 new_filename
= find_a_file (&startfile_prefixes
, p1
, R_OK
);
1528 read_specs (new_filename
, FALSE
);
1529 else if (verbose_flag
)
1530 notice ("Could not find specs file %s\n", p1
);
1533 else if (!strncmp (p1
, "%rename", sizeof "%rename" - 1)
1534 && (p1
[sizeof "%rename" - 1] == ' '
1535 || p1
[sizeof "%rename" - 1] == '\t'))
1538 struct spec_list
*sl
;
1540 /* Get original name */
1541 p1
+= sizeof "%rename";
1542 while (*p1
== ' ' || *p1
== '\t')
1545 if (! ISALPHA ((unsigned char)*p1
))
1546 fatal ("specs %%rename syntax malformed after %ld characters",
1547 (long) (p1
- buffer
));
1550 while (*p2
&& !ISSPACE ((unsigned char)*p2
))
1553 if (*p2
!= ' ' && *p2
!= '\t')
1554 fatal ("specs %%rename syntax malformed after %ld characters",
1555 (long) (p2
- buffer
));
1559 while (*p2
== ' ' || *p2
== '\t')
1562 if (! ISALPHA ((unsigned char)*p2
))
1563 fatal ("specs %%rename syntax malformed after %ld characters",
1564 (long) (p2
- buffer
));
1566 /* Get new spec name */
1568 while (*p3
&& !ISSPACE ((unsigned char)*p3
))
1572 fatal ("specs %%rename syntax malformed after %ld characters",
1573 (long) (p3
- buffer
));
1576 for (sl
= specs
; sl
; sl
= sl
->next
)
1577 if (name_len
== sl
->name_len
&& !strcmp (sl
->name
, p1
))
1581 fatal ("specs %s spec was not found to be renamed", p1
);
1583 if (strcmp (p1
, p2
) == 0)
1588 notice ("rename spec %s to %s\n", p1
, p2
);
1590 notice ("spec is '%s'\n\n", *(sl
->ptr_spec
));
1594 set_spec (p2
, *(sl
->ptr_spec
));
1596 free (*(sl
->ptr_spec
));
1598 *(sl
->ptr_spec
) = "";
1603 fatal ("specs unknown %% command after %ld characters",
1604 (long) (p1
- buffer
));
1607 /* Find the colon that should end the suffix. */
1609 while (*p1
&& *p1
!= ':' && *p1
!= '\n')
1612 /* The colon shouldn't be missing. */
1614 fatal ("specs file malformed after %ld characters",
1615 (long) (p1
- buffer
));
1617 /* Skip back over trailing whitespace. */
1619 while (p2
> buffer
&& (p2
[-1] == ' ' || p2
[-1] == '\t'))
1622 /* Copy the suffix to a string. */
1623 suffix
= save_string (p
, p2
- p
);
1624 /* Find the next line. */
1625 p
= skip_whitespace (p1
+ 1);
1627 fatal ("specs file malformed after %ld characters",
1628 (long) (p
- buffer
));
1631 /* Find next blank line or end of string. */
1632 while (*p1
&& !(*p1
== '\n' && (p1
[1] == '\n' || p1
[1] == '\0')))
1635 /* Specs end at the blank line and do not include the newline. */
1636 spec
= save_string (p
, p1
- p
);
1639 /* Delete backslash-newline sequences from the spec. */
1644 if (in
[0] == '\\' && in
[1] == '\n')
1646 else if (in
[0] == '#')
1647 while (*in
&& *in
!= '\n')
1655 if (suffix
[0] == '*')
1657 if (! strcmp (suffix
, "*link_command"))
1658 link_command_spec
= spec
;
1660 set_spec (suffix
+ 1, spec
);
1664 /* Add this pair to the vector. */
1666 = ((struct compiler
*)
1667 xrealloc (compilers
,
1668 (n_compilers
+ 2) * sizeof (struct compiler
)));
1670 compilers
[n_compilers
].suffix
= suffix
;
1671 memset (compilers
[n_compilers
].spec
, 0,
1672 sizeof compilers
[n_compilers
].spec
);
1673 compilers
[n_compilers
].spec
[0] = spec
;
1675 memset (&compilers
[n_compilers
], 0, sizeof compilers
[n_compilers
]);
1679 link_command_spec
= spec
;
1682 if (link_command_spec
== 0)
1683 fatal ("spec file has no spec for linking");
1686 /* Record the names of temporary files we tell compilers to write,
1687 and delete them at the end of the run. */
1689 /* This is the common prefix we use to make temp file names.
1690 It is chosen once for each run of this program.
1691 It is substituted into a spec by %g.
1692 Thus, all temp file names contain this prefix.
1693 In practice, all temp file names start with this prefix.
1695 This prefix comes from the envvar TMPDIR if it is defined;
1696 otherwise, from the P_tmpdir macro if that is defined;
1697 otherwise, in /usr/tmp or /tmp;
1698 or finally the current directory if all else fails. */
1700 static const char *temp_filename
;
1702 /* Length of the prefix. */
1704 static int temp_filename_length
;
1706 /* Define the list of temporary files to delete. */
1711 struct temp_file
*next
;
1714 /* Queue of files to delete on success or failure of compilation. */
1715 static struct temp_file
*always_delete_queue
;
1716 /* Queue of files to delete on failure of compilation. */
1717 static struct temp_file
*failure_delete_queue
;
1719 /* Record FILENAME as a file to be deleted automatically.
1720 ALWAYS_DELETE nonzero means delete it if all compilation succeeds;
1721 otherwise delete it in any case.
1722 FAIL_DELETE nonzero means delete it if a compilation step fails;
1723 otherwise delete it in any case. */
1726 record_temp_file (filename
, always_delete
, fail_delete
)
1727 const char *filename
;
1731 register char * const name
= xstrdup (filename
);
1735 register struct temp_file
*temp
;
1736 for (temp
= always_delete_queue
; temp
; temp
= temp
->next
)
1737 if (! strcmp (name
, temp
->name
))
1740 temp
= (struct temp_file
*) xmalloc (sizeof (struct temp_file
));
1741 temp
->next
= always_delete_queue
;
1743 always_delete_queue
= temp
;
1750 register struct temp_file
*temp
;
1751 for (temp
= failure_delete_queue
; temp
; temp
= temp
->next
)
1752 if (! strcmp (name
, temp
->name
))
1755 temp
= (struct temp_file
*) xmalloc (sizeof (struct temp_file
));
1756 temp
->next
= failure_delete_queue
;
1758 failure_delete_queue
= temp
;
1764 /* Delete all the temporary files whose names we previously recorded. */
1767 delete_if_ordinary (name
)
1774 printf ("Delete %s? (y or n) ", name
);
1778 while ((c
= getchar ()) != '\n' && c
!= EOF
)
1781 if (i
== 'y' || i
== 'Y')
1783 if (stat (name
, &st
) >= 0 && S_ISREG (st
.st_mode
))
1784 if (unlink (name
) < 0)
1786 perror_with_name (name
);
1790 delete_temp_files ()
1792 register struct temp_file
*temp
;
1794 for (temp
= always_delete_queue
; temp
; temp
= temp
->next
)
1795 delete_if_ordinary (temp
->name
);
1796 always_delete_queue
= 0;
1799 /* Delete all the files to be deleted on error. */
1802 delete_failure_queue ()
1804 register struct temp_file
*temp
;
1806 for (temp
= failure_delete_queue
; temp
; temp
= temp
->next
)
1807 delete_if_ordinary (temp
->name
);
1811 clear_failure_queue ()
1813 failure_delete_queue
= 0;
1816 /* Routine to add variables to the environment. We do this to pass
1817 the pathname of the gcc driver, and the directories search to the
1818 collect2 program, which is being run as ld. This way, we can be
1819 sure of executing the right compiler when collect2 wants to build
1820 constructors and destructors. Since the environment variables we
1821 use come from an obstack, we don't have to worry about allocating
1830 #ifndef VMS /* nor about VMS */
1832 extern char **environ
;
1833 char **old_environ
= environ
;
1837 int str_len
= strlen (str
);
1841 while ((ch
= *p
++) != '\0' && ch
!= '=')
1847 /* Search for replacing an existing environment variable, and
1848 count the number of total environment variables. */
1849 for (envp
= old_environ
; *envp
; envp
++)
1852 if (!strncmp (str
, *envp
, name_len
))
1859 /* Add a new environment variable */
1860 environ
= (char **) xmalloc (sizeof (char *) * (num_envs
+2));
1862 memcpy ((char *) (environ
+ 1), (char *) old_environ
,
1863 sizeof (char *) * (num_envs
+1));
1868 #endif /* HAVE_PUTENV */
1871 /* Build a list of search directories from PATHS.
1872 PREFIX is a string to prepend to the list.
1873 If CHECK_DIR_P is non-zero we ensure the directory exists.
1874 This is used mostly by putenv_from_prefixes so we use `collect_obstack'.
1875 It is also used by the --print-search-dirs flag. */
1878 build_search_list (paths
, prefix
, check_dir_p
)
1879 struct path_prefix
*paths
;
1883 int suffix_len
= (machine_suffix
) ? strlen (machine_suffix
) : 0;
1885 = (just_machine_suffix
) ? strlen (just_machine_suffix
) : 0;
1886 int first_time
= TRUE
;
1887 struct prefix_list
*pprefix
;
1889 obstack_grow (&collect_obstack
, prefix
, strlen (prefix
));
1891 for (pprefix
= paths
->plist
; pprefix
!= 0; pprefix
= pprefix
->next
)
1893 int len
= strlen (pprefix
->prefix
);
1897 || is_directory (pprefix
->prefix
, machine_suffix
, 0)))
1900 obstack_1grow (&collect_obstack
, PATH_SEPARATOR
);
1903 obstack_grow (&collect_obstack
, pprefix
->prefix
, len
);
1904 obstack_grow (&collect_obstack
, machine_suffix
, suffix_len
);
1907 if (just_machine_suffix
1908 && pprefix
->require_machine_suffix
== 2
1910 || is_directory (pprefix
->prefix
, just_machine_suffix
, 0)))
1913 obstack_1grow (&collect_obstack
, PATH_SEPARATOR
);
1916 obstack_grow (&collect_obstack
, pprefix
->prefix
, len
);
1917 obstack_grow (&collect_obstack
, just_machine_suffix
,
1921 if (! pprefix
->require_machine_suffix
)
1924 obstack_1grow (&collect_obstack
, PATH_SEPARATOR
);
1927 obstack_grow (&collect_obstack
, pprefix
->prefix
, len
);
1931 obstack_1grow (&collect_obstack
, '\0');
1932 return obstack_finish (&collect_obstack
);
1935 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
1939 putenv_from_prefixes (paths
, env_var
)
1940 struct path_prefix
*paths
;
1941 const char *env_var
;
1943 putenv (build_search_list (paths
, env_var
, 1));
1946 /* Check whether NAME can be accessed in MODE. This is like access,
1947 except that it never considers directories to be executable. */
1950 access_check (name
, mode
)
1958 if (stat (name
, &st
) < 0
1959 || S_ISDIR (st
.st_mode
))
1963 return access (name
, mode
);
1966 /* Search for NAME using the prefix list PREFIXES. MODE is passed to
1967 access to check permissions.
1968 Return 0 if not found, otherwise return its name, allocated with malloc. */
1971 find_a_file (pprefix
, name
, mode
)
1972 struct path_prefix
*pprefix
;
1977 const char *file_suffix
= ((mode
& X_OK
) != 0 ? EXECUTABLE_SUFFIX
: "");
1978 struct prefix_list
*pl
;
1979 int len
= pprefix
->max_len
+ strlen (name
) + strlen (file_suffix
) + 1;
1981 #ifdef DEFAULT_ASSEMBLER
1982 if (! strcmp(name
, "as") && access (DEFAULT_ASSEMBLER
, mode
) == 0)
1983 return xstrdup (DEFAULT_ASSEMBLER
);
1986 #ifdef DEFAULT_LINKER
1987 if (! strcmp(name
, "ld") && access (DEFAULT_LINKER
, mode
) == 0)
1988 return xstrdup (DEFAULT_LINKER
);
1992 len
+= strlen (machine_suffix
);
1994 temp
= xmalloc (len
);
1996 /* Determine the filename to execute (special case for absolute paths). */
1998 if (IS_DIR_SEPARATOR (*name
)
1999 #ifdef HAVE_DOS_BASED_FILESYSTEM
2000 /* Check for disk name on MS-DOS-based systems. */
2001 || (name
[0] && name
[1] == ':' && IS_DIR_SEPARATOR (name
[2]))
2005 if (access (name
, mode
) == 0)
2007 strcpy (temp
, name
);
2012 for (pl
= pprefix
->plist
; pl
; pl
= pl
->next
)
2016 /* Some systems have a suffix for executable files.
2017 So try appending that first. */
2018 if (file_suffix
[0] != 0)
2020 strcpy (temp
, pl
->prefix
);
2021 strcat (temp
, machine_suffix
);
2022 strcat (temp
, name
);
2023 strcat (temp
, file_suffix
);
2024 if (access_check (temp
, mode
) == 0)
2026 if (pl
->used_flag_ptr
!= 0)
2027 *pl
->used_flag_ptr
= 1;
2032 /* Now try just the name. */
2033 strcpy (temp
, pl
->prefix
);
2034 strcat (temp
, machine_suffix
);
2035 strcat (temp
, name
);
2036 if (access_check (temp
, mode
) == 0)
2038 if (pl
->used_flag_ptr
!= 0)
2039 *pl
->used_flag_ptr
= 1;
2044 /* Certain prefixes are tried with just the machine type,
2045 not the version. This is used for finding as, ld, etc. */
2046 if (just_machine_suffix
&& pl
->require_machine_suffix
== 2)
2048 /* Some systems have a suffix for executable files.
2049 So try appending that first. */
2050 if (file_suffix
[0] != 0)
2052 strcpy (temp
, pl
->prefix
);
2053 strcat (temp
, just_machine_suffix
);
2054 strcat (temp
, name
);
2055 strcat (temp
, file_suffix
);
2056 if (access_check (temp
, mode
) == 0)
2058 if (pl
->used_flag_ptr
!= 0)
2059 *pl
->used_flag_ptr
= 1;
2064 strcpy (temp
, pl
->prefix
);
2065 strcat (temp
, just_machine_suffix
);
2066 strcat (temp
, name
);
2067 if (access_check (temp
, mode
) == 0)
2069 if (pl
->used_flag_ptr
!= 0)
2070 *pl
->used_flag_ptr
= 1;
2075 /* Certain prefixes can't be used without the machine suffix
2076 when the machine or version is explicitly specified. */
2077 if (! pl
->require_machine_suffix
)
2079 /* Some systems have a suffix for executable files.
2080 So try appending that first. */
2081 if (file_suffix
[0] != 0)
2083 strcpy (temp
, pl
->prefix
);
2084 strcat (temp
, name
);
2085 strcat (temp
, file_suffix
);
2086 if (access_check (temp
, mode
) == 0)
2088 if (pl
->used_flag_ptr
!= 0)
2089 *pl
->used_flag_ptr
= 1;
2094 strcpy (temp
, pl
->prefix
);
2095 strcat (temp
, name
);
2096 if (access_check (temp
, mode
) == 0)
2098 if (pl
->used_flag_ptr
!= 0)
2099 *pl
->used_flag_ptr
= 1;
2109 /* Add an entry for PREFIX in PLIST. If FIRST is set, it goes
2110 at the start of the list, otherwise it goes at the end.
2112 If WARN is nonzero, we will warn if no file is found
2113 through this prefix. WARN should point to an int
2114 which will be set to 1 if this entry is used.
2116 COMPONENT is the value to be passed to update_path.
2118 REQUIRE_MACHINE_SUFFIX is 1 if this prefix can't be used without
2119 the complete value of machine_suffix.
2120 2 means try both machine_suffix and just_machine_suffix. */
2123 add_prefix (pprefix
, prefix
, component
, first
, require_machine_suffix
, warn
)
2124 struct path_prefix
*pprefix
;
2126 const char *component
;
2128 int require_machine_suffix
;
2131 struct prefix_list
*pl
, **prev
;
2134 if (! first
&& pprefix
->plist
)
2136 for (pl
= pprefix
->plist
; pl
->next
; pl
= pl
->next
)
2141 prev
= &pprefix
->plist
;
2143 /* Keep track of the longest prefix */
2145 prefix
= update_path (prefix
, component
);
2146 len
= strlen (prefix
);
2147 if (len
> pprefix
->max_len
)
2148 pprefix
->max_len
= len
;
2150 pl
= (struct prefix_list
*) xmalloc (sizeof (struct prefix_list
));
2151 pl
->prefix
= save_string (prefix
, len
);
2152 pl
->require_machine_suffix
= require_machine_suffix
;
2153 pl
->used_flag_ptr
= warn
;
2160 pl
->next
= (struct prefix_list
*) 0;
2164 /* Print warnings for any prefixes in the list PPREFIX that were not used. */
2167 unused_prefix_warnings (pprefix
)
2168 struct path_prefix
*pprefix
;
2170 struct prefix_list
*pl
= pprefix
->plist
;
2174 if (pl
->used_flag_ptr
!= 0 && !*pl
->used_flag_ptr
)
2176 if (pl
->require_machine_suffix
&& machine_suffix
)
2177 error ("file path prefix `%s%s' never used", pl
->prefix
,
2180 error ("file path prefix `%s' never used", pl
->prefix
);
2182 /* Prevent duplicate warnings. */
2183 *pl
->used_flag_ptr
= 1;
2191 /* Execute the command specified by the arguments on the current line of spec.
2192 When using pipes, this includes several piped-together commands
2193 with `|' between them.
2195 Return 0 if successful, -1 if failed. */
2201 int n_commands
; /* # of command. */
2205 const char *prog
; /* program name. */
2206 char **argv
; /* vector of args. */
2207 int pid
; /* pid of process for this command. */
2210 struct command
*commands
; /* each command buffer with above info. */
2212 /* Count # of piped commands. */
2213 for (n_commands
= 1, i
= 0; i
< argbuf_index
; i
++)
2214 if (strcmp (argbuf
[i
], "|") == 0)
2217 /* Get storage for each command. */
2219 = (struct command
*) alloca (n_commands
* sizeof (struct command
));
2221 /* Split argbuf into its separate piped processes,
2222 and record info about each one.
2223 Also search for the programs that are to be run. */
2225 commands
[0].prog
= argbuf
[0]; /* first command. */
2226 commands
[0].argv
= &argbuf
[0];
2227 string
= find_a_file (&exec_prefixes
, commands
[0].prog
, X_OK
);
2230 commands
[0].argv
[0] = string
;
2232 for (n_commands
= 1, i
= 0; i
< argbuf_index
; i
++)
2233 if (strcmp (argbuf
[i
], "|") == 0)
2234 { /* each command. */
2235 #if defined (__MSDOS__) || defined (OS2) || defined (VMS)
2236 fatal ("-pipe not supported");
2238 argbuf
[i
] = 0; /* termination of command args. */
2239 commands
[n_commands
].prog
= argbuf
[i
+ 1];
2240 commands
[n_commands
].argv
= &argbuf
[i
+ 1];
2241 string
= find_a_file (&exec_prefixes
, commands
[n_commands
].prog
, X_OK
);
2243 commands
[n_commands
].argv
[0] = string
;
2247 argbuf
[argbuf_index
] = 0;
2249 /* If -v, print what we are about to do, and maybe query. */
2253 /* For help listings, put a blank line between sub-processes. */
2254 if (print_help_list
)
2255 fputc ('\n', stderr
);
2257 /* Print each piped command as a separate line. */
2258 for (i
= 0; i
< n_commands
; i
++)
2262 for (j
= commands
[i
].argv
; *j
; j
++)
2263 fprintf (stderr
, " %s", *j
);
2265 /* Print a pipe symbol after all but the last command. */
2266 if (i
+ 1 != n_commands
)
2267 fprintf (stderr
, " |");
2268 fprintf (stderr
, "\n");
2272 notice ("\nGo ahead? (y or n) ");
2276 while (getchar () != '\n')
2279 if (i
!= 'y' && i
!= 'Y')
2284 /* Run each piped subprocess. */
2286 for (i
= 0; i
< n_commands
; i
++)
2288 char *errmsg_fmt
, *errmsg_arg
;
2289 char *string
= commands
[i
].argv
[0];
2291 commands
[i
].pid
= pexecute (string
, commands
[i
].argv
,
2292 programname
, temp_filename
,
2293 &errmsg_fmt
, &errmsg_arg
,
2294 ((i
== 0 ? PEXECUTE_FIRST
: 0)
2295 | (i
+ 1 == n_commands
? PEXECUTE_LAST
: 0)
2296 | (string
== commands
[i
].prog
2297 ? PEXECUTE_SEARCH
: 0)
2298 | (verbose_flag
? PEXECUTE_VERBOSE
: 0)));
2300 if (commands
[i
].pid
== -1)
2301 pfatal_pexecute (errmsg_fmt
, errmsg_arg
);
2303 if (string
!= commands
[i
].prog
)
2309 /* Wait for all the subprocesses to finish.
2310 We don't care what order they finish in;
2311 we know that N_COMMANDS waits will get them all.
2312 Ignore subprocesses that we don't know about,
2313 since they can be spawned by the process that exec'ed us. */
2317 #ifdef HAVE_GETRUSAGE
2322 for (i
= 0; i
< n_commands
; )
2328 pid
= pwait (commands
[i
].pid
, &status
, 0);
2332 #ifdef HAVE_GETRUSAGE
2335 /* getrusage returns the total resource usage of all children
2336 up to now. Copy the previous values into prus, get the
2337 current statistics, then take the difference. */
2340 getrusage (RUSAGE_CHILDREN
, &rus
);
2341 d
.tv_sec
= rus
.ru_utime
.tv_sec
- prus
.ru_utime
.tv_sec
;
2342 d
.tv_usec
= rus
.ru_utime
.tv_usec
- prus
.ru_utime
.tv_usec
;
2343 ut
= (double)d
.tv_sec
+ (double)d
.tv_usec
/ 1.0e6
;
2345 d
.tv_sec
= rus
.ru_stime
.tv_sec
- prus
.ru_stime
.tv_sec
;
2346 d
.tv_usec
= rus
.ru_stime
.tv_usec
- prus
.ru_stime
.tv_usec
;
2347 st
= (double)d
.tv_sec
+ (double)d
.tv_usec
/ 1.0e6
;
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
)
2368 #ifdef HAVE_GETRUSAGE
2369 if (report_times
&& ut
+ st
!= 0)
2370 notice ("# %s %.2f %.2f\n", commands
[j
].prog
, ut
, st
);
2379 /* Find all the switches given to us
2380 and make a vector describing them.
2381 The elements of the vector are strings, one per switch given.
2382 If a switch uses following arguments, then the `part1' field
2383 is the switch itself and the `args' field
2384 is a null-terminated vector containing the following arguments.
2385 The `live_cond' field is 1 if the switch is true in a conditional spec,
2386 -1 if false (overridden by a later switch), and is initialized to zero.
2387 The `validated' field is nonzero if any spec has looked at this switch;
2388 if it remains zero at the end of the run, it must be meaningless. */
2398 static struct switchstr
*switches
;
2400 static int n_switches
;
2405 const char *language
;
2408 /* Also a vector of input files specified. */
2410 static struct infile
*infiles
;
2412 static int n_infiles
;
2414 /* This counts the number of libraries added by lang_specific_driver, so that
2415 we can tell if there were any user supplied any files or libraries. */
2417 static int added_libraries
;
2419 /* And a vector of corresponding output files is made up later. */
2421 static const char **outfiles
;
2423 /* Used to track if none of the -B paths are used. */
2426 /* Used to track if standard path isn't used and -b or -V is specified. */
2427 static int warn_std
;
2429 /* Gives value to pass as "warn" to add_prefix for standard prefixes. */
2430 static int *warn_std_ptr
= 0;
2433 #if defined(HAVE_OBJECT_SUFFIX) || defined(HAVE_EXECUTABLE_SUFFIX)
2435 /* Convert NAME to a new name if it is the standard suffix. DO_EXE
2436 is true if we should look for an executable suffix as well. */
2439 convert_filename (name
, do_exe
)
2449 len
= strlen (name
);
2451 #ifdef HAVE_OBJECT_SUFFIX
2452 /* Convert x.o to x.obj if OBJECT_SUFFIX is ".obj". */
2454 && name
[len
- 2] == '.'
2455 && name
[len
- 1] == 'o')
2457 obstack_grow (&obstack
, name
, len
- 2);
2458 obstack_grow0 (&obstack
, OBJECT_SUFFIX
, strlen (OBJECT_SUFFIX
));
2459 name
= obstack_finish (&obstack
);
2463 #ifdef HAVE_EXECUTABLE_SUFFIX
2464 /* If there is no filetype, make it the executable suffix (which includes
2465 the "."). But don't get confused if we have just "-o". */
2466 if (! do_exe
|| EXECUTABLE_SUFFIX
[0] == 0 || (len
== 2 && name
[0] == '-'))
2469 for (i
= len
- 1; i
>= 0; i
--)
2470 if (IS_DIR_SEPARATOR (name
[i
]))
2473 for (i
++; i
< len
; i
++)
2477 obstack_grow (&obstack
, name
, len
);
2478 obstack_grow0 (&obstack
, EXECUTABLE_SUFFIX
, strlen (EXECUTABLE_SUFFIX
));
2479 name
= obstack_finish (&obstack
);
2486 /* Display the command line switches accepted by gcc. */
2490 printf ("Usage: %s [options] file...\n", programname
);
2491 printf ("Options:\n");
2493 printf (" --help Display this information\n");
2495 printf (" (Use '-v --help' to display command line options of sub-processes)\n");
2496 printf (" -dumpspecs Display all of the built in spec strings\n");
2497 printf (" -dumpversion Display the version of the compiler\n");
2498 printf (" -dumpmachine Display the compiler's target processor\n");
2499 printf (" -print-search-dirs Display the directories in the compiler's search path\n");
2500 printf (" -print-libgcc-file-name Display the name of the compiler's companion library\n");
2501 printf (" -print-file-name=<lib> Display the full path to library <lib>\n");
2502 printf (" -print-prog-name=<prog> Display the full path to compiler component <prog>\n");
2503 printf (" -print-multi-directory Display the root directory for versions of libgcc\n");
2504 printf (" -print-multi-lib Display the mapping between command line options and\n");
2505 printf (" multiple library search directories\n");
2506 printf (" -Wa,<options> Pass comma-separated <options> on to the assembler\n");
2507 printf (" -Wp,<options> Pass comma-separated <options> on to the preprocessor\n");
2508 printf (" -Wl,<options> Pass comma-separated <options> on to the linker\n");
2509 printf (" -Xlinker <arg> Pass <arg> on to the linker\n");
2510 printf (" -save-temps Do not delete intermediate files\n");
2511 printf (" -pipe Use pipes rather than intermediate files\n");
2512 printf (" -time Time the execution of each subprocess\n");
2513 printf (" -specs=<file> Override builtin specs with the contents of <file>\n");
2514 printf (" -std=<standard> Assume that the input sources are for <standard>\n");
2515 printf (" -B <directory> Add <directory> to the compiler's search paths\n");
2516 printf (" -b <machine> Run gcc for target <machine>, if installed\n");
2517 printf (" -V <version> Run gcc version number <version>, if installed\n");
2518 printf (" -v Display the programs invoked by the compiler\n");
2519 printf (" -E Preprocess only; do not compile, assemble or link\n");
2520 printf (" -S Compile only; do not assemble or link\n");
2521 printf (" -c Compile and assemble, but do not link\n");
2522 printf (" -o <file> Place the output into <file>\n");
2523 printf (" -x <language> Specify the language of the following input files\n");
2524 printf (" Permissable languages include: c c++ assembler none\n");
2525 printf (" 'none' means revert to the default behaviour of\n");
2526 printf (" guessing the language based on the file's extension\n");
2528 printf ("\nOptions starting with -g, -f, -m, -O or -W are automatically passed on to\n");
2529 printf ("the various sub-processes invoked by %s. In order to pass other options\n",
2531 printf ("on to these processes the -W<letter> options must be used.\n");
2533 /* The rest of the options are displayed by invocations of the various
2538 add_preprocessor_option (option
, len
)
2539 const char * option
;
2542 n_preprocessor_options
++;
2544 if (! preprocessor_options
)
2545 preprocessor_options
2546 = (char **) xmalloc (n_preprocessor_options
* sizeof (char *));
2548 preprocessor_options
2549 = (char **) xrealloc (preprocessor_options
,
2550 n_preprocessor_options
* sizeof (char *));
2552 preprocessor_options
[n_preprocessor_options
- 1] =
2553 save_string (option
, len
);
2557 add_assembler_option (option
, len
)
2558 const char * option
;
2561 n_assembler_options
++;
2563 if (! assembler_options
)
2565 = (char **) xmalloc (n_assembler_options
* sizeof (char *));
2568 = (char **) xrealloc (assembler_options
,
2569 n_assembler_options
* sizeof (char *));
2571 assembler_options
[n_assembler_options
- 1] = save_string (option
, len
);
2575 add_linker_option (option
, len
)
2576 const char * option
;
2581 if (! linker_options
)
2583 = (char **) xmalloc (n_linker_options
* sizeof (char *));
2586 = (char **) xrealloc (linker_options
,
2587 n_linker_options
* sizeof (char *));
2589 linker_options
[n_linker_options
- 1] = save_string (option
, len
);
2592 /* Create the vector `switches' and its contents.
2593 Store its length in `n_switches'. */
2596 process_command (argc
, argv
)
2603 char *spec_lang
= 0;
2604 int last_language_n_infiles
;
2607 int lang_n_infiles
= 0;
2609 GET_ENV_PATH_LIST (gcc_exec_prefix
, "GCC_EXEC_PREFIX");
2613 added_libraries
= 0;
2615 /* Figure compiler version from version string. */
2617 compiler_version
= temp1
= xstrdup (version_string
);
2619 for (; *temp1
; ++temp1
)
2628 /* Set up the default search paths. */
2630 if (gcc_exec_prefix
)
2632 int len
= strlen (gcc_exec_prefix
);
2633 if (len
> (int) sizeof ("/lib/gcc-lib/")-1
2634 && (IS_DIR_SEPARATOR (gcc_exec_prefix
[len
-1])))
2636 temp
= gcc_exec_prefix
+ len
- sizeof ("/lib/gcc-lib/") + 1;
2637 if (IS_DIR_SEPARATOR (*temp
)
2638 && strncmp (temp
+1, "lib", 3) == 0
2639 && IS_DIR_SEPARATOR (temp
[4])
2640 && strncmp (temp
+5, "gcc-lib", 7) == 0)
2641 len
-= sizeof ("/lib/gcc-lib/") - 1;
2644 set_std_prefix (gcc_exec_prefix
, len
);
2645 add_prefix (&exec_prefixes
, gcc_exec_prefix
, "GCC", 0, 0, NULL_PTR
);
2646 add_prefix (&startfile_prefixes
, gcc_exec_prefix
, "GCC", 0, 0, NULL_PTR
);
2649 /* COMPILER_PATH and LIBRARY_PATH have values
2650 that are lists of directory names with colons. */
2652 GET_ENV_PATH_LIST (temp
, "COMPILER_PATH");
2655 const char *startp
, *endp
;
2656 char *nstore
= (char *) alloca (strlen (temp
) + 3);
2658 startp
= endp
= temp
;
2661 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
2663 strncpy (nstore
, startp
, endp
-startp
);
2665 strcpy (nstore
, concat (".", dir_separator_str
, NULL_PTR
));
2666 else if (!IS_DIR_SEPARATOR (endp
[-1]))
2668 nstore
[endp
-startp
] = DIR_SEPARATOR
;
2669 nstore
[endp
-startp
+1] = 0;
2672 nstore
[endp
-startp
] = 0;
2673 add_prefix (&exec_prefixes
, nstore
, 0, 0, 0, NULL_PTR
);
2674 add_prefix (&include_prefixes
,
2675 concat (nstore
, "include", NULL_PTR
),
2679 endp
= startp
= endp
+ 1;
2686 GET_ENV_PATH_LIST (temp
, "LIBRARY_PATH");
2687 if (temp
&& *cross_compile
== '0')
2689 const char *startp
, *endp
;
2690 char *nstore
= (char *) alloca (strlen (temp
) + 3);
2692 startp
= endp
= temp
;
2695 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
2697 strncpy (nstore
, startp
, endp
-startp
);
2699 strcpy (nstore
, concat (".", dir_separator_str
, NULL_PTR
));
2700 else if (!IS_DIR_SEPARATOR (endp
[-1]))
2702 nstore
[endp
-startp
] = DIR_SEPARATOR
;
2703 nstore
[endp
-startp
+1] = 0;
2706 nstore
[endp
-startp
] = 0;
2707 add_prefix (&startfile_prefixes
, nstore
, NULL_PTR
,
2711 endp
= startp
= endp
+ 1;
2718 /* Use LPATH like LIBRARY_PATH (for the CMU build program). */
2719 GET_ENV_PATH_LIST (temp
, "LPATH");
2720 if (temp
&& *cross_compile
== '0')
2722 const char *startp
, *endp
;
2723 char *nstore
= (char *) alloca (strlen (temp
) + 3);
2725 startp
= endp
= temp
;
2728 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
2730 strncpy (nstore
, startp
, endp
-startp
);
2732 strcpy (nstore
, concat (".", dir_separator_str
, NULL_PTR
));
2733 else if (!IS_DIR_SEPARATOR (endp
[-1]))
2735 nstore
[endp
-startp
] = DIR_SEPARATOR
;
2736 nstore
[endp
-startp
+1] = 0;
2739 nstore
[endp
-startp
] = 0;
2740 add_prefix (&startfile_prefixes
, nstore
, NULL_PTR
,
2744 endp
= startp
= endp
+ 1;
2751 /* Convert new-style -- options to old-style. */
2752 translate_options (&argc
, &argv
);
2754 /* Do language-specific adjustment/addition of flags. */
2755 lang_specific_driver (&argc
, &argv
, &added_libraries
);
2757 /* Scan argv twice. Here, the first time, just count how many switches
2758 there will be in their vector, and how many input files in theirs.
2759 Here we also parse the switches that cc itself uses (e.g. -v). */
2761 for (i
= 1; i
< argc
; i
++)
2763 if (! strcmp (argv
[i
], "-dumpspecs"))
2765 struct spec_list
*sl
;
2767 for (sl
= specs
; sl
; sl
= sl
->next
)
2768 printf ("*%s:\n%s\n\n", sl
->name
, *(sl
->ptr_spec
));
2769 if (link_command_spec
)
2770 printf ("*link_command:\n%s\n\n", link_command_spec
);
2773 else if (! strcmp (argv
[i
], "-dumpversion"))
2775 printf ("%s\n", spec_version
);
2778 else if (! strcmp (argv
[i
], "-dumpmachine"))
2780 printf ("%s\n", spec_machine
);
2783 else if (strcmp (argv
[i
], "-fhelp") == 0)
2785 /* translate_options () has turned --help into -fhelp. */
2786 print_help_list
= 1;
2788 /* We will be passing a dummy file on to the sub-processes. */
2792 add_preprocessor_option ("--help", 6);
2793 add_assembler_option ("--help", 6);
2794 add_linker_option ("--help", 6);
2796 else if (! strcmp (argv
[i
], "-print-search-dirs"))
2797 print_search_dirs
= 1;
2798 else if (! strcmp (argv
[i
], "-print-libgcc-file-name"))
2799 print_file_name
= "libgcc.a";
2800 else if (! strncmp (argv
[i
], "-print-file-name=", 17))
2801 print_file_name
= argv
[i
] + 17;
2802 else if (! strncmp (argv
[i
], "-print-prog-name=", 17))
2803 print_prog_name
= argv
[i
] + 17;
2804 else if (! strcmp (argv
[i
], "-print-multi-lib"))
2805 print_multi_lib
= 1;
2806 else if (! strcmp (argv
[i
], "-print-multi-directory"))
2807 print_multi_directory
= 1;
2808 else if (! strncmp (argv
[i
], "-Wa,", 4))
2811 /* Pass the rest of this option to the assembler. */
2813 /* Split the argument at commas. */
2815 for (j
= 4; argv
[i
][j
]; j
++)
2816 if (argv
[i
][j
] == ',')
2818 add_assembler_option (argv
[i
] + prev
, j
- prev
);
2822 /* Record the part after the last comma. */
2823 add_assembler_option (argv
[i
] + prev
, j
- prev
);
2825 else if (! strncmp (argv
[i
], "-Wp,", 4))
2828 /* Pass the rest of this option to the preprocessor. */
2830 /* Split the argument at commas. */
2832 for (j
= 4; argv
[i
][j
]; j
++)
2833 if (argv
[i
][j
] == ',')
2835 add_preprocessor_option (argv
[i
] + prev
, j
- prev
);
2839 /* Record the part after the last comma. */
2840 add_preprocessor_option (argv
[i
] + prev
, j
- prev
);
2842 else if (argv
[i
][0] == '+' && argv
[i
][1] == 'e')
2843 /* The +e options to the C++ front-end. */
2845 else if (strncmp (argv
[i
], "-Wl,", 4) == 0)
2848 /* Split the argument at commas. */
2849 for (j
= 3; argv
[i
][j
]; j
++)
2850 n_infiles
+= (argv
[i
][j
] == ',');
2852 else if (strcmp (argv
[i
], "-Xlinker") == 0)
2855 fatal ("argument to `-Xlinker' is missing");
2860 else if (strncmp (argv
[i
], "-l", 2) == 0)
2862 else if (strcmp (argv
[i
], "-save-temps") == 0)
2864 save_temps_flag
= 1;
2867 else if (strcmp (argv
[i
], "-specs") == 0)
2869 struct user_specs
*user
= (struct user_specs
*)
2870 xmalloc (sizeof (struct user_specs
));
2872 fatal ("argument to `-specs' is missing");
2874 user
->next
= (struct user_specs
*)0;
2875 user
->filename
= argv
[i
];
2876 if (user_specs_tail
)
2877 user_specs_tail
->next
= user
;
2879 user_specs_head
= user
;
2880 user_specs_tail
= user
;
2882 else if (strncmp (argv
[i
], "-specs=", 7) == 0)
2884 struct user_specs
*user
= (struct user_specs
*)
2885 xmalloc (sizeof (struct user_specs
));
2886 if (strlen (argv
[i
]) == 7)
2887 fatal ("argument to `-specs=' is missing");
2889 user
->next
= (struct user_specs
*)0;
2890 user
->filename
= argv
[i
]+7;
2891 if (user_specs_tail
)
2892 user_specs_tail
->next
= user
;
2894 user_specs_head
= user
;
2895 user_specs_tail
= user
;
2897 else if (strcmp (argv
[i
], "-time") == 0)
2899 else if (argv
[i
][0] == '-' && argv
[i
][1] != 0)
2901 register char *p
= &argv
[i
][1];
2902 register int c
= *p
;
2908 if (p
[1] == 0 && i
+ 1 == argc
)
2909 fatal ("argument to `-b' is missing");
2911 spec_machine
= argv
[++i
];
2913 spec_machine
= p
+ 1;
2915 warn_std_ptr
= &warn_std
;
2921 if (p
[1] == 0 && i
+ 1 == argc
)
2922 fatal ("argument to `-B' is missing");
2927 add_prefix (&exec_prefixes
, value
, NULL_PTR
, 1, 0, &warn_B
);
2928 add_prefix (&startfile_prefixes
, value
, NULL_PTR
,
2930 add_prefix (&include_prefixes
, concat (value
, "include",
2932 NULL_PTR
, 1, 0, NULL_PTR
);
2934 /* As a kludge, if the arg is "[foo/]stageN/", just add
2935 "[foo/]include" to the include prefix. */
2937 int len
= strlen (value
);
2940 && (IS_DIR_SEPARATOR (value
[len
- 8]))))
2941 && strncmp (value
+ len
- 7, "stage", 5) == 0
2942 && ISDIGIT (value
[len
- 2])
2943 && (IS_DIR_SEPARATOR (value
[len
- 1])))
2946 add_prefix (&include_prefixes
, "include", NULL_PTR
,
2950 char *string
= xmalloc (len
+ 1);
2951 strncpy (string
, value
, len
-7);
2952 strcpy (string
+len
-7, "include");
2953 add_prefix (&include_prefixes
, string
, NULL_PTR
,
2962 case 'v': /* Print our subcommands and print versions. */
2964 /* If they do anything other than exactly `-v', don't set
2965 verbose_flag; rather, continue on to give the error. */
2973 if (p
[1] == 0 && i
+ 1 == argc
)
2974 fatal ("argument to `-V' is missing");
2976 spec_version
= argv
[++i
];
2978 spec_version
= p
+ 1;
2979 compiler_version
= spec_version
;
2980 warn_std_ptr
= &warn_std
;
2982 /* Validate the version number. Use the same checks
2983 done when inserting it into a spec.
2985 The format of the version string is
2986 ([^0-9]*-)?[0-9]+[.][0-9]+([.][0-9]+)?([- ].*)? */
2988 const char *v
= compiler_version
;
2990 /* Ignore leading non-digits. i.e. "foo-" in "foo-2.7.2". */
2991 while (! ISDIGIT (*v
))
2994 if (v
> compiler_version
&& v
[-1] != '-')
2995 fatal ("invalid version number format");
2997 /* Set V after the first period. */
2998 while (ISDIGIT (*v
))
3002 fatal ("invalid version number format");
3005 while (ISDIGIT (*v
))
3008 if (*v
!= 0 && *v
!= ' ' && *v
!= '.' && *v
!= '-')
3009 fatal ("invalid version number format");
3025 #if defined(HAVE_EXECUTABLE_SUFFIX)
3030 /* Forward scan, just in case -S or -c is specified
3037 if (argv
[j
][0] == '-')
3039 if (SWITCH_CURTAILS_COMPILATION (argv
[j
][1])
3045 else if (skip
= SWITCH_TAKES_ARG (argv
[j
][1]))
3046 j
+= skip
- (argv
[j
][2] != 0);
3047 else if (skip
= WORD_SWITCH_TAKES_ARG (argv
[j
] + 1))
3054 #if defined(HAVE_EXECUTABLE_SUFFIX) || defined(HAVE_OBJECT_SUFFIX)
3056 argv
[i
+1] = convert_filename (argv
[i
+1], ! have_c
);
3058 argv
[i
] = convert_filename (argv
[i
], ! have_c
);
3066 if (SWITCH_TAKES_ARG (c
) > (p
[1] != 0))
3067 i
+= SWITCH_TAKES_ARG (c
) - (p
[1] != 0);
3068 else if (WORD_SWITCH_TAKES_ARG (p
))
3069 i
+= WORD_SWITCH_TAKES_ARG (p
);
3079 if (have_c
&& have_o
&& lang_n_infiles
> 1)
3080 fatal ("cannot specify -o with -c or -S and multiple compilations");
3082 /* Set up the search paths before we go looking for config files. */
3084 /* These come before the md prefixes so that we will find gcc's subcommands
3085 (such as cpp) rather than those of the host system. */
3086 /* Use 2 as fourth arg meaning try just the machine as a suffix,
3087 as well as trying the machine and the version. */
3089 add_prefix (&exec_prefixes
, standard_exec_prefix
, "BINUTILS",
3090 0, 2, warn_std_ptr
);
3091 add_prefix (&exec_prefixes
, standard_exec_prefix_1
, "BINUTILS",
3092 0, 2, warn_std_ptr
);
3095 add_prefix (&startfile_prefixes
, standard_exec_prefix
, "BINUTILS",
3096 0, 1, warn_std_ptr
);
3097 add_prefix (&startfile_prefixes
, standard_exec_prefix_1
, "BINUTILS",
3098 0, 1, warn_std_ptr
);
3100 tooldir_prefix
= concat (tooldir_base_prefix
, spec_machine
,
3101 dir_separator_str
, NULL_PTR
);
3103 /* If tooldir is relative, base it on exec_prefixes. A relative
3104 tooldir lets us move the installed tree as a unit.
3106 If GCC_EXEC_PREFIX is defined, then we want to add two relative
3107 directories, so that we can search both the user specified directory
3108 and the standard place. */
3110 if (!IS_DIR_SEPARATOR (*tooldir_prefix
))
3112 if (gcc_exec_prefix
)
3114 char *gcc_exec_tooldir_prefix
3115 = concat (gcc_exec_prefix
, spec_machine
, dir_separator_str
,
3116 spec_version
, dir_separator_str
, tooldir_prefix
, NULL_PTR
);
3118 add_prefix (&exec_prefixes
,
3119 concat (gcc_exec_tooldir_prefix
, "bin",
3120 dir_separator_str
, NULL_PTR
),
3121 NULL_PTR
, 0, 0, NULL_PTR
);
3122 add_prefix (&startfile_prefixes
,
3123 concat (gcc_exec_tooldir_prefix
, "lib",
3124 dir_separator_str
, NULL_PTR
),
3125 NULL_PTR
, 0, 0, NULL_PTR
);
3128 tooldir_prefix
= concat (standard_exec_prefix
, spec_machine
,
3129 dir_separator_str
, spec_version
,
3130 dir_separator_str
, tooldir_prefix
, NULL_PTR
);
3133 add_prefix (&exec_prefixes
,
3134 concat (tooldir_prefix
, "bin", dir_separator_str
, NULL_PTR
),
3135 "BINUTILS", 0, 0, NULL_PTR
);
3136 add_prefix (&startfile_prefixes
,
3137 concat (tooldir_prefix
, "lib", dir_separator_str
, NULL_PTR
),
3138 "BINUTILS", 0, 0, NULL_PTR
);
3140 /* More prefixes are enabled in main, after we read the specs file
3141 and determine whether this is cross-compilation or not. */
3144 /* Then create the space for the vectors and scan again. */
3146 switches
= ((struct switchstr
*)
3147 xmalloc ((n_switches
+ 1) * sizeof (struct switchstr
)));
3148 infiles
= (struct infile
*) xmalloc ((n_infiles
+ 1) * sizeof (struct infile
));
3151 last_language_n_infiles
= -1;
3153 /* This, time, copy the text of each switch and store a pointer
3154 to the copy in the vector of switches.
3155 Store all the infiles in their vector. */
3157 for (i
= 1; i
< argc
; i
++)
3159 /* Just skip the switches that were handled by the preceding loop. */
3160 if (! strncmp (argv
[i
], "-Wa,", 4))
3162 else if (! strncmp (argv
[i
], "-Wp,", 4))
3164 else if (! strcmp (argv
[i
], "-print-search-dirs"))
3166 else if (! strcmp (argv
[i
], "-print-libgcc-file-name"))
3168 else if (! strncmp (argv
[i
], "-print-file-name=", 17))
3170 else if (! strncmp (argv
[i
], "-print-prog-name=", 17))
3172 else if (! strcmp (argv
[i
], "-print-multi-lib"))
3174 else if (! strcmp (argv
[i
], "-print-multi-directory"))
3176 else if (strcmp (argv
[i
], "-fhelp") == 0)
3180 /* Create a dummy input file, so that we can pass --help on to
3181 the various sub-processes. */
3182 infiles
[n_infiles
].language
= "c";
3183 infiles
[n_infiles
++].name
= "help-dummy";
3185 /* Preserve the --help switch so that it can be caught by the
3187 switches
[n_switches
].part1
= "--help";
3188 switches
[n_switches
].args
= 0;
3189 switches
[n_switches
].live_cond
= 0;
3190 switches
[n_switches
].validated
= 0;
3195 else if (argv
[i
][0] == '+' && argv
[i
][1] == 'e')
3197 /* Compensate for the +e options to the C++ front-end;
3198 they're there simply for cfront call-compatibility. We do
3199 some magic in default_compilers to pass them down properly.
3200 Note we deliberately start at the `+' here, to avoid passing
3201 -e0 or -e1 down into the linker. */
3202 switches
[n_switches
].part1
= &argv
[i
][0];
3203 switches
[n_switches
].args
= 0;
3204 switches
[n_switches
].live_cond
= 0;
3205 switches
[n_switches
].validated
= 0;
3208 else if (strncmp (argv
[i
], "-Wl,", 4) == 0)
3211 /* Split the argument at commas. */
3213 for (j
= 4; argv
[i
][j
]; j
++)
3214 if (argv
[i
][j
] == ',')
3216 infiles
[n_infiles
].language
= "*";
3217 infiles
[n_infiles
++].name
3218 = save_string (argv
[i
] + prev
, j
- prev
);
3221 /* Record the part after the last comma. */
3222 infiles
[n_infiles
].language
= "*";
3223 infiles
[n_infiles
++].name
= argv
[i
] + prev
;
3225 else if (strcmp (argv
[i
], "-Xlinker") == 0)
3227 infiles
[n_infiles
].language
= "*";
3228 infiles
[n_infiles
++].name
= argv
[++i
];
3230 else if (strncmp (argv
[i
], "-l", 2) == 0)
3232 infiles
[n_infiles
].language
= "*";
3233 infiles
[n_infiles
++].name
= argv
[i
];
3235 else if (strcmp (argv
[i
], "-specs") == 0)
3237 else if (strncmp (argv
[i
], "-specs=", 7) == 0)
3239 else if (strcmp (argv
[i
], "-time") == 0)
3241 else if ((save_temps_flag
|| report_times
)
3242 && strcmp (argv
[i
], "-pipe") == 0)
3244 /* -save-temps overrides -pipe, so that temp files are produced */
3245 if (save_temps_flag
)
3246 error ("Warning: -pipe ignored since -save-temps specified");
3247 /* -time overrides -pipe because we can't get correct stats when
3248 multiple children are running at once. */
3249 else if (report_times
)
3250 error ("Warning: -pipe ignored since -time specified");
3252 else if (argv
[i
][0] == '-' && argv
[i
][1] != 0)
3254 register char *p
= &argv
[i
][1];
3255 register int c
= *p
;
3259 if (p
[1] == 0 && i
+ 1 == argc
)
3260 fatal ("argument to `-x' is missing");
3262 spec_lang
= argv
[++i
];
3265 if (! strcmp (spec_lang
, "none"))
3266 /* Suppress the warning if -xnone comes after the last input
3267 file, because alternate command interfaces like g++ might
3268 find it useful to place -xnone after each input file. */
3271 last_language_n_infiles
= n_infiles
;
3274 switches
[n_switches
].part1
= p
;
3275 /* Deal with option arguments in separate argv elements. */
3276 if ((SWITCH_TAKES_ARG (c
) > (p
[1] != 0))
3277 || WORD_SWITCH_TAKES_ARG (p
))
3280 int n_args
= WORD_SWITCH_TAKES_ARG (p
);
3284 /* Count only the option arguments in separate argv elements. */
3285 n_args
= SWITCH_TAKES_ARG (c
) - (p
[1] != 0);
3287 if (i
+ n_args
>= argc
)
3288 fatal ("argument to `-%s' is missing", p
);
3289 switches
[n_switches
].args
3290 = (char **) xmalloc ((n_args
+ 1) * sizeof (char *));
3292 switches
[n_switches
].args
[j
++] = argv
[++i
];
3293 /* Null-terminate the vector. */
3294 switches
[n_switches
].args
[j
] = 0;
3296 else if (index (switches_need_spaces
, c
))
3298 /* On some systems, ld cannot handle some options without
3299 a space. So split the option from its argument. */
3300 char *part1
= (char *) xmalloc (2);
3304 switches
[n_switches
].part1
= part1
;
3305 switches
[n_switches
].args
= (char **) xmalloc (2 * sizeof (char *));
3306 switches
[n_switches
].args
[0] = xmalloc (strlen (p
));
3307 strcpy (switches
[n_switches
].args
[0], &p
[1]);
3308 switches
[n_switches
].args
[1] = 0;
3311 switches
[n_switches
].args
= 0;
3313 switches
[n_switches
].live_cond
= 0;
3314 switches
[n_switches
].validated
= 0;
3315 /* This is always valid, since gcc.c itself understands it. */
3316 if (!strcmp (p
, "save-temps"))
3317 switches
[n_switches
].validated
= 1;
3320 char ch
= switches
[n_switches
].part1
[0];
3321 if (ch
== 'V' || ch
== 'b' || ch
== 'B')
3322 switches
[n_switches
].validated
= 1;
3328 #ifdef HAVE_OBJECT_SUFFIX
3329 argv
[i
] = convert_filename (argv
[i
], 0);
3332 if (strcmp (argv
[i
], "-") != 0 && access (argv
[i
], R_OK
) < 0)
3334 perror_with_name (argv
[i
]);
3339 infiles
[n_infiles
].language
= spec_lang
;
3340 infiles
[n_infiles
++].name
= argv
[i
];
3345 if (n_infiles
== last_language_n_infiles
&& spec_lang
!= 0)
3346 error ("Warning: `-x %s' after last input file has no effect", spec_lang
);
3348 switches
[n_switches
].part1
= 0;
3349 infiles
[n_infiles
].name
= 0;
3352 /* Process a spec string, accumulating and running commands. */
3354 /* These variables describe the input file name.
3355 input_file_number is the index on outfiles of this file,
3356 so that the output file name can be stored for later use by %o.
3357 input_basename is the start of the part of the input file
3358 sans all directory names, and basename_length is the number
3359 of characters starting there excluding the suffix .c or whatever. */
3361 const char *input_filename
;
3362 static int input_file_number
;
3363 size_t input_filename_length
;
3364 static int basename_length
;
3365 static const char *input_basename
;
3366 static const char *input_suffix
;
3368 /* These are variables used within do_spec and do_spec_1. */
3370 /* Nonzero if an arg has been started and not yet terminated
3371 (with space, tab or newline). */
3372 static int arg_going
;
3374 /* Nonzero means %d or %g has been seen; the next arg to be terminated
3375 is a temporary file name. */
3376 static int delete_this_arg
;
3378 /* Nonzero means %w has been seen; the next arg to be terminated
3379 is the output file name of this compilation. */
3380 static int this_is_output_file
;
3382 /* Nonzero means %s has been seen; the next arg to be terminated
3383 is the name of a library file and we should try the standard
3384 search dirs for it. */
3385 static int this_is_library_file
;
3387 /* Nonzero means that the input of this command is coming from a pipe. */
3388 static int input_from_pipe
;
3390 /* Process the spec SPEC and run the commands specified therein.
3391 Returns 0 if the spec is successfully processed; -1 if failed. */
3401 delete_this_arg
= 0;
3402 this_is_output_file
= 0;
3403 this_is_library_file
= 0;
3404 input_from_pipe
= 0;
3406 value
= do_spec_1 (spec
, 0, NULL_PTR
);
3408 /* Force out any unfinished command.
3409 If -pipe, this forces out the last command if it ended in `|'. */
3412 if (argbuf_index
> 0 && !strcmp (argbuf
[argbuf_index
- 1], "|"))
3415 if (argbuf_index
> 0)
3422 /* Process the sub-spec SPEC as a portion of a larger spec.
3423 This is like processing a whole spec except that we do
3424 not initialize at the beginning and we do not supply a
3425 newline by default at the end.
3426 INSWITCH nonzero means don't process %-sequences in SPEC;
3427 in this case, % is treated as an ordinary character.
3428 This is used while substituting switches.
3429 INSWITCH nonzero also causes SPC not to terminate an argument.
3431 Value is zero unless a line was finished
3432 and the command on that line reported an error. */
3435 do_spec_1 (spec
, inswitch
, soft_matched_part
)
3438 const char *soft_matched_part
;
3440 register const char *p
= spec
;
3447 /* If substituting a switch, treat all chars like letters.
3448 Otherwise, NL, SPC, TAB and % are special. */
3449 switch (inswitch
? 'a' : c
)
3452 /* End of line: finish any pending argument,
3453 then run the pending command if one has been started. */
3456 obstack_1grow (&obstack
, 0);
3457 string
= obstack_finish (&obstack
);
3458 if (this_is_library_file
)
3459 string
= find_file (string
);
3460 store_arg (string
, delete_this_arg
, this_is_output_file
);
3461 if (this_is_output_file
)
3462 outfiles
[input_file_number
] = string
;
3466 if (argbuf_index
> 0 && !strcmp (argbuf
[argbuf_index
- 1], "|"))
3468 for (i
= 0; i
< n_switches
; i
++)
3469 if (!strcmp (switches
[i
].part1
, "pipe"))
3472 /* A `|' before the newline means use a pipe here,
3473 but only if -pipe was specified.
3474 Otherwise, execute now and don't pass the `|' as an arg. */
3477 input_from_pipe
= 1;
3478 switches
[i
].validated
= 1;
3485 if (argbuf_index
> 0)
3491 /* Reinitialize for a new command, and for a new argument. */
3494 delete_this_arg
= 0;
3495 this_is_output_file
= 0;
3496 this_is_library_file
= 0;
3497 input_from_pipe
= 0;
3501 /* End any pending argument. */
3504 obstack_1grow (&obstack
, 0);
3505 string
= obstack_finish (&obstack
);
3506 if (this_is_library_file
)
3507 string
= find_file (string
);
3508 store_arg (string
, delete_this_arg
, this_is_output_file
);
3509 if (this_is_output_file
)
3510 outfiles
[input_file_number
] = string
;
3514 obstack_1grow (&obstack
, c
);
3520 /* Space or tab ends an argument if one is pending. */
3523 obstack_1grow (&obstack
, 0);
3524 string
= obstack_finish (&obstack
);
3525 if (this_is_library_file
)
3526 string
= find_file (string
);
3527 store_arg (string
, delete_this_arg
, this_is_output_file
);
3528 if (this_is_output_file
)
3529 outfiles
[input_file_number
] = string
;
3531 /* Reinitialize for a new argument. */
3533 delete_this_arg
= 0;
3534 this_is_output_file
= 0;
3535 this_is_library_file
= 0;
3542 fatal ("Invalid specification! Bug in cc.");
3545 obstack_grow (&obstack
, input_basename
, basename_length
);
3550 delete_this_arg
= 2;
3553 /* Dump out the directories specified with LIBRARY_PATH,
3554 followed by the absolute directories
3555 that we search for startfiles. */
3558 struct prefix_list
*pl
= startfile_prefixes
.plist
;
3559 size_t bufsize
= 100;
3560 char *buffer
= (char *) xmalloc (bufsize
);
3563 for (; pl
; pl
= pl
->next
)
3565 #ifdef RELATIVE_PREFIX_NOT_LINKDIR
3566 /* Used on systems which record the specified -L dirs
3567 and use them to search for dynamic linking. */
3568 /* Relative directories always come from -B,
3569 and it is better not to use them for searching
3570 at run time. In particular, stage1 loses */
3571 if (!IS_DIR_SEPARATOR (pl
->prefix
[0]))
3574 /* Try subdirectory if there is one. */
3575 if (multilib_dir
!= NULL
)
3579 if (strlen (pl
->prefix
) + strlen (machine_suffix
)
3581 bufsize
= (strlen (pl
->prefix
)
3582 + strlen (machine_suffix
)) * 2 + 1;
3583 buffer
= (char *) xrealloc (buffer
, bufsize
);
3584 strcpy (buffer
, pl
->prefix
);
3585 strcat (buffer
, machine_suffix
);
3586 if (is_directory (buffer
, multilib_dir
, 1))
3588 do_spec_1 ("-L", 0, NULL_PTR
);
3589 #ifdef SPACE_AFTER_L_OPTION
3590 do_spec_1 (" ", 0, NULL_PTR
);
3592 do_spec_1 (buffer
, 1, NULL_PTR
);
3593 do_spec_1 (multilib_dir
, 1, NULL_PTR
);
3594 /* Make this a separate argument. */
3595 do_spec_1 (" ", 0, NULL_PTR
);
3598 if (!pl
->require_machine_suffix
)
3600 if (is_directory (pl
->prefix
, multilib_dir
, 1))
3602 do_spec_1 ("-L", 0, NULL_PTR
);
3603 #ifdef SPACE_AFTER_L_OPTION
3604 do_spec_1 (" ", 0, NULL_PTR
);
3606 do_spec_1 (pl
->prefix
, 1, NULL_PTR
);
3607 do_spec_1 (multilib_dir
, 1, NULL_PTR
);
3608 /* Make this a separate argument. */
3609 do_spec_1 (" ", 0, NULL_PTR
);
3615 if (is_directory (pl
->prefix
, machine_suffix
, 1))
3617 do_spec_1 ("-L", 0, NULL_PTR
);
3618 #ifdef SPACE_AFTER_L_OPTION
3619 do_spec_1 (" ", 0, NULL_PTR
);
3621 do_spec_1 (pl
->prefix
, 1, NULL_PTR
);
3622 /* Remove slash from machine_suffix. */
3623 if (strlen (machine_suffix
) >= bufsize
)
3624 bufsize
= strlen (machine_suffix
) * 2 + 1;
3625 buffer
= (char *) xrealloc (buffer
, bufsize
);
3626 strcpy (buffer
, machine_suffix
);
3627 idx
= strlen (buffer
);
3628 if (IS_DIR_SEPARATOR (buffer
[idx
- 1]))
3629 buffer
[idx
- 1] = 0;
3630 do_spec_1 (buffer
, 1, NULL_PTR
);
3631 /* Make this a separate argument. */
3632 do_spec_1 (" ", 0, NULL_PTR
);
3635 if (!pl
->require_machine_suffix
)
3637 if (is_directory (pl
->prefix
, "", 1))
3639 do_spec_1 ("-L", 0, NULL_PTR
);
3640 #ifdef SPACE_AFTER_L_OPTION
3641 do_spec_1 (" ", 0, NULL_PTR
);
3643 /* Remove slash from pl->prefix. */
3644 if (strlen (pl
->prefix
) >= bufsize
)
3645 bufsize
= strlen (pl
->prefix
) * 2 + 1;
3646 buffer
= (char *) xrealloc (buffer
, bufsize
);
3647 strcpy (buffer
, pl
->prefix
);
3648 idx
= strlen (buffer
);
3649 if (IS_DIR_SEPARATOR (buffer
[idx
- 1]))
3650 buffer
[idx
- 1] = 0;
3651 do_spec_1 (buffer
, 1, NULL_PTR
);
3652 /* Make this a separate argument. */
3653 do_spec_1 (" ", 0, NULL_PTR
);
3662 /* %efoo means report an error with `foo' as error message
3663 and don't execute any more commands for this file. */
3667 while (*p
!= 0 && *p
!= '\n') p
++;
3668 buf
= (char *) alloca (p
- q
+ 1);
3669 strncpy (buf
, q
, p
- q
);
3679 if (save_temps_flag
)
3681 obstack_grow (&obstack
, input_basename
, basename_length
);
3682 delete_this_arg
= 0;
3686 #ifdef MKTEMP_EACH_FILE
3687 /* ??? This has a problem: the total number of
3688 values mktemp can return is limited.
3689 That matters for the names of object files.
3690 In 2.4, do something about that. */
3691 struct temp_name
*t
;
3693 const char *suffix
= p
;
3695 if (p
[0] == '%' && p
[1] == 'O')
3698 /* We don't support extra suffix characters after %O. */
3699 if (*p
== '.' || ISALPHA ((unsigned char)*p
))
3701 suffix
= OBJECT_SUFFIX
;
3702 suffix_length
= strlen (OBJECT_SUFFIX
);
3706 while (*p
== '.' || ISALPHA ((unsigned char)*p
))
3708 suffix_length
= p
- suffix
;
3711 /* See if we already have an association of %g/%u/%U and
3713 for (t
= temp_names
; t
; t
= t
->next
)
3714 if (t
->length
== suffix_length
3715 && strncmp (t
->suffix
, suffix
, suffix_length
) == 0
3716 && t
->unique
== (c
!= 'g'))
3719 /* Make a new association if needed. %u requires one. */
3720 if (t
== 0 || c
== 'u')
3724 t
= (struct temp_name
*) xmalloc (sizeof (struct temp_name
));
3725 t
->next
= temp_names
;
3728 t
->length
= suffix_length
;
3729 t
->suffix
= save_string (suffix
, suffix_length
);
3730 t
->unique
= (c
!= 'g');
3731 temp_filename
= make_temp_file (t
->suffix
);
3732 temp_filename_length
= strlen (temp_filename
);
3733 t
->filename
= temp_filename
;
3734 t
->filename_length
= temp_filename_length
;
3737 obstack_grow (&obstack
, t
->filename
, t
->filename_length
);
3738 delete_this_arg
= 1;
3740 obstack_grow (&obstack
, temp_filename
, temp_filename_length
);
3741 if (c
== 'u' || c
== 'U')
3747 sprintf (buff
, "%d", unique
);
3748 obstack_grow (&obstack
, buff
, strlen (buff
));
3751 delete_this_arg
= 1;
3757 obstack_grow (&obstack
, input_filename
, input_filename_length
);
3763 struct prefix_list
*pl
= include_prefixes
.plist
;
3765 if (gcc_exec_prefix
)
3767 do_spec_1 ("-iprefix", 1, NULL_PTR
);
3768 /* Make this a separate argument. */
3769 do_spec_1 (" ", 0, NULL_PTR
);
3770 do_spec_1 (gcc_exec_prefix
, 1, NULL_PTR
);
3771 do_spec_1 (" ", 0, NULL_PTR
);
3774 for (; pl
; pl
= pl
->next
)
3776 do_spec_1 ("-isystem", 1, NULL_PTR
);
3777 /* Make this a separate argument. */
3778 do_spec_1 (" ", 0, NULL_PTR
);
3779 do_spec_1 (pl
->prefix
, 1, NULL_PTR
);
3780 do_spec_1 (" ", 0, NULL_PTR
);
3787 int max
= n_infiles
;
3788 max
+= lang_specific_extra_outfiles
;
3790 for (i
= 0; i
< max
; i
++)
3792 store_arg (outfiles
[i
], 0, 0);
3797 obstack_grow (&obstack
, OBJECT_SUFFIX
, strlen (OBJECT_SUFFIX
));
3802 this_is_library_file
= 1;
3806 this_is_output_file
= 1;
3811 int cur_index
= argbuf_index
;
3812 /* Handle the {...} following the %W. */
3815 p
= handle_braces (p
+ 1);
3818 /* If any args were output, mark the last one for deletion
3820 if (argbuf_index
!= cur_index
)
3821 record_temp_file (argbuf
[argbuf_index
- 1], 0, 1);
3825 /* %x{OPTION} records OPTION for %X to output. */
3831 /* Skip past the option value and make a copy. */
3836 string
= save_string (p1
+ 1, p
- p1
- 2);
3838 /* See if we already recorded this option. */
3839 for (i
= 0; i
< n_linker_options
; i
++)
3840 if (! strcmp (string
, linker_options
[i
]))
3846 /* This option is new; add it. */
3847 add_linker_option (string
, strlen (string
));
3851 /* Dump out the options accumulated previously using %x. */
3853 for (i
= 0; i
< n_linker_options
; i
++)
3855 do_spec_1 (linker_options
[i
], 1, NULL_PTR
);
3856 /* Make each accumulated option a separate argument. */
3857 do_spec_1 (" ", 0, NULL_PTR
);
3861 /* Dump out the options accumulated previously using -Wa,. */
3863 for (i
= 0; i
< n_assembler_options
; i
++)
3865 do_spec_1 (assembler_options
[i
], 1, NULL_PTR
);
3866 /* Make each accumulated option a separate argument. */
3867 do_spec_1 (" ", 0, NULL_PTR
);
3871 /* Dump out the options accumulated previously using -Wp,. */
3873 for (i
= 0; i
< n_preprocessor_options
; i
++)
3875 do_spec_1 (preprocessor_options
[i
], 1, NULL_PTR
);
3876 /* Make each accumulated option a separate argument. */
3877 do_spec_1 (" ", 0, NULL_PTR
);
3881 /* Here are digits and numbers that just process
3882 a certain constant string as a spec. */
3885 value
= do_spec_1 (cc1_spec
, 0, NULL_PTR
);
3891 value
= do_spec_1 (cc1plus_spec
, 0, NULL_PTR
);
3897 value
= do_spec_1 (asm_spec
, 0, NULL_PTR
);
3903 value
= do_spec_1 (asm_final_spec
, 0, NULL_PTR
);
3909 value
= do_spec_1 (signed_char_spec
, 0, NULL_PTR
);
3915 value
= do_spec_1 (cpp_spec
, 0, NULL_PTR
);
3921 value
= do_spec_1 (endfile_spec
, 0, NULL_PTR
);
3927 value
= do_spec_1 (link_spec
, 0, NULL_PTR
);
3933 value
= do_spec_1 (lib_spec
, 0, NULL_PTR
);
3939 value
= do_spec_1 (libgcc_spec
, 0, NULL_PTR
);
3946 char *x
= (char *) alloca (strlen (cpp_predefines
) + 1);
3950 /* Copy all of the -D options in CPP_PREDEFINES into BUF. */
3954 if (! strncmp (y
, "-D", 2))
3955 /* Copy the whole option. */
3956 while (*y
&& *y
!= ' ' && *y
!= '\t')
3958 else if (*y
== ' ' || *y
== '\t')
3959 /* Copy whitespace to the result. */
3961 /* Don't copy other options. */
3968 value
= do_spec_1 (buf
, 0, NULL_PTR
);
3976 char *x
= (char *) alloca (strlen (cpp_predefines
) * 4 + 1);
3980 /* Copy all of CPP_PREDEFINES into BUF,
3981 but put __ after every -D and at the end of each arg. */
3985 if (! strncmp (y
, "-D", 2))
3994 && ! ISUPPER ((unsigned char)*(y
+1))))
3996 /* Stick __ at front of macro name. */
3999 /* Arrange to stick __ at the end as well. */
4003 /* Copy the macro name. */
4004 while (*y
&& *y
!= '=' && *y
!= ' ' && *y
!= '\t')
4013 /* Copy the value given, if any. */
4014 while (*y
&& *y
!= ' ' && *y
!= '\t')
4017 else if (*y
== ' ' || *y
== '\t')
4018 /* Copy whitespace to the result. */
4020 /* Don't copy -A options */
4026 /* Copy all of CPP_PREDEFINES into BUF,
4027 but put __ after every -D. */
4031 if (! strncmp (y
, "-D", 2))
4037 && ! ISUPPER ((unsigned char)*(y
+1))))
4039 /* Stick -D__ at front of macro name. */
4045 /* Copy the macro name. */
4046 while (*y
&& *y
!= '=' && *y
!= ' ' && *y
!= '\t')
4049 /* Copy the value given, if any. */
4050 while (*y
&& *y
!= ' ' && *y
!= '\t')
4055 /* Do not copy this macro - we have just done it before */
4056 while (*y
&& *y
!= ' ' && *y
!= '\t')
4060 else if (*y
== ' ' || *y
== '\t')
4061 /* Copy whitespace to the result. */
4063 /* Don't copy -A options */
4069 /* Copy all of the -A options in CPP_PREDEFINES into BUF. */
4073 if (! strncmp (y
, "-A", 2))
4074 /* Copy the whole option. */
4075 while (*y
&& *y
!= ' ' && *y
!= '\t')
4077 else if (*y
== ' ' || *y
== '\t')
4078 /* Copy whitespace to the result. */
4080 /* Don't copy other options. */
4087 value
= do_spec_1 (buf
, 0, NULL_PTR
);
4094 value
= do_spec_1 (startfile_spec
, 0, NULL_PTR
);
4099 /* Here we define characters other than letters and digits. */
4102 p
= handle_braces (p
);
4108 obstack_1grow (&obstack
, '%');
4112 do_spec_1 (soft_matched_part
, 1, NULL_PTR
);
4113 do_spec_1 (" ", 0, NULL_PTR
);
4116 /* Process a string found as the value of a spec given by name.
4117 This feature allows individual machine descriptions
4118 to add and use their own specs.
4119 %[...] modifies -D options the way %P does;
4120 %(...) uses the spec unmodified. */
4122 error ("Warning: use of obsolete %%[ operator in specs");
4125 const char *name
= p
;
4126 struct spec_list
*sl
;
4129 /* The string after the S/P is the name of a spec that is to be
4131 while (*p
&& *p
!= ')' && *p
!= ']')
4134 /* See if it's in the list */
4135 for (len
= p
- name
, sl
= specs
; sl
; sl
= sl
->next
)
4136 if (sl
->name_len
== len
&& !strncmp (sl
->name
, name
, len
))
4138 name
= *(sl
->ptr_spec
);
4140 notice ("Processing spec %c%s%c, which is '%s'\n",
4141 c
, sl
->name
, (c
== '(') ? ')' : ']', name
);
4150 value
= do_spec_1 (name
, 0, NULL_PTR
);
4156 char *x
= (char *) alloca (strlen (name
) * 2 + 1);
4158 const char *y
= name
;
4161 /* Copy all of NAME into BUF, but put __ after
4162 every -D and at the end of each arg, */
4165 if (! strncmp (y
, "-D", 2))
4175 else if (flag
&& (*y
== ' ' || *y
== '\t' || *y
== '='
4176 || *y
== '}' || *y
== 0))
4189 value
= do_spec_1 (buf
, 0, NULL_PTR
);
4195 /* Discard the closing paren or bracket. */
4203 int c1
= *p
++; /* Select first or second version number. */
4204 char *v
= compiler_version
;
4207 /* The format of the version string is
4208 ([^0-9]*-)?[0-9]+[.][0-9]+([.][0-9]+)?([- ].*)? */
4210 /* Ignore leading non-digits. i.e. "foo-" in "foo-2.7.2". */
4211 while (! ISDIGIT (*v
))
4213 if (v
> compiler_version
&& v
[-1] != '-')
4216 /* If desired, advance to second version number. */
4219 /* Set V after the first period. */
4220 while (ISDIGIT (*v
))
4227 /* Set Q at the next period or at the end. */
4229 while (ISDIGIT (*q
))
4231 if (*q
!= 0 && *q
!= ' ' && *q
!= '.' && *q
!= '-')
4234 /* Put that part into the command. */
4235 obstack_grow (&obstack
, v
, q
- v
);
4241 if (input_from_pipe
)
4242 do_spec_1 ("-", 0, NULL_PTR
);
4251 /* Backslash: treat next character as ordinary. */
4256 /* Ordinary character: put it into the current argument. */
4257 obstack_1grow (&obstack
, c
);
4261 return 0; /* End of string */
4264 /* Return 0 if we call do_spec_1 and that returns -1. */
4268 register const char *p
;
4270 const char *filter
, *body
= NULL
, *endbody
= NULL
;
4274 int include_blanks
= 1;
4277 /* A '^' after the open-brace means to not give blanks before args. */
4278 include_blanks
= 0, ++p
;
4281 /* A `|' after the open-brace means,
4282 if the test fails, output a single minus sign rather than nothing.
4283 This is used in %{|!pipe:...}. */
4287 negate
= suffix
= 0;
4290 /* A `!' after the open-brace negates the condition:
4291 succeed if the specified switch is not present. */
4295 /* A `.' after the open-brace means test against the current suffix. */
4305 while (*p
!= ':' && *p
!= '}' && *p
!= '|') p
++;
4307 if (*p
== '|' && pipe_p
)
4314 register int count
= 1;
4315 register const char *q
= p
;
4317 while (*q
++ != ':') continue;
4333 body
= p
, endbody
= p
+1;
4338 int found
= (input_suffix
!= 0
4339 && (long) strlen (input_suffix
) == (long)(p
- filter
)
4340 && strncmp (input_suffix
, filter
, p
- filter
) == 0);
4346 && do_spec_1 (save_string (body
, endbody
-body
-1), 0, NULL_PTR
) < 0)
4349 else if (p
[-1] == '*' && p
[0] == '}')
4351 /* Substitute all matching switches as separate args. */
4354 for (i
= 0; i
< n_switches
; i
++)
4355 if (!strncmp (switches
[i
].part1
, filter
, p
- filter
)
4356 && check_live_switch (i
, p
- filter
))
4357 give_switch (i
, 0, include_blanks
);
4361 /* Test for presence of the specified switch. */
4365 /* If name specified ends in *, as in {x*:...},
4366 check for %* and handle that case. */
4367 if (p
[-1] == '*' && !negate
)
4370 const char *r
= body
;
4372 /* First see whether we have %*. */
4376 if (*r
== '%' && r
[1] == '*')
4380 /* If we do, handle that case. */
4383 /* Substitute all matching switches as separate args.
4384 But do this by substituting for %*
4385 in the text that follows the colon. */
4387 unsigned hard_match_len
= p
- filter
- 1;
4388 char *string
= save_string (body
, endbody
- body
- 1);
4390 for (i
= 0; i
< n_switches
; i
++)
4391 if (!strncmp (switches
[i
].part1
, filter
, hard_match_len
)
4392 && check_live_switch (i
, -1))
4394 do_spec_1 (string
, 0, &switches
[i
].part1
[hard_match_len
]);
4395 /* Pass any arguments this switch has. */
4396 give_switch (i
, 1, 1);
4399 /* We didn't match. Try again. */
4406 /* If name specified ends in *, as in {x*:...},
4407 check for presence of any switch name starting with x. */
4410 for (i
= 0; i
< n_switches
; i
++)
4412 unsigned hard_match_len
= p
- filter
- 1;
4414 if (!strncmp (switches
[i
].part1
, filter
, hard_match_len
)
4415 && check_live_switch (i
, hard_match_len
))
4421 /* Otherwise, check for presence of exact name specified. */
4424 for (i
= 0; i
< n_switches
; i
++)
4426 if (!strncmp (switches
[i
].part1
, filter
, p
- filter
)
4427 && switches
[i
].part1
[p
- filter
] == 0
4428 && check_live_switch (i
, -1))
4436 /* If it is as desired (present for %{s...}, absent for %{!s...})
4437 then substitute either the switch or the specified
4438 conditional text. */
4439 if (present
!= negate
)
4443 give_switch (i
, 0, include_blanks
);
4447 if (do_spec_1 (save_string (body
, endbody
- body
- 1),
4454 /* Here if a %{|...} conditional fails: output a minus sign,
4455 which means "standard output" or "standard input". */
4456 do_spec_1 ("-", 0, NULL_PTR
);
4461 /* We didn't match; try again. */
4468 /* Return 0 iff switch number SWITCHNUM is obsoleted by a later switch
4469 on the command line. PREFIX_LENGTH is the length of XXX in an {XXX*}
4470 spec, or -1 if either exact match or %* is used.
4472 A -O switch is obsoleted by a later -O switch. A -f, -m, or -W switch
4473 whose value does not begin with "no-" is obsoleted by the same value
4474 with the "no-", similarly for a switch with the "no-" prefix. */
4477 check_live_switch (switchnum
, prefix_length
)
4481 const char *name
= switches
[switchnum
].part1
;
4484 /* In the common case of {<at-most-one-letter>*}, a negating
4485 switch would always match, so ignore that case. We will just
4486 send the conflicting switches to the compiler phase. */
4487 if (prefix_length
>= 0 && prefix_length
<= 1)
4490 /* If we already processed this switch and determined if it was
4491 live or not, return our past determination. */
4492 if (switches
[switchnum
].live_cond
!= 0)
4493 return switches
[switchnum
].live_cond
> 0;
4495 /* Now search for duplicate in a manner that depends on the name. */
4499 for (i
= switchnum
+ 1; i
< n_switches
; i
++)
4500 if (switches
[i
].part1
[0] == 'O')
4502 switches
[switchnum
].validated
= 1;
4503 switches
[switchnum
].live_cond
= -1;
4508 case 'W': case 'f': case 'm':
4509 if (! strncmp (name
+ 1, "no-", 3))
4511 /* We have Xno-YYY, search for XYYY. */
4512 for (i
= switchnum
+ 1; i
< n_switches
; i
++)
4513 if (switches
[i
].part1
[0] == name
[0]
4514 && ! strcmp (&switches
[i
].part1
[1], &name
[4]))
4516 switches
[switchnum
].validated
= 1;
4517 switches
[switchnum
].live_cond
= -1;
4523 /* We have XYYY, search for Xno-YYY. */
4524 for (i
= switchnum
+ 1; i
< n_switches
; i
++)
4525 if (switches
[i
].part1
[0] == name
[0]
4526 && switches
[i
].part1
[1] == 'n'
4527 && switches
[i
].part1
[2] == 'o'
4528 && switches
[i
].part1
[3] == '-'
4529 && !strcmp (&switches
[i
].part1
[4], &name
[1]))
4531 switches
[switchnum
].validated
= 1;
4532 switches
[switchnum
].live_cond
= -1;
4539 /* Otherwise the switch is live. */
4540 switches
[switchnum
].live_cond
= 1;
4544 /* Pass a switch to the current accumulating command
4545 in the same form that we received it.
4546 SWITCHNUM identifies the switch; it is an index into
4547 the vector of switches gcc received, which is `switches'.
4548 This cannot fail since it never finishes a command line.
4550 If OMIT_FIRST_WORD is nonzero, then we omit .part1 of the argument.
4552 If INCLUDE_BLANKS is nonzero, then we include blanks before each argument
4556 give_switch (switchnum
, omit_first_word
, include_blanks
)
4558 int omit_first_word
;
4561 if (!omit_first_word
)
4563 do_spec_1 ("-", 0, NULL_PTR
);
4564 do_spec_1 (switches
[switchnum
].part1
, 1, NULL_PTR
);
4567 if (switches
[switchnum
].args
!= 0)
4570 for (p
= switches
[switchnum
].args
; *p
; p
++)
4573 do_spec_1 (" ", 0, NULL_PTR
);
4574 do_spec_1 (*p
, 1, NULL_PTR
);
4578 do_spec_1 (" ", 0, NULL_PTR
);
4579 switches
[switchnum
].validated
= 1;
4582 /* Search for a file named NAME trying various prefixes including the
4583 user's -B prefix and some standard ones.
4584 Return the absolute file name found. If nothing is found, return NAME. */
4592 /* Try multilib_dir if it is defined. */
4593 if (multilib_dir
!= NULL
)
4597 try = (char *) alloca (strlen (multilib_dir
) + strlen (name
) + 2);
4598 strcpy (try, multilib_dir
);
4599 strcat (try, dir_separator_str
);
4602 newname
= find_a_file (&startfile_prefixes
, try, R_OK
);
4604 /* If we don't find it in the multi library dir, then fall
4605 through and look for it in the normal places. */
4606 if (newname
!= NULL
)
4610 newname
= find_a_file (&startfile_prefixes
, name
, R_OK
);
4611 return newname
? newname
: name
;
4614 /* Determine whether a directory exists. If LINKER, return 0 for
4615 certain fixed names not needed by the linker. If not LINKER, it is
4616 only important to return 0 if the host machine has a small ARG_MAX
4620 is_directory (path1
, path2
, linker
)
4625 int len1
= strlen (path1
);
4626 int len2
= strlen (path2
);
4627 char *path
= (char *) alloca (3 + len1
+ len2
);
4631 #ifndef SMALL_ARG_MAX
4636 /* Construct the path from the two parts. Ensure the string ends with "/.".
4637 The resulting path will be a directory even if the given path is a
4639 memcpy (path
, path1
, len1
);
4640 memcpy (path
+ len1
, path2
, len2
);
4641 cp
= path
+ len1
+ len2
;
4642 if (!IS_DIR_SEPARATOR (cp
[-1]))
4643 *cp
++ = DIR_SEPARATOR
;
4647 /* Exclude directories that the linker is known to search. */
4650 && strcmp (path
, concat (dir_separator_str
, "lib",
4651 dir_separator_str
, ".", NULL_PTR
)) == 0)
4653 && strcmp (path
, concat (dir_separator_str
, "usr",
4654 dir_separator_str
, "lib",
4655 dir_separator_str
, ".", NULL_PTR
)) == 0)))
4658 return (stat (path
, &st
) >= 0 && S_ISDIR (st
.st_mode
));
4661 /* On fatal signals, delete all the temporary files. */
4664 fatal_error (signum
)
4667 signal (signum
, SIG_DFL
);
4668 delete_failure_queue ();
4669 delete_temp_files ();
4670 /* Get the same signal again, this time not handled,
4671 so its normal effect occurs. */
4672 kill (getpid (), signum
);
4683 int linker_was_run
= 0;
4684 char *explicit_link_files
;
4687 struct user_specs
*uptr
;
4689 p
= argv
[0] + strlen (argv
[0]);
4690 while (p
!= argv
[0] && !IS_DIR_SEPARATOR (p
[-1]))
4694 #ifdef HAVE_LC_MESSAGES
4695 setlocale (LC_MESSAGES
, "");
4697 (void) bindtextdomain (PACKAGE
, localedir
);
4698 (void) textdomain (PACKAGE
);
4700 if (signal (SIGINT
, SIG_IGN
) != SIG_IGN
)
4701 signal (SIGINT
, fatal_error
);
4703 if (signal (SIGHUP
, SIG_IGN
) != SIG_IGN
)
4704 signal (SIGHUP
, fatal_error
);
4706 if (signal (SIGTERM
, SIG_IGN
) != SIG_IGN
)
4707 signal (SIGTERM
, fatal_error
);
4709 if (signal (SIGPIPE
, SIG_IGN
) != SIG_IGN
)
4710 signal (SIGPIPE
, fatal_error
);
4714 argbuf
= (char **) xmalloc (argbuf_length
* sizeof (char *));
4716 obstack_init (&obstack
);
4718 /* Build multilib_select, et. al from the separate lines that make up each
4719 multilib selection. */
4721 char **q
= multilib_raw
;
4724 obstack_init (&multilib_obstack
);
4725 while ((p
= *q
++) != (char *) 0)
4726 obstack_grow (&multilib_obstack
, p
, strlen (p
));
4728 obstack_1grow (&multilib_obstack
, 0);
4729 multilib_select
= obstack_finish (&multilib_obstack
);
4731 q
= multilib_matches_raw
;
4732 while ((p
= *q
++) != (char *) 0)
4733 obstack_grow (&multilib_obstack
, p
, strlen (p
));
4735 obstack_1grow (&multilib_obstack
, 0);
4736 multilib_matches
= obstack_finish (&multilib_obstack
);
4740 i
< sizeof (multilib_defaults_raw
) / sizeof (multilib_defaults_raw
[0]);
4744 obstack_1grow (&multilib_obstack
, ' ');
4745 obstack_grow (&multilib_obstack
,
4746 multilib_defaults_raw
[i
],
4747 strlen (multilib_defaults_raw
[i
]));
4751 obstack_1grow (&multilib_obstack
, 0);
4752 multilib_defaults
= obstack_finish (&multilib_obstack
);
4755 /* Set up to remember the pathname of gcc and any options
4756 needed for collect. We use argv[0] instead of programname because
4757 we need the complete pathname. */
4758 obstack_init (&collect_obstack
);
4759 obstack_grow (&collect_obstack
, "COLLECT_GCC=", sizeof ("COLLECT_GCC=")-1);
4760 obstack_grow (&collect_obstack
, argv
[0], strlen (argv
[0])+1);
4761 putenv (obstack_finish (&collect_obstack
));
4763 #ifdef INIT_ENVIRONMENT
4764 /* Set up any other necessary machine specific environment variables. */
4765 putenv (INIT_ENVIRONMENT
);
4768 /* Choose directory for temp files. */
4770 #ifndef MKTEMP_EACH_FILE
4771 temp_filename
= choose_temp_base ();
4772 temp_filename_length
= strlen (temp_filename
);
4775 /* Make a table of what switches there are (switches, n_switches).
4776 Make a table of specified input files (infiles, n_infiles).
4777 Decode switches that are handled locally. */
4779 process_command (argc
, argv
);
4784 /* Build COLLECT_GCC_OPTIONS to have all of the options specified to
4786 obstack_grow (&collect_obstack
, "COLLECT_GCC_OPTIONS=",
4787 sizeof ("COLLECT_GCC_OPTIONS=")-1);
4790 for (i
= 0; (int)i
< n_switches
; i
++)
4795 obstack_grow (&collect_obstack
, " ", 1);
4798 obstack_grow (&collect_obstack
, "'-", 2);
4799 q
= switches
[i
].part1
;
4800 while ((p
= index (q
,'\'')))
4802 obstack_grow (&collect_obstack
, q
, p
-q
);
4803 obstack_grow (&collect_obstack
, "'\\''", 4);
4806 obstack_grow (&collect_obstack
, q
, strlen (q
));
4807 obstack_grow (&collect_obstack
, "'", 1);
4809 for (args
= switches
[i
].args
; args
&& *args
; args
++)
4811 obstack_grow (&collect_obstack
, " '", 2);
4813 while ((p
= index (q
,'\'')))
4815 obstack_grow (&collect_obstack
, q
, p
-q
);
4816 obstack_grow (&collect_obstack
, "'\\''", 4);
4819 obstack_grow (&collect_obstack
, q
, strlen (q
));
4820 obstack_grow (&collect_obstack
, "'", 1);
4823 obstack_grow (&collect_obstack
, "\0", 1);
4824 putenv (obstack_finish (&collect_obstack
));
4827 /* Initialize the vector of specs to just the default.
4828 This means one element containing 0s, as a terminator. */
4830 compilers
= (struct compiler
*) xmalloc (sizeof default_compilers
);
4831 bcopy ((char *) default_compilers
, (char *) compilers
,
4832 sizeof default_compilers
);
4833 n_compilers
= n_default_compilers
;
4835 /* Read specs from a file if there is one. */
4837 machine_suffix
= concat (spec_machine
, dir_separator_str
,
4838 spec_version
, dir_separator_str
, NULL_PTR
);
4839 just_machine_suffix
= concat (spec_machine
, dir_separator_str
, NULL_PTR
);
4841 specs_file
= find_a_file (&startfile_prefixes
, "specs", R_OK
);
4842 /* Read the specs file unless it is a default one. */
4843 if (specs_file
!= 0 && strcmp (specs_file
, "specs"))
4844 read_specs (specs_file
, TRUE
);
4848 /* We need to check standard_exec_prefix/just_machine_suffix/specs
4849 for any override of as, ld and libraries. */
4850 specs_file
= (char *) alloca (strlen (standard_exec_prefix
)
4851 + strlen (just_machine_suffix
)
4852 + sizeof ("specs"));
4854 strcpy (specs_file
, standard_exec_prefix
);
4855 strcat (specs_file
, just_machine_suffix
);
4856 strcat (specs_file
, "specs");
4857 if (access (specs_file
, R_OK
) == 0)
4858 read_specs (specs_file
, TRUE
);
4860 /* If not cross-compiling, look for startfiles in the standard places. */
4861 if (*cross_compile
== '0')
4863 #ifdef MD_EXEC_PREFIX
4864 add_prefix (&exec_prefixes
, md_exec_prefix
, "GCC", 0, 0, NULL_PTR
);
4865 add_prefix (&startfile_prefixes
, md_exec_prefix
, "GCC", 0, 0, NULL_PTR
);
4868 #ifdef MD_STARTFILE_PREFIX
4869 add_prefix (&startfile_prefixes
, md_startfile_prefix
, "GCC",
4873 #ifdef MD_STARTFILE_PREFIX_1
4874 add_prefix (&startfile_prefixes
, md_startfile_prefix_1
, "GCC",
4878 /* If standard_startfile_prefix is relative, base it on
4879 standard_exec_prefix. This lets us move the installed tree
4880 as a unit. If GCC_EXEC_PREFIX is defined, base
4881 standard_startfile_prefix on that as well. */
4882 if (IS_DIR_SEPARATOR (*standard_startfile_prefix
)
4883 || *standard_startfile_prefix
== '$'
4884 #ifdef HAVE_DOS_BASED_FILESYSTEM
4885 /* Check for disk name on MS-DOS-based systems. */
4886 || (standard_startfile_prefix
[1] == ':'
4887 && (IS_DIR_SEPARATOR (standard_startfile_prefix
[2])))
4890 add_prefix (&startfile_prefixes
, standard_startfile_prefix
, "BINUTILS",
4894 if (gcc_exec_prefix
)
4895 add_prefix (&startfile_prefixes
,
4896 concat (gcc_exec_prefix
, machine_suffix
,
4897 standard_startfile_prefix
, NULL_PTR
),
4898 NULL_PTR
, 0, 0, NULL_PTR
);
4899 add_prefix (&startfile_prefixes
,
4900 concat (standard_exec_prefix
,
4902 standard_startfile_prefix
, NULL_PTR
),
4903 NULL_PTR
, 0, 0, NULL_PTR
);
4906 add_prefix (&startfile_prefixes
, standard_startfile_prefix_1
,
4907 "BINUTILS", 0, 0, NULL_PTR
);
4908 add_prefix (&startfile_prefixes
, standard_startfile_prefix_2
,
4909 "BINUTILS", 0, 0, NULL_PTR
);
4910 #if 0 /* Can cause surprises, and one can use -B./ instead. */
4911 add_prefix (&startfile_prefixes
, "./", NULL_PTR
, 0, 1, NULL_PTR
);
4916 if (!IS_DIR_SEPARATOR (*standard_startfile_prefix
) && gcc_exec_prefix
)
4917 add_prefix (&startfile_prefixes
,
4918 concat (gcc_exec_prefix
, machine_suffix
,
4919 standard_startfile_prefix
, NULL_PTR
),
4920 "BINUTILS", 0, 0, NULL_PTR
);
4923 /* Process any user specified specs in the order given on the command
4925 for (uptr
= user_specs_head
; uptr
; uptr
= uptr
->next
)
4927 char *filename
= find_a_file (&startfile_prefixes
, uptr
->filename
, R_OK
);
4928 read_specs (filename
? filename
: uptr
->filename
, FALSE
);
4931 /* If we have a GCC_EXEC_PREFIX envvar, modify it for cpp's sake. */
4932 if (gcc_exec_prefix
)
4934 char * temp
= (char *) xmalloc (strlen (gcc_exec_prefix
)
4935 + strlen (spec_version
)
4936 + strlen (spec_machine
) + 3);
4937 strcpy (temp
, gcc_exec_prefix
);
4938 strcat (temp
, spec_machine
);
4939 strcat (temp
, dir_separator_str
);
4940 strcat (temp
, spec_version
);
4941 strcat (temp
, dir_separator_str
);
4942 gcc_exec_prefix
= temp
;
4945 /* Now we have the specs.
4946 Set the `valid' bits for switches that match anything in any spec. */
4948 validate_all_switches ();
4950 /* Now that we have the switches and the specs, set
4951 the subdirectory based on the options. */
4952 set_multilib_dir ();
4954 /* Warn about any switches that no pass was interested in. */
4956 for (i
= 0; (int)i
< n_switches
; i
++)
4957 if (! switches
[i
].validated
)
4958 error ("unrecognized option `-%s'", switches
[i
].part1
);
4960 /* Obey some of the options. */
4962 if (print_search_dirs
)
4964 printf ("install: %s%s\n", standard_exec_prefix
, machine_suffix
);
4965 printf ("programs: %s\n", build_search_list (&exec_prefixes
, "", 0));
4966 printf ("libraries: %s\n", build_search_list (&startfile_prefixes
, "", 0));
4970 if (print_file_name
)
4972 printf ("%s\n", find_file (print_file_name
));
4976 if (print_prog_name
)
4978 char *newname
= find_a_file (&exec_prefixes
, print_prog_name
, X_OK
);
4979 printf ("%s\n", (newname
? newname
: print_prog_name
));
4983 if (print_multi_lib
)
4985 print_multilib_info ();
4989 if (print_multi_directory
)
4991 if (multilib_dir
== NULL
)
4994 printf ("%s\n", multilib_dir
);
4998 if (print_help_list
)
5004 printf ("\nFor bug reporting instructions, please see:\n");
5005 printf ("<URL:http://www.gnu.org/software/gcc/faq.html#bugreport>.\n");
5010 /* We do not exit here. Instead we have created a fake input file
5011 called 'help-dummy' which needs to be compiled, and we pass this
5012 on the the various sub-processes, along with the --help switch. */
5019 /* compiler_version is truncated at the first space when initialized
5020 from version string, so truncate version_string at the first space
5021 before comparing. */
5022 for (n
= 0; version_string
[n
]; n
++)
5023 if (version_string
[n
] == ' ')
5026 if (! strncmp (version_string
, compiler_version
, n
)
5027 && compiler_version
[n
] == 0)
5028 notice ("gcc version %s\n", version_string
);
5030 notice ("gcc driver version %s executing gcc version %s\n",
5031 version_string
, compiler_version
);
5037 if (n_infiles
== added_libraries
)
5038 fatal ("No input files");
5040 /* Make a place to record the compiler output file names
5041 that correspond to the input files. */
5044 i
+= lang_specific_extra_outfiles
;
5045 outfiles
= (const char **) xcalloc (i
, sizeof (char *));
5047 /* Record which files were specified explicitly as link input. */
5049 explicit_link_files
= xcalloc (1, n_infiles
);
5051 for (i
= 0; (int)i
< n_infiles
; i
++)
5053 register struct compiler
*cp
= 0;
5054 int this_file_error
= 0;
5056 /* Tell do_spec what to substitute for %i. */
5058 input_filename
= infiles
[i
].name
;
5059 input_filename_length
= strlen (input_filename
);
5060 input_file_number
= i
;
5062 /* Use the same thing in %o, unless cp->spec says otherwise. */
5064 outfiles
[i
] = input_filename
;
5066 /* Figure out which compiler from the file's suffix. */
5068 cp
= lookup_compiler (infiles
[i
].name
, input_filename_length
,
5069 infiles
[i
].language
);
5073 /* Ok, we found an applicable compiler. Run its spec. */
5074 /* First say how much of input_filename to substitute for %b */
5075 register const char *p
;
5078 if (cp
->spec
[0][0] == '#')
5079 error ("%s: %s compiler not installed on this system",
5080 input_filename
, &cp
->spec
[0][1]);
5082 input_basename
= input_filename
;
5083 for (p
= input_filename
; *p
; p
++)
5084 if (IS_DIR_SEPARATOR (*p
))
5085 input_basename
= p
+ 1;
5087 /* Find a suffix starting with the last period,
5088 and set basename_length to exclude that suffix. */
5089 basename_length
= strlen (input_basename
);
5090 p
= input_basename
+ basename_length
;
5091 while (p
!= input_basename
&& *p
!= '.') --p
;
5092 if (*p
== '.' && p
!= input_basename
)
5094 basename_length
= p
- input_basename
;
5095 input_suffix
= p
+ 1;
5101 for (j
= 0; j
< sizeof cp
->spec
/ sizeof cp
->spec
[0]; j
++)
5103 len
+= strlen (cp
->spec
[j
]);
5106 char *p1
= (char *) xmalloc (len
+ 1);
5109 for (j
= 0; j
< sizeof cp
->spec
/ sizeof cp
->spec
[0]; j
++)
5112 strcpy (p1
+ len
, cp
->spec
[j
]);
5113 len
+= strlen (cp
->spec
[j
]);
5116 value
= do_spec (p1
);
5120 this_file_error
= 1;
5123 /* If this file's name does not contain a recognized suffix,
5124 record it as explicit linker input. */
5127 explicit_link_files
[i
] = 1;
5129 /* Clear the delete-on-failure queue, deleting the files in it
5130 if this compilation failed. */
5132 if (this_file_error
)
5134 delete_failure_queue ();
5137 /* If this compilation succeeded, don't delete those files later. */
5138 clear_failure_queue ();
5141 if (error_count
== 0)
5143 /* Make sure INPUT_FILE_NUMBER points to first available open
5145 input_file_number
= n_infiles
;
5146 if (lang_specific_pre_link ())
5150 /* Run ld to link all the compiler output files. */
5152 if (error_count
== 0)
5154 int tmp
= execution_count
;
5156 /* We'll use ld if we can't find collect2. */
5157 if (! strcmp (linker_name_spec
, "collect2"))
5159 char *s
= find_a_file (&exec_prefixes
, "collect2", X_OK
);
5161 linker_name_spec
= "ld";
5163 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
5165 putenv_from_prefixes (&exec_prefixes
, "COMPILER_PATH=");
5166 putenv_from_prefixes (&startfile_prefixes
, "LIBRARY_PATH=");
5168 value
= do_spec (link_command_spec
);
5171 linker_was_run
= (tmp
!= execution_count
);
5174 /* Warn if a -B option was specified but the prefix was never used. */
5175 unused_prefix_warnings (&exec_prefixes
);
5176 unused_prefix_warnings (&startfile_prefixes
);
5178 /* If options said don't run linker,
5179 complain about input files to be given to the linker. */
5181 if (! linker_was_run
&& error_count
== 0)
5182 for (i
= 0; (int)i
< n_infiles
; i
++)
5183 if (explicit_link_files
[i
])
5184 error ("%s: linker input file unused since linking not done",
5187 /* Delete some or all of the temporary files we made. */
5190 delete_failure_queue ();
5191 delete_temp_files ();
5193 if (print_help_list
)
5195 printf ("\nFor bug reporting instructions, please see:\n");
5196 printf ("<URL:http://www.gnu.org/software/gcc/faq.html#bugreport>\n");
5199 return (error_count
> 0 ? (signal_count
? 2 : 1) : 0);
5202 /* Find the proper compilation spec for the file name NAME,
5203 whose length is LENGTH. LANGUAGE is the specified language,
5204 or 0 if this file is to be passed to the linker. */
5206 static struct compiler
*
5207 lookup_compiler (name
, length
, language
)
5210 const char *language
;
5212 struct compiler
*cp
;
5214 /* If this was specified by the user to be a linker input, indicate that. */
5215 if (language
!= 0 && language
[0] == '*')
5218 /* Otherwise, look for the language, if one is spec'd. */
5221 for (cp
= compilers
+ n_compilers
- 1; cp
>= compilers
; cp
--)
5222 if (cp
->suffix
[0] == '@' && !strcmp (cp
->suffix
+ 1, language
))
5225 error ("language %s not recognized", language
);
5229 /* Look for a suffix. */
5230 for (cp
= compilers
+ n_compilers
- 1; cp
>= compilers
; cp
--)
5232 if (/* The suffix `-' matches only the file name `-'. */
5233 (!strcmp (cp
->suffix
, "-") && !strcmp (name
, "-"))
5234 || (strlen (cp
->suffix
) < length
5235 /* See if the suffix matches the end of NAME. */
5237 && ((!strcmp (cp
->suffix
,
5238 name
+ length
- strlen (cp
->suffix
))
5239 || !strpbrk (cp
->suffix
, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"))
5240 && !strcasecmp (cp
->suffix
,
5241 name
+ length
- strlen (cp
->suffix
)))
5243 && !strcmp (cp
->suffix
,
5244 name
+ length
- strlen (cp
->suffix
))
5248 if (cp
->spec
[0][0] == '@')
5250 struct compiler
*new;
5252 /* An alias entry maps a suffix to a language.
5253 Search for the language; pass 0 for NAME and LENGTH
5254 to avoid infinite recursion if language not found.
5255 Construct the new compiler spec. */
5256 language
= cp
->spec
[0] + 1;
5257 new = (struct compiler
*) xmalloc (sizeof (struct compiler
));
5258 new->suffix
= cp
->suffix
;
5260 lookup_compiler (NULL_PTR
, 0, language
)->spec
,
5265 /* A non-alias entry: return it. */
5274 save_string (s
, len
)
5278 register char *result
= xmalloc (len
+ 1);
5280 bcopy (s
, result
, len
);
5286 pfatal_with_name (name
)
5289 perror_with_name (name
);
5290 delete_temp_files ();
5295 perror_with_name (name
)
5298 error ("%s: %s", name
, xstrerror (errno
));
5302 pfatal_pexecute (errmsg_fmt
, errmsg_arg
)
5303 const char *errmsg_fmt
;
5304 const char *errmsg_arg
;
5308 int save_errno
= errno
;
5310 /* Space for trailing '\0' is in %s. */
5311 char *msg
= xmalloc (strlen (errmsg_fmt
) + strlen (errmsg_arg
));
5312 sprintf (msg
, errmsg_fmt
, errmsg_arg
);
5318 pfatal_with_name (errmsg_fmt
);
5321 /* Output an error message and exit */
5326 fatal ("Internal gcc abort.");
5329 /* Output an error message and exit */
5332 fatal
VPROTO((const char *msgid
, ...))
5334 #ifndef ANSI_PROTOTYPES
5339 VA_START (ap
, msgid
);
5341 #ifndef ANSI_PROTOTYPES
5342 msgid
= va_arg (ap
, const char *);
5345 fprintf (stderr
, "%s: ", programname
);
5346 vfprintf (stderr
, _(msgid
), ap
);
5348 fprintf (stderr
, "\n");
5349 delete_temp_files ();
5354 error
VPROTO((const char *msgid
, ...))
5356 #ifndef ANSI_PROTOTYPES
5361 VA_START (ap
, msgid
);
5363 #ifndef ANSI_PROTOTYPES
5364 msgid
= va_arg (ap
, const char *);
5367 fprintf (stderr
, "%s: ", programname
);
5368 vfprintf (stderr
, _(msgid
), ap
);
5371 fprintf (stderr
, "\n");
5375 notice
VPROTO((const char *msgid
, ...))
5377 #ifndef ANSI_PROTOTYPES
5382 VA_START (ap
, msgid
);
5384 #ifndef ANSI_PROTOTYPES
5385 msgid
= va_arg (ap
, const char *);
5388 vfprintf (stderr
, _(msgid
), ap
);
5394 validate_all_switches ()
5396 struct compiler
*comp
;
5397 register const char *p
;
5399 struct spec_list
*spec
;
5401 for (comp
= compilers
; comp
->spec
[0]; comp
++)
5404 for (i
= 0; i
< sizeof comp
->spec
/ sizeof comp
->spec
[0] && comp
->spec
[i
]; i
++)
5408 if (c
== '%' && *p
== '{')
5409 /* We have a switch spec. */
5410 validate_switches (p
+ 1);
5414 /* look through the linked list of specs read from the specs file */
5415 for (spec
= specs
; spec
; spec
= spec
->next
)
5417 p
= *(spec
->ptr_spec
);
5419 if (c
== '%' && *p
== '{')
5420 /* We have a switch spec. */
5421 validate_switches (p
+ 1);
5424 p
= link_command_spec
;
5426 if (c
== '%' && *p
== '{')
5427 /* We have a switch spec. */
5428 validate_switches (p
+ 1);
5431 /* Look at the switch-name that comes after START
5432 and mark as valid all supplied switches that match it. */
5435 validate_switches (start
)
5438 register const char *p
= start
;
5453 while (*p
!= ':' && *p
!= '}') p
++;
5457 else if (p
[-1] == '*')
5459 /* Mark all matching switches as valid. */
5461 for (i
= 0; i
< n_switches
; i
++)
5462 if (!strncmp (switches
[i
].part1
, filter
, p
- filter
))
5463 switches
[i
].validated
= 1;
5467 /* Mark an exact matching switch as valid. */
5468 for (i
= 0; i
< n_switches
; i
++)
5470 if (!strncmp (switches
[i
].part1
, filter
, p
- filter
)
5471 && switches
[i
].part1
[p
- filter
] == 0)
5472 switches
[i
].validated
= 1;
5477 /* Check whether a particular argument was used. The first time we
5478 canonicalize the switches to keep only the ones we care about. */
5492 static struct mswitchstr
*mswitches
;
5493 static int n_mswitches
;
5498 struct mswitchstr
*matches
;
5502 /* Break multilib_matches into the component strings of string and replacement
5504 for (q
= multilib_matches
; *q
!= '\0'; q
++)
5508 matches
= (struct mswitchstr
*) alloca ((sizeof (struct mswitchstr
)) * cnt
);
5510 q
= multilib_matches
;
5521 matches
[i
].len
= q
- matches
[i
].str
;
5523 matches
[i
].replace
= ++q
;
5524 while (*q
!= ';' && *q
!= '\0')
5530 matches
[i
].rep_len
= q
- matches
[i
].replace
;
5538 /* Now build a list of the replacement string for switches that we care
5539 about. Make sure we allocate at least one entry. This prevents
5540 xmalloc from calling fatal, and prevents us from re-executing this
5543 = (struct mswitchstr
*) xmalloc ((sizeof (struct mswitchstr
))
5544 * (n_switches
? n_switches
: 1));
5545 for (i
= 0; i
< n_switches
; i
++)
5547 int xlen
= strlen (switches
[i
].part1
);
5548 for (j
= 0; j
< cnt
; j
++)
5549 if (xlen
== matches
[j
].len
&& ! strcmp (switches
[i
].part1
, matches
[j
].str
))
5551 mswitches
[n_mswitches
].str
= matches
[j
].replace
;
5552 mswitches
[n_mswitches
].len
= matches
[j
].rep_len
;
5553 mswitches
[n_mswitches
].replace
= (char *)0;
5554 mswitches
[n_mswitches
].rep_len
= 0;
5561 for (i
= 0; i
< n_mswitches
; i
++)
5562 if (len
== mswitches
[i
].len
&& ! strncmp (p
, mswitches
[i
].str
, len
))
5569 default_arg (p
, len
)
5575 for (start
= multilib_defaults
; *start
!= '\0'; start
= end
+1)
5577 while (*start
== ' ' || *start
== '\t')
5583 for (end
= start
+1; *end
!= ' ' && *end
!= '\t' && *end
!= '\0'; end
++)
5586 if ((end
- start
) == len
&& strncmp (p
, start
, len
) == 0)
5596 /* Work out the subdirectory to use based on the
5597 options. The format of multilib_select is a list of elements.
5598 Each element is a subdirectory name followed by a list of options
5599 followed by a semicolon. gcc will consider each line in turn. If
5600 none of the options beginning with an exclamation point are
5601 present, and all of the other options are present, that
5602 subdirectory will be used. */
5607 char *p
= multilib_select
;
5609 char *this_path
, *this_arg
;
5615 /* Ignore newlines. */
5622 /* Get the initial path. */
5630 this_path_len
= p
- this_path
;
5632 /* Check the arguments. */
5647 while (*p
!= ' ' && *p
!= ';')
5654 if (*this_arg
!= '!')
5662 /* If this is a default argument, we can just ignore it.
5663 This is true even if this_arg begins with '!'. Beginning
5664 with '!' does not mean that this argument is necessarily
5665 inappropriate for this library: it merely means that
5666 there is a more specific library which uses this
5667 argument. If this argument is a default, we need not
5668 consider that more specific library. */
5669 if (! default_arg (this_arg
, p
- this_arg
))
5671 ok
= used_arg (this_arg
, p
- this_arg
);
5682 if (this_path_len
!= 1
5683 || this_path
[0] != '.')
5685 char * new_multilib_dir
= xmalloc (this_path_len
+ 1);
5686 strncpy (new_multilib_dir
, this_path
, this_path_len
);
5687 new_multilib_dir
[this_path_len
] = '\0';
5688 multilib_dir
= new_multilib_dir
;
5697 /* Print out the multiple library subdirectory selection
5698 information. This prints out a series of lines. Each line looks
5699 like SUBDIRECTORY;@OPTION@OPTION, with as many options as is
5700 required. Only the desired options are printed out, the negative
5701 matches. The options are print without a leading dash. There are
5702 no spaces to make it easy to use the information in the shell.
5703 Each subdirectory is printed only once. This assumes the ordering
5704 generated by the genmultilib script. */
5707 print_multilib_info ()
5709 char *p
= multilib_select
;
5710 char *last_path
= 0, *this_path
;
5712 int last_path_len
= 0;
5716 /* Ignore newlines. */
5723 /* Get the initial path. */
5732 /* If this is a duplicate, skip it. */
5733 skip
= (last_path
!= 0 && p
- this_path
== last_path_len
5734 && ! strncmp (last_path
, this_path
, last_path_len
));
5736 last_path
= this_path
;
5737 last_path_len
= p
- this_path
;
5739 /* If this directory requires any default arguments, we can skip
5740 it. We will already have printed a directory identical to
5741 this one which does not require that default argument. */
5759 while (*q
!= ' ' && *q
!= ';')
5767 && default_arg (arg
, q
- arg
))
5782 for (p1
= last_path
; p1
< p
; p1
++)
5801 use_arg
= *p
!= '!';
5806 while (*p
!= ' ' && *p
!= ';')
5821 /* If there are extra options, print them now */
5822 if (multilib_extra
&& *multilib_extra
)
5824 int print_at
= TRUE
;
5827 for (q
= multilib_extra
; *q
!= '\0'; q
++)