1 /* Compiler driver program that can handle many languages.
2 Copyright (C) 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000 Free Software Foundation, Inc.
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.
22 This paragraph is here to try to keep Sun CC from dying.
23 The number of chars here seems crucial!!!! */
25 /* This program is the user interface to the C compiler and possibly to
26 other compilers. It is used because compilation is a complicated procedure
27 which involves running several programs and passing temporary files between
28 them, forwarding the users switches to those programs selectively,
29 and deleting the temporary files at the end.
31 CC recognizes how to compile each input file by suffixes in the file names.
32 Once it knows which kind of compilation to perform, the procedure for
33 compilation is specified by a string called a "spec". */
45 #define exit __posix_exit
48 #ifdef HAVE_SYS_RESOURCE_H
49 #include <sys/resource.h>
51 #if defined (HAVE_DECL_GETRUSAGE) && !HAVE_DECL_GETRUSAGE
52 extern int getrusage
PARAMS ((int, struct rusage
*));
55 /* By default there is no special suffix for executables. */
56 #ifdef EXECUTABLE_SUFFIX
57 #define HAVE_EXECUTABLE_SUFFIX
59 #define EXECUTABLE_SUFFIX ""
62 /* By default, the suffix for object files is ".o". */
64 #define HAVE_OBJECT_SUFFIX
66 #define OBJECT_SUFFIX ".o"
70 /* FIXME: the location independence code for VMS is hairier than this,
71 and hasn't been written. */
77 static char dir_separator_str
[] = {DIR_SEPARATOR
, 0};
79 #define obstack_chunk_alloc xmalloc
80 #define obstack_chunk_free free
82 #ifndef GET_ENV_PATH_LIST
83 #define GET_ENV_PATH_LIST(VAR,NAME) do { (VAR) = getenv (NAME); } while (0)
86 /* Most every one is fine with LIBRARY_PATH. For some, it conflicts. */
87 #ifndef LIBRARY_PATH_ENV
88 #define LIBRARY_PATH_ENV "LIBRARY_PATH"
92 #define kill(p,s) raise(s)
95 /* If a stage of compilation returns an exit status >= 1,
96 compilation of that file ceases. */
98 #define MIN_FATAL_STATUS 1
100 /* Flag saying to pass the greatest exit code returned by a sub-process
101 to the calling program. */
102 static int pass_exit_codes
;
104 /* Flag saying to print the directories gcc will search through looking for
105 programs, libraries, etc. */
107 static int print_search_dirs
;
109 /* Flag saying to print the full filename of this file
110 as found through our usual search mechanism. */
112 static const char *print_file_name
= NULL
;
114 /* As print_file_name, but search for executable file. */
116 static const char *print_prog_name
= NULL
;
118 /* Flag saying to print the relative path we'd use to
119 find libgcc.a given the current compiler flags. */
121 static int print_multi_directory
;
123 /* Flag saying to print the list of subdirectories and
124 compiler flags used to select them in a standard form. */
126 static int print_multi_lib
;
128 /* Flag saying to print the command line options understood by gcc and its
131 static int print_help_list
;
133 /* Flag indicating whether we should print the command and arguments */
135 static int verbose_flag
;
137 /* Flag indicating whether we should report subprocess execution times
138 (if this is supported by the system - see pexecute.c). */
140 static int report_times
;
142 /* Nonzero means write "temp" files in source directory
143 and use the source file's name in them, and don't delete them. */
145 static int save_temps_flag
;
147 /* The compiler version. */
149 static const char *compiler_version
;
151 /* The target version specified with -V */
153 static const char *spec_version
= DEFAULT_TARGET_VERSION
;
155 /* The target machine specified with -b. */
157 static const char *spec_machine
= DEFAULT_TARGET_MACHINE
;
159 /* Nonzero if cross-compiling.
160 When -b is used, the value comes from the `specs' file. */
163 static const char *cross_compile
= "1";
165 static const char *cross_compile
= "0";
168 /* The number of errors that have occurred; the link phase will not be
169 run if this is non-zero. */
170 static int error_count
= 0;
172 /* Greatest exit code of sub-processes that has been encountered up to
174 static int greatest_status
= 1;
176 /* This is the obstack which we use to allocate many strings. */
178 static struct obstack obstack
;
180 /* This is the obstack to build an environment variable to pass to
181 collect2 that describes all of the relevant switches of what to
182 pass the compiler in building the list of pointers to constructors
185 static struct obstack collect_obstack
;
187 /* These structs are used to collect resource usage information for
189 #ifdef HAVE_GETRUSAGE
190 static struct rusage rus
, prus
;
193 /* Forward declaration for prototypes. */
196 static void init_spec
PARAMS ((void));
198 static char **split_directories
PARAMS ((const char *, int *));
199 static void free_split_directories
PARAMS ((char **));
200 static char *make_relative_prefix
PARAMS ((const char *, const char *, const char *));
202 static void store_arg
PARAMS ((const char *, int, int));
203 static char *load_specs
PARAMS ((const char *));
204 static void read_specs
PARAMS ((const char *, int));
205 static void set_spec
PARAMS ((const char *, const char *));
206 static struct compiler
*lookup_compiler
PARAMS ((const char *, size_t, const char *));
207 static char *build_search_list
PARAMS ((struct path_prefix
*, const char *, int));
208 static void putenv_from_prefixes
PARAMS ((struct path_prefix
*, const char *));
209 static int access_check
PARAMS ((const char *, int));
210 static char *find_a_file
PARAMS ((struct path_prefix
*, const char *, int));
211 static void add_prefix
PARAMS ((struct path_prefix
*, const char *,
212 const char *, int, int, int *));
213 static void translate_options
PARAMS ((int *, const char ***));
214 static char *skip_whitespace
PARAMS ((char *));
215 static void record_temp_file
PARAMS ((const char *, int, int));
216 static void delete_if_ordinary
PARAMS ((const char *));
217 static void delete_temp_files
PARAMS ((void));
218 static void delete_failure_queue
PARAMS ((void));
219 static void clear_failure_queue
PARAMS ((void));
220 static int check_live_switch
PARAMS ((int, int));
221 static const char *handle_braces
PARAMS ((const char *));
222 static char *save_string
PARAMS ((const char *, int));
223 static int do_spec_1
PARAMS ((const char *, int, const char *));
224 static const char *find_file
PARAMS ((const char *));
225 static int is_directory
PARAMS ((const char *, const char *, int));
226 static void validate_switches
PARAMS ((const char *));
227 static void validate_all_switches
PARAMS ((void));
228 static void give_switch
PARAMS ((int, int, int));
229 static int used_arg
PARAMS ((const char *, int));
230 static int default_arg
PARAMS ((const char *, int));
231 static void set_multilib_dir
PARAMS ((void));
232 static void print_multilib_info
PARAMS ((void));
233 static void pfatal_with_name
PARAMS ((const char *)) ATTRIBUTE_NORETURN
;
234 static void perror_with_name
PARAMS ((const char *));
235 static void pfatal_pexecute
PARAMS ((const char *, const char *))
237 static void error
PARAMS ((const char *, ...))
239 static void notice
PARAMS ((const char *, ...))
241 static void display_help
PARAMS ((void));
242 static void add_preprocessor_option
PARAMS ((const char *, int));
243 static void add_assembler_option
PARAMS ((const char *, int));
244 static void add_linker_option
PARAMS ((const char *, int));
245 static void process_command
PARAMS ((int, const char **));
246 static int execute
PARAMS ((void));
247 static void unused_prefix_warnings
PARAMS ((struct path_prefix
*));
248 static void clear_args
PARAMS ((void));
249 static void fatal_error
PARAMS ((int));
250 static void set_input
PARAMS ((const char *));
252 /* Specs are strings containing lines, each of which (if not blank)
253 is made up of a program name, and arguments separated by spaces.
254 The program name must be exact and start from root, since no path
255 is searched and it is unreliable to depend on the current working directory.
256 Redirection of input or output is not supported; the subprograms must
257 accept filenames saying what files to read and write.
259 In addition, the specs can contain %-sequences to substitute variable text
260 or for conditional text. Here is a table of all defined %-sequences.
261 Note that spaces are not generated automatically around the results of
262 expanding these sequences; therefore, you can concatenate them together
263 or with constant text in a single argument.
265 %% substitute one % into the program name or argument.
266 %i substitute the name of the input file being processed.
267 %b substitute the basename of the input file being processed.
268 This is the substring up to (and not including) the last period
269 and not including the directory.
270 %B same as %b, but include the file suffix (text after the last period).
272 substitute a file name that has suffix SUFFIX and is chosen
273 once per compilation, and mark the argument a la %d. To reduce
274 exposure to denial-of-service attacks, the file name is now
275 chosen in a way that is hard to predict even when previously
276 chosen file names are known. For example, `%g.s ... %g.o ... %g.s'
277 might turn into `ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s'. SUFFIX matches
278 the regexp "[.A-Za-z]*%O"; "%O" is treated exactly as if it
279 had been pre-processed. Previously, %g was simply substituted
280 with a file name chosen once per compilation, without regard
281 to any appended suffix (which was therefore treated just like
282 ordinary text), making such attacks more likely to succeed.
284 like %g, but generates a new temporary file name even if %uSUFFIX
287 substitutes the last file name generated with %uSUFFIX, generating a
288 new one if there is no such last file name. In the absence of any
289 %uSUFFIX, this is just like %gSUFFIX, except they don't share
290 the same suffix "space", so `%g.s ... %U.s ... %g.s ... %U.s'
291 would involve the generation of two distinct file names, one
292 for each `%g.s' and another for each `%U.s'. Previously, %U was
293 simply substituted with a file name chosen for the previous %u,
294 without regard to any appended suffix.
295 %d marks the argument containing or following the %d as a
296 temporary file name, so that that file will be deleted if CC exits
297 successfully. Unlike %g, this contributes no text to the argument.
298 %w marks the argument containing or following the %w as the
299 "output file" of this compilation. This puts the argument
300 into the sequence of arguments that %o will substitute later.
302 like %{...} but mark last argument supplied within
303 as a file to be deleted on failure.
304 %o substitutes the names of all the output files, with spaces
305 automatically placed around them. You should write spaces
306 around the %o as well or the results are undefined.
307 %o is for use in the specs for running the linker.
308 Input files whose names have no recognized suffix are not compiled
309 at all, but they are included among the output files, so they will
311 %O substitutes the suffix for object files. Note that this is
312 handled specially when it immediately follows %g, %u, or %U
313 (with or without a suffix argument) because of the need for
314 those to form complete file names. The handling is such that
315 %O is treated exactly as if it had already been substituted,
316 except that %g, %u, and %U do not currently support additional
317 SUFFIX characters following %O as they would following, for
319 %p substitutes the standard macro predefinitions for the
320 current target machine. Use this when running cpp.
321 %P like %p, but puts `__' before and after the name of each macro.
322 (Except macros that already have __.)
324 %I Substitute a -iprefix option made from GCC_EXEC_PREFIX.
325 %s current argument is the name of a library or startup file of some sort.
326 Search for that file in a standard list of directories
327 and substitute the full name found.
328 %eSTR Print STR as an error message. STR is terminated by a newline.
329 Use this when inconsistent options are detected.
330 %x{OPTION} Accumulate an option for %X.
331 %X Output the accumulated linker options specified by compilations.
332 %Y Output the accumulated assembler options specified by compilations.
333 %Z Output the accumulated preprocessor options specified by compilations.
334 %v1 Substitute the major version number of GCC.
335 (For version 2.5.3, this is 2.)
336 %v2 Substitute the minor version number of GCC.
337 (For version 2.5.3, this is 5.)
338 %v3 Substitute the patch level number of GCC.
339 (For version 2.5.3, this is 3.)
340 %a process ASM_SPEC as a spec.
341 This allows config.h to specify part of the spec for running as.
342 %A process ASM_FINAL_SPEC as a spec. A capital A is actually
343 used here. This can be used to run a post-processor after the
344 assembler has done its job.
345 %D Dump out a -L option for each directory in startfile_prefixes.
346 If multilib_dir is set, extra entries are generated with it affixed.
347 %l process LINK_SPEC as a spec.
348 %L process LIB_SPEC as a spec.
349 %G process LIBGCC_SPEC as a spec.
350 %S process STARTFILE_SPEC as a spec. A capital S is actually used here.
351 %E process ENDFILE_SPEC as a spec. A capital E is actually used here.
352 %c process SIGNED_CHAR_SPEC as a spec.
353 %C process CPP_SPEC as a spec. A capital C is actually used here.
354 %1 process CC1_SPEC as a spec.
355 %2 process CC1PLUS_SPEC as a spec.
356 %| output "-" if the input for the current command is coming from a pipe.
357 %* substitute the variable part of a matched option. (See below.)
358 Note that each comma in the substituted string is replaced by
360 %{S} substitutes the -S switch, if that switch was given to CC.
361 If that switch was not specified, this substitutes nothing.
362 Here S is a metasyntactic variable.
363 %{S*} substitutes all the switches specified to CC whose names start
364 with -S. This is used for -o, -D, -I, etc; switches that take
365 arguments. CC considers `-o foo' as being one switch whose
366 name starts with `o'. %{o*} would substitute this text,
367 including the space; thus, two arguments would be generated.
368 %{^S*} likewise, but don't put a blank between a switch and any args.
369 %{S*:X} substitutes X if one or more switches whose names start with -S are
370 specified to CC. Note that the tail part of the -S option
371 (i.e. the part matched by the `*') will be substituted for each
372 occurrence of %* within X.
373 %{<S} remove all occurences of S from the command line.
374 Note - this option is position dependent. % commands in the
375 spec string before this option will see S, % commands in the
376 spec string after this option will not.
377 %{S:X} substitutes X, but only if the -S switch was given to CC.
378 %{!S:X} substitutes X, but only if the -S switch was NOT given to CC.
379 %{|S:X} like %{S:X}, but if no S switch, substitute `-'.
380 %{|!S:X} like %{!S:X}, but if there is an S switch, substitute `-'.
381 %{.S:X} substitutes X, but only if processing a file with suffix S.
382 %{!.S:X} substitutes X, but only if NOT processing a file with suffix S.
383 %{S|P:X} substitutes X if either -S or -P was given to CC. This may be
384 combined with ! and . as above binding stronger than the OR.
385 %(Spec) processes a specification defined in a specs file as *Spec:
386 %[Spec] as above, but put __ around -D arguments
388 The conditional text X in a %{S:X} or %{!S:X} construct may contain
389 other nested % constructs or spaces, or even newlines. They are
390 processed as usual, as described above.
392 The -O, -f, -m, and -W switches are handled specifically in these
393 constructs. If another value of -O or the negated form of a -f, -m, or
394 -W switch is found later in the command line, the earlier switch
395 value is ignored, except with {S*} where S is just one letter; this
396 passes all matching options.
398 The character | at the beginning of the predicate text is used to indicate
399 that a command should be piped to the following command, but only if -pipe
402 Note that it is built into CC which switches take arguments and which
403 do not. You might think it would be useful to generalize this to
404 allow each compiler's spec to say which switches take arguments. But
405 this cannot be done in a consistent fashion. CC cannot even decide
406 which input files have been specified without knowing which switches
407 take arguments, and it must know which input files to compile in order
408 to tell which compilers to run.
410 CC also knows implicitly that arguments starting in `-l' are to be
411 treated as compiler output files, and passed to the linker in their
412 proper position among the other output files. */
414 /* Define the macros used for specs %a, %l, %L, %S, %c, %C, %1. */
416 /* config.h can define ASM_SPEC to provide extra args to the assembler
417 or extra switch-translations. */
422 /* config.h can define ASM_FINAL_SPEC to run a post processor after
423 the assembler has run. */
424 #ifndef ASM_FINAL_SPEC
425 #define ASM_FINAL_SPEC ""
428 /* config.h can define CPP_SPEC to provide extra args to the C preprocessor
429 or extra switch-translations. */
434 /* config.h can define CC1_SPEC to provide extra args to cc1 and cc1plus
435 or extra switch-translations. */
440 /* config.h can define CC1PLUS_SPEC to provide extra args to cc1plus
441 or extra switch-translations. */
443 #define CC1PLUS_SPEC ""
446 /* config.h can define LINK_SPEC to provide extra args to the linker
447 or extra switch-translations. */
452 /* config.h can define LIB_SPEC to override the default libraries. */
454 #define LIB_SPEC "%{!shared:%{g*:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}}"
457 /* config.h can define LIBGCC_SPEC to override how and when libgcc.a is
460 #if defined(LINK_LIBGCC_SPECIAL) || defined(LINK_LIBGCC_SPECIAL_1)
461 /* Have gcc do the search for libgcc.a. */
462 #define LIBGCC_SPEC "libgcc.a%s"
464 #define LIBGCC_SPEC "-lgcc"
468 /* config.h can define STARTFILE_SPEC to override the default crt0 files. */
469 #ifndef STARTFILE_SPEC
470 #define STARTFILE_SPEC \
471 "%{!shared:%{pg:gcrt0%O%s}%{!pg:%{p:mcrt0%O%s}%{!p:crt0%O%s}}}"
474 /* config.h can define SWITCHES_NEED_SPACES to control which options
475 require spaces between the option and the argument. */
476 #ifndef SWITCHES_NEED_SPACES
477 #define SWITCHES_NEED_SPACES ""
480 /* config.h can define ENDFILE_SPEC to override the default crtn files. */
482 #define ENDFILE_SPEC ""
485 /* This spec is used for telling cpp whether char is signed or not. */
486 #ifndef SIGNED_CHAR_SPEC
487 /* Use #if rather than ?:
488 because MIPS C compiler rejects like ?: in initializers. */
489 #if DEFAULT_SIGNED_CHAR
490 #define SIGNED_CHAR_SPEC "%{funsigned-char:-D__CHAR_UNSIGNED__}"
492 #define SIGNED_CHAR_SPEC "%{!fsigned-char:-D__CHAR_UNSIGNED__}"
497 #define LINKER_NAME "collect2"
500 /* Here is the spec for running the linker, after compiling all files. */
502 /* -u* was put back because both BSD and SysV seem to support it. */
503 /* %{static:} simply prevents an error message if the target machine
504 doesn't handle -static. */
505 /* We want %{T*} after %{L*} and %D so that it can be used to specify linker
506 scripts which exist in user specified directories, or in standard
508 #ifndef LINK_COMMAND_SPEC
509 #define LINK_COMMAND_SPEC "\
510 %{!fsyntax-only:%{!c:%{!M:%{!MM:%{!E:%{!S:\
511 %(linker) %l %X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} %{r} %{s} %{t}\
512 %{u*} %{x} %{z} %{Z} %{!A:%{!nostdlib:%{!nostartfiles:%S}}}\
513 %{static:} %{L*} %(link_libgcc) %o %{!nostdlib:%{!nodefaultlibs:%G %L %G}}\
514 %{!A:%{!nostdlib:%{!nostartfiles:%E}}} %{T*} }}}}}}"
517 #ifndef LINK_LIBGCC_SPEC
518 # ifdef LINK_LIBGCC_SPECIAL
519 /* Don't generate -L options for startfile prefix list. */
520 # define LINK_LIBGCC_SPEC ""
522 /* Do generate them. */
523 # define LINK_LIBGCC_SPEC "%D"
527 static const char *cpp_spec
= CPP_SPEC
;
528 static const char *cpp_predefines
= CPP_PREDEFINES
;
529 static const char *cc1_spec
= CC1_SPEC
;
530 static const char *cc1plus_spec
= CC1PLUS_SPEC
;
531 static const char *signed_char_spec
= SIGNED_CHAR_SPEC
;
532 static const char *asm_spec
= ASM_SPEC
;
533 static const char *asm_final_spec
= ASM_FINAL_SPEC
;
534 static const char *link_spec
= LINK_SPEC
;
535 static const char *lib_spec
= LIB_SPEC
;
536 static const char *libgcc_spec
= LIBGCC_SPEC
;
537 static const char *endfile_spec
= ENDFILE_SPEC
;
538 static const char *startfile_spec
= STARTFILE_SPEC
;
539 static const char *switches_need_spaces
= SWITCHES_NEED_SPACES
;
540 static const char *linker_name_spec
= LINKER_NAME
;
541 static const char *link_command_spec
= LINK_COMMAND_SPEC
;
542 static const char *link_libgcc_spec
= LINK_LIBGCC_SPEC
;
544 /* Standard options to cpp, cc1, and as, to reduce duplication in specs.
545 There should be no need to override these in target dependent files,
546 but we need to copy them to the specs file so that newer versions
547 of the GCC driver can correctly drive older tool chains with the
548 appropriate -B options. */
550 static const char *trad_capable_cpp
=
551 "%{traditional|ftraditional|traditional-cpp:trad}cpp";
553 static const char *cpp_options
=
554 "%{C:%{!E:%eGNU C does not support -C without using -E}}\
555 %{std*} %{nostdinc*}\
556 %{C} %{v} %{A*} %{I*} %{P} %{$} %I\
557 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG}\
558 %{!no-gcc:-D__GNUC__=%v1 -D__GNUC_MINOR__=%v2 -D__GNUC_PATCHLEVEL__=%v3}\
559 %{!undef:%{!ansi:%{!std=*:%p}%{std=gnu*:%p}} %P} %{trigraphs}\
560 %c %{Os:-D__OPTIMIZE_SIZE__} %{O*:%{!O0:-D__OPTIMIZE__}}\
561 %{ffast-math:-D__FAST_MATH__}\
562 %{fshort-wchar:-D__WCHAR_TYPE__=short\\ unsigned\\ int}\
563 %{fshow-column} %{fno-show-column}\
564 %{fleading-underscore} %{fno-leading-underscore}\
565 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z %i\
566 %{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}}";
568 static const char *cc1_options
=
569 "%{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
570 %1 %{!Q:-quiet} -dumpbase %B %{d*} %{m*} %{a*}\
571 %{g*} %{O*} %{W*} %{w} %{pedantic*} %{std*} %{ansi}\
572 %{traditional} %{v:-version} %{pg:-p} %{p} %{f*}\
573 %{aux-info*} %{Qn:-fno-ident} %{--help:--help}\
574 %{S:%W{o*}%{!o*:-o %b.s}}";
576 static const char *asm_options
=
577 "%a %Y %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}";
579 /* Some compilers have limits on line lengths, and the multilib_select
580 and/or multilib_matches strings can be very long, so we build them at
582 static struct obstack multilib_obstack
;
583 static const char *multilib_select
;
584 static const char *multilib_matches
;
585 static const char *multilib_defaults
;
586 static const char *multilib_exclusions
;
587 #include "multilib.h"
589 /* Check whether a particular argument is a default argument. */
591 #ifndef MULTILIB_DEFAULTS
592 #define MULTILIB_DEFAULTS { "" }
595 static const char *const multilib_defaults_raw
[] = MULTILIB_DEFAULTS
;
599 struct user_specs
*next
;
600 const char *filename
;
603 static struct user_specs
*user_specs_head
, *user_specs_tail
;
605 /* This defines which switch letters take arguments. */
607 #define DEFAULT_SWITCH_TAKES_ARG(CHAR) \
608 ((CHAR) == 'D' || (CHAR) == 'U' || (CHAR) == 'o' \
609 || (CHAR) == 'e' || (CHAR) == 'T' || (CHAR) == 'u' \
610 || (CHAR) == 'I' || (CHAR) == 'm' || (CHAR) == 'x' \
611 || (CHAR) == 'L' || (CHAR) == 'A' || (CHAR) == 'V' \
612 || (CHAR) == 'B' || (CHAR) == 'b')
614 #ifndef SWITCH_TAKES_ARG
615 #define SWITCH_TAKES_ARG(CHAR) DEFAULT_SWITCH_TAKES_ARG(CHAR)
618 /* This defines which multi-letter switches take arguments. */
620 #define DEFAULT_WORD_SWITCH_TAKES_ARG(STR) \
621 (!strcmp (STR, "Tdata") || !strcmp (STR, "Ttext") \
622 || !strcmp (STR, "Tbss") || !strcmp (STR, "include") \
623 || !strcmp (STR, "imacros") || !strcmp (STR, "aux-info") \
624 || !strcmp (STR, "idirafter") || !strcmp (STR, "iprefix") \
625 || !strcmp (STR, "iwithprefix") || !strcmp (STR, "iwithprefixbefore") \
626 || !strcmp (STR, "isystem") || !strcmp (STR, "specs"))
628 #ifndef WORD_SWITCH_TAKES_ARG
629 #define WORD_SWITCH_TAKES_ARG(STR) DEFAULT_WORD_SWITCH_TAKES_ARG (STR)
633 #ifdef HAVE_EXECUTABLE_SUFFIX
634 /* This defines which switches stop a full compilation. */
635 #define DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR) \
636 ((CHAR) == 'c' || (CHAR) == 'S')
638 #ifndef SWITCH_CURTAILS_COMPILATION
639 #define SWITCH_CURTAILS_COMPILATION(CHAR) \
640 DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR)
644 /* Record the mapping from file suffixes for compilation specs. */
648 const char *suffix
; /* Use this compiler for input files
649 whose names end in this suffix. */
651 const char *spec
; /* To use this compiler, run this spec. */
654 /* Pointer to a vector of `struct compiler' that gives the spec for
655 compiling a file, based on its suffix.
656 A file that does not end in any of these suffixes will be passed
657 unchanged to the loader and nothing else will be done to it.
659 An entry containing two 0s is used to terminate the vector.
661 If multiple entries match a file, the last matching one is used. */
663 static struct compiler
*compilers
;
665 /* Number of entries in `compilers', not counting the null terminator. */
667 static int n_compilers
;
669 /* The default list of file name suffixes and their compilation specs. */
671 static struct compiler default_compilers
[] =
673 /* Add lists of suffixes of known languages here. If those languages
674 were not present when we built the driver, we will hit these copies
675 and be given a more meaningful error than "file not used since
676 linking is not done". */
677 {".m", "#Objective-C"},
678 {".cc", "#C++"}, {".cxx", "#C++"}, {".cpp", "#C++"},
679 {".c++", "#C++"}, {".C", "#C++"},
680 {".ads", "#Ada"}, {".adb", "#Ada"}, {".ada", "#Ada"},
681 {".f", "#Fortran"}, {".for", "#Fortran"}, {".F", "#Fortran"},
682 {".fpp", "#Fortran"}, {".r", "#Ratfor"},
683 {".p", "#Pascal"}, {".pas", "#Pascal"},
684 {".ch", "#Chill"}, {".chi", "#Chill"},
685 {".java", "#Java"}, {".class", "#Java"},
686 {".zip", "#Java"}, {".jar", "#Java"},
687 /* Next come the entries for C. */
691 "%{E|M|MM:cpp -lang-c %{ansi:-std=c89} %(cpp_options)}\
692 %{!E:%{!M:%{!MM:cc1 -lang-c %{ansi:-std=c89} %(cpp_options)\
693 %(cc1_options) %{!S:-o %{|!pipe:%g.s} |\n\
694 as %(asm_options) %{!pipe:%g.s} %A }}}}"
695 #else /* ! USE_CPPLIB */
696 "%(trad_capable_cpp) -lang-c %{ansi:-std=c89} %(cpp_options) \
697 %{!M:%{!MM:%{!E:%{!pipe:%g.i} |\n\
698 cc1 %{!pipe:%g.i} %(cc1_options) %{!S:-o %{|!pipe:%g.s} |\n\
699 as %(asm_options) %{!pipe:%g.s} %A }}}}\n"
700 #endif /* ! USE_CPPLIB */
703 "%{!E:%e-E required when input is from standard input}\
704 %(trad_capable_cpp) -lang-c %{ansi:-std=c89} %(cpp_options)"},
707 "%{!E:%eCompilation of header file requested} \
708 %(trad_capable_cpp) -lang-c %{ansi:-std=c89} %(cpp_options)"},
709 {".i", "@cpp-output"},
712 cc1 %i %(cc1_options) %{!S:|\n\
713 as %(asm_options) %{!pipe:%g.s} %A }}}}"},
714 {".s", "@assembler"},
716 "%{!M:%{!MM:%{!E:%{!S:as %(asm_options) %i %A }}}}"},
717 {".S", "@assembler-with-cpp"},
718 {"@assembler-with-cpp",
719 "%(trad_capable_cpp) -lang-asm %(cpp_options) \
720 %{!M:%{!MM:%{!E:%{!S: %{!pipe:%g.s} |\n\
721 as %(asm_options) %{!pipe:%g.s} %A }}}}"},
723 /* Mark end of table */
727 /* Number of elements in default_compilers, not counting the terminator. */
729 static int n_default_compilers
730 = (sizeof default_compilers
/ sizeof (struct compiler
)) - 1;
732 /* A vector of options to give to the linker.
733 These options are accumulated by %x,
734 and substituted into the linker command with %X. */
735 static int n_linker_options
;
736 static char **linker_options
;
738 /* A vector of options to give to the assembler.
739 These options are accumulated by -Wa,
740 and substituted into the assembler command with %Y. */
741 static int n_assembler_options
;
742 static char **assembler_options
;
744 /* A vector of options to give to the preprocessor.
745 These options are accumulated by -Wp,
746 and substituted into the preprocessor command with %Z. */
747 static int n_preprocessor_options
;
748 static char **preprocessor_options
;
750 /* Define how to map long options into short ones. */
752 /* This structure describes one mapping. */
755 /* The long option's name. */
757 /* The equivalent short option. */
758 const char *equivalent
;
759 /* Argument info. A string of flag chars; NULL equals no options.
760 a => argument required.
761 o => argument optional.
762 j => join argument to equivalent, making one word.
763 * => require other text after NAME as an argument. */
764 const char *arg_info
;
767 /* This is the table of mappings. Mappings are tried sequentially
768 for each option encountered; the first one that matches, wins. */
770 struct option_map option_map
[] =
772 {"--all-warnings", "-Wall", 0},
773 {"--ansi", "-ansi", 0},
774 {"--assemble", "-S", 0},
775 {"--assert", "-A", "a"},
776 {"--classpath", "-fclasspath=", "aj"},
777 {"--CLASSPATH", "-fCLASSPATH=", "aj"},
778 {"--comments", "-C", 0},
779 {"--compile", "-c", 0},
780 {"--debug", "-g", "oj"},
781 {"--define-macro", "-D", "aj"},
782 {"--dependencies", "-M", 0},
783 {"--dump", "-d", "a"},
784 {"--dumpbase", "-dumpbase", "a"},
785 {"--entry", "-e", 0},
786 {"--extra-warnings", "-W", 0},
787 {"--for-assembler", "-Wa", "a"},
788 {"--for-linker", "-Xlinker", "a"},
789 {"--force-link", "-u", "a"},
790 {"--imacros", "-imacros", "a"},
791 {"--include", "-include", "a"},
792 {"--include-barrier", "-I-", 0},
793 {"--include-directory", "-I", "aj"},
794 {"--include-directory-after", "-idirafter", "a"},
795 {"--include-prefix", "-iprefix", "a"},
796 {"--include-with-prefix", "-iwithprefix", "a"},
797 {"--include-with-prefix-before", "-iwithprefixbefore", "a"},
798 {"--include-with-prefix-after", "-iwithprefix", "a"},
799 {"--language", "-x", "a"},
800 {"--library-directory", "-L", "a"},
801 {"--machine", "-m", "aj"},
802 {"--machine-", "-m", "*j"},
803 {"--no-line-commands", "-P", 0},
804 {"--no-precompiled-includes", "-noprecomp", 0},
805 {"--no-standard-includes", "-nostdinc", 0},
806 {"--no-standard-libraries", "-nostdlib", 0},
807 {"--no-warnings", "-w", 0},
808 {"--optimize", "-O", "oj"},
809 {"--output", "-o", "a"},
810 {"--output-class-directory", "-foutput-class-dir=", "ja"},
811 {"--pedantic", "-pedantic", 0},
812 {"--pedantic-errors", "-pedantic-errors", 0},
813 {"--pipe", "-pipe", 0},
814 {"--prefix", "-B", "a"},
815 {"--preprocess", "-E", 0},
816 {"--print-search-dirs", "-print-search-dirs", 0},
817 {"--print-file-name", "-print-file-name=", "aj"},
818 {"--print-libgcc-file-name", "-print-libgcc-file-name", 0},
819 {"--print-missing-file-dependencies", "-MG", 0},
820 {"--print-multi-lib", "-print-multi-lib", 0},
821 {"--print-multi-directory", "-print-multi-directory", 0},
822 {"--print-prog-name", "-print-prog-name=", "aj"},
823 {"--profile", "-p", 0},
824 {"--profile-blocks", "-a", 0},
825 {"--quiet", "-q", 0},
826 {"--save-temps", "-save-temps", 0},
827 {"--shared", "-shared", 0},
828 {"--silent", "-q", 0},
829 {"--specs", "-specs=", "aj"},
830 {"--static", "-static", 0},
831 {"--std", "-std=", "aj"},
832 {"--symbolic", "-symbolic", 0},
833 {"--target", "-b", "a"},
834 {"--time", "-time", 0},
835 {"--trace-includes", "-H", 0},
836 {"--traditional", "-traditional", 0},
837 {"--traditional-cpp", "-traditional-cpp", 0},
838 {"--trigraphs", "-trigraphs", 0},
839 {"--undefine-macro", "-U", "aj"},
840 {"--use-version", "-V", "a"},
841 {"--user-dependencies", "-MM", 0},
842 {"--verbose", "-v", 0},
843 {"--version", "-dumpversion", 0},
844 {"--warn-", "-W", "*j"},
845 {"--write-dependencies", "-MD", 0},
846 {"--write-user-dependencies", "-MMD", 0},
850 /* Translate the options described by *ARGCP and *ARGVP.
851 Make a new vector and store it back in *ARGVP,
852 and store its length in *ARGVC. */
855 translate_options (argcp
, argvp
)
861 const char **argv
= *argvp
;
863 (const char **) xmalloc ((argc
+ 2) * 2 * sizeof (const char *));
867 newv
[newindex
++] = argv
[i
++];
871 /* Translate -- options. */
872 if (argv
[i
][0] == '-' && argv
[i
][1] == '-')
875 /* Find a mapping that applies to this option. */
876 for (j
= 0; j
< sizeof (option_map
) / sizeof (option_map
[0]); j
++)
878 size_t optlen
= strlen (option_map
[j
].name
);
879 size_t arglen
= strlen (argv
[i
]);
880 size_t complen
= arglen
> optlen
? optlen
: arglen
;
881 const char *arginfo
= option_map
[j
].arg_info
;
886 if (!strncmp (argv
[i
], option_map
[j
].name
, complen
))
894 k
< sizeof (option_map
) / sizeof (option_map
[0]);
896 if (strlen (option_map
[k
].name
) >= arglen
897 && !strncmp (argv
[i
], option_map
[k
].name
, arglen
))
899 error ("Ambiguous abbreviation %s", argv
[i
]);
903 if (k
!= sizeof (option_map
) / sizeof (option_map
[0]))
909 /* If the option has an argument, accept that. */
910 if (argv
[i
][optlen
] == '=')
911 arg
= argv
[i
] + optlen
+ 1;
913 /* If this mapping requires extra text at end of name,
914 accept that as "argument". */
915 else if (index (arginfo
, '*') != 0)
916 arg
= argv
[i
] + optlen
;
918 /* Otherwise, extra text at end means mismatch.
919 Try other mappings. */
924 else if (index (arginfo
, '*') != 0)
926 error ("Incomplete `%s' option", option_map
[j
].name
);
930 /* Handle arguments. */
931 if (index (arginfo
, 'a') != 0)
937 error ("Missing argument to `%s' option",
945 else if (index (arginfo
, '*') != 0)
947 else if (index (arginfo
, 'o') == 0)
950 error ("Extraneous argument to `%s' option",
955 /* Store the translation as one argv elt or as two. */
956 if (arg
!= 0 && index (arginfo
, 'j') != 0)
957 newv
[newindex
++] = concat (option_map
[j
].equivalent
, arg
,
961 newv
[newindex
++] = option_map
[j
].equivalent
;
962 newv
[newindex
++] = arg
;
965 newv
[newindex
++] = option_map
[j
].equivalent
;
973 /* Handle old-fashioned options--just copy them through,
974 with their arguments. */
975 else if (argv
[i
][0] == '-')
977 const char *p
= argv
[i
] + 1;
981 if (SWITCH_TAKES_ARG (c
) > (p
[1] != 0))
982 nskip
+= SWITCH_TAKES_ARG (c
) - (p
[1] != 0);
983 else if (WORD_SWITCH_TAKES_ARG (p
))
984 nskip
+= WORD_SWITCH_TAKES_ARG (p
);
985 else if ((c
== 'B' || c
== 'b' || c
== 'V' || c
== 'x')
988 else if (! strcmp (p
, "Xlinker"))
991 /* Watch out for an option at the end of the command line that
992 is missing arguments, and avoid skipping past the end of the
994 if (nskip
+ i
> argc
)
999 newv
[newindex
++] = argv
[i
++];
1004 /* Ordinary operands, or +e options. */
1005 newv
[newindex
++] = argv
[i
++];
1020 /* A fully-blank line is a delimiter in the SPEC file and shouldn't
1021 be considered whitespace. */
1022 if (p
[0] == '\n' && p
[1] == '\n' && p
[2] == '\n')
1024 else if (*p
== '\n' || *p
== ' ' || *p
== '\t')
1028 while (*p
!= '\n') p
++;
1038 /* Structure to keep track of the specs that have been defined so far.
1039 These are accessed using %(specname) or %[specname] in a compiler
1044 /* The following 2 fields must be first */
1045 /* to allow EXTRA_SPECS to be initialized */
1046 const char *name
; /* name of the spec. */
1047 const char *ptr
; /* available ptr if no static pointer */
1049 /* The following fields are not initialized */
1050 /* by EXTRA_SPECS */
1051 const char **ptr_spec
; /* pointer to the spec itself. */
1052 struct spec_list
*next
; /* Next spec in linked list. */
1053 int name_len
; /* length of the name */
1054 int alloc_p
; /* whether string was allocated */
1057 #define INIT_STATIC_SPEC(NAME,PTR) \
1058 { NAME, NULL_PTR, PTR, (struct spec_list *)0, sizeof (NAME)-1, 0 }
1060 /* List of statically defined specs. */
1061 static struct spec_list static_specs
[] =
1063 INIT_STATIC_SPEC ("asm", &asm_spec
),
1064 INIT_STATIC_SPEC ("asm_final", &asm_final_spec
),
1065 INIT_STATIC_SPEC ("asm_options", &asm_options
),
1066 INIT_STATIC_SPEC ("cpp", &cpp_spec
),
1067 INIT_STATIC_SPEC ("cpp_options", &cpp_options
),
1068 INIT_STATIC_SPEC ("trad_capable_cpp", &trad_capable_cpp
),
1069 INIT_STATIC_SPEC ("cc1", &cc1_spec
),
1070 INIT_STATIC_SPEC ("cc1_options", &cc1_options
),
1071 INIT_STATIC_SPEC ("cc1plus", &cc1plus_spec
),
1072 INIT_STATIC_SPEC ("endfile", &endfile_spec
),
1073 INIT_STATIC_SPEC ("link", &link_spec
),
1074 INIT_STATIC_SPEC ("lib", &lib_spec
),
1075 INIT_STATIC_SPEC ("libgcc", &libgcc_spec
),
1076 INIT_STATIC_SPEC ("startfile", &startfile_spec
),
1077 INIT_STATIC_SPEC ("switches_need_spaces", &switches_need_spaces
),
1078 INIT_STATIC_SPEC ("signed_char", &signed_char_spec
),
1079 INIT_STATIC_SPEC ("predefines", &cpp_predefines
),
1080 INIT_STATIC_SPEC ("cross_compile", &cross_compile
),
1081 INIT_STATIC_SPEC ("version", &compiler_version
),
1082 INIT_STATIC_SPEC ("multilib", &multilib_select
),
1083 INIT_STATIC_SPEC ("multilib_defaults", &multilib_defaults
),
1084 INIT_STATIC_SPEC ("multilib_extra", &multilib_extra
),
1085 INIT_STATIC_SPEC ("multilib_matches", &multilib_matches
),
1086 INIT_STATIC_SPEC ("multilib_exclusions", &multilib_exclusions
),
1087 INIT_STATIC_SPEC ("linker", &linker_name_spec
),
1088 INIT_STATIC_SPEC ("link_libgcc", &link_libgcc_spec
),
1091 #ifdef EXTRA_SPECS /* additional specs needed */
1092 /* Structure to keep track of just the first two args of a spec_list.
1093 That is all that the EXTRA_SPECS macro gives us. */
1100 static struct spec_list_1 extra_specs_1
[] = { EXTRA_SPECS
};
1101 static struct spec_list
* extra_specs
= (struct spec_list
*)0;
1104 /* List of dynamically allocates specs that have been defined so far. */
1106 static struct spec_list
*specs
= (struct spec_list
*)0;
1109 /* Initialize the specs lookup routines. */
1114 struct spec_list
*next
= (struct spec_list
*)0;
1115 struct spec_list
*sl
= (struct spec_list
*)0;
1119 return; /* Already initialized. */
1122 notice ("Using builtin specs.\n");
1125 extra_specs
= (struct spec_list
*)
1126 xcalloc (sizeof(struct spec_list
),
1127 (sizeof(extra_specs_1
)/sizeof(extra_specs_1
[0])));
1129 for (i
= (sizeof(extra_specs_1
) / sizeof(extra_specs_1
[0])) - 1; i
>= 0; i
--)
1131 sl
= &extra_specs
[i
];
1132 sl
->name
= extra_specs_1
[i
].name
;
1133 sl
->ptr
= extra_specs_1
[i
].ptr
;
1135 sl
->name_len
= strlen (sl
->name
);
1136 sl
->ptr_spec
= &sl
->ptr
;
1141 for (i
= (sizeof (static_specs
) / sizeof (static_specs
[0])) - 1; i
>= 0; i
--)
1143 sl
= &static_specs
[i
];
1152 /* Change the value of spec NAME to SPEC. If SPEC is empty, then the spec is
1153 removed; If the spec starts with a + then SPEC is added to the end of the
1157 set_spec (name
, spec
)
1161 struct spec_list
*sl
;
1162 const char *old_spec
;
1163 int name_len
= strlen (name
);
1166 /* If this is the first call, initialize the statically allocated specs. */
1169 struct spec_list
*next
= (struct spec_list
*)0;
1170 for (i
= (sizeof (static_specs
) / sizeof (static_specs
[0])) - 1;
1173 sl
= &static_specs
[i
];
1180 /* See if the spec already exists. */
1181 for (sl
= specs
; sl
; sl
= sl
->next
)
1182 if (name_len
== sl
->name_len
&& !strcmp (sl
->name
, name
))
1187 /* Not found - make it. */
1188 sl
= (struct spec_list
*) xmalloc (sizeof (struct spec_list
));
1189 sl
->name
= xstrdup (name
);
1190 sl
->name_len
= name_len
;
1191 sl
->ptr_spec
= &sl
->ptr
;
1193 *(sl
->ptr_spec
) = "";
1198 old_spec
= *(sl
->ptr_spec
);
1199 *(sl
->ptr_spec
) = ((spec
[0] == '+' && ISSPACE ((unsigned char)spec
[1]))
1200 ? concat (old_spec
, spec
+ 1, NULL_PTR
)
1205 notice ("Setting spec %s to '%s'\n\n", name
, *(sl
->ptr_spec
));
1208 /* Free the old spec. */
1209 if (old_spec
&& sl
->alloc_p
)
1210 free ((PTR
) old_spec
);
1215 /* Accumulate a command (program name and args), and run it. */
1217 /* Vector of pointers to arguments in the current line of specifications. */
1219 static const char **argbuf
;
1221 /* Number of elements allocated in argbuf. */
1223 static int argbuf_length
;
1225 /* Number of elements in argbuf currently in use (containing args). */
1227 static int argbuf_index
;
1229 /* We want this on by default all the time now. */
1230 #define MKTEMP_EACH_FILE
1232 #ifdef MKTEMP_EACH_FILE
1234 /* This is the list of suffixes and codes (%g/%u/%U) and the associated
1237 static struct temp_name
{
1238 const char *suffix
; /* suffix associated with the code. */
1239 int length
; /* strlen (suffix). */
1240 int unique
; /* Indicates whether %g or %u/%U was used. */
1241 const char *filename
; /* associated filename. */
1242 int filename_length
; /* strlen (filename). */
1243 struct temp_name
*next
;
1248 /* Number of commands executed so far. */
1250 static int execution_count
;
1252 /* Number of commands that exited with a signal. */
1254 static int signal_count
;
1256 /* Name with which this program was invoked. */
1258 static const char *programname
;
1260 /* Structures to keep track of prefixes to try when looking for files. */
1264 char *prefix
; /* String to prepend to the path. */
1265 struct prefix_list
*next
; /* Next in linked list. */
1266 int require_machine_suffix
; /* Don't use without machine_suffix. */
1267 /* 2 means try both machine_suffix and just_machine_suffix. */
1268 int *used_flag_ptr
; /* 1 if a file was found with this prefix. */
1273 struct prefix_list
*plist
; /* List of prefixes to try */
1274 int max_len
; /* Max length of a prefix in PLIST */
1275 const char *name
; /* Name of this list (used in config stuff) */
1278 /* List of prefixes to try when looking for executables. */
1280 static struct path_prefix exec_prefixes
= { 0, 0, "exec" };
1282 /* List of prefixes to try when looking for startup (crt0) files. */
1284 static struct path_prefix startfile_prefixes
= { 0, 0, "startfile" };
1286 /* List of prefixes to try when looking for include files. */
1288 static struct path_prefix include_prefixes
= { 0, 0, "include" };
1290 /* Suffix to attach to directories searched for commands.
1291 This looks like `MACHINE/VERSION/'. */
1293 static const char *machine_suffix
= 0;
1295 /* Suffix to attach to directories searched for commands.
1296 This is just `MACHINE/'. */
1298 static const char *just_machine_suffix
= 0;
1300 /* Adjusted value of GCC_EXEC_PREFIX envvar. */
1302 static const char *gcc_exec_prefix
;
1304 /* Default prefixes to attach to command names. */
1306 #ifdef CROSS_COMPILE /* Don't use these prefixes for a cross compiler. */
1307 #undef MD_EXEC_PREFIX
1308 #undef MD_STARTFILE_PREFIX
1309 #undef MD_STARTFILE_PREFIX_1
1312 #ifndef STANDARD_EXEC_PREFIX
1313 #define STANDARD_EXEC_PREFIX "/usr/local/lib/gcc-lib/"
1314 #endif /* !defined STANDARD_EXEC_PREFIX */
1316 static const char *standard_exec_prefix
= STANDARD_EXEC_PREFIX
;
1317 static const char *standard_exec_prefix_1
= "/usr/lib/gcc/";
1318 #ifdef MD_EXEC_PREFIX
1319 static const char *md_exec_prefix
= MD_EXEC_PREFIX
;
1322 #ifndef STANDARD_STARTFILE_PREFIX
1323 #define STANDARD_STARTFILE_PREFIX "/usr/local/lib/"
1324 #endif /* !defined STANDARD_STARTFILE_PREFIX */
1326 #ifdef MD_STARTFILE_PREFIX
1327 static const char *md_startfile_prefix
= MD_STARTFILE_PREFIX
;
1329 #ifdef MD_STARTFILE_PREFIX_1
1330 static const char *md_startfile_prefix_1
= MD_STARTFILE_PREFIX_1
;
1332 static const char *standard_startfile_prefix
= STANDARD_STARTFILE_PREFIX
;
1333 static const char *standard_startfile_prefix_1
= "/lib/";
1334 static const char *standard_startfile_prefix_2
= "/usr/lib/";
1336 #ifndef TOOLDIR_BASE_PREFIX
1337 #define TOOLDIR_BASE_PREFIX "/usr/local/"
1339 static const char *tooldir_base_prefix
= TOOLDIR_BASE_PREFIX
;
1340 static const char *tooldir_prefix
;
1342 #ifndef STANDARD_BINDIR_PREFIX
1343 #define STANDARD_BINDIR_PREFIX "/usr/local/bin"
1345 static const char *standard_bindir_prefix
= STANDARD_BINDIR_PREFIX
;
1347 /* Subdirectory to use for locating libraries. Set by
1348 set_multilib_dir based on the compilation options. */
1350 static const char *multilib_dir
;
1352 /* Clear out the vector of arguments (after a command is executed). */
1360 /* Add one argument to the vector at the end.
1361 This is done when a space is seen or at the end of the line.
1362 If DELETE_ALWAYS is nonzero, the arg is a filename
1363 and the file should be deleted eventually.
1364 If DELETE_FAILURE is nonzero, the arg is a filename
1365 and the file should be deleted if this compilation fails. */
1368 store_arg (arg
, delete_always
, delete_failure
)
1370 int delete_always
, delete_failure
;
1372 if (argbuf_index
+ 1 == argbuf_length
)
1374 = (const char **) xrealloc (argbuf
,
1375 (argbuf_length
*= 2) * sizeof (const char *));
1377 argbuf
[argbuf_index
++] = arg
;
1378 argbuf
[argbuf_index
] = 0;
1380 if (delete_always
|| delete_failure
)
1381 record_temp_file (arg
, delete_always
, delete_failure
);
1384 /* Load specs from a file name named FILENAME, replacing occurances of
1385 various different types of line-endings, \r\n, \n\r and just \r, with
1389 load_specs (filename
)
1390 const char *filename
;
1394 struct stat statbuf
;
1401 notice ("Reading specs from %s\n", filename
);
1403 /* Open and stat the file. */
1404 desc
= open (filename
, O_RDONLY
, 0);
1406 pfatal_with_name (filename
);
1407 if (stat (filename
, &statbuf
) < 0)
1408 pfatal_with_name (filename
);
1410 /* Read contents of file into BUFFER. */
1411 buffer
= xmalloc ((unsigned) statbuf
.st_size
+ 1);
1412 readlen
= read (desc
, buffer
, (unsigned) statbuf
.st_size
);
1414 pfatal_with_name (filename
);
1415 buffer
[readlen
] = 0;
1418 specs
= xmalloc (readlen
+ 1);
1420 for (buffer_p
= buffer
; buffer_p
&& *buffer_p
; buffer_p
++)
1426 if (buffer_p
> buffer
&& *(buffer_p
-1) == '\n') /* \n\r */
1428 else if (*(buffer_p
+1) == '\n') /* \r\n */
1442 /* Read compilation specs from a file named FILENAME,
1443 replacing the default ones.
1445 A suffix which starts with `*' is a definition for
1446 one of the machine-specific sub-specs. The "suffix" should be
1447 *asm, *cc1, *cpp, *link, *startfile, *signed_char, etc.
1448 The corresponding spec is stored in asm_spec, etc.,
1449 rather than in the `compilers' vector.
1451 Anything invalid in the file is a fatal error. */
1454 read_specs (filename
, main_p
)
1455 const char *filename
;
1461 buffer
= load_specs (filename
);
1463 /* Scan BUFFER for specs, putting them in the vector. */
1469 char *in
, *out
, *p1
, *p2
, *p3
;
1471 /* Advance P in BUFFER to the next nonblank nocomment line. */
1472 p
= skip_whitespace (p
);
1476 /* Is this a special command that starts with '%'? */
1477 /* Don't allow this for the main specs file, since it would
1478 encourage people to overwrite it. */
1479 if (*p
== '%' && !main_p
)
1482 while (*p
&& *p
!= '\n')
1485 p
++; /* Skip '\n' */
1487 if (!strncmp (p1
, "%include", sizeof ("%include")-1)
1488 && (p1
[sizeof "%include" - 1] == ' '
1489 || p1
[sizeof "%include" - 1] == '\t'))
1493 p1
+= sizeof ("%include");
1494 while (*p1
== ' ' || *p1
== '\t')
1497 if (*p1
++ != '<' || p
[-2] != '>')
1498 fatal ("specs %%include syntax malformed after %ld characters",
1499 (long) (p1
- buffer
+ 1));
1502 new_filename
= find_a_file (&startfile_prefixes
, p1
, R_OK
);
1503 read_specs (new_filename
? new_filename
: p1
, FALSE
);
1506 else if (!strncmp (p1
, "%include_noerr", sizeof "%include_noerr" - 1)
1507 && (p1
[sizeof "%include_noerr" - 1] == ' '
1508 || p1
[sizeof "%include_noerr" - 1] == '\t'))
1512 p1
+= sizeof "%include_noerr";
1513 while (*p1
== ' ' || *p1
== '\t') p1
++;
1515 if (*p1
++ != '<' || p
[-2] != '>')
1516 fatal ("specs %%include syntax malformed after %ld characters",
1517 (long) (p1
- buffer
+ 1));
1520 new_filename
= find_a_file (&startfile_prefixes
, p1
, R_OK
);
1522 read_specs (new_filename
, FALSE
);
1523 else if (verbose_flag
)
1524 notice ("Could not find specs file %s\n", p1
);
1527 else if (!strncmp (p1
, "%rename", sizeof "%rename" - 1)
1528 && (p1
[sizeof "%rename" - 1] == ' '
1529 || p1
[sizeof "%rename" - 1] == '\t'))
1532 struct spec_list
*sl
;
1534 /* Get original name */
1535 p1
+= sizeof "%rename";
1536 while (*p1
== ' ' || *p1
== '\t')
1539 if (! ISALPHA ((unsigned char)*p1
))
1540 fatal ("specs %%rename syntax malformed after %ld characters",
1541 (long) (p1
- buffer
));
1544 while (*p2
&& !ISSPACE ((unsigned char)*p2
))
1547 if (*p2
!= ' ' && *p2
!= '\t')
1548 fatal ("specs %%rename syntax malformed after %ld characters",
1549 (long) (p2
- buffer
));
1553 while (*p2
== ' ' || *p2
== '\t')
1556 if (! ISALPHA ((unsigned char)*p2
))
1557 fatal ("specs %%rename syntax malformed after %ld characters",
1558 (long) (p2
- buffer
));
1560 /* Get new spec name */
1562 while (*p3
&& !ISSPACE ((unsigned char)*p3
))
1566 fatal ("specs %%rename syntax malformed after %ld characters",
1567 (long) (p3
- buffer
));
1570 for (sl
= specs
; sl
; sl
= sl
->next
)
1571 if (name_len
== sl
->name_len
&& !strcmp (sl
->name
, p1
))
1575 fatal ("specs %s spec was not found to be renamed", p1
);
1577 if (strcmp (p1
, p2
) == 0)
1582 notice ("rename spec %s to %s\n", p1
, p2
);
1584 notice ("spec is '%s'\n\n", *(sl
->ptr_spec
));
1588 set_spec (p2
, *(sl
->ptr_spec
));
1590 free ((PTR
) *(sl
->ptr_spec
));
1592 *(sl
->ptr_spec
) = "";
1597 fatal ("specs unknown %% command after %ld characters",
1598 (long) (p1
- buffer
));
1601 /* Find the colon that should end the suffix. */
1603 while (*p1
&& *p1
!= ':' && *p1
!= '\n')
1606 /* The colon shouldn't be missing. */
1608 fatal ("specs file malformed after %ld characters",
1609 (long) (p1
- buffer
));
1611 /* Skip back over trailing whitespace. */
1613 while (p2
> buffer
&& (p2
[-1] == ' ' || p2
[-1] == '\t'))
1616 /* Copy the suffix to a string. */
1617 suffix
= save_string (p
, p2
- p
);
1618 /* Find the next line. */
1619 p
= skip_whitespace (p1
+ 1);
1621 fatal ("specs file malformed after %ld characters",
1622 (long) (p
- buffer
));
1625 /* Find next blank line or end of string. */
1626 while (*p1
&& !(*p1
== '\n' && (p1
[1] == '\n' || p1
[1] == '\0')))
1629 /* Specs end at the blank line and do not include the newline. */
1630 spec
= save_string (p
, p1
- p
);
1633 /* Delete backslash-newline sequences from the spec. */
1638 if (in
[0] == '\\' && in
[1] == '\n')
1640 else if (in
[0] == '#')
1641 while (*in
&& *in
!= '\n')
1649 if (suffix
[0] == '*')
1651 if (! strcmp (suffix
, "*link_command"))
1652 link_command_spec
= spec
;
1654 set_spec (suffix
+ 1, spec
);
1658 /* Add this pair to the vector. */
1660 = ((struct compiler
*)
1661 xrealloc (compilers
,
1662 (n_compilers
+ 2) * sizeof (struct compiler
)));
1664 compilers
[n_compilers
].suffix
= suffix
;
1665 compilers
[n_compilers
].spec
= spec
;
1667 memset (&compilers
[n_compilers
], 0, sizeof compilers
[n_compilers
]);
1671 link_command_spec
= spec
;
1674 if (link_command_spec
== 0)
1675 fatal ("spec file has no spec for linking");
1678 /* Record the names of temporary files we tell compilers to write,
1679 and delete them at the end of the run. */
1681 /* This is the common prefix we use to make temp file names.
1682 It is chosen once for each run of this program.
1683 It is substituted into a spec by %g.
1684 Thus, all temp file names contain this prefix.
1685 In practice, all temp file names start with this prefix.
1687 This prefix comes from the envvar TMPDIR if it is defined;
1688 otherwise, from the P_tmpdir macro if that is defined;
1689 otherwise, in /usr/tmp or /tmp;
1690 or finally the current directory if all else fails. */
1692 static const char *temp_filename
;
1694 /* Length of the prefix. */
1696 static int temp_filename_length
;
1698 /* Define the list of temporary files to delete. */
1703 struct temp_file
*next
;
1706 /* Queue of files to delete on success or failure of compilation. */
1707 static struct temp_file
*always_delete_queue
;
1708 /* Queue of files to delete on failure of compilation. */
1709 static struct temp_file
*failure_delete_queue
;
1711 /* Record FILENAME as a file to be deleted automatically.
1712 ALWAYS_DELETE nonzero means delete it if all compilation succeeds;
1713 otherwise delete it in any case.
1714 FAIL_DELETE nonzero means delete it if a compilation step fails;
1715 otherwise delete it in any case. */
1718 record_temp_file (filename
, always_delete
, fail_delete
)
1719 const char *filename
;
1723 register char * const name
= xstrdup (filename
);
1727 register struct temp_file
*temp
;
1728 for (temp
= always_delete_queue
; temp
; temp
= temp
->next
)
1729 if (! strcmp (name
, temp
->name
))
1732 temp
= (struct temp_file
*) xmalloc (sizeof (struct temp_file
));
1733 temp
->next
= always_delete_queue
;
1735 always_delete_queue
= temp
;
1742 register struct temp_file
*temp
;
1743 for (temp
= failure_delete_queue
; temp
; temp
= temp
->next
)
1744 if (! strcmp (name
, temp
->name
))
1747 temp
= (struct temp_file
*) xmalloc (sizeof (struct temp_file
));
1748 temp
->next
= failure_delete_queue
;
1750 failure_delete_queue
= temp
;
1756 /* Delete all the temporary files whose names we previously recorded. */
1759 delete_if_ordinary (name
)
1766 printf ("Delete %s? (y or n) ", name
);
1770 while ((c
= getchar ()) != '\n' && c
!= EOF
)
1773 if (i
== 'y' || i
== 'Y')
1775 if (stat (name
, &st
) >= 0 && S_ISREG (st
.st_mode
))
1776 if (unlink (name
) < 0)
1778 perror_with_name (name
);
1782 delete_temp_files ()
1784 register struct temp_file
*temp
;
1786 for (temp
= always_delete_queue
; temp
; temp
= temp
->next
)
1787 delete_if_ordinary (temp
->name
);
1788 always_delete_queue
= 0;
1791 /* Delete all the files to be deleted on error. */
1794 delete_failure_queue ()
1796 register struct temp_file
*temp
;
1798 for (temp
= failure_delete_queue
; temp
; temp
= temp
->next
)
1799 delete_if_ordinary (temp
->name
);
1803 clear_failure_queue ()
1805 failure_delete_queue
= 0;
1808 /* Routine to add variables to the environment. We do this to pass
1809 the pathname of the gcc driver, and the directories search to the
1810 collect2 program, which is being run as ld. This way, we can be
1811 sure of executing the right compiler when collect2 wants to build
1812 constructors and destructors. Since the environment variables we
1813 use come from an obstack, we don't have to worry about allocating
1822 #ifndef VMS /* nor about VMS */
1824 extern char **environ
;
1825 char **old_environ
= environ
;
1829 int str_len
= strlen (str
);
1833 while ((ch
= *p
++) != '\0' && ch
!= '=')
1839 /* Search for replacing an existing environment variable, and
1840 count the number of total environment variables. */
1841 for (envp
= old_environ
; *envp
; envp
++)
1844 if (!strncmp (str
, *envp
, name_len
))
1851 /* Add a new environment variable */
1852 environ
= (char **) xmalloc (sizeof (char *) * (num_envs
+2));
1854 memcpy ((char *) (environ
+ 1), (char *) old_environ
,
1855 sizeof (char *) * (num_envs
+1));
1860 #endif /* HAVE_PUTENV */
1863 /* Build a list of search directories from PATHS.
1864 PREFIX is a string to prepend to the list.
1865 If CHECK_DIR_P is non-zero we ensure the directory exists.
1866 This is used mostly by putenv_from_prefixes so we use `collect_obstack'.
1867 It is also used by the --print-search-dirs flag. */
1870 build_search_list (paths
, prefix
, check_dir_p
)
1871 struct path_prefix
*paths
;
1875 int suffix_len
= (machine_suffix
) ? strlen (machine_suffix
) : 0;
1877 = (just_machine_suffix
) ? strlen (just_machine_suffix
) : 0;
1878 int first_time
= TRUE
;
1879 struct prefix_list
*pprefix
;
1881 obstack_grow (&collect_obstack
, prefix
, strlen (prefix
));
1882 obstack_1grow (&collect_obstack
, '=');
1884 for (pprefix
= paths
->plist
; pprefix
!= 0; pprefix
= pprefix
->next
)
1886 int len
= strlen (pprefix
->prefix
);
1890 || is_directory (pprefix
->prefix
, machine_suffix
, 0)))
1893 obstack_1grow (&collect_obstack
, PATH_SEPARATOR
);
1896 obstack_grow (&collect_obstack
, pprefix
->prefix
, len
);
1897 obstack_grow (&collect_obstack
, machine_suffix
, suffix_len
);
1900 if (just_machine_suffix
1901 && pprefix
->require_machine_suffix
== 2
1903 || is_directory (pprefix
->prefix
, just_machine_suffix
, 0)))
1906 obstack_1grow (&collect_obstack
, PATH_SEPARATOR
);
1909 obstack_grow (&collect_obstack
, pprefix
->prefix
, len
);
1910 obstack_grow (&collect_obstack
, just_machine_suffix
,
1914 if (! pprefix
->require_machine_suffix
)
1917 obstack_1grow (&collect_obstack
, PATH_SEPARATOR
);
1920 obstack_grow (&collect_obstack
, pprefix
->prefix
, len
);
1924 obstack_1grow (&collect_obstack
, '\0');
1925 return obstack_finish (&collect_obstack
);
1928 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
1932 putenv_from_prefixes (paths
, env_var
)
1933 struct path_prefix
*paths
;
1934 const char *env_var
;
1936 putenv (build_search_list (paths
, env_var
, 1));
1941 /* FIXME: the location independence code for VMS is hairier than this,
1942 and hasn't been written. */
1944 /* Split a filename into component directories. */
1947 split_directories (name
, ptr_num_dirs
)
1956 /* Count the number of directories. Special case MSDOS disk names as part
1957 of the initial directory. */
1959 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
1960 if (name
[1] == ':' && IS_DIR_SEPARATOR (name
[2]))
1965 #endif /* HAVE_DOS_BASED_FILE_SYSTEM */
1967 while ((ch
= *p
++) != '\0')
1969 if (IS_DIR_SEPARATOR (ch
))
1972 while (IS_DIR_SEPARATOR (*p
))
1977 dirs
= (char **) xmalloc (sizeof (char *) * (num_dirs
+ 2));
1979 /* Now copy the directory parts. */
1982 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
1983 if (name
[1] == ':' && IS_DIR_SEPARATOR (name
[2]))
1985 dirs
[num_dirs
++] = save_string (p
, 3);
1988 #endif /* HAVE_DOS_BASED_FILE_SYSTEM */
1991 while ((ch
= *p
++) != '\0')
1993 if (IS_DIR_SEPARATOR (ch
))
1995 while (IS_DIR_SEPARATOR (*p
))
1998 dirs
[num_dirs
++] = save_string (q
, p
- q
);
2004 dirs
[num_dirs
++] = save_string (q
, p
- 1 - q
);
2006 dirs
[num_dirs
] = NULL_PTR
;
2008 *ptr_num_dirs
= num_dirs
;
2013 /* Release storage held by split directories. */
2016 free_split_directories (dirs
)
2021 while (dirs
[i
] != NULL_PTR
)
2024 free ((char *)dirs
);
2027 /* Given three strings PROGNAME, BIN_PREFIX, PREFIX, return a string that gets
2028 to PREFIX starting with the directory portion of PROGNAME and a relative
2029 pathname of the difference between BIN_PREFIX and PREFIX.
2031 For example, if BIN_PREFIX is /alpha/beta/gamma/gcc/delta, PREFIX is
2032 /alpha/beta/gamma/omega/, and PROGNAME is /red/green/blue/gcc, then this
2033 function will return /red/green/blue/../omega.
2035 If no relative prefix can be found, return NULL. */
2038 make_relative_prefix (progname
, bin_prefix
, prefix
)
2039 const char *progname
;
2040 const char *bin_prefix
;
2043 char **prog_dirs
, **bin_dirs
, **prefix_dirs
;
2044 int prog_num
, bin_num
, prefix_num
, std_loc_p
;
2047 prog_dirs
= split_directories (progname
, &prog_num
);
2048 bin_dirs
= split_directories (bin_prefix
, &bin_num
);
2050 /* If there is no full pathname, try to find the program by checking in each
2051 of the directories specified in the PATH environment variable. */
2056 GET_ENV_PATH_LIST (temp
, "PATH");
2059 char *startp
, *endp
;
2060 char *nstore
= (char *) alloca (strlen (temp
) + strlen (progname
) + 1);
2062 startp
= endp
= temp
;
2065 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
2070 nstore
[1] = DIR_SEPARATOR
;
2075 strncpy (nstore
, startp
, endp
-startp
);
2076 if (! IS_DIR_SEPARATOR (endp
[-1]))
2078 nstore
[endp
-startp
] = DIR_SEPARATOR
;
2079 nstore
[endp
-startp
+1] = 0;
2082 nstore
[endp
-startp
] = 0;
2084 strcat (nstore
, progname
);
2085 if (! access (nstore
, X_OK
)
2086 #ifdef HAVE_EXECUTABLE_SUFFIX
2087 || ! access (strcat (nstore
, EXECUTABLE_SUFFIX
), X_OK
)
2091 free_split_directories (prog_dirs
);
2093 prog_dirs
= split_directories (progname
, &prog_num
);
2099 endp
= startp
= endp
+ 1;
2107 /* Remove the program name from comparison of directory names. */
2110 /* Determine if the compiler is installed in the standard location, and if
2111 so, we don't need to specify relative directories. Also, if argv[0]
2112 doesn't contain any directory specifiers, there is not much we can do. */
2114 if (prog_num
== bin_num
)
2116 for (i
= 0; i
< bin_num
; i
++)
2118 if (strcmp (prog_dirs
[i
], bin_dirs
[i
]) != 0)
2122 if (prog_num
<= 0 || i
== bin_num
)
2125 free_split_directories (prog_dirs
);
2126 free_split_directories (bin_dirs
);
2127 prog_dirs
= bin_dirs
= (char **)0;
2132 prefix_dirs
= split_directories (prefix
, &prefix_num
);
2134 /* Find how many directories are in common between bin_prefix & prefix. */
2135 n
= (prefix_num
< bin_num
) ? prefix_num
: bin_num
;
2136 for (common
= 0; common
< n
; common
++)
2138 if (strcmp (bin_dirs
[common
], prefix_dirs
[common
]) != 0)
2142 /* If there are no common directories, there can be no relative prefix. */
2145 free_split_directories (prog_dirs
);
2146 free_split_directories (bin_dirs
);
2147 free_split_directories (prefix_dirs
);
2151 /* Build up the pathnames in argv[0]. */
2152 for (i
= 0; i
< prog_num
; i
++)
2153 obstack_grow (&obstack
, prog_dirs
[i
], strlen (prog_dirs
[i
]));
2155 /* Now build up the ..'s. */
2156 for (i
= common
; i
< n
; i
++)
2158 obstack_grow (&obstack
, DIR_UP
, sizeof (DIR_UP
)-1);
2159 obstack_1grow (&obstack
, DIR_SEPARATOR
);
2162 /* Put in directories to move over to prefix. */
2163 for (i
= common
; i
< prefix_num
; i
++)
2164 obstack_grow (&obstack
, prefix_dirs
[i
], strlen (prefix_dirs
[i
]));
2166 free_split_directories (prog_dirs
);
2167 free_split_directories (bin_dirs
);
2168 free_split_directories (prefix_dirs
);
2170 obstack_1grow (&obstack
, '\0');
2171 return obstack_finish (&obstack
);
2175 /* Check whether NAME can be accessed in MODE. This is like access,
2176 except that it never considers directories to be executable. */
2179 access_check (name
, mode
)
2187 if (stat (name
, &st
) < 0
2188 || S_ISDIR (st
.st_mode
))
2192 return access (name
, mode
);
2195 /* Search for NAME using the prefix list PREFIXES. MODE is passed to
2196 access to check permissions.
2197 Return 0 if not found, otherwise return its name, allocated with malloc. */
2200 find_a_file (pprefix
, name
, mode
)
2201 struct path_prefix
*pprefix
;
2206 const char *file_suffix
= ((mode
& X_OK
) != 0 ? EXECUTABLE_SUFFIX
: "");
2207 struct prefix_list
*pl
;
2208 int len
= pprefix
->max_len
+ strlen (name
) + strlen (file_suffix
) + 1;
2210 #ifdef DEFAULT_ASSEMBLER
2211 if (! strcmp(name
, "as") && access (DEFAULT_ASSEMBLER
, mode
) == 0)
2212 return xstrdup (DEFAULT_ASSEMBLER
);
2215 #ifdef DEFAULT_LINKER
2216 if (! strcmp(name
, "ld") && access (DEFAULT_LINKER
, mode
) == 0)
2217 return xstrdup (DEFAULT_LINKER
);
2221 len
+= strlen (machine_suffix
);
2223 temp
= xmalloc (len
);
2225 /* Determine the filename to execute (special case for absolute paths). */
2227 if (IS_DIR_SEPARATOR (*name
)
2228 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
2229 /* Check for disk name on MS-DOS-based systems. */
2230 || (name
[0] && name
[1] == ':' && IS_DIR_SEPARATOR (name
[2]))
2234 if (access (name
, mode
) == 0)
2236 strcpy (temp
, name
);
2241 for (pl
= pprefix
->plist
; pl
; pl
= pl
->next
)
2245 /* Some systems have a suffix for executable files.
2246 So try appending that first. */
2247 if (file_suffix
[0] != 0)
2249 strcpy (temp
, pl
->prefix
);
2250 strcat (temp
, machine_suffix
);
2251 strcat (temp
, name
);
2252 strcat (temp
, file_suffix
);
2253 if (access_check (temp
, mode
) == 0)
2255 if (pl
->used_flag_ptr
!= 0)
2256 *pl
->used_flag_ptr
= 1;
2261 /* Now try just the name. */
2262 strcpy (temp
, pl
->prefix
);
2263 strcat (temp
, machine_suffix
);
2264 strcat (temp
, name
);
2265 if (access_check (temp
, mode
) == 0)
2267 if (pl
->used_flag_ptr
!= 0)
2268 *pl
->used_flag_ptr
= 1;
2273 /* Certain prefixes are tried with just the machine type,
2274 not the version. This is used for finding as, ld, etc. */
2275 if (just_machine_suffix
&& pl
->require_machine_suffix
== 2)
2277 /* Some systems have a suffix for executable files.
2278 So try appending that first. */
2279 if (file_suffix
[0] != 0)
2281 strcpy (temp
, pl
->prefix
);
2282 strcat (temp
, just_machine_suffix
);
2283 strcat (temp
, name
);
2284 strcat (temp
, file_suffix
);
2285 if (access_check (temp
, mode
) == 0)
2287 if (pl
->used_flag_ptr
!= 0)
2288 *pl
->used_flag_ptr
= 1;
2293 strcpy (temp
, pl
->prefix
);
2294 strcat (temp
, just_machine_suffix
);
2295 strcat (temp
, name
);
2296 if (access_check (temp
, mode
) == 0)
2298 if (pl
->used_flag_ptr
!= 0)
2299 *pl
->used_flag_ptr
= 1;
2304 /* Certain prefixes can't be used without the machine suffix
2305 when the machine or version is explicitly specified. */
2306 if (! pl
->require_machine_suffix
)
2308 /* Some systems have a suffix for executable files.
2309 So try appending that first. */
2310 if (file_suffix
[0] != 0)
2312 strcpy (temp
, pl
->prefix
);
2313 strcat (temp
, name
);
2314 strcat (temp
, file_suffix
);
2315 if (access_check (temp
, mode
) == 0)
2317 if (pl
->used_flag_ptr
!= 0)
2318 *pl
->used_flag_ptr
= 1;
2323 strcpy (temp
, pl
->prefix
);
2324 strcat (temp
, name
);
2325 if (access_check (temp
, mode
) == 0)
2327 if (pl
->used_flag_ptr
!= 0)
2328 *pl
->used_flag_ptr
= 1;
2338 /* Add an entry for PREFIX in PLIST. If FIRST is set, it goes
2339 at the start of the list, otherwise it goes at the end.
2341 If WARN is nonzero, we will warn if no file is found
2342 through this prefix. WARN should point to an int
2343 which will be set to 1 if this entry is used.
2345 COMPONENT is the value to be passed to update_path.
2347 REQUIRE_MACHINE_SUFFIX is 1 if this prefix can't be used without
2348 the complete value of machine_suffix.
2349 2 means try both machine_suffix and just_machine_suffix. */
2352 add_prefix (pprefix
, prefix
, component
, first
, require_machine_suffix
, warn
)
2353 struct path_prefix
*pprefix
;
2355 const char *component
;
2357 int require_machine_suffix
;
2360 struct prefix_list
*pl
, **prev
;
2363 if (! first
&& pprefix
->plist
)
2365 for (pl
= pprefix
->plist
; pl
->next
; pl
= pl
->next
)
2370 prev
= &pprefix
->plist
;
2372 /* Keep track of the longest prefix */
2374 prefix
= update_path (prefix
, component
);
2375 len
= strlen (prefix
);
2376 if (len
> pprefix
->max_len
)
2377 pprefix
->max_len
= len
;
2379 pl
= (struct prefix_list
*) xmalloc (sizeof (struct prefix_list
));
2380 pl
->prefix
= save_string (prefix
, len
);
2381 pl
->require_machine_suffix
= require_machine_suffix
;
2382 pl
->used_flag_ptr
= warn
;
2389 pl
->next
= (struct prefix_list
*) 0;
2393 /* Print warnings for any prefixes in the list PPREFIX that were not used. */
2396 unused_prefix_warnings (pprefix
)
2397 struct path_prefix
*pprefix
;
2399 struct prefix_list
*pl
= pprefix
->plist
;
2403 if (pl
->used_flag_ptr
!= 0 && !*pl
->used_flag_ptr
)
2405 if (pl
->require_machine_suffix
&& machine_suffix
)
2406 error ("file path prefix `%s%s' never used", pl
->prefix
,
2409 error ("file path prefix `%s' never used", pl
->prefix
);
2411 /* Prevent duplicate warnings. */
2412 *pl
->used_flag_ptr
= 1;
2420 /* Execute the command specified by the arguments on the current line of spec.
2421 When using pipes, this includes several piped-together commands
2422 with `|' between them.
2424 Return 0 if successful, -1 if failed. */
2430 int n_commands
; /* # of command. */
2434 const char *prog
; /* program name. */
2435 const char **argv
; /* vector of args. */
2436 int pid
; /* pid of process for this command. */
2439 struct command
*commands
; /* each command buffer with above info. */
2441 /* Count # of piped commands. */
2442 for (n_commands
= 1, i
= 0; i
< argbuf_index
; i
++)
2443 if (strcmp (argbuf
[i
], "|") == 0)
2446 /* Get storage for each command. */
2448 = (struct command
*) alloca (n_commands
* sizeof (struct command
));
2450 /* Split argbuf into its separate piped processes,
2451 and record info about each one.
2452 Also search for the programs that are to be run. */
2454 commands
[0].prog
= argbuf
[0]; /* first command. */
2455 commands
[0].argv
= &argbuf
[0];
2456 string
= find_a_file (&exec_prefixes
, commands
[0].prog
, X_OK
);
2459 commands
[0].argv
[0] = string
;
2461 for (n_commands
= 1, i
= 0; i
< argbuf_index
; i
++)
2462 if (strcmp (argbuf
[i
], "|") == 0)
2463 { /* each command. */
2464 #if defined (__MSDOS__) || defined (OS2) || defined (VMS)
2465 fatal ("-pipe not supported");
2467 argbuf
[i
] = 0; /* termination of command args. */
2468 commands
[n_commands
].prog
= argbuf
[i
+ 1];
2469 commands
[n_commands
].argv
= &argbuf
[i
+ 1];
2470 string
= find_a_file (&exec_prefixes
, commands
[n_commands
].prog
, X_OK
);
2472 commands
[n_commands
].argv
[0] = string
;
2476 argbuf
[argbuf_index
] = 0;
2478 /* If -v, print what we are about to do, and maybe query. */
2482 /* For help listings, put a blank line between sub-processes. */
2483 if (print_help_list
)
2484 fputc ('\n', stderr
);
2486 /* Print each piped command as a separate line. */
2487 for (i
= 0; i
< n_commands
; i
++)
2491 for (j
= commands
[i
].argv
; *j
; j
++)
2492 fprintf (stderr
, " %s", *j
);
2494 /* Print a pipe symbol after all but the last command. */
2495 if (i
+ 1 != n_commands
)
2496 fprintf (stderr
, " |");
2497 fprintf (stderr
, "\n");
2501 notice ("\nGo ahead? (y or n) ");
2505 while (getchar () != '\n')
2508 if (i
!= 'y' && i
!= 'Y')
2513 /* Run each piped subprocess. */
2515 for (i
= 0; i
< n_commands
; i
++)
2517 char *errmsg_fmt
, *errmsg_arg
;
2518 const char *string
= commands
[i
].argv
[0];
2520 commands
[i
].pid
= pexecute (string
, commands
[i
].argv
,
2521 programname
, temp_filename
,
2522 &errmsg_fmt
, &errmsg_arg
,
2523 ((i
== 0 ? PEXECUTE_FIRST
: 0)
2524 | (i
+ 1 == n_commands
? PEXECUTE_LAST
: 0)
2525 | (string
== commands
[i
].prog
2526 ? PEXECUTE_SEARCH
: 0)
2527 | (verbose_flag
? PEXECUTE_VERBOSE
: 0)));
2529 if (commands
[i
].pid
== -1)
2530 pfatal_pexecute (errmsg_fmt
, errmsg_arg
);
2532 if (string
!= commands
[i
].prog
)
2533 free ((PTR
) string
);
2538 /* Wait for all the subprocesses to finish.
2539 We don't care what order they finish in;
2540 we know that N_COMMANDS waits will get them all.
2541 Ignore subprocesses that we don't know about,
2542 since they can be spawned by the process that exec'ed us. */
2546 #ifdef HAVE_GETRUSAGE
2548 double ut
= 0.0, st
= 0.0;
2551 for (i
= 0; i
< n_commands
; )
2557 pid
= pwait (commands
[i
].pid
, &status
, 0);
2561 #ifdef HAVE_GETRUSAGE
2564 /* getrusage returns the total resource usage of all children
2565 up to now. Copy the previous values into prus, get the
2566 current statistics, then take the difference. */
2569 getrusage (RUSAGE_CHILDREN
, &rus
);
2570 d
.tv_sec
= rus
.ru_utime
.tv_sec
- prus
.ru_utime
.tv_sec
;
2571 d
.tv_usec
= rus
.ru_utime
.tv_usec
- prus
.ru_utime
.tv_usec
;
2572 ut
= (double)d
.tv_sec
+ (double)d
.tv_usec
/ 1.0e6
;
2574 d
.tv_sec
= rus
.ru_stime
.tv_sec
- prus
.ru_stime
.tv_sec
;
2575 d
.tv_usec
= rus
.ru_stime
.tv_usec
- prus
.ru_stime
.tv_usec
;
2576 st
= (double)d
.tv_sec
+ (double)d
.tv_usec
/ 1.0e6
;
2580 for (j
= 0; j
< n_commands
; j
++)
2581 if (commands
[j
].pid
== pid
)
2584 if (WIFSIGNALED (status
))
2587 /* SIGPIPE is a special case. It happens in -pipe mode
2588 when the compiler dies before the preprocessor is
2589 done, or the assembler dies before the compiler is
2590 done. There's generally been an error already, and
2591 this is just fallout. So don't generate another error
2592 unless we would otherwise have succeeded. */
2593 if (WTERMSIG (status
) == SIGPIPE
2594 && (signal_count
|| greatest_status
>= MIN_FATAL_STATUS
))
2599 Internal error: %s (program %s)\n\
2600 Please submit a full bug report.\n\
2601 See %s for instructions.",
2602 strsignal (WTERMSIG (status
)), commands
[j
].prog
,
2607 else if (WIFEXITED (status
)
2608 && WEXITSTATUS (status
) >= MIN_FATAL_STATUS
)
2610 if (WEXITSTATUS (status
) > greatest_status
)
2611 greatest_status
= WEXITSTATUS (status
);
2614 #ifdef HAVE_GETRUSAGE
2615 if (report_times
&& ut
+ st
!= 0)
2616 notice ("# %s %.2f %.2f\n", commands
[j
].prog
, ut
, st
);
2625 /* Find all the switches given to us
2626 and make a vector describing them.
2627 The elements of the vector are strings, one per switch given.
2628 If a switch uses following arguments, then the `part1' field
2629 is the switch itself and the `args' field
2630 is a null-terminated vector containing the following arguments.
2631 The `live_cond' field is:
2633 1 if the switch is true in a conditional spec,
2634 -1 if false (overridden by a later switch)
2635 -2 if this switch should be ignored (used in %{<S})
2636 The `validated' field is nonzero if any spec has looked at this switch;
2637 if it remains zero at the end of the run, it must be meaningless. */
2640 #define SWITCH_FALSE -1
2641 #define SWITCH_IGNORE -2
2642 #define SWITCH_LIVE 1
2652 static struct switchstr
*switches
;
2654 static int n_switches
;
2659 const char *language
;
2662 /* Also a vector of input files specified. */
2664 static struct infile
*infiles
;
2666 static int n_infiles
;
2668 /* This counts the number of libraries added by lang_specific_driver, so that
2669 we can tell if there were any user supplied any files or libraries. */
2671 static int added_libraries
;
2673 /* And a vector of corresponding output files is made up later. */
2675 static const char **outfiles
;
2677 /* Used to track if none of the -B paths are used. */
2680 /* Used to track if standard path isn't used and -b or -V is specified. */
2681 static int warn_std
;
2683 /* Gives value to pass as "warn" to add_prefix for standard prefixes. */
2684 static int *warn_std_ptr
= 0;
2687 #if defined(HAVE_OBJECT_SUFFIX) || defined(HAVE_EXECUTABLE_SUFFIX)
2689 /* Convert NAME to a new name if it is the standard suffix. DO_EXE
2690 is true if we should look for an executable suffix as well. */
2693 convert_filename (name
, do_exe
)
2703 len
= strlen (name
);
2705 #ifdef HAVE_OBJECT_SUFFIX
2706 /* Convert x.o to x.obj if OBJECT_SUFFIX is ".obj". */
2708 && name
[len
- 2] == '.'
2709 && name
[len
- 1] == 'o')
2711 obstack_grow (&obstack
, name
, len
- 2);
2712 obstack_grow0 (&obstack
, OBJECT_SUFFIX
, strlen (OBJECT_SUFFIX
));
2713 name
= obstack_finish (&obstack
);
2717 #ifdef HAVE_EXECUTABLE_SUFFIX
2718 /* If there is no filetype, make it the executable suffix (which includes
2719 the "."). But don't get confused if we have just "-o". */
2720 if (! do_exe
|| EXECUTABLE_SUFFIX
[0] == 0 || (len
== 2 && name
[0] == '-'))
2723 for (i
= len
- 1; i
>= 0; i
--)
2724 if (IS_DIR_SEPARATOR (name
[i
]))
2727 for (i
++; i
< len
; i
++)
2731 obstack_grow (&obstack
, name
, len
);
2732 obstack_grow0 (&obstack
, EXECUTABLE_SUFFIX
, strlen (EXECUTABLE_SUFFIX
));
2733 name
= obstack_finish (&obstack
);
2740 /* Display the command line switches accepted by gcc. */
2744 printf (_("Usage: %s [options] file...\n"), programname
);
2745 fputs (_("Options:\n"), stdout
);
2747 fputs (_(" -pass-exit-codes Exit with highest error code from a phase\n"), stdout
);
2748 fputs (_(" --help Display this information\n"), stdout
);
2750 fputs (_(" (Use '-v --help' to display command line options of sub-processes)\n"), stdout
);
2751 fputs (_(" -dumpspecs Display all of the built in spec strings\n"), stdout
);
2752 fputs (_(" -dumpversion Display the version of the compiler\n"), stdout
);
2753 fputs (_(" -dumpmachine Display the compiler's target processor\n"), stdout
);
2754 fputs (_(" -print-search-dirs Display the directories in the compiler's search path\n"), stdout
);
2755 fputs (_(" -print-libgcc-file-name Display the name of the compiler's companion library\n"), stdout
);
2756 fputs (_(" -print-file-name=<lib> Display the full path to library <lib>\n"), stdout
);
2757 fputs (_(" -print-prog-name=<prog> Display the full path to compiler component <prog>\n"), stdout
);
2758 fputs (_(" -print-multi-directory Display the root directory for versions of libgcc\n"), stdout
);
2760 -print-multi-lib Display the mapping between command line options and\n\
2761 multiple library search directories\n"), stdout
);
2762 fputs (_(" -Wa,<options> Pass comma-separated <options> on to the assembler\n"), stdout
);
2763 fputs (_(" -Wp,<options> Pass comma-separated <options> on to the preprocessor\n"), stdout
);
2764 fputs (_(" -Wl,<options> Pass comma-separated <options> on to the linker\n"), stdout
);
2765 fputs (_(" -Xlinker <arg> Pass <arg> on to the linker\n"), stdout
);
2766 fputs (_(" -save-temps Do not delete intermediate files\n"), stdout
);
2767 fputs (_(" -pipe Use pipes rather than intermediate files\n"), stdout
);
2768 fputs (_(" -time Time the execution of each subprocess\n"), stdout
);
2769 fputs (_(" -specs=<file> Override builtin specs with the contents of <file>\n"), stdout
);
2770 fputs (_(" -std=<standard> Assume that the input sources are for <standard>\n"), stdout
);
2771 fputs (_(" -B <directory> Add <directory> to the compiler's search paths\n"), stdout
);
2772 fputs (_(" -b <machine> Run gcc for target <machine>, if installed\n"), stdout
);
2773 fputs (_(" -V <version> Run gcc version number <version>, if installed\n"), stdout
);
2774 fputs (_(" -v Display the programs invoked by the compiler\n"), stdout
);
2775 fputs (_(" -E Preprocess only; do not compile, assemble or link\n"), stdout
);
2776 fputs (_(" -S Compile only; do not assemble or link\n"), stdout
);
2777 fputs (_(" -c Compile and assemble, but do not link\n"), stdout
);
2778 fputs (_(" -o <file> Place the output into <file>\n"), stdout
);
2780 -x <language> Specify the language of the following input files\n\
2781 Permissable languages include: c c++ assembler none\n\
2782 'none' means revert to the default behaviour of\n\
2783 guessing the language based on the file's extension\n\
2787 \nOptions starting with -g, -f, -m, -O or -W are automatically passed on to\n\
2788 the various sub-processes invoked by %s. In order to pass other options\n\
2789 on to these processes the -W<letter> options must be used.\n\
2792 /* The rest of the options are displayed by invocations of the various
2797 add_preprocessor_option (option
, len
)
2798 const char * option
;
2801 n_preprocessor_options
++;
2803 if (! preprocessor_options
)
2804 preprocessor_options
2805 = (char **) xmalloc (n_preprocessor_options
* sizeof (char *));
2807 preprocessor_options
2808 = (char **) xrealloc (preprocessor_options
,
2809 n_preprocessor_options
* sizeof (char *));
2811 preprocessor_options
[n_preprocessor_options
- 1] =
2812 save_string (option
, len
);
2816 add_assembler_option (option
, len
)
2817 const char * option
;
2820 n_assembler_options
++;
2822 if (! assembler_options
)
2824 = (char **) xmalloc (n_assembler_options
* sizeof (char *));
2827 = (char **) xrealloc (assembler_options
,
2828 n_assembler_options
* sizeof (char *));
2830 assembler_options
[n_assembler_options
- 1] = save_string (option
, len
);
2834 add_linker_option (option
, len
)
2835 const char * option
;
2840 if (! linker_options
)
2842 = (char **) xmalloc (n_linker_options
* sizeof (char *));
2845 = (char **) xrealloc (linker_options
,
2846 n_linker_options
* sizeof (char *));
2848 linker_options
[n_linker_options
- 1] = save_string (option
, len
);
2851 /* Create the vector `switches' and its contents.
2852 Store its length in `n_switches'. */
2855 process_command (argc
, argv
)
2862 const char *spec_lang
= 0;
2863 int last_language_n_infiles
;
2866 int lang_n_infiles
= 0;
2868 GET_ENV_PATH_LIST (gcc_exec_prefix
, "GCC_EXEC_PREFIX");
2872 added_libraries
= 0;
2874 /* Figure compiler version from version string. */
2876 compiler_version
= temp1
= xstrdup (version_string
);
2878 for (; *temp1
; ++temp1
)
2887 /* Set up the default search paths. If there is no GCC_EXEC_PREFIX,
2888 see if we can create it from the pathname specified in argv[0]. */
2891 /* FIXME: make_relative_prefix doesn't yet work for VMS. */
2892 if (!gcc_exec_prefix
)
2894 gcc_exec_prefix
= make_relative_prefix (argv
[0], standard_bindir_prefix
,
2895 standard_exec_prefix
);
2896 if (gcc_exec_prefix
)
2897 putenv (concat ("GCC_EXEC_PREFIX=", gcc_exec_prefix
, NULL_PTR
));
2901 if (gcc_exec_prefix
)
2903 int len
= strlen (gcc_exec_prefix
);
2904 if (len
> (int) sizeof ("/lib/gcc-lib/")-1
2905 && (IS_DIR_SEPARATOR (gcc_exec_prefix
[len
-1])))
2907 temp
= gcc_exec_prefix
+ len
- sizeof ("/lib/gcc-lib/") + 1;
2908 if (IS_DIR_SEPARATOR (*temp
)
2909 && strncmp (temp
+1, "lib", 3) == 0
2910 && IS_DIR_SEPARATOR (temp
[4])
2911 && strncmp (temp
+5, "gcc-lib", 7) == 0)
2912 len
-= sizeof ("/lib/gcc-lib/") - 1;
2915 set_std_prefix (gcc_exec_prefix
, len
);
2916 add_prefix (&exec_prefixes
, gcc_exec_prefix
, "GCC", 0, 0, NULL_PTR
);
2917 add_prefix (&startfile_prefixes
, gcc_exec_prefix
, "GCC", 0, 0, NULL_PTR
);
2920 /* COMPILER_PATH and LIBRARY_PATH have values
2921 that are lists of directory names with colons. */
2923 GET_ENV_PATH_LIST (temp
, "COMPILER_PATH");
2926 const char *startp
, *endp
;
2927 char *nstore
= (char *) alloca (strlen (temp
) + 3);
2929 startp
= endp
= temp
;
2932 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
2934 strncpy (nstore
, startp
, endp
-startp
);
2936 strcpy (nstore
, concat (".", dir_separator_str
, NULL_PTR
));
2937 else if (!IS_DIR_SEPARATOR (endp
[-1]))
2939 nstore
[endp
-startp
] = DIR_SEPARATOR
;
2940 nstore
[endp
-startp
+1] = 0;
2943 nstore
[endp
-startp
] = 0;
2944 add_prefix (&exec_prefixes
, nstore
, 0, 0, 0, NULL_PTR
);
2945 add_prefix (&include_prefixes
,
2946 concat (nstore
, "include", NULL_PTR
),
2950 endp
= startp
= endp
+ 1;
2957 GET_ENV_PATH_LIST (temp
, LIBRARY_PATH_ENV
);
2958 if (temp
&& *cross_compile
== '0')
2960 const char *startp
, *endp
;
2961 char *nstore
= (char *) alloca (strlen (temp
) + 3);
2963 startp
= endp
= temp
;
2966 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
2968 strncpy (nstore
, startp
, endp
-startp
);
2970 strcpy (nstore
, concat (".", dir_separator_str
, NULL_PTR
));
2971 else if (!IS_DIR_SEPARATOR (endp
[-1]))
2973 nstore
[endp
-startp
] = DIR_SEPARATOR
;
2974 nstore
[endp
-startp
+1] = 0;
2977 nstore
[endp
-startp
] = 0;
2978 add_prefix (&startfile_prefixes
, nstore
, NULL_PTR
,
2982 endp
= startp
= endp
+ 1;
2989 /* Use LPATH like LIBRARY_PATH (for the CMU build program). */
2990 GET_ENV_PATH_LIST (temp
, "LPATH");
2991 if (temp
&& *cross_compile
== '0')
2993 const char *startp
, *endp
;
2994 char *nstore
= (char *) alloca (strlen (temp
) + 3);
2996 startp
= endp
= temp
;
2999 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
3001 strncpy (nstore
, startp
, endp
-startp
);
3003 strcpy (nstore
, concat (".", dir_separator_str
, NULL_PTR
));
3004 else if (!IS_DIR_SEPARATOR (endp
[-1]))
3006 nstore
[endp
-startp
] = DIR_SEPARATOR
;
3007 nstore
[endp
-startp
+1] = 0;
3010 nstore
[endp
-startp
] = 0;
3011 add_prefix (&startfile_prefixes
, nstore
, NULL_PTR
,
3015 endp
= startp
= endp
+ 1;
3022 /* Convert new-style -- options to old-style. */
3023 translate_options (&argc
, &argv
);
3025 /* Do language-specific adjustment/addition of flags. */
3026 lang_specific_driver (&argc
, &argv
, &added_libraries
);
3028 /* Scan argv twice. Here, the first time, just count how many switches
3029 there will be in their vector, and how many input files in theirs.
3030 Here we also parse the switches that cc itself uses (e.g. -v). */
3032 for (i
= 1; i
< argc
; i
++)
3034 if (! strcmp (argv
[i
], "-dumpspecs"))
3036 struct spec_list
*sl
;
3038 for (sl
= specs
; sl
; sl
= sl
->next
)
3039 printf ("*%s:\n%s\n\n", sl
->name
, *(sl
->ptr_spec
));
3040 if (link_command_spec
)
3041 printf ("*link_command:\n%s\n\n", link_command_spec
);
3044 else if (! strcmp (argv
[i
], "-dumpversion"))
3046 printf ("%s\n", spec_version
);
3049 else if (! strcmp (argv
[i
], "-dumpmachine"))
3051 printf ("%s\n", spec_machine
);
3054 else if (strcmp (argv
[i
], "-fhelp") == 0)
3056 /* translate_options () has turned --help into -fhelp. */
3057 print_help_list
= 1;
3059 /* We will be passing a dummy file on to the sub-processes. */
3063 add_preprocessor_option ("--help", 6);
3064 add_assembler_option ("--help", 6);
3065 add_linker_option ("--help", 6);
3067 else if (! strcmp (argv
[i
], "-pass-exit-codes"))
3069 pass_exit_codes
= 1;
3072 else if (! strcmp (argv
[i
], "-print-search-dirs"))
3073 print_search_dirs
= 1;
3074 else if (! strcmp (argv
[i
], "-print-libgcc-file-name"))
3075 print_file_name
= "libgcc.a";
3076 else if (! strncmp (argv
[i
], "-print-file-name=", 17))
3077 print_file_name
= argv
[i
] + 17;
3078 else if (! strncmp (argv
[i
], "-print-prog-name=", 17))
3079 print_prog_name
= argv
[i
] + 17;
3080 else if (! strcmp (argv
[i
], "-print-multi-lib"))
3081 print_multi_lib
= 1;
3082 else if (! strcmp (argv
[i
], "-print-multi-directory"))
3083 print_multi_directory
= 1;
3084 else if (! strncmp (argv
[i
], "-Wa,", 4))
3087 /* Pass the rest of this option to the assembler. */
3089 /* Split the argument at commas. */
3091 for (j
= 4; argv
[i
][j
]; j
++)
3092 if (argv
[i
][j
] == ',')
3094 add_assembler_option (argv
[i
] + prev
, j
- prev
);
3098 /* Record the part after the last comma. */
3099 add_assembler_option (argv
[i
] + prev
, j
- prev
);
3101 else if (! strncmp (argv
[i
], "-Wp,", 4))
3104 /* Pass the rest of this option to the preprocessor. */
3106 /* Split the argument at commas. */
3108 for (j
= 4; argv
[i
][j
]; j
++)
3109 if (argv
[i
][j
] == ',')
3111 add_preprocessor_option (argv
[i
] + prev
, j
- prev
);
3115 /* Record the part after the last comma. */
3116 add_preprocessor_option (argv
[i
] + prev
, j
- prev
);
3118 else if (argv
[i
][0] == '+' && argv
[i
][1] == 'e')
3119 /* The +e options to the C++ front-end. */
3121 else if (strncmp (argv
[i
], "-Wl,", 4) == 0)
3124 /* Split the argument at commas. */
3125 for (j
= 3; argv
[i
][j
]; j
++)
3126 n_infiles
+= (argv
[i
][j
] == ',');
3128 else if (strcmp (argv
[i
], "-Xlinker") == 0)
3131 fatal ("argument to `-Xlinker' is missing");
3136 else if (strncmp (argv
[i
], "-l", 2) == 0)
3138 else if (strcmp (argv
[i
], "-save-temps") == 0)
3140 save_temps_flag
= 1;
3143 else if (strcmp (argv
[i
], "-specs") == 0)
3145 struct user_specs
*user
= (struct user_specs
*)
3146 xmalloc (sizeof (struct user_specs
));
3148 fatal ("argument to `-specs' is missing");
3150 user
->next
= (struct user_specs
*)0;
3151 user
->filename
= argv
[i
];
3152 if (user_specs_tail
)
3153 user_specs_tail
->next
= user
;
3155 user_specs_head
= user
;
3156 user_specs_tail
= user
;
3158 else if (strncmp (argv
[i
], "-specs=", 7) == 0)
3160 struct user_specs
*user
= (struct user_specs
*)
3161 xmalloc (sizeof (struct user_specs
));
3162 if (strlen (argv
[i
]) == 7)
3163 fatal ("argument to `-specs=' is missing");
3165 user
->next
= (struct user_specs
*)0;
3166 user
->filename
= argv
[i
]+7;
3167 if (user_specs_tail
)
3168 user_specs_tail
->next
= user
;
3170 user_specs_head
= user
;
3171 user_specs_tail
= user
;
3173 else if (strcmp (argv
[i
], "-time") == 0)
3175 else if (argv
[i
][0] == '-' && argv
[i
][1] != 0)
3177 register const char *p
= &argv
[i
][1];
3178 register int c
= *p
;
3184 if (p
[1] == 0 && i
+ 1 == argc
)
3185 fatal ("argument to `-b' is missing");
3187 spec_machine
= argv
[++i
];
3189 spec_machine
= p
+ 1;
3191 warn_std_ptr
= &warn_std
;
3197 if (p
[1] == 0 && i
+ 1 == argc
)
3198 fatal ("argument to `-B' is missing");
3203 add_prefix (&exec_prefixes
, value
, NULL_PTR
, 1, 0, &warn_B
);
3204 add_prefix (&startfile_prefixes
, value
, NULL_PTR
,
3206 add_prefix (&include_prefixes
, concat (value
, "include",
3208 NULL_PTR
, 1, 0, NULL_PTR
);
3210 /* As a kludge, if the arg is "[foo/]stageN/", just add
3211 "[foo/]include" to the include prefix. */
3213 int len
= strlen (value
);
3216 && (IS_DIR_SEPARATOR (value
[len
- 8]))))
3217 && strncmp (value
+ len
- 7, "stage", 5) == 0
3218 && ISDIGIT (value
[len
- 2])
3219 && (IS_DIR_SEPARATOR (value
[len
- 1])))
3222 add_prefix (&include_prefixes
, "include", NULL_PTR
,
3226 char *string
= xmalloc (len
+ 1);
3227 strncpy (string
, value
, len
-7);
3228 strcpy (string
+len
-7, "include");
3229 add_prefix (&include_prefixes
, string
, NULL_PTR
,
3238 case 'v': /* Print our subcommands and print versions. */
3240 /* If they do anything other than exactly `-v', don't set
3241 verbose_flag; rather, continue on to give the error. */
3249 if (p
[1] == 0 && i
+ 1 == argc
)
3250 fatal ("argument to `-V' is missing");
3252 spec_version
= argv
[++i
];
3254 spec_version
= p
+ 1;
3255 compiler_version
= spec_version
;
3256 warn_std_ptr
= &warn_std
;
3258 /* Validate the version number. Use the same checks
3259 done when inserting it into a spec.
3261 The format of the version string is
3262 ([^0-9]*-)?[0-9]+[.][0-9]+([.][0-9]+)?([- ].*)? */
3264 const char *v
= compiler_version
;
3266 /* Ignore leading non-digits. i.e. "foo-" in "foo-2.7.2". */
3267 while (! ISDIGIT (*v
))
3270 if (v
> compiler_version
&& v
[-1] != '-')
3271 fatal ("invalid version number format");
3273 /* Set V after the first period. */
3274 while (ISDIGIT (*v
))
3278 fatal ("invalid version number format");
3281 while (ISDIGIT (*v
))
3284 if (*v
!= 0 && *v
!= ' ' && *v
!= '.' && *v
!= '-')
3285 fatal ("invalid version number format");
3301 #if defined(HAVE_EXECUTABLE_SUFFIX)
3306 /* Forward scan, just in case -S or -c is specified
3313 if (argv
[j
][0] == '-')
3315 if (SWITCH_CURTAILS_COMPILATION (argv
[j
][1])
3321 else if (skip
= SWITCH_TAKES_ARG (argv
[j
][1]))
3322 j
+= skip
- (argv
[j
][2] != 0);
3323 else if (skip
= WORD_SWITCH_TAKES_ARG (argv
[j
] + 1))
3330 #if defined(HAVE_EXECUTABLE_SUFFIX) || defined(HAVE_OBJECT_SUFFIX)
3332 argv
[i
+1] = convert_filename (argv
[i
+1], ! have_c
);
3334 argv
[i
] = convert_filename (argv
[i
], ! have_c
);
3342 if (SWITCH_TAKES_ARG (c
) > (p
[1] != 0))
3343 i
+= SWITCH_TAKES_ARG (c
) - (p
[1] != 0);
3344 else if (WORD_SWITCH_TAKES_ARG (p
))
3345 i
+= WORD_SWITCH_TAKES_ARG (p
);
3355 if (have_c
&& have_o
&& lang_n_infiles
> 1)
3356 fatal ("cannot specify -o with -c or -S and multiple compilations");
3358 /* Set up the search paths before we go looking for config files. */
3360 /* These come before the md prefixes so that we will find gcc's subcommands
3361 (such as cpp) rather than those of the host system. */
3362 /* Use 2 as fourth arg meaning try just the machine as a suffix,
3363 as well as trying the machine and the version. */
3365 add_prefix (&exec_prefixes
, standard_exec_prefix
, "GCC",
3366 0, 1, warn_std_ptr
);
3367 add_prefix (&exec_prefixes
, standard_exec_prefix
, "BINUTILS",
3368 0, 2, warn_std_ptr
);
3369 add_prefix (&exec_prefixes
, standard_exec_prefix_1
, "BINUTILS",
3370 0, 2, warn_std_ptr
);
3373 add_prefix (&startfile_prefixes
, standard_exec_prefix
, "BINUTILS",
3374 0, 1, warn_std_ptr
);
3375 add_prefix (&startfile_prefixes
, standard_exec_prefix_1
, "BINUTILS",
3376 0, 1, warn_std_ptr
);
3378 tooldir_prefix
= concat (tooldir_base_prefix
, spec_machine
,
3379 dir_separator_str
, NULL_PTR
);
3381 /* If tooldir is relative, base it on exec_prefixes. A relative
3382 tooldir lets us move the installed tree as a unit.
3384 If GCC_EXEC_PREFIX is defined, then we want to add two relative
3385 directories, so that we can search both the user specified directory
3386 and the standard place. */
3388 if (!IS_DIR_SEPARATOR (*tooldir_prefix
))
3390 if (gcc_exec_prefix
)
3392 char *gcc_exec_tooldir_prefix
3393 = concat (gcc_exec_prefix
, spec_machine
, dir_separator_str
,
3394 spec_version
, dir_separator_str
, tooldir_prefix
, NULL_PTR
);
3396 add_prefix (&exec_prefixes
,
3397 concat (gcc_exec_tooldir_prefix
, "bin",
3398 dir_separator_str
, NULL_PTR
),
3399 NULL_PTR
, 0, 0, NULL_PTR
);
3400 add_prefix (&startfile_prefixes
,
3401 concat (gcc_exec_tooldir_prefix
, "lib",
3402 dir_separator_str
, NULL_PTR
),
3403 NULL_PTR
, 0, 0, NULL_PTR
);
3406 tooldir_prefix
= concat (standard_exec_prefix
, spec_machine
,
3407 dir_separator_str
, spec_version
,
3408 dir_separator_str
, tooldir_prefix
, NULL_PTR
);
3411 add_prefix (&exec_prefixes
,
3412 concat (tooldir_prefix
, "bin", dir_separator_str
, NULL_PTR
),
3413 "BINUTILS", 0, 0, NULL_PTR
);
3414 add_prefix (&startfile_prefixes
,
3415 concat (tooldir_prefix
, "lib", dir_separator_str
, NULL_PTR
),
3416 "BINUTILS", 0, 0, NULL_PTR
);
3418 /* More prefixes are enabled in main, after we read the specs file
3419 and determine whether this is cross-compilation or not. */
3422 /* Then create the space for the vectors and scan again. */
3424 switches
= ((struct switchstr
*)
3425 xmalloc ((n_switches
+ 1) * sizeof (struct switchstr
)));
3426 infiles
= (struct infile
*) xmalloc ((n_infiles
+ 1) * sizeof (struct infile
));
3429 last_language_n_infiles
= -1;
3431 /* This, time, copy the text of each switch and store a pointer
3432 to the copy in the vector of switches.
3433 Store all the infiles in their vector. */
3435 for (i
= 1; i
< argc
; i
++)
3437 /* Just skip the switches that were handled by the preceding loop. */
3438 if (! strncmp (argv
[i
], "-Wa,", 4))
3440 else if (! strncmp (argv
[i
], "-Wp,", 4))
3442 else if (! strcmp (argv
[i
], "-pass-exit-codes"))
3444 else if (! strcmp (argv
[i
], "-print-search-dirs"))
3446 else if (! strcmp (argv
[i
], "-print-libgcc-file-name"))
3448 else if (! strncmp (argv
[i
], "-print-file-name=", 17))
3450 else if (! strncmp (argv
[i
], "-print-prog-name=", 17))
3452 else if (! strcmp (argv
[i
], "-print-multi-lib"))
3454 else if (! strcmp (argv
[i
], "-print-multi-directory"))
3456 else if (strcmp (argv
[i
], "-fhelp") == 0)
3460 /* Create a dummy input file, so that we can pass --help on to
3461 the various sub-processes. */
3462 infiles
[n_infiles
].language
= "c";
3463 infiles
[n_infiles
++].name
= "help-dummy";
3465 /* Preserve the --help switch so that it can be caught by the
3467 switches
[n_switches
].part1
= "--help";
3468 switches
[n_switches
].args
= 0;
3469 switches
[n_switches
].live_cond
= SWITCH_OK
;
3470 switches
[n_switches
].validated
= 0;
3475 else if (argv
[i
][0] == '+' && argv
[i
][1] == 'e')
3477 /* Compensate for the +e options to the C++ front-end;
3478 they're there simply for cfront call-compatibility. We do
3479 some magic in default_compilers to pass them down properly.
3480 Note we deliberately start at the `+' here, to avoid passing
3481 -e0 or -e1 down into the linker. */
3482 switches
[n_switches
].part1
= &argv
[i
][0];
3483 switches
[n_switches
].args
= 0;
3484 switches
[n_switches
].live_cond
= SWITCH_OK
;
3485 switches
[n_switches
].validated
= 0;
3488 else if (strncmp (argv
[i
], "-Wl,", 4) == 0)
3491 /* Split the argument at commas. */
3493 for (j
= 4; argv
[i
][j
]; j
++)
3494 if (argv
[i
][j
] == ',')
3496 infiles
[n_infiles
].language
= "*";
3497 infiles
[n_infiles
++].name
3498 = save_string (argv
[i
] + prev
, j
- prev
);
3501 /* Record the part after the last comma. */
3502 infiles
[n_infiles
].language
= "*";
3503 infiles
[n_infiles
++].name
= argv
[i
] + prev
;
3505 else if (strcmp (argv
[i
], "-Xlinker") == 0)
3507 infiles
[n_infiles
].language
= "*";
3508 infiles
[n_infiles
++].name
= argv
[++i
];
3510 else if (strncmp (argv
[i
], "-l", 2) == 0)
3512 infiles
[n_infiles
].language
= "*";
3513 infiles
[n_infiles
++].name
= argv
[i
];
3515 else if (strcmp (argv
[i
], "-specs") == 0)
3517 else if (strncmp (argv
[i
], "-specs=", 7) == 0)
3519 else if (strcmp (argv
[i
], "-time") == 0)
3521 else if ((save_temps_flag
|| report_times
)
3522 && strcmp (argv
[i
], "-pipe") == 0)
3524 /* -save-temps overrides -pipe, so that temp files are produced */
3525 if (save_temps_flag
)
3526 error ("Warning: -pipe ignored since -save-temps specified");
3527 /* -time overrides -pipe because we can't get correct stats when
3528 multiple children are running at once. */
3529 else if (report_times
)
3530 error ("Warning: -pipe ignored since -time specified");
3532 else if (argv
[i
][0] == '-' && argv
[i
][1] != 0)
3534 const char *p
= &argv
[i
][1];
3539 if (p
[1] == 0 && i
+ 1 == argc
)
3540 fatal ("argument to `-x' is missing");
3542 spec_lang
= argv
[++i
];
3545 if (! strcmp (spec_lang
, "none"))
3546 /* Suppress the warning if -xnone comes after the last input
3547 file, because alternate command interfaces like g++ might
3548 find it useful to place -xnone after each input file. */
3551 last_language_n_infiles
= n_infiles
;
3554 switches
[n_switches
].part1
= p
;
3555 /* Deal with option arguments in separate argv elements. */
3556 if ((SWITCH_TAKES_ARG (c
) > (p
[1] != 0))
3557 || WORD_SWITCH_TAKES_ARG (p
))
3560 int n_args
= WORD_SWITCH_TAKES_ARG (p
);
3564 /* Count only the option arguments in separate argv elements. */
3565 n_args
= SWITCH_TAKES_ARG (c
) - (p
[1] != 0);
3567 if (i
+ n_args
>= argc
)
3568 fatal ("argument to `-%s' is missing", p
);
3569 switches
[n_switches
].args
3570 = (const char **) xmalloc ((n_args
+ 1) * sizeof(const char *));
3572 switches
[n_switches
].args
[j
++] = argv
[++i
];
3573 /* Null-terminate the vector. */
3574 switches
[n_switches
].args
[j
] = 0;
3576 else if (index (switches_need_spaces
, c
))
3578 /* On some systems, ld cannot handle some options without
3579 a space. So split the option from its argument. */
3580 char *part1
= (char *) xmalloc (2);
3585 switches
[n_switches
].part1
= part1
;
3586 switches
[n_switches
].args
3587 = (const char **) xmalloc (2 * sizeof (const char *));
3588 switches
[n_switches
].args
[0] = tmp
= xmalloc (strlen (p
));
3589 strcpy (tmp
, &p
[1]);
3590 switches
[n_switches
].args
[1] = 0;
3593 switches
[n_switches
].args
= 0;
3595 switches
[n_switches
].live_cond
= SWITCH_OK
;
3596 switches
[n_switches
].validated
= 0;
3597 /* This is always valid, since gcc.c itself understands it. */
3598 if (!strcmp (p
, "save-temps"))
3599 switches
[n_switches
].validated
= 1;
3602 char ch
= switches
[n_switches
].part1
[0];
3603 if (ch
== 'V' || ch
== 'b' || ch
== 'B')
3604 switches
[n_switches
].validated
= 1;
3610 #ifdef HAVE_OBJECT_SUFFIX
3611 argv
[i
] = convert_filename (argv
[i
], 0);
3614 if (strcmp (argv
[i
], "-") != 0 && access (argv
[i
], R_OK
) < 0)
3616 perror_with_name (argv
[i
]);
3621 infiles
[n_infiles
].language
= spec_lang
;
3622 infiles
[n_infiles
++].name
= argv
[i
];
3627 if (n_infiles
== last_language_n_infiles
&& spec_lang
!= 0)
3628 error ("Warning: `-x %s' after last input file has no effect", spec_lang
);
3630 switches
[n_switches
].part1
= 0;
3631 infiles
[n_infiles
].name
= 0;
3634 /* Process a spec string, accumulating and running commands. */
3636 /* These variables describe the input file name.
3637 input_file_number is the index on outfiles of this file,
3638 so that the output file name can be stored for later use by %o.
3639 input_basename is the start of the part of the input file
3640 sans all directory names, and basename_length is the number
3641 of characters starting there excluding the suffix .c or whatever. */
3643 const char *input_filename
;
3644 static int input_file_number
;
3645 size_t input_filename_length
;
3646 static int basename_length
;
3647 static int suffixed_basename_length
;
3648 static const char *input_basename
;
3649 static const char *input_suffix
;
3651 /* These are variables used within do_spec and do_spec_1. */
3653 /* Nonzero if an arg has been started and not yet terminated
3654 (with space, tab or newline). */
3655 static int arg_going
;
3657 /* Nonzero means %d or %g has been seen; the next arg to be terminated
3658 is a temporary file name. */
3659 static int delete_this_arg
;
3661 /* Nonzero means %w has been seen; the next arg to be terminated
3662 is the output file name of this compilation. */
3663 static int this_is_output_file
;
3665 /* Nonzero means %s has been seen; the next arg to be terminated
3666 is the name of a library file and we should try the standard
3667 search dirs for it. */
3668 static int this_is_library_file
;
3670 /* Nonzero means that the input of this command is coming from a pipe. */
3671 static int input_from_pipe
;
3673 /* Process the spec SPEC and run the commands specified therein.
3674 Returns 0 if the spec is successfully processed; -1 if failed. */
3684 delete_this_arg
= 0;
3685 this_is_output_file
= 0;
3686 this_is_library_file
= 0;
3687 input_from_pipe
= 0;
3689 value
= do_spec_1 (spec
, 0, NULL_PTR
);
3691 /* Force out any unfinished command.
3692 If -pipe, this forces out the last command if it ended in `|'. */
3695 if (argbuf_index
> 0 && !strcmp (argbuf
[argbuf_index
- 1], "|"))
3698 if (argbuf_index
> 0)
3705 /* Process the sub-spec SPEC as a portion of a larger spec.
3706 This is like processing a whole spec except that we do
3707 not initialize at the beginning and we do not supply a
3708 newline by default at the end.
3709 INSWITCH nonzero means don't process %-sequences in SPEC;
3710 in this case, % is treated as an ordinary character.
3711 This is used while substituting switches.
3712 INSWITCH nonzero also causes SPC not to terminate an argument.
3714 Value is zero unless a line was finished
3715 and the command on that line reported an error. */
3718 do_spec_1 (spec
, inswitch
, soft_matched_part
)
3721 const char *soft_matched_part
;
3723 register const char *p
= spec
;
3730 /* If substituting a switch, treat all chars like letters.
3731 Otherwise, NL, SPC, TAB and % are special. */
3732 switch (inswitch
? 'a' : c
)
3735 /* End of line: finish any pending argument,
3736 then run the pending command if one has been started. */
3739 obstack_1grow (&obstack
, 0);
3740 string
= obstack_finish (&obstack
);
3741 if (this_is_library_file
)
3742 string
= find_file (string
);
3743 store_arg (string
, delete_this_arg
, this_is_output_file
);
3744 if (this_is_output_file
)
3745 outfiles
[input_file_number
] = string
;
3749 if (argbuf_index
> 0 && !strcmp (argbuf
[argbuf_index
- 1], "|"))
3751 for (i
= 0; i
< n_switches
; i
++)
3752 if (!strcmp (switches
[i
].part1
, "pipe"))
3755 /* A `|' before the newline means use a pipe here,
3756 but only if -pipe was specified.
3757 Otherwise, execute now and don't pass the `|' as an arg. */
3760 input_from_pipe
= 1;
3761 switches
[i
].validated
= 1;
3768 if (argbuf_index
> 0)
3774 /* Reinitialize for a new command, and for a new argument. */
3777 delete_this_arg
= 0;
3778 this_is_output_file
= 0;
3779 this_is_library_file
= 0;
3780 input_from_pipe
= 0;
3784 /* End any pending argument. */
3787 obstack_1grow (&obstack
, 0);
3788 string
= obstack_finish (&obstack
);
3789 if (this_is_library_file
)
3790 string
= find_file (string
);
3791 store_arg (string
, delete_this_arg
, this_is_output_file
);
3792 if (this_is_output_file
)
3793 outfiles
[input_file_number
] = string
;
3797 obstack_1grow (&obstack
, c
);
3803 /* Space or tab ends an argument if one is pending. */
3806 obstack_1grow (&obstack
, 0);
3807 string
= obstack_finish (&obstack
);
3808 if (this_is_library_file
)
3809 string
= find_file (string
);
3810 store_arg (string
, delete_this_arg
, this_is_output_file
);
3811 if (this_is_output_file
)
3812 outfiles
[input_file_number
] = string
;
3814 /* Reinitialize for a new argument. */
3816 delete_this_arg
= 0;
3817 this_is_output_file
= 0;
3818 this_is_library_file
= 0;
3825 fatal ("Invalid specification! Bug in cc.");
3828 obstack_grow (&obstack
, input_basename
, basename_length
);
3833 obstack_grow (&obstack
, input_basename
, suffixed_basename_length
);
3838 delete_this_arg
= 2;
3841 /* Dump out the directories specified with LIBRARY_PATH,
3842 followed by the absolute directories
3843 that we search for startfiles. */
3846 struct prefix_list
*pl
= startfile_prefixes
.plist
;
3847 size_t bufsize
= 100;
3848 char *buffer
= (char *) xmalloc (bufsize
);
3851 for (; pl
; pl
= pl
->next
)
3853 #ifdef RELATIVE_PREFIX_NOT_LINKDIR
3854 /* Used on systems which record the specified -L dirs
3855 and use them to search for dynamic linking. */
3856 /* Relative directories always come from -B,
3857 and it is better not to use them for searching
3858 at run time. In particular, stage1 loses. */
3859 if (!IS_DIR_SEPARATOR (pl
->prefix
[0]))
3862 /* Try subdirectory if there is one. */
3863 if (multilib_dir
!= NULL
)
3867 if (strlen (pl
->prefix
) + strlen (machine_suffix
)
3869 bufsize
= (strlen (pl
->prefix
)
3870 + strlen (machine_suffix
)) * 2 + 1;
3871 buffer
= (char *) xrealloc (buffer
, bufsize
);
3872 strcpy (buffer
, pl
->prefix
);
3873 strcat (buffer
, machine_suffix
);
3874 if (is_directory (buffer
, multilib_dir
, 1))
3876 do_spec_1 ("-L", 0, NULL_PTR
);
3877 #ifdef SPACE_AFTER_L_OPTION
3878 do_spec_1 (" ", 0, NULL_PTR
);
3880 do_spec_1 (buffer
, 1, NULL_PTR
);
3881 do_spec_1 (multilib_dir
, 1, NULL_PTR
);
3882 /* Make this a separate argument. */
3883 do_spec_1 (" ", 0, NULL_PTR
);
3886 if (!pl
->require_machine_suffix
)
3888 if (is_directory (pl
->prefix
, multilib_dir
, 1))
3890 do_spec_1 ("-L", 0, NULL_PTR
);
3891 #ifdef SPACE_AFTER_L_OPTION
3892 do_spec_1 (" ", 0, NULL_PTR
);
3894 do_spec_1 (pl
->prefix
, 1, NULL_PTR
);
3895 do_spec_1 (multilib_dir
, 1, NULL_PTR
);
3896 /* Make this a separate argument. */
3897 do_spec_1 (" ", 0, NULL_PTR
);
3903 if (is_directory (pl
->prefix
, machine_suffix
, 1))
3905 do_spec_1 ("-L", 0, NULL_PTR
);
3906 #ifdef SPACE_AFTER_L_OPTION
3907 do_spec_1 (" ", 0, NULL_PTR
);
3909 do_spec_1 (pl
->prefix
, 1, NULL_PTR
);
3910 /* Remove slash from machine_suffix. */
3911 if (strlen (machine_suffix
) >= bufsize
)
3912 bufsize
= strlen (machine_suffix
) * 2 + 1;
3913 buffer
= (char *) xrealloc (buffer
, bufsize
);
3914 strcpy (buffer
, machine_suffix
);
3915 idx
= strlen (buffer
);
3916 if (IS_DIR_SEPARATOR (buffer
[idx
- 1]))
3917 buffer
[idx
- 1] = 0;
3918 do_spec_1 (buffer
, 1, NULL_PTR
);
3919 /* Make this a separate argument. */
3920 do_spec_1 (" ", 0, NULL_PTR
);
3923 if (!pl
->require_machine_suffix
)
3925 if (is_directory (pl
->prefix
, "", 1))
3927 do_spec_1 ("-L", 0, NULL_PTR
);
3928 #ifdef SPACE_AFTER_L_OPTION
3929 do_spec_1 (" ", 0, NULL_PTR
);
3931 /* Remove slash from pl->prefix. */
3932 if (strlen (pl
->prefix
) >= bufsize
)
3933 bufsize
= strlen (pl
->prefix
) * 2 + 1;
3934 buffer
= (char *) xrealloc (buffer
, bufsize
);
3935 strcpy (buffer
, pl
->prefix
);
3936 idx
= strlen (buffer
);
3937 if (IS_DIR_SEPARATOR (buffer
[idx
- 1]))
3938 buffer
[idx
- 1] = 0;
3939 do_spec_1 (buffer
, 1, NULL_PTR
);
3940 /* Make this a separate argument. */
3941 do_spec_1 (" ", 0, NULL_PTR
);
3950 /* %efoo means report an error with `foo' as error message
3951 and don't execute any more commands for this file. */
3955 while (*p
!= 0 && *p
!= '\n') p
++;
3956 buf
= (char *) alloca (p
- q
+ 1);
3957 strncpy (buf
, q
, p
- q
);
3967 if (save_temps_flag
)
3969 obstack_grow (&obstack
, input_basename
, basename_length
);
3970 delete_this_arg
= 0;
3974 #ifdef MKTEMP_EACH_FILE
3975 /* ??? This has a problem: the total number of
3976 values mktemp can return is limited.
3977 That matters for the names of object files.
3978 In 2.4, do something about that. */
3979 struct temp_name
*t
;
3981 const char *suffix
= p
;
3982 char *saved_suffix
= NULL
;
3984 while (*p
== '.' || ISALPHA ((unsigned char)*p
))
3986 suffix_length
= p
- suffix
;
3987 if (p
[0] == '%' && p
[1] == 'O')
3990 /* We don't support extra suffix characters after %O. */
3991 if (*p
== '.' || ISALPHA ((unsigned char)*p
))
3993 if (suffix_length
== 0)
3994 suffix
= OBJECT_SUFFIX
;
3998 = (char *) xmalloc (suffix_length
3999 + strlen (OBJECT_SUFFIX
));
4000 strncpy (saved_suffix
, suffix
, suffix_length
);
4001 strcpy (saved_suffix
+ suffix_length
,
4004 suffix_length
+= strlen (OBJECT_SUFFIX
);
4007 /* See if we already have an association of %g/%u/%U and
4009 for (t
= temp_names
; t
; t
= t
->next
)
4010 if (t
->length
== suffix_length
4011 && strncmp (t
->suffix
, suffix
, suffix_length
) == 0
4012 && t
->unique
== (c
!= 'g'))
4015 /* Make a new association if needed. %u requires one. */
4016 if (t
== 0 || c
== 'u')
4020 t
= (struct temp_name
*) xmalloc (sizeof (struct temp_name
));
4021 t
->next
= temp_names
;
4024 t
->length
= suffix_length
;
4025 t
->suffix
= save_string (suffix
, suffix_length
);
4026 t
->unique
= (c
!= 'g');
4027 temp_filename
= make_temp_file (t
->suffix
);
4028 temp_filename_length
= strlen (temp_filename
);
4029 t
->filename
= temp_filename
;
4030 t
->filename_length
= temp_filename_length
;
4034 free (saved_suffix
);
4036 obstack_grow (&obstack
, t
->filename
, t
->filename_length
);
4037 delete_this_arg
= 1;
4039 obstack_grow (&obstack
, temp_filename
, temp_filename_length
);
4040 if (c
== 'u' || c
== 'U')
4046 sprintf (buff
, "%d", unique
);
4047 obstack_grow (&obstack
, buff
, strlen (buff
));
4050 delete_this_arg
= 1;
4056 obstack_grow (&obstack
, input_filename
, input_filename_length
);
4062 struct prefix_list
*pl
= include_prefixes
.plist
;
4064 if (gcc_exec_prefix
)
4066 do_spec_1 ("-iprefix", 1, NULL_PTR
);
4067 /* Make this a separate argument. */
4068 do_spec_1 (" ", 0, NULL_PTR
);
4069 do_spec_1 (gcc_exec_prefix
, 1, NULL_PTR
);
4070 do_spec_1 (" ", 0, NULL_PTR
);
4073 for (; pl
; pl
= pl
->next
)
4075 do_spec_1 ("-isystem", 1, NULL_PTR
);
4076 /* Make this a separate argument. */
4077 do_spec_1 (" ", 0, NULL_PTR
);
4078 do_spec_1 (pl
->prefix
, 1, NULL_PTR
);
4079 do_spec_1 (" ", 0, NULL_PTR
);
4086 int max
= n_infiles
;
4087 max
+= lang_specific_extra_outfiles
;
4089 for (i
= 0; i
< max
; i
++)
4091 store_arg (outfiles
[i
], 0, 0);
4096 obstack_grow (&obstack
, OBJECT_SUFFIX
, strlen (OBJECT_SUFFIX
));
4101 this_is_library_file
= 1;
4105 this_is_output_file
= 1;
4110 int cur_index
= argbuf_index
;
4111 /* Handle the {...} following the %W. */
4114 p
= handle_braces (p
+ 1);
4117 /* If any args were output, mark the last one for deletion
4119 if (argbuf_index
!= cur_index
)
4120 record_temp_file (argbuf
[argbuf_index
- 1], 0, 1);
4124 /* %x{OPTION} records OPTION for %X to output. */
4130 /* Skip past the option value and make a copy. */
4135 string
= save_string (p1
+ 1, p
- p1
- 2);
4137 /* See if we already recorded this option. */
4138 for (i
= 0; i
< n_linker_options
; i
++)
4139 if (! strcmp (string
, linker_options
[i
]))
4145 /* This option is new; add it. */
4146 add_linker_option (string
, strlen (string
));
4150 /* Dump out the options accumulated previously using %x. */
4152 for (i
= 0; i
< n_linker_options
; i
++)
4154 do_spec_1 (linker_options
[i
], 1, NULL_PTR
);
4155 /* Make each accumulated option a separate argument. */
4156 do_spec_1 (" ", 0, NULL_PTR
);
4160 /* Dump out the options accumulated previously using -Wa,. */
4162 for (i
= 0; i
< n_assembler_options
; i
++)
4164 do_spec_1 (assembler_options
[i
], 1, NULL_PTR
);
4165 /* Make each accumulated option a separate argument. */
4166 do_spec_1 (" ", 0, NULL_PTR
);
4170 /* Dump out the options accumulated previously using -Wp,. */
4172 for (i
= 0; i
< n_preprocessor_options
; i
++)
4174 do_spec_1 (preprocessor_options
[i
], 1, NULL_PTR
);
4175 /* Make each accumulated option a separate argument. */
4176 do_spec_1 (" ", 0, NULL_PTR
);
4180 /* Here are digits and numbers that just process
4181 a certain constant string as a spec. */
4184 value
= do_spec_1 (cc1_spec
, 0, NULL_PTR
);
4190 value
= do_spec_1 (cc1plus_spec
, 0, NULL_PTR
);
4196 value
= do_spec_1 (asm_spec
, 0, NULL_PTR
);
4202 value
= do_spec_1 (asm_final_spec
, 0, NULL_PTR
);
4208 value
= do_spec_1 (signed_char_spec
, 0, NULL_PTR
);
4214 value
= do_spec_1 (cpp_spec
, 0, NULL_PTR
);
4220 value
= do_spec_1 (endfile_spec
, 0, NULL_PTR
);
4226 value
= do_spec_1 (link_spec
, 0, NULL_PTR
);
4232 value
= do_spec_1 (lib_spec
, 0, NULL_PTR
);
4238 value
= do_spec_1 (libgcc_spec
, 0, NULL_PTR
);
4245 char *x
= (char *) alloca (strlen (cpp_predefines
) + 1);
4249 /* Copy all of the -D options in CPP_PREDEFINES into BUF. */
4253 if (! strncmp (y
, "-D", 2))
4254 /* Copy the whole option. */
4255 while (*y
&& *y
!= ' ' && *y
!= '\t')
4257 else if (*y
== ' ' || *y
== '\t')
4258 /* Copy whitespace to the result. */
4260 /* Don't copy other options. */
4267 value
= do_spec_1 (buf
, 0, NULL_PTR
);
4275 char *x
= (char *) alloca (strlen (cpp_predefines
) * 4 + 1);
4279 /* Copy all of CPP_PREDEFINES into BUF,
4280 but force them all into the reserved name space if they
4281 aren't already there. The reserved name space is all
4282 identifiers beginning with two underscores or with one
4283 underscore and a capital letter. We do the forcing by
4284 adding up to two underscores to the beginning and end
4285 of each symbol. e.g. mips, _mips, mips_, and _mips_ all
4290 if (! strncmp (y
, "-D", 2))
4299 && ! ISUPPER ((unsigned char)*(y
+1))))
4301 /* Stick __ at front of macro name. */
4305 /* Arrange to stick __ at the end as well. */
4309 /* Copy the macro name. */
4310 while (*y
&& *y
!= '=' && *y
!= ' ' && *y
!= '\t')
4323 /* Copy the value given, if any. */
4324 while (*y
&& *y
!= ' ' && *y
!= '\t')
4327 else if (*y
== ' ' || *y
== '\t')
4328 /* Copy whitespace to the result. */
4330 /* Don't copy -A options */
4336 /* Copy all of CPP_PREDEFINES into BUF,
4337 but put __ after every -D. */
4341 if (! strncmp (y
, "-D", 2))
4347 && ! ISUPPER ((unsigned char)*(y
+1))))
4349 /* Stick -D__ at front of macro name. */
4356 /* Copy the macro name. */
4357 while (*y
&& *y
!= '=' && *y
!= ' ' && *y
!= '\t')
4360 /* Copy the value given, if any. */
4361 while (*y
&& *y
!= ' ' && *y
!= '\t')
4366 /* Do not copy this macro - we have just done it before */
4367 while (*y
&& *y
!= ' ' && *y
!= '\t')
4371 else if (*y
== ' ' || *y
== '\t')
4372 /* Copy whitespace to the result. */
4374 /* Don't copy -A options. */
4380 /* Copy all of the -A options in CPP_PREDEFINES into BUF. */
4384 if (! strncmp (y
, "-A", 2))
4385 /* Copy the whole option. */
4386 while (*y
&& *y
!= ' ' && *y
!= '\t')
4388 else if (*y
== ' ' || *y
== '\t')
4389 /* Copy whitespace to the result. */
4391 /* Don't copy other options. */
4398 value
= do_spec_1 (buf
, 0, NULL_PTR
);
4405 value
= do_spec_1 (startfile_spec
, 0, NULL_PTR
);
4410 /* Here we define characters other than letters and digits. */
4413 p
= handle_braces (p
);
4419 obstack_1grow (&obstack
, '%');
4423 if (soft_matched_part
)
4425 do_spec_1 (soft_matched_part
, 1, NULL_PTR
);
4426 do_spec_1 (" ", 0, NULL_PTR
);
4429 /* Catch the case where a spec string contains something like
4430 '%{foo:%*}'. ie there is no * in the pattern on the left
4431 hand side of the :. */
4432 error ("Spec failure: '%%*' has not been initialised by pattern match");
4435 /* Process a string found as the value of a spec given by name.
4436 This feature allows individual machine descriptions
4437 to add and use their own specs.
4438 %[...] modifies -D options the way %P does;
4439 %(...) uses the spec unmodified. */
4441 error ("Warning: use of obsolete %%[ operator in specs");
4444 const char *name
= p
;
4445 struct spec_list
*sl
;
4448 /* The string after the S/P is the name of a spec that is to be
4450 while (*p
&& *p
!= ')' && *p
!= ']')
4453 /* See if it's in the list. */
4454 for (len
= p
- name
, sl
= specs
; sl
; sl
= sl
->next
)
4455 if (sl
->name_len
== len
&& !strncmp (sl
->name
, name
, len
))
4457 name
= *(sl
->ptr_spec
);
4459 notice ("Processing spec %c%s%c, which is '%s'\n",
4460 c
, sl
->name
, (c
== '(') ? ')' : ']', name
);
4469 value
= do_spec_1 (name
, 0, NULL_PTR
);
4475 char *x
= (char *) alloca (strlen (name
) * 2 + 1);
4477 const char *y
= name
;
4480 /* Copy all of NAME into BUF, but put __ after
4481 every -D and at the end of each arg. */
4484 if (! strncmp (y
, "-D", 2))
4494 else if (flag
&& (*y
== ' ' || *y
== '\t' || *y
== '='
4495 || *y
== '}' || *y
== 0))
4508 value
= do_spec_1 (buf
, 0, NULL_PTR
);
4514 /* Discard the closing paren or bracket. */
4522 int c1
= *p
++; /* Select first or second version number. */
4523 const char *v
= compiler_version
;
4525 static const char zeroc
= '0';
4527 /* The format of the version string is
4528 ([^0-9]*-)?[0-9]+[.][0-9]+([.][0-9]+)?([- ].*)? */
4530 /* Ignore leading non-digits. i.e. "foo-" in "foo-2.7.2". */
4531 while (! ISDIGIT (*v
))
4533 if (v
> compiler_version
&& v
[-1] != '-')
4536 /* If desired, advance to second version number. */
4539 /* Set V after the first period. */
4540 while (ISDIGIT (*v
))
4547 /* If desired, advance to third version number.
4548 But don't complain if it's not present */
4551 /* Set V after the second period. */
4552 while (ISDIGIT (*v
))
4554 if ((*v
!= 0) && (*v
!= ' ') && (*v
!= '.') && (*v
!= '-'))
4560 /* Set Q at the next period or at the end. */
4562 while (ISDIGIT (*q
))
4564 if (*q
!= 0 && q
> v
&& *q
!= ' ' && *q
!= '.' && *q
!= '-')
4568 /* Put that part into the command. */
4569 obstack_grow (&obstack
, v
, q
- v
);
4571 /* Default to "0" */
4572 obstack_grow (&obstack
, &zeroc
, 1);
4578 if (input_from_pipe
)
4579 do_spec_1 ("-", 0, NULL_PTR
);
4583 error ("Spec failure: Unrecognised spec option '%c'", c
);
4589 /* Backslash: treat next character as ordinary. */
4594 /* Ordinary character: put it into the current argument. */
4595 obstack_1grow (&obstack
, c
);
4599 return 0; /* End of string */
4602 /* Return 0 if we call do_spec_1 and that returns -1. */
4606 register const char *p
;
4608 const char *filter
, *body
= NULL
, *endbody
= NULL
;
4612 int include_blanks
= 1;
4613 int elide_switch
= 0;
4617 /* A '^' after the open-brace means to not give blanks before args. */
4624 /* A `|' after the open-brace means,
4625 if the test fails, output a single minus sign rather than nothing.
4626 This is used in %{|!pipe:...}. */
4633 /* A `<' after the open-brace means that the switch should be
4634 removed from the command-line. */
4640 negate
= suffix
= 0;
4643 /* A `!' after the open-brace negates the condition:
4644 succeed if the specified switch is not present. */
4648 /* A `.' after the open-brace means test against the current suffix. */
4657 if (elide_switch
&& (negate
|| pipe_p
|| suffix
))
4659 /* It doesn't make sense to mix elision with other flags. We
4660 could fatal() here, but the standard seems to be to abort. */
4665 while (*p
!= ':' && *p
!= '}' && *p
!= '|') p
++;
4667 if (*p
== '|' && pipe_p
)
4674 register int count
= 1;
4675 register const char *q
= p
;
4677 while (*q
++ != ':') continue;
4693 body
= p
, endbody
= p
+1;
4698 int found
= (input_suffix
!= 0
4699 && (long) strlen (input_suffix
) == (long)(p
- filter
)
4700 && strncmp (input_suffix
, filter
, p
- filter
) == 0);
4706 && do_spec_1 (save_string (body
, endbody
-body
-1), 0, NULL_PTR
) < 0)
4709 else if (p
[-1] == '*' && p
[0] == '}')
4711 /* Substitute all matching switches as separate args. */
4714 for (i
= 0; i
< n_switches
; i
++)
4715 if (!strncmp (switches
[i
].part1
, filter
, p
- filter
)
4716 && check_live_switch (i
, p
- filter
))
4717 give_switch (i
, 0, include_blanks
);
4721 /* Test for presence of the specified switch. */
4725 /* If name specified ends in *, as in {x*:...},
4726 check for %* and handle that case. */
4727 if (p
[-1] == '*' && !negate
)
4730 const char *r
= body
;
4732 /* First see whether we have %*. */
4736 if (*r
== '%' && r
[1] == '*')
4740 /* If we do, handle that case. */
4743 /* Substitute all matching switches as separate args.
4744 But do this by substituting for %*
4745 in the text that follows the colon. */
4747 unsigned hard_match_len
= p
- filter
- 1;
4748 char *string
= save_string (body
, endbody
- body
- 1);
4750 for (i
= 0; i
< n_switches
; i
++)
4751 if (!strncmp (switches
[i
].part1
, filter
, hard_match_len
)
4752 && check_live_switch (i
, -1))
4754 do_spec_1 (string
, 0, &switches
[i
].part1
[hard_match_len
]);
4755 /* Pass any arguments this switch has. */
4756 give_switch (i
, 1, 1);
4759 /* We didn't match. Try again. */
4766 /* If name specified ends in *, as in {x*:...},
4767 check for presence of any switch name starting with x. */
4770 for (i
= 0; i
< n_switches
; i
++)
4772 unsigned hard_match_len
= p
- filter
- 1;
4774 if (!strncmp (switches
[i
].part1
, filter
, hard_match_len
)
4775 && check_live_switch (i
, hard_match_len
))
4782 /* Otherwise, check for presence of exact name specified. */
4785 for (i
= 0; i
< n_switches
; i
++)
4787 if (!strncmp (switches
[i
].part1
, filter
, p
- filter
)
4788 && switches
[i
].part1
[p
- filter
] == 0
4789 && check_live_switch (i
, -1))
4797 /* If it is as desired (present for %{s...}, absent for %{!s...})
4798 then substitute either the switch or the specified
4799 conditional text. */
4800 if (present
!= negate
)
4804 switches
[i
].live_cond
= SWITCH_IGNORE
;
4805 switches
[i
].validated
= 1;
4809 give_switch (i
, 0, include_blanks
);
4813 if (do_spec_1 (save_string (body
, endbody
- body
- 1),
4820 /* Here if a %{|...} conditional fails: output a minus sign,
4821 which means "standard output" or "standard input". */
4822 do_spec_1 ("-", 0, NULL_PTR
);
4827 /* We didn't match; try again. */
4834 /* Return 0 iff switch number SWITCHNUM is obsoleted by a later switch
4835 on the command line. PREFIX_LENGTH is the length of XXX in an {XXX*}
4836 spec, or -1 if either exact match or %* is used.
4838 A -O switch is obsoleted by a later -O switch. A -f, -m, or -W switch
4839 whose value does not begin with "no-" is obsoleted by the same value
4840 with the "no-", similarly for a switch with the "no-" prefix. */
4843 check_live_switch (switchnum
, prefix_length
)
4847 const char *name
= switches
[switchnum
].part1
;
4850 /* In the common case of {<at-most-one-letter>*}, a negating
4851 switch would always match, so ignore that case. We will just
4852 send the conflicting switches to the compiler phase. */
4853 if (prefix_length
>= 0 && prefix_length
<= 1)
4856 /* If we already processed this switch and determined if it was
4857 live or not, return our past determination. */
4858 if (switches
[switchnum
].live_cond
!= 0)
4859 return switches
[switchnum
].live_cond
> 0;
4861 /* Now search for duplicate in a manner that depends on the name. */
4865 for (i
= switchnum
+ 1; i
< n_switches
; i
++)
4866 if (switches
[i
].part1
[0] == 'O')
4868 switches
[switchnum
].validated
= 1;
4869 switches
[switchnum
].live_cond
= SWITCH_FALSE
;
4874 case 'W': case 'f': case 'm':
4875 if (! strncmp (name
+ 1, "no-", 3))
4877 /* We have Xno-YYY, search for XYYY. */
4878 for (i
= switchnum
+ 1; i
< n_switches
; i
++)
4879 if (switches
[i
].part1
[0] == name
[0]
4880 && ! strcmp (&switches
[i
].part1
[1], &name
[4]))
4882 switches
[switchnum
].validated
= 1;
4883 switches
[switchnum
].live_cond
= SWITCH_FALSE
;
4889 /* We have XYYY, search for Xno-YYY. */
4890 for (i
= switchnum
+ 1; i
< n_switches
; i
++)
4891 if (switches
[i
].part1
[0] == name
[0]
4892 && switches
[i
].part1
[1] == 'n'
4893 && switches
[i
].part1
[2] == 'o'
4894 && switches
[i
].part1
[3] == '-'
4895 && !strcmp (&switches
[i
].part1
[4], &name
[1]))
4897 switches
[switchnum
].validated
= 1;
4898 switches
[switchnum
].live_cond
= SWITCH_FALSE
;
4905 /* Otherwise the switch is live. */
4906 switches
[switchnum
].live_cond
= SWITCH_LIVE
;
4910 /* Pass a switch to the current accumulating command
4911 in the same form that we received it.
4912 SWITCHNUM identifies the switch; it is an index into
4913 the vector of switches gcc received, which is `switches'.
4914 This cannot fail since it never finishes a command line.
4916 If OMIT_FIRST_WORD is nonzero, then we omit .part1 of the argument.
4918 If INCLUDE_BLANKS is nonzero, then we include blanks before each argument
4922 give_switch (switchnum
, omit_first_word
, include_blanks
)
4924 int omit_first_word
;
4927 if (switches
[switchnum
].live_cond
== SWITCH_IGNORE
)
4930 if (!omit_first_word
)
4932 do_spec_1 ("-", 0, NULL_PTR
);
4933 do_spec_1 (switches
[switchnum
].part1
, 1, NULL_PTR
);
4936 if (switches
[switchnum
].args
!= 0)
4939 for (p
= switches
[switchnum
].args
; *p
; p
++)
4942 do_spec_1 (" ", 0, NULL_PTR
);
4943 do_spec_1 (*p
, 1, NULL_PTR
);
4947 do_spec_1 (" ", 0, NULL_PTR
);
4948 switches
[switchnum
].validated
= 1;
4951 /* Search for a file named NAME trying various prefixes including the
4952 user's -B prefix and some standard ones.
4953 Return the absolute file name found. If nothing is found, return NAME. */
4961 /* Try multilib_dir if it is defined. */
4962 if (multilib_dir
!= NULL
)
4966 try = (char *) alloca (strlen (multilib_dir
) + strlen (name
) + 2);
4967 strcpy (try, multilib_dir
);
4968 strcat (try, dir_separator_str
);
4971 newname
= find_a_file (&startfile_prefixes
, try, R_OK
);
4973 /* If we don't find it in the multi library dir, then fall
4974 through and look for it in the normal places. */
4975 if (newname
!= NULL
)
4979 newname
= find_a_file (&startfile_prefixes
, name
, R_OK
);
4980 return newname
? newname
: name
;
4983 /* Determine whether a directory exists. If LINKER, return 0 for
4984 certain fixed names not needed by the linker. If not LINKER, it is
4985 only important to return 0 if the host machine has a small ARG_MAX
4989 is_directory (path1
, path2
, linker
)
4994 int len1
= strlen (path1
);
4995 int len2
= strlen (path2
);
4996 char *path
= (char *) alloca (3 + len1
+ len2
);
5000 #ifndef SMALL_ARG_MAX
5005 /* Construct the path from the two parts. Ensure the string ends with "/.".
5006 The resulting path will be a directory even if the given path is a
5008 memcpy (path
, path1
, len1
);
5009 memcpy (path
+ len1
, path2
, len2
);
5010 cp
= path
+ len1
+ len2
;
5011 if (!IS_DIR_SEPARATOR (cp
[-1]))
5012 *cp
++ = DIR_SEPARATOR
;
5016 /* Exclude directories that the linker is known to search. */
5019 && strcmp (path
, concat (dir_separator_str
, "lib",
5020 dir_separator_str
, ".", NULL_PTR
)) == 0)
5022 && strcmp (path
, concat (dir_separator_str
, "usr",
5023 dir_separator_str
, "lib",
5024 dir_separator_str
, ".", NULL_PTR
)) == 0)))
5027 return (stat (path
, &st
) >= 0 && S_ISDIR (st
.st_mode
));
5030 /* Set up the various global variables to indicate that we're processing
5031 the input file named FILENAME. */
5034 set_input (filename
)
5035 const char *filename
;
5037 register const char *p
;
5039 input_filename
= filename
;
5040 input_filename_length
= strlen (input_filename
);
5042 input_basename
= input_filename
;
5043 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
5044 /* Skip drive name so 'x:foo' is handled properly. */
5045 if (input_basename
[1] == ':')
5046 input_basename
+= 2;
5048 for (p
= input_basename
; *p
; p
++)
5049 if (IS_DIR_SEPARATOR (*p
))
5050 input_basename
= p
+ 1;
5052 /* Find a suffix starting with the last period,
5053 and set basename_length to exclude that suffix. */
5054 basename_length
= strlen (input_basename
);
5055 suffixed_basename_length
= basename_length
;
5056 p
= input_basename
+ basename_length
;
5057 while (p
!= input_basename
&& *p
!= '.') --p
;
5058 if (*p
== '.' && p
!= input_basename
)
5060 basename_length
= p
- input_basename
;
5061 input_suffix
= p
+ 1;
5067 /* On fatal signals, delete all the temporary files. */
5070 fatal_error (signum
)
5073 signal (signum
, SIG_DFL
);
5074 delete_failure_queue ();
5075 delete_temp_files ();
5076 /* Get the same signal again, this time not handled,
5077 so its normal effect occurs. */
5078 kill (getpid (), signum
);
5081 extern int main
PARAMS ((int, char **));
5090 int linker_was_run
= 0;
5091 char *explicit_link_files
;
5094 struct user_specs
*uptr
;
5096 p
= argv
[0] + strlen (argv
[0]);
5097 while (p
!= argv
[0] && !IS_DIR_SEPARATOR (p
[-1]))
5101 #ifdef HAVE_LC_MESSAGES
5102 setlocale (LC_MESSAGES
, "");
5104 (void) bindtextdomain (PACKAGE
, localedir
);
5105 (void) textdomain (PACKAGE
);
5107 if (signal (SIGINT
, SIG_IGN
) != SIG_IGN
)
5108 signal (SIGINT
, fatal_error
);
5110 if (signal (SIGHUP
, SIG_IGN
) != SIG_IGN
)
5111 signal (SIGHUP
, fatal_error
);
5113 if (signal (SIGTERM
, SIG_IGN
) != SIG_IGN
)
5114 signal (SIGTERM
, fatal_error
);
5116 if (signal (SIGPIPE
, SIG_IGN
) != SIG_IGN
)
5117 signal (SIGPIPE
, fatal_error
);
5121 argbuf
= (const char **) xmalloc (argbuf_length
* sizeof (const char *));
5123 obstack_init (&obstack
);
5125 /* Build multilib_select, et. al from the separate lines that make up each
5126 multilib selection. */
5128 const char *const *q
= multilib_raw
;
5131 obstack_init (&multilib_obstack
);
5132 while ((p
= *q
++) != (char *) 0)
5133 obstack_grow (&multilib_obstack
, p
, strlen (p
));
5135 obstack_1grow (&multilib_obstack
, 0);
5136 multilib_select
= obstack_finish (&multilib_obstack
);
5138 q
= multilib_matches_raw
;
5139 while ((p
= *q
++) != (char *) 0)
5140 obstack_grow (&multilib_obstack
, p
, strlen (p
));
5142 obstack_1grow (&multilib_obstack
, 0);
5143 multilib_matches
= obstack_finish (&multilib_obstack
);
5145 q
= multilib_exclusions_raw
;
5146 while ((p
= *q
++) != (char *) 0)
5147 obstack_grow (&multilib_obstack
, p
, strlen (p
));
5149 obstack_1grow (&multilib_obstack
, 0);
5150 multilib_exclusions
= obstack_finish (&multilib_obstack
);
5154 i
< sizeof (multilib_defaults_raw
) / sizeof (multilib_defaults_raw
[0]);
5158 obstack_1grow (&multilib_obstack
, ' ');
5159 obstack_grow (&multilib_obstack
,
5160 multilib_defaults_raw
[i
],
5161 strlen (multilib_defaults_raw
[i
]));
5165 obstack_1grow (&multilib_obstack
, 0);
5166 multilib_defaults
= obstack_finish (&multilib_obstack
);
5169 /* Set up to remember the pathname of gcc and any options
5170 needed for collect. We use argv[0] instead of programname because
5171 we need the complete pathname. */
5172 obstack_init (&collect_obstack
);
5173 obstack_grow (&collect_obstack
, "COLLECT_GCC=", sizeof ("COLLECT_GCC=")-1);
5174 obstack_grow (&collect_obstack
, argv
[0], strlen (argv
[0])+1);
5175 putenv (obstack_finish (&collect_obstack
));
5177 #ifdef INIT_ENVIRONMENT
5178 /* Set up any other necessary machine specific environment variables. */
5179 putenv (INIT_ENVIRONMENT
);
5182 /* Choose directory for temp files. */
5184 #ifndef MKTEMP_EACH_FILE
5185 temp_filename
= choose_temp_base ();
5186 temp_filename_length
= strlen (temp_filename
);
5189 /* Make a table of what switches there are (switches, n_switches).
5190 Make a table of specified input files (infiles, n_infiles).
5191 Decode switches that are handled locally. */
5193 process_command (argc
, argv
);
5198 /* Build COLLECT_GCC_OPTIONS to have all of the options specified to
5200 obstack_grow (&collect_obstack
, "COLLECT_GCC_OPTIONS=",
5201 sizeof ("COLLECT_GCC_OPTIONS=")-1);
5204 for (i
= 0; (int)i
< n_switches
; i
++)
5209 obstack_grow (&collect_obstack
, " ", 1);
5212 obstack_grow (&collect_obstack
, "'-", 2);
5213 q
= switches
[i
].part1
;
5214 while ((p
= index (q
,'\'')))
5216 obstack_grow (&collect_obstack
, q
, p
-q
);
5217 obstack_grow (&collect_obstack
, "'\\''", 4);
5220 obstack_grow (&collect_obstack
, q
, strlen (q
));
5221 obstack_grow (&collect_obstack
, "'", 1);
5223 for (args
= switches
[i
].args
; args
&& *args
; args
++)
5225 obstack_grow (&collect_obstack
, " '", 2);
5227 while ((p
= index (q
,'\'')))
5229 obstack_grow (&collect_obstack
, q
, p
-q
);
5230 obstack_grow (&collect_obstack
, "'\\''", 4);
5233 obstack_grow (&collect_obstack
, q
, strlen (q
));
5234 obstack_grow (&collect_obstack
, "'", 1);
5237 obstack_grow (&collect_obstack
, "\0", 1);
5238 putenv (obstack_finish (&collect_obstack
));
5241 /* Initialize the vector of specs to just the default.
5242 This means one element containing 0s, as a terminator. */
5244 compilers
= (struct compiler
*) xmalloc (sizeof default_compilers
);
5245 bcopy ((char *) default_compilers
, (char *) compilers
,
5246 sizeof default_compilers
);
5247 n_compilers
= n_default_compilers
;
5249 /* Read specs from a file if there is one. */
5251 machine_suffix
= concat (spec_machine
, dir_separator_str
,
5252 spec_version
, dir_separator_str
, NULL_PTR
);
5253 just_machine_suffix
= concat (spec_machine
, dir_separator_str
, NULL_PTR
);
5255 specs_file
= find_a_file (&startfile_prefixes
, "specs", R_OK
);
5256 /* Read the specs file unless it is a default one. */
5257 if (specs_file
!= 0 && strcmp (specs_file
, "specs"))
5258 read_specs (specs_file
, TRUE
);
5262 /* We need to check standard_exec_prefix/just_machine_suffix/specs
5263 for any override of as, ld and libraries. */
5264 specs_file
= (char *) alloca (strlen (standard_exec_prefix
)
5265 + strlen (just_machine_suffix
)
5266 + sizeof ("specs"));
5268 strcpy (specs_file
, standard_exec_prefix
);
5269 strcat (specs_file
, just_machine_suffix
);
5270 strcat (specs_file
, "specs");
5271 if (access (specs_file
, R_OK
) == 0)
5272 read_specs (specs_file
, TRUE
);
5274 /* If not cross-compiling, look for startfiles in the standard places. */
5275 if (*cross_compile
== '0')
5277 #ifdef MD_EXEC_PREFIX
5278 add_prefix (&exec_prefixes
, md_exec_prefix
, "GCC", 0, 0, NULL_PTR
);
5279 add_prefix (&startfile_prefixes
, md_exec_prefix
, "GCC", 0, 0, NULL_PTR
);
5282 #ifdef MD_STARTFILE_PREFIX
5283 add_prefix (&startfile_prefixes
, md_startfile_prefix
, "GCC",
5287 #ifdef MD_STARTFILE_PREFIX_1
5288 add_prefix (&startfile_prefixes
, md_startfile_prefix_1
, "GCC",
5292 /* If standard_startfile_prefix is relative, base it on
5293 standard_exec_prefix. This lets us move the installed tree
5294 as a unit. If GCC_EXEC_PREFIX is defined, base
5295 standard_startfile_prefix on that as well. */
5296 if (IS_DIR_SEPARATOR (*standard_startfile_prefix
)
5297 || *standard_startfile_prefix
== '$'
5298 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
5299 /* Check for disk name on MS-DOS-based systems. */
5300 || (standard_startfile_prefix
[1] == ':'
5301 && (IS_DIR_SEPARATOR (standard_startfile_prefix
[2])))
5304 add_prefix (&startfile_prefixes
, standard_startfile_prefix
, "BINUTILS",
5308 if (gcc_exec_prefix
)
5309 add_prefix (&startfile_prefixes
,
5310 concat (gcc_exec_prefix
, machine_suffix
,
5311 standard_startfile_prefix
, NULL_PTR
),
5312 NULL_PTR
, 0, 0, NULL_PTR
);
5313 add_prefix (&startfile_prefixes
,
5314 concat (standard_exec_prefix
,
5316 standard_startfile_prefix
, NULL_PTR
),
5317 NULL_PTR
, 0, 0, NULL_PTR
);
5320 add_prefix (&startfile_prefixes
, standard_startfile_prefix_1
,
5321 "BINUTILS", 0, 0, NULL_PTR
);
5322 add_prefix (&startfile_prefixes
, standard_startfile_prefix_2
,
5323 "BINUTILS", 0, 0, NULL_PTR
);
5324 #if 0 /* Can cause surprises, and one can use -B./ instead. */
5325 add_prefix (&startfile_prefixes
, "./", NULL_PTR
, 0, 1, NULL_PTR
);
5330 if (!IS_DIR_SEPARATOR (*standard_startfile_prefix
) && gcc_exec_prefix
)
5331 add_prefix (&startfile_prefixes
,
5332 concat (gcc_exec_prefix
, machine_suffix
,
5333 standard_startfile_prefix
, NULL_PTR
),
5334 "BINUTILS", 0, 0, NULL_PTR
);
5337 /* Process any user specified specs in the order given on the command
5339 for (uptr
= user_specs_head
; uptr
; uptr
= uptr
->next
)
5341 char *filename
= find_a_file (&startfile_prefixes
, uptr
->filename
, R_OK
);
5342 read_specs (filename
? filename
: uptr
->filename
, FALSE
);
5345 /* If we have a GCC_EXEC_PREFIX envvar, modify it for cpp's sake. */
5346 if (gcc_exec_prefix
)
5348 char * temp
= (char *) xmalloc (strlen (gcc_exec_prefix
)
5349 + strlen (spec_version
)
5350 + strlen (spec_machine
) + 3);
5351 strcpy (temp
, gcc_exec_prefix
);
5352 strcat (temp
, spec_machine
);
5353 strcat (temp
, dir_separator_str
);
5354 strcat (temp
, spec_version
);
5355 strcat (temp
, dir_separator_str
);
5356 gcc_exec_prefix
= temp
;
5359 /* Now we have the specs.
5360 Set the `valid' bits for switches that match anything in any spec. */
5362 validate_all_switches ();
5364 /* Now that we have the switches and the specs, set
5365 the subdirectory based on the options. */
5366 set_multilib_dir ();
5368 /* Warn about any switches that no pass was interested in. */
5370 for (i
= 0; (int)i
< n_switches
; i
++)
5371 if (! switches
[i
].validated
)
5372 error ("unrecognized option `-%s'", switches
[i
].part1
);
5374 /* Obey some of the options. */
5376 if (print_search_dirs
)
5378 printf (_("install: %s%s\n"), standard_exec_prefix
, machine_suffix
);
5379 printf (_("programs: %s\n"), build_search_list (&exec_prefixes
, "", 0));
5380 printf (_("libraries: %s\n"), build_search_list (&startfile_prefixes
, "", 0));
5384 if (print_file_name
)
5386 printf ("%s\n", find_file (print_file_name
));
5390 if (print_prog_name
)
5392 char *newname
= find_a_file (&exec_prefixes
, print_prog_name
, X_OK
);
5393 printf ("%s\n", (newname
? newname
: print_prog_name
));
5397 if (print_multi_lib
)
5399 print_multilib_info ();
5403 if (print_multi_directory
)
5405 if (multilib_dir
== NULL
)
5408 printf ("%s\n", multilib_dir
);
5412 if (print_help_list
)
5418 printf (_("\nFor bug reporting instructions, please see:\n"));
5419 printf ("%s.\n", GCCBUGURL
);
5424 /* We do not exit here. Instead we have created a fake input file
5425 called 'help-dummy' which needs to be compiled, and we pass this
5426 on the the various sub-processes, along with the --help switch. */
5433 /* compiler_version is truncated at the first space when initialized
5434 from version string, so truncate version_string at the first space
5435 before comparing. */
5436 for (n
= 0; version_string
[n
]; n
++)
5437 if (version_string
[n
] == ' ')
5440 if (! strncmp (version_string
, compiler_version
, n
)
5441 && compiler_version
[n
] == 0)
5442 notice ("gcc version %s\n", version_string
);
5444 notice ("gcc driver version %s executing gcc version %s\n",
5445 version_string
, compiler_version
);
5451 if (n_infiles
== added_libraries
)
5452 fatal ("No input files");
5454 /* Make a place to record the compiler output file names
5455 that correspond to the input files. */
5458 i
+= lang_specific_extra_outfiles
;
5459 outfiles
= (const char **) xcalloc (i
, sizeof (char *));
5461 /* Record which files were specified explicitly as link input. */
5463 explicit_link_files
= xcalloc (1, n_infiles
);
5465 for (i
= 0; (int)i
< n_infiles
; i
++)
5467 register struct compiler
*cp
= 0;
5468 int this_file_error
= 0;
5470 /* Tell do_spec what to substitute for %i. */
5472 input_file_number
= i
;
5473 set_input (infiles
[i
].name
);
5475 /* Use the same thing in %o, unless cp->spec says otherwise. */
5477 outfiles
[i
] = input_filename
;
5479 /* Figure out which compiler from the file's suffix. */
5481 cp
= lookup_compiler (infiles
[i
].name
, input_filename_length
,
5482 infiles
[i
].language
);
5486 /* Ok, we found an applicable compiler. Run its spec. */
5488 if (cp
->spec
[0] == '#')
5489 error ("%s: %s compiler not installed on this system",
5490 input_filename
, &cp
->spec
[1]);
5491 value
= do_spec (cp
->spec
);
5493 this_file_error
= 1;
5496 /* If this file's name does not contain a recognized suffix,
5497 record it as explicit linker input. */
5500 explicit_link_files
[i
] = 1;
5502 /* Clear the delete-on-failure queue, deleting the files in it
5503 if this compilation failed. */
5505 if (this_file_error
)
5507 delete_failure_queue ();
5510 /* If this compilation succeeded, don't delete those files later. */
5511 clear_failure_queue ();
5514 /* Reset the output file name to the first input file name, for use
5515 with %b in LINK_SPEC on a target that prefers not to emit a.out
5518 set_input (infiles
[0].name
);
5520 if (error_count
== 0)
5522 /* Make sure INPUT_FILE_NUMBER points to first available open
5524 input_file_number
= n_infiles
;
5525 if (lang_specific_pre_link ())
5529 /* Run ld to link all the compiler output files. */
5531 if (error_count
== 0)
5533 int tmp
= execution_count
;
5535 /* We'll use ld if we can't find collect2. */
5536 if (! strcmp (linker_name_spec
, "collect2"))
5538 char *s
= find_a_file (&exec_prefixes
, "collect2", X_OK
);
5540 linker_name_spec
= "ld";
5542 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
5544 putenv_from_prefixes (&exec_prefixes
, "COMPILER_PATH");
5545 putenv_from_prefixes (&startfile_prefixes
, LIBRARY_PATH_ENV
);
5547 value
= do_spec (link_command_spec
);
5550 linker_was_run
= (tmp
!= execution_count
);
5553 /* Warn if a -B option was specified but the prefix was never used. */
5554 unused_prefix_warnings (&exec_prefixes
);
5555 unused_prefix_warnings (&startfile_prefixes
);
5557 /* If options said don't run linker,
5558 complain about input files to be given to the linker. */
5560 if (! linker_was_run
&& error_count
== 0)
5561 for (i
= 0; (int)i
< n_infiles
; i
++)
5562 if (explicit_link_files
[i
])
5563 error ("%s: linker input file unused since linking not done",
5566 /* Delete some or all of the temporary files we made. */
5569 delete_failure_queue ();
5570 delete_temp_files ();
5572 if (print_help_list
)
5574 printf (("\nFor bug reporting instructions, please see:\n"));
5575 printf ("%s\n", GCCBUGURL
);
5578 return (signal_count
!= 0 ? 2
5579 : error_count
> 0 ? (pass_exit_codes
? greatest_status
: 1)
5583 /* Find the proper compilation spec for the file name NAME,
5584 whose length is LENGTH. LANGUAGE is the specified language,
5585 or 0 if this file is to be passed to the linker. */
5587 static struct compiler
*
5588 lookup_compiler (name
, length
, language
)
5591 const char *language
;
5593 struct compiler
*cp
;
5595 /* If this was specified by the user to be a linker input, indicate that. */
5596 if (language
!= 0 && language
[0] == '*')
5599 /* Otherwise, look for the language, if one is spec'd. */
5602 for (cp
= compilers
+ n_compilers
- 1; cp
>= compilers
; cp
--)
5603 if (cp
->suffix
[0] == '@' && !strcmp (cp
->suffix
+ 1, language
))
5606 error ("language %s not recognized", language
);
5610 /* Look for a suffix. */
5611 for (cp
= compilers
+ n_compilers
- 1; cp
>= compilers
; cp
--)
5613 if (/* The suffix `-' matches only the file name `-'. */
5614 (!strcmp (cp
->suffix
, "-") && !strcmp (name
, "-"))
5615 || (strlen (cp
->suffix
) < length
5616 /* See if the suffix matches the end of NAME. */
5617 && !strcmp (cp
->suffix
,
5618 name
+ length
- strlen (cp
->suffix
))
5623 #if defined (OS2) ||defined (HAVE_DOS_BASED_FILE_SYSTEM)
5624 /* look again, but case-insensitively this time. */
5626 for (cp
= compilers
+ n_compilers
- 1; cp
>= compilers
; cp
--)
5628 if (/* The suffix `-' matches only the file name `-'. */
5629 (!strcmp (cp
->suffix
, "-") && !strcmp (name
, "-"))
5630 || (strlen (cp
->suffix
) < length
5631 /* See if the suffix matches the end of NAME. */
5632 && ((!strcmp (cp
->suffix
,
5633 name
+ length
- strlen (cp
->suffix
))
5634 || !strpbrk (cp
->suffix
, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"))
5635 && !strcasecmp (cp
->suffix
,
5636 name
+ length
- strlen (cp
->suffix
)))
5642 if (cp
>= compilers
)
5644 if (cp
->spec
[0] != '@')
5645 /* A non-alias entry: return it. */
5648 /* An alias entry maps a suffix to a language.
5649 Search for the language; pass 0 for NAME and LENGTH
5650 to avoid infinite recursion if language not found. */
5651 return lookup_compiler (NULL_PTR
, 0, cp
->spec
+ 1);
5657 save_string (s
, len
)
5661 register char *result
= xmalloc (len
+ 1);
5663 bcopy (s
, result
, len
);
5669 pfatal_with_name (name
)
5672 perror_with_name (name
);
5673 delete_temp_files ();
5678 perror_with_name (name
)
5681 error ("%s: %s", name
, xstrerror (errno
));
5685 pfatal_pexecute (errmsg_fmt
, errmsg_arg
)
5686 const char *errmsg_fmt
;
5687 const char *errmsg_arg
;
5691 int save_errno
= errno
;
5693 /* Space for trailing '\0' is in %s. */
5694 char *msg
= xmalloc (strlen (errmsg_fmt
) + strlen (errmsg_arg
));
5695 sprintf (msg
, errmsg_fmt
, errmsg_arg
);
5701 pfatal_with_name (errmsg_fmt
);
5704 /* Output an error message and exit */
5709 fatal ("Internal gcc abort.");
5712 /* Output an error message and exit */
5715 fatal
VPARAMS ((const char *msgid
, ...))
5717 #ifndef ANSI_PROTOTYPES
5722 VA_START (ap
, msgid
);
5724 #ifndef ANSI_PROTOTYPES
5725 msgid
= va_arg (ap
, const char *);
5728 fprintf (stderr
, "%s: ", programname
);
5729 vfprintf (stderr
, _(msgid
), ap
);
5731 fprintf (stderr
, "\n");
5732 delete_temp_files ();
5737 error
VPARAMS ((const char *msgid
, ...))
5739 #ifndef ANSI_PROTOTYPES
5744 VA_START (ap
, msgid
);
5746 #ifndef ANSI_PROTOTYPES
5747 msgid
= va_arg (ap
, const char *);
5750 fprintf (stderr
, "%s: ", programname
);
5751 vfprintf (stderr
, _(msgid
), ap
);
5754 fprintf (stderr
, "\n");
5758 notice
VPARAMS ((const char *msgid
, ...))
5760 #ifndef ANSI_PROTOTYPES
5765 VA_START (ap
, msgid
);
5767 #ifndef ANSI_PROTOTYPES
5768 msgid
= va_arg (ap
, const char *);
5771 vfprintf (stderr
, _(msgid
), ap
);
5777 validate_all_switches ()
5779 struct compiler
*comp
;
5780 register const char *p
;
5782 struct spec_list
*spec
;
5784 for (comp
= compilers
; comp
->spec
; comp
++)
5788 if (c
== '%' && *p
== '{')
5789 /* We have a switch spec. */
5790 validate_switches (p
+ 1);
5793 /* Look through the linked list of specs read from the specs file. */
5794 for (spec
= specs
; spec
; spec
= spec
->next
)
5796 p
= *(spec
->ptr_spec
);
5798 if (c
== '%' && *p
== '{')
5799 /* We have a switch spec. */
5800 validate_switches (p
+ 1);
5803 p
= link_command_spec
;
5805 if (c
== '%' && *p
== '{')
5806 /* We have a switch spec. */
5807 validate_switches (p
+ 1);
5810 /* Look at the switch-name that comes after START
5811 and mark as valid all supplied switches that match it. */
5814 validate_switches (start
)
5817 register const char *p
= start
;
5832 while (*p
!= ':' && *p
!= '}') p
++;
5836 else if (p
[-1] == '*')
5838 /* Mark all matching switches as valid. */
5840 for (i
= 0; i
< n_switches
; i
++)
5841 if (!strncmp (switches
[i
].part1
, filter
, p
- filter
))
5842 switches
[i
].validated
= 1;
5846 /* Mark an exact matching switch as valid. */
5847 for (i
= 0; i
< n_switches
; i
++)
5849 if (!strncmp (switches
[i
].part1
, filter
, p
- filter
)
5850 && switches
[i
].part1
[p
- filter
] == 0)
5851 switches
[i
].validated
= 1;
5856 /* Check whether a particular argument was used. The first time we
5857 canonicalize the switches to keep only the ones we care about. */
5867 const char *replace
;
5872 static struct mswitchstr
*mswitches
;
5873 static int n_mswitches
;
5878 struct mswitchstr
*matches
;
5882 /* Break multilib_matches into the component strings of string and replacement
5884 for (q
= multilib_matches
; *q
!= '\0'; q
++)
5888 matches
= (struct mswitchstr
*) alloca ((sizeof (struct mswitchstr
)) * cnt
);
5890 q
= multilib_matches
;
5900 matches
[i
].len
= q
- matches
[i
].str
;
5902 matches
[i
].replace
= ++q
;
5903 while (*q
!= ';' && *q
!= '\0')
5909 matches
[i
].rep_len
= q
- matches
[i
].replace
;
5915 /* Now build a list of the replacement string for switches that we care
5916 about. Make sure we allocate at least one entry. This prevents
5917 xmalloc from calling fatal, and prevents us from re-executing this
5920 = (struct mswitchstr
*) xmalloc ((sizeof (struct mswitchstr
))
5921 * (n_switches
? n_switches
: 1));
5922 for (i
= 0; i
< n_switches
; i
++)
5924 int xlen
= strlen (switches
[i
].part1
);
5925 for (j
= 0; j
< cnt
; j
++)
5926 if (xlen
== matches
[j
].len
5927 && ! strncmp (switches
[i
].part1
, matches
[j
].str
, xlen
))
5929 mswitches
[n_mswitches
].str
= matches
[j
].replace
;
5930 mswitches
[n_mswitches
].len
= matches
[j
].rep_len
;
5931 mswitches
[n_mswitches
].replace
= (char *)0;
5932 mswitches
[n_mswitches
].rep_len
= 0;
5939 for (i
= 0; i
< n_mswitches
; i
++)
5940 if (len
== mswitches
[i
].len
&& ! strncmp (p
, mswitches
[i
].str
, len
))
5947 default_arg (p
, len
)
5951 const char *start
, *end
;
5953 for (start
= multilib_defaults
; *start
!= '\0'; start
= end
+1)
5955 while (*start
== ' ' || *start
== '\t')
5961 for (end
= start
+1; *end
!= ' ' && *end
!= '\t' && *end
!= '\0'; end
++)
5964 if ((end
- start
) == len
&& strncmp (p
, start
, len
) == 0)
5974 /* Work out the subdirectory to use based on the options. The format of
5975 multilib_select is a list of elements. Each element is a subdirectory
5976 name followed by a list of options followed by a semicolon. The format
5977 of multilib_exclusions is the same, but without the preceding
5978 directory. First gcc will check the exclusions, if none of the options
5979 beginning with an exclamation point are present, and all of the other
5980 options are present, then we will ignore this completely. Passing
5981 that, gcc will consider each multilib_select in turn using the same
5982 rules for matching the options. If a match is found, that subdirectory
5989 unsigned int this_path_len
;
5990 const char *this_path
, *this_arg
;
5994 p
= multilib_exclusions
;
5997 /* Ignore newlines. */
6004 /* Check the arguments. */
6018 while (*p
!= ' ' && *p
!= ';')
6025 if (*this_arg
!= '!')
6033 ok
= used_arg (this_arg
, p
- this_arg
);
6047 p
= multilib_select
;
6050 /* Ignore newlines. */
6057 /* Get the initial path. */
6065 this_path_len
= p
- this_path
;
6067 /* Check the arguments. */
6082 while (*p
!= ' ' && *p
!= ';')
6089 if (*this_arg
!= '!')
6097 /* If this is a default argument, we can just ignore it.
6098 This is true even if this_arg begins with '!'. Beginning
6099 with '!' does not mean that this argument is necessarily
6100 inappropriate for this library: it merely means that
6101 there is a more specific library which uses this
6102 argument. If this argument is a default, we need not
6103 consider that more specific library. */
6104 if (! default_arg (this_arg
, p
- this_arg
))
6106 ok
= used_arg (this_arg
, p
- this_arg
);
6117 if (this_path_len
!= 1
6118 || this_path
[0] != '.')
6120 char * new_multilib_dir
= xmalloc (this_path_len
+ 1);
6121 strncpy (new_multilib_dir
, this_path
, this_path_len
);
6122 new_multilib_dir
[this_path_len
] = '\0';
6123 multilib_dir
= new_multilib_dir
;
6132 /* Print out the multiple library subdirectory selection
6133 information. This prints out a series of lines. Each line looks
6134 like SUBDIRECTORY;@OPTION@OPTION, with as many options as is
6135 required. Only the desired options are printed out, the negative
6136 matches. The options are print without a leading dash. There are
6137 no spaces to make it easy to use the information in the shell.
6138 Each subdirectory is printed only once. This assumes the ordering
6139 generated by the genmultilib script. Also, we leave out ones that match
6143 print_multilib_info ()
6145 const char *p
= multilib_select
;
6146 const char *last_path
= 0, *this_path
;
6148 unsigned int last_path_len
= 0;
6153 /* Ignore newlines. */
6160 /* Get the initial path. */
6169 /* Check for matches with the multilib_exclusions. We don't bother
6170 with the '!' in either list. If any of the exclusion rules match
6171 all of its options with the select rule, we skip it. */
6173 const char *e
= multilib_exclusions
;
6174 const char *this_arg
;
6179 /* Ignore newlines. */
6186 /* Check the arguments. */
6203 while (*e
!= ' ' && *e
!= ';')
6214 int len
= e
- this_arg
;
6221 while (*q
!= ' ' && *q
!= ';')
6228 if (! strncmp (arg
, this_arg
, (len
< q
- arg
) ? q
- arg
: len
) ||
6229 default_arg (this_arg
, e
- this_arg
))
6259 /* If this is a duplicate, skip it. */
6260 skip
= (last_path
!= 0 && (unsigned int)(p
- this_path
) == last_path_len
6261 && ! strncmp (last_path
, this_path
, last_path_len
));
6263 last_path
= this_path
;
6264 last_path_len
= p
- this_path
;
6267 /* If this directory requires any default arguments, we can skip
6268 it. We will already have printed a directory identical to
6269 this one which does not require that default argument. */
6287 while (*q
!= ' ' && *q
!= ';')
6295 && default_arg (arg
, q
- arg
))
6310 for (p1
= last_path
; p1
< p
; p1
++)
6329 use_arg
= *p
!= '!';
6334 while (*p
!= ' ' && *p
!= ';')
6349 /* If there are extra options, print them now. */
6350 if (multilib_extra
&& *multilib_extra
)
6352 int print_at
= TRUE
;
6355 for (q
= multilib_extra
; *q
!= '\0'; q
++)