1 /* Compiler driver program that can handle many languages.
2 Copyright (C) 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001 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". */
44 #define exit __posix_exit
47 #ifdef HAVE_SYS_RESOURCE_H
48 #include <sys/resource.h>
50 #if defined (HAVE_DECL_GETRUSAGE) && !HAVE_DECL_GETRUSAGE
51 extern int getrusage
PARAMS ((int, struct rusage
*));
54 /* By default there is no special suffix for executables. */
55 #ifdef EXECUTABLE_SUFFIX
56 #define HAVE_EXECUTABLE_SUFFIX
58 #define EXECUTABLE_SUFFIX ""
61 /* By default, the suffix for object files is ".o". */
63 #define HAVE_OBJECT_SUFFIX
65 #define OBJECT_SUFFIX ".o"
69 /* FIXME: the location independence code for VMS is hairier than this,
70 and hasn't been written. */
76 static char dir_separator_str
[] = { DIR_SEPARATOR
, 0 };
78 #define obstack_chunk_alloc xmalloc
79 #define obstack_chunk_free free
81 #ifndef GET_ENV_PATH_LIST
82 #define GET_ENV_PATH_LIST(VAR,NAME) do { (VAR) = getenv (NAME); } while (0)
85 /* Most every one is fine with LIBRARY_PATH. For some, it conflicts. */
86 #ifndef LIBRARY_PATH_ENV
87 #define LIBRARY_PATH_ENV "LIBRARY_PATH"
91 #define kill(p,s) raise(s)
94 /* If a stage of compilation returns an exit status >= 1,
95 compilation of that file ceases. */
97 #define MIN_FATAL_STATUS 1
99 /* Flag saying to pass the greatest exit code returned by a sub-process
100 to the calling program. */
101 static int pass_exit_codes
;
103 /* Definition of string containing the arguments given to configure. */
104 #include "configargs.h"
106 /* Flag saying to print the directories gcc will search through looking for
107 programs, libraries, etc. */
109 static int print_search_dirs
;
111 /* Flag saying to print the full filename of this file
112 as found through our usual search mechanism. */
114 static const char *print_file_name
= NULL
;
116 /* As print_file_name, but search for executable file. */
118 static const char *print_prog_name
= NULL
;
120 /* Flag saying to print the relative path we'd use to
121 find libgcc.a given the current compiler flags. */
123 static int print_multi_directory
;
125 /* Flag saying to print the list of subdirectories and
126 compiler flags used to select them in a standard form. */
128 static int print_multi_lib
;
130 /* Flag saying to print the command line options understood by gcc and its
133 static int print_help_list
;
135 /* Flag indicating whether we should print the command and arguments */
137 static int verbose_flag
;
139 /* Flag indicating to print target specific command line options. */
141 static int target_help_flag
;
143 /* Flag indicating whether we should report subprocess execution times
144 (if this is supported by the system - see pexecute.c). */
146 static int report_times
;
148 /* Nonzero means write "temp" files in source directory
149 and use the source file's name in them, and don't delete them. */
151 static int save_temps_flag
;
153 /* The compiler version. */
155 static const char *compiler_version
;
157 /* The target version specified with -V */
159 static const char *spec_version
= DEFAULT_TARGET_VERSION
;
161 /* The target machine specified with -b. */
163 static const char *spec_machine
= DEFAULT_TARGET_MACHINE
;
165 /* Nonzero if cross-compiling.
166 When -b is used, the value comes from the `specs' file. */
169 static const char *cross_compile
= "1";
171 static const char *cross_compile
= "0";
174 #ifdef MODIFY_TARGET_NAME
176 /* Information on how to alter the target name based on a command-line
177 switch. The only case we support now is simply appending or deleting a
178 string to or from the end of the first part of the configuration name. */
183 enum add_del
{ADD
, DELETE
} add_del
;
186 modify_target
[] = MODIFY_TARGET_NAME
;
189 /* The number of errors that have occurred; the link phase will not be
190 run if this is non-zero. */
191 static int error_count
= 0;
193 /* Greatest exit code of sub-processes that has been encountered up to
195 static int greatest_status
= 1;
197 /* This is the obstack which we use to allocate many strings. */
199 static struct obstack obstack
;
201 /* This is the obstack to build an environment variable to pass to
202 collect2 that describes all of the relevant switches of what to
203 pass the compiler in building the list of pointers to constructors
206 static struct obstack collect_obstack
;
208 /* These structs are used to collect resource usage information for
210 #ifdef HAVE_GETRUSAGE
211 static struct rusage rus
, prus
;
214 /* Forward declaration for prototypes. */
217 static void init_spec
PARAMS ((void));
219 static char **split_directories
PARAMS ((const char *, int *));
220 static void free_split_directories
PARAMS ((char **));
221 static char *make_relative_prefix
PARAMS ((const char *, const char *, const char *));
223 static void store_arg
PARAMS ((const char *, int, int));
224 static char *load_specs
PARAMS ((const char *));
225 static void read_specs
PARAMS ((const char *, int));
226 static void set_spec
PARAMS ((const char *, const char *));
227 static struct compiler
*lookup_compiler
PARAMS ((const char *, size_t, const char *));
228 static char *build_search_list
PARAMS ((struct path_prefix
*, const char *, int));
229 static void putenv_from_prefixes
PARAMS ((struct path_prefix
*, const char *));
230 static int access_check
PARAMS ((const char *, int));
231 static char *find_a_file
PARAMS ((struct path_prefix
*, const char *, int));
232 static void add_prefix
PARAMS ((struct path_prefix
*, const char *,
233 const char *, int, int, int *));
234 static void translate_options
PARAMS ((int *, const char *const **));
235 static char *skip_whitespace
PARAMS ((char *));
236 static void record_temp_file
PARAMS ((const char *, int, int));
237 static void delete_if_ordinary
PARAMS ((const char *));
238 static void delete_temp_files
PARAMS ((void));
239 static void delete_failure_queue
PARAMS ((void));
240 static void clear_failure_queue
PARAMS ((void));
241 static int check_live_switch
PARAMS ((int, int));
242 static const char *handle_braces
PARAMS ((const char *));
243 static char *save_string
PARAMS ((const char *, int));
244 static int do_spec_1
PARAMS ((const char *, int, const char *));
245 static const char *find_file
PARAMS ((const char *));
246 static int is_directory
PARAMS ((const char *, const char *, int));
247 static void validate_switches
PARAMS ((const char *));
248 static void validate_all_switches
PARAMS ((void));
249 static void give_switch
PARAMS ((int, int, int));
250 static int used_arg
PARAMS ((const char *, int));
251 static int default_arg
PARAMS ((const char *, int));
252 static void set_multilib_dir
PARAMS ((void));
253 static void print_multilib_info
PARAMS ((void));
254 static void pfatal_with_name
PARAMS ((const char *)) ATTRIBUTE_NORETURN
;
255 static void perror_with_name
PARAMS ((const char *));
256 static void pfatal_pexecute
PARAMS ((const char *, const char *))
258 static void error
PARAMS ((const char *, ...))
260 static void notice
PARAMS ((const char *, ...))
262 static void display_help
PARAMS ((void));
263 static void add_preprocessor_option
PARAMS ((const char *, int));
264 static void add_assembler_option
PARAMS ((const char *, int));
265 static void add_linker_option
PARAMS ((const char *, int));
266 static void process_command
PARAMS ((int, const char *const *));
267 static int execute
PARAMS ((void));
268 static void clear_args
PARAMS ((void));
269 static void fatal_error
PARAMS ((int));
270 static void set_input
PARAMS ((const char *));
272 /* Specs are strings containing lines, each of which (if not blank)
273 is made up of a program name, and arguments separated by spaces.
274 The program name must be exact and start from root, since no path
275 is searched and it is unreliable to depend on the current working directory.
276 Redirection of input or output is not supported; the subprograms must
277 accept filenames saying what files to read and write.
279 In addition, the specs can contain %-sequences to substitute variable text
280 or for conditional text. Here is a table of all defined %-sequences.
281 Note that spaces are not generated automatically around the results of
282 expanding these sequences; therefore, you can concatenate them together
283 or with constant text in a single argument.
285 %% substitute one % into the program name or argument.
286 %i substitute the name of the input file being processed.
287 %b substitute the basename of the input file being processed.
288 This is the substring up to (and not including) the last period
289 and not including the directory.
290 %B same as %b, but include the file suffix (text after the last period).
292 substitute a file name that has suffix SUFFIX and is chosen
293 once per compilation, and mark the argument a la %d. To reduce
294 exposure to denial-of-service attacks, the file name is now
295 chosen in a way that is hard to predict even when previously
296 chosen file names are known. For example, `%g.s ... %g.o ... %g.s'
297 might turn into `ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s'. SUFFIX matches
298 the regexp "[.A-Za-z]*%O"; "%O" is treated exactly as if it
299 had been pre-processed. Previously, %g was simply substituted
300 with a file name chosen once per compilation, without regard
301 to any appended suffix (which was therefore treated just like
302 ordinary text), making such attacks more likely to succeed.
304 like %g, but generates a new temporary file name even if %uSUFFIX
307 substitutes the last file name generated with %uSUFFIX, generating a
308 new one if there is no such last file name. In the absence of any
309 %uSUFFIX, this is just like %gSUFFIX, except they don't share
310 the same suffix "space", so `%g.s ... %U.s ... %g.s ... %U.s'
311 would involve the generation of two distinct file names, one
312 for each `%g.s' and another for each `%U.s'. Previously, %U was
313 simply substituted with a file name chosen for the previous %u,
314 without regard to any appended suffix.
316 substitutes the name of the HOST_BIT_BUCKET, if any, and if it is
317 writable, and if save-temps is off; otherwise, substitute the name
318 of a temporary file, just like %u. This temporary file is not
319 meant for communication between processes, but rather as a junk
322 substitutes .SUFFIX for the suffixes of a matched switch's args when
323 it is subsequently output with %*. SUFFIX is terminated by the next
325 %d marks the argument containing or following the %d as a
326 temporary file name, so that that file will be deleted if CC exits
327 successfully. Unlike %g, this contributes no text to the argument.
328 %w marks the argument containing or following the %w as the
329 "output file" of this compilation. This puts the argument
330 into the sequence of arguments that %o will substitute later.
332 like %{...} but mark last argument supplied within
333 as a file to be deleted on failure.
334 %o substitutes the names of all the output files, with spaces
335 automatically placed around them. You should write spaces
336 around the %o as well or the results are undefined.
337 %o is for use in the specs for running the linker.
338 Input files whose names have no recognized suffix are not compiled
339 at all, but they are included among the output files, so they will
341 %O substitutes the suffix for object files. Note that this is
342 handled specially when it immediately follows %g, %u, or %U
343 (with or without a suffix argument) because of the need for
344 those to form complete file names. The handling is such that
345 %O is treated exactly as if it had already been substituted,
346 except that %g, %u, and %U do not currently support additional
347 SUFFIX characters following %O as they would following, for
349 %p substitutes the standard macro predefinitions for the
350 current target machine. Use this when running cpp.
351 %P like %p, but puts `__' before and after the name of each macro.
352 (Except macros that already have __.)
354 %I Substitute a -iprefix option made from GCC_EXEC_PREFIX.
355 %s current argument is the name of a library or startup file of some sort.
356 Search for that file in a standard list of directories
357 and substitute the full name found.
358 %eSTR Print STR as an error message. STR is terminated by a newline.
359 Use this when inconsistent options are detected.
360 %x{OPTION} Accumulate an option for %X.
361 %X Output the accumulated linker options specified by compilations.
362 %Y Output the accumulated assembler options specified by compilations.
363 %Z Output the accumulated preprocessor options specified by compilations.
364 %v1 Substitute the major version number of GCC.
365 (For version 2.5.3, this is 2.)
366 %v2 Substitute the minor version number of GCC.
367 (For version 2.5.3, this is 5.)
368 %v3 Substitute the patch level number of GCC.
369 (For version 2.5.3, this is 3.)
370 %a process ASM_SPEC as a spec.
371 This allows config.h to specify part of the spec for running as.
372 %A process ASM_FINAL_SPEC as a spec. A capital A is actually
373 used here. This can be used to run a post-processor after the
374 assembler has done its job.
375 %D Dump out a -L option for each directory in startfile_prefixes.
376 If multilib_dir is set, extra entries are generated with it affixed.
377 %l process LINK_SPEC as a spec.
378 %L process LIB_SPEC as a spec.
379 %G process LIBGCC_SPEC as a spec.
380 %M output multilib_dir with directory separators replaced with "_";
381 if multilib_dir is not set or is ".", output "".
382 %S process STARTFILE_SPEC as a spec. A capital S is actually used here.
383 %E process ENDFILE_SPEC as a spec. A capital E is actually used here.
384 %c process SIGNED_CHAR_SPEC as a spec.
385 %C process CPP_SPEC as a spec.
386 %1 process CC1_SPEC as a spec.
387 %2 process CC1PLUS_SPEC as a spec.
388 %| output "-" if the input for the current command is coming from a pipe.
389 %* substitute the variable part of a matched option. (See below.)
390 Note that each comma in the substituted string is replaced by
392 %{S} substitutes the -S switch, if that switch was given to CC.
393 If that switch was not specified, this substitutes nothing.
394 Here S is a metasyntactic variable.
395 %{S*} substitutes all the switches specified to CC whose names start
396 with -S. This is used for -o, -I, etc; switches that take
397 arguments. CC considers `-o foo' as being one switch whose
398 name starts with `o'. %{o*} would substitute this text,
399 including the space; thus, two arguments would be generated.
400 %{^S*} likewise, but don't put a blank between a switch and any args.
401 %{S*&T*} likewise, but preserve order of S and T options (the order
402 of S and T in the spec is not significant). Can be any number
403 of ampersand-separated variables; for each the wild card is
404 optional. Useful for CPP as %{D*&U*&A*}.
405 %{S*:X} substitutes X if one or more switches whose names start with -S are
406 specified to CC. Note that the tail part of the -S option
407 (i.e. the part matched by the `*') will be substituted for each
408 occurrence of %* within X.
409 %{<S} remove all occurences of -S from the command line.
410 Note - this option is position dependent. % commands in the
411 spec string before this option will see -S, % commands in the
412 spec string after this option will not.
413 %{S:X} substitutes X, but only if the -S switch was given to CC.
414 %{!S:X} substitutes X, but only if the -S switch was NOT given to CC.
415 %{|S:X} like %{S:X}, but if no S switch, substitute `-'.
416 %{|!S:X} like %{!S:X}, but if there is an S switch, substitute `-'.
417 %{.S:X} substitutes X, but only if processing a file with suffix S.
418 %{!.S:X} substitutes X, but only if NOT processing a file with suffix S.
419 %{S|P:X} substitutes X if either -S or -P was given to CC. This may be
420 combined with ! and . as above binding stronger than the OR.
421 %(Spec) processes a specification defined in a specs file as *Spec:
422 %[Spec] as above, but put __ around -D arguments
424 The conditional text X in a %{S:X} or %{!S:X} construct may contain
425 other nested % constructs or spaces, or even newlines. They are
426 processed as usual, as described above.
428 The -O, -f, -m, and -W switches are handled specifically in these
429 constructs. If another value of -O or the negated form of a -f, -m, or
430 -W switch is found later in the command line, the earlier switch
431 value is ignored, except with {S*} where S is just one letter; this
432 passes all matching options.
434 The character | at the beginning of the predicate text is used to indicate
435 that a command should be piped to the following command, but only if -pipe
438 Note that it is built into CC which switches take arguments and which
439 do not. You might think it would be useful to generalize this to
440 allow each compiler's spec to say which switches take arguments. But
441 this cannot be done in a consistent fashion. CC cannot even decide
442 which input files have been specified without knowing which switches
443 take arguments, and it must know which input files to compile in order
444 to tell which compilers to run.
446 CC also knows implicitly that arguments starting in `-l' are to be
447 treated as compiler output files, and passed to the linker in their
448 proper position among the other output files. */
450 /* Define the macros used for specs %a, %l, %L, %S, %c, %C, %1. */
452 /* config.h can define ASM_SPEC to provide extra args to the assembler
453 or extra switch-translations. */
458 /* config.h can define ASM_FINAL_SPEC to run a post processor after
459 the assembler has run. */
460 #ifndef ASM_FINAL_SPEC
461 #define ASM_FINAL_SPEC ""
464 /* config.h can define CPP_SPEC to provide extra args to the C preprocessor
465 or extra switch-translations. */
470 /* config.h can define CC1_SPEC to provide extra args to cc1 and cc1plus
471 or extra switch-translations. */
476 /* config.h can define CC1PLUS_SPEC to provide extra args to cc1plus
477 or extra switch-translations. */
479 #define CC1PLUS_SPEC ""
482 /* config.h can define LINK_SPEC to provide extra args to the linker
483 or extra switch-translations. */
488 /* config.h can define LIB_SPEC to override the default libraries. */
490 #define LIB_SPEC "%{!shared:%{g*:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}}"
493 /* config.h can define LIBGCC_SPEC to override how and when libgcc.a is
496 #if defined(LINK_LIBGCC_SPECIAL) || defined(LINK_LIBGCC_SPECIAL_1)
497 /* Have gcc do the search for libgcc.a. */
498 #define LIBGCC_SPEC "libgcc.a%s"
500 #define LIBGCC_SPEC "-lgcc"
504 /* config.h can define STARTFILE_SPEC to override the default crt0 files. */
505 #ifndef STARTFILE_SPEC
506 #define STARTFILE_SPEC \
507 "%{!shared:%{pg:gcrt0%O%s}%{!pg:%{p:mcrt0%O%s}%{!p:crt0%O%s}}}"
510 /* config.h can define SWITCHES_NEED_SPACES to control which options
511 require spaces between the option and the argument. */
512 #ifndef SWITCHES_NEED_SPACES
513 #define SWITCHES_NEED_SPACES ""
516 /* config.h can define ENDFILE_SPEC to override the default crtn files. */
518 #define ENDFILE_SPEC ""
521 /* This spec is used for telling cpp whether char is signed or not. */
522 #ifndef SIGNED_CHAR_SPEC
523 /* Use #if rather than ?:
524 because MIPS C compiler rejects like ?: in initializers. */
525 #if DEFAULT_SIGNED_CHAR
526 #define SIGNED_CHAR_SPEC "%{funsigned-char:-D__CHAR_UNSIGNED__}"
528 #define SIGNED_CHAR_SPEC "%{!fsigned-char:-D__CHAR_UNSIGNED__}"
533 #define LINKER_NAME "collect2"
536 /* Here is the spec for running the linker, after compiling all files. */
538 /* -u* was put back because both BSD and SysV seem to support it. */
539 /* %{static:} simply prevents an error message if the target machine
540 doesn't handle -static. */
541 /* We want %{T*} after %{L*} and %D so that it can be used to specify linker
542 scripts which exist in user specified directories, or in standard
544 #ifndef LINK_COMMAND_SPEC
545 #define LINK_COMMAND_SPEC "\
546 %{!fsyntax-only:%{!c:%{!M:%{!MM:%{!E:%{!S:\
547 %(linker) %l %X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} %{r} %{s} %{t}\
548 %{u*} %{x} %{z} %{Z} %{!A:%{!nostdlib:%{!nostartfiles:%S}}}\
549 %{static:} %{L*} %(link_libgcc) %o %{!nostdlib:%{!nodefaultlibs:%G %L %G}}\
550 %{!A:%{!nostdlib:%{!nostartfiles:%E}}} %{T*} }}}}}}"
553 #ifndef LINK_LIBGCC_SPEC
554 # ifdef LINK_LIBGCC_SPECIAL
555 /* Don't generate -L options for startfile prefix list. */
556 # define LINK_LIBGCC_SPEC ""
558 /* Do generate them. */
559 # define LINK_LIBGCC_SPEC "%D"
563 static const char *cpp_spec
= CPP_SPEC
;
564 static const char *cpp_predefines
= CPP_PREDEFINES
;
565 static const char *cc1_spec
= CC1_SPEC
;
566 static const char *cc1plus_spec
= CC1PLUS_SPEC
;
567 static const char *signed_char_spec
= SIGNED_CHAR_SPEC
;
568 static const char *asm_spec
= ASM_SPEC
;
569 static const char *asm_final_spec
= ASM_FINAL_SPEC
;
570 static const char *link_spec
= LINK_SPEC
;
571 static const char *lib_spec
= LIB_SPEC
;
572 static const char *libgcc_spec
= LIBGCC_SPEC
;
573 static const char *endfile_spec
= ENDFILE_SPEC
;
574 static const char *startfile_spec
= STARTFILE_SPEC
;
575 static const char *switches_need_spaces
= SWITCHES_NEED_SPACES
;
576 static const char *linker_name_spec
= LINKER_NAME
;
577 static const char *link_command_spec
= LINK_COMMAND_SPEC
;
578 static const char *link_libgcc_spec
= LINK_LIBGCC_SPEC
;
580 /* Standard options to cpp, cc1, and as, to reduce duplication in specs.
581 There should be no need to override these in target dependent files,
582 but we need to copy them to the specs file so that newer versions
583 of the GCC driver can correctly drive older tool chains with the
584 appropriate -B options. */
586 static const char *trad_capable_cpp
=
587 "%{traditional|ftraditional|traditional-cpp:trad}cpp0";
589 static const char *cpp_options
=
590 "%{C:%{!E:%eGNU C does not support -C without using -E}}\
591 %{std*} %{nostdinc*}\
592 %{C} %{v} %{I*} %{P} %{$} %I\
593 %{MD:-M -MF %{!o: %b.d}%{o*:%.d%*}} %{MMD:-MM -MF %{!o: %b.d}%{o*:%.d%*}}\
594 %{M} %{MM} %{MF*} %{MG} %{MP} %{MQ*} %{MT*} %{M|MD|MM|MMD:%{o*:-MQ %*}}\
595 %{!no-gcc:-D__GNUC__=%v1 -D__GNUC_MINOR__=%v2 -D__GNUC_PATCHLEVEL__=%v3}\
596 %{!undef:%{!ansi:%{!std=*:%p}%{std=gnu*:%p}} %P} %{trigraphs}\
597 %c %{Os:-D__OPTIMIZE_SIZE__} %{O*:%{!O0:-D__OPTIMIZE__}}\
598 %{ffast-math:-D__FAST_MATH__}\
599 %{fshort-wchar:-U__WCHAR_TYPE__ -D__WCHAR_TYPE__=short\\ unsigned\\ int}\
600 %{ffreestanding:-D__STDC_HOSTED__=0} %{fno-hosted:-D__STDC_HOSTED__=0}\
601 %{!ffreestanding:%{!fno-hosted:-D__STDC_HOSTED__=1}}\
602 %{fshow-column} %{fno-show-column}\
603 %{fleading-underscore} %{fno-leading-underscore}\
604 %{fno-operator-names} %{ftabstop=*} %{remap}\
605 %{g3:-dD} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*&U*&A*} %{i*} %Z %i\
606 %{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}}";
608 /* NB: This is shared amongst all front-ends. */
609 static const char *cc1_options
=
610 "%{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
611 %1 %{!Q:-quiet} -dumpbase %B %{d*} %{m*} %{a*}\
612 %{g*} %{O*} %{W*} %{w} %{pedantic*} %{std*} %{ansi}\
613 %{traditional} %{v:-version} %{pg:-p} %{p} %{f*}\
614 %{aux-info*} %{Qn:-fno-ident} %{--help:--help}\
615 %{--target-help:--target-help}\
616 %{!fsyntax-only:%{S:%W{o*}%{!o*:-o %b.s}}}\
617 %{fsyntax-only:-o %j}";
619 static const char *asm_options
=
620 "%a %Y %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}";
622 static const char *invoke_as
=
623 "%{!S:-o %{|!pipe:%g.s} |\n as %(asm_options) %{!pipe:%g.s} %A }";
625 /* Some compilers have limits on line lengths, and the multilib_select
626 and/or multilib_matches strings can be very long, so we build them at
628 static struct obstack multilib_obstack
;
629 static const char *multilib_select
;
630 static const char *multilib_matches
;
631 static const char *multilib_defaults
;
632 static const char *multilib_exclusions
;
633 #include "multilib.h"
635 /* Check whether a particular argument is a default argument. */
637 #ifndef MULTILIB_DEFAULTS
638 #define MULTILIB_DEFAULTS { "" }
641 static const char *const multilib_defaults_raw
[] = MULTILIB_DEFAULTS
;
645 struct user_specs
*next
;
646 const char *filename
;
649 static struct user_specs
*user_specs_head
, *user_specs_tail
;
651 /* This defines which switch letters take arguments. */
653 #define DEFAULT_SWITCH_TAKES_ARG(CHAR) \
654 ((CHAR) == 'D' || (CHAR) == 'U' || (CHAR) == 'o' \
655 || (CHAR) == 'e' || (CHAR) == 'T' || (CHAR) == 'u' \
656 || (CHAR) == 'I' || (CHAR) == 'm' || (CHAR) == 'x' \
657 || (CHAR) == 'L' || (CHAR) == 'A' || (CHAR) == 'V' \
658 || (CHAR) == 'B' || (CHAR) == 'b')
660 #ifndef SWITCH_TAKES_ARG
661 #define SWITCH_TAKES_ARG(CHAR) DEFAULT_SWITCH_TAKES_ARG(CHAR)
664 /* This defines which multi-letter switches take arguments. */
666 #define DEFAULT_WORD_SWITCH_TAKES_ARG(STR) \
667 (!strcmp (STR, "Tdata") || !strcmp (STR, "Ttext") \
668 || !strcmp (STR, "Tbss") || !strcmp (STR, "include") \
669 || !strcmp (STR, "imacros") || !strcmp (STR, "aux-info") \
670 || !strcmp (STR, "idirafter") || !strcmp (STR, "iprefix") \
671 || !strcmp (STR, "iwithprefix") || !strcmp (STR, "iwithprefixbefore") \
672 || !strcmp (STR, "isystem") || !strcmp (STR, "specs") \
673 || !strcmp (STR, "MF") || !strcmp (STR, "MT") || !strcmp (STR, "MQ"))
675 #ifndef WORD_SWITCH_TAKES_ARG
676 #define WORD_SWITCH_TAKES_ARG(STR) DEFAULT_WORD_SWITCH_TAKES_ARG (STR)
679 #ifdef HAVE_EXECUTABLE_SUFFIX
680 /* This defines which switches stop a full compilation. */
681 #define DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR) \
682 ((CHAR) == 'c' || (CHAR) == 'S')
684 #ifndef SWITCH_CURTAILS_COMPILATION
685 #define SWITCH_CURTAILS_COMPILATION(CHAR) \
686 DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR)
690 /* Record the mapping from file suffixes for compilation specs. */
694 const char *suffix
; /* Use this compiler for input files
695 whose names end in this suffix. */
697 const char *spec
; /* To use this compiler, run this spec. */
700 /* Pointer to a vector of `struct compiler' that gives the spec for
701 compiling a file, based on its suffix.
702 A file that does not end in any of these suffixes will be passed
703 unchanged to the loader and nothing else will be done to it.
705 An entry containing two 0s is used to terminate the vector.
707 If multiple entries match a file, the last matching one is used. */
709 static struct compiler
*compilers
;
711 /* Number of entries in `compilers', not counting the null terminator. */
713 static int n_compilers
;
715 /* The default list of file name suffixes and their compilation specs. */
717 static struct compiler default_compilers
[] =
719 /* Add lists of suffixes of known languages here. If those languages
720 were not present when we built the driver, we will hit these copies
721 and be given a more meaningful error than "file not used since
722 linking is not done". */
723 {".m", "#Objective-C"}, {".mi", "#Objective-C"},
724 {".cc", "#C++"}, {".cxx", "#C++"}, {".cpp", "#C++"}, {".cp", "#C++"},
725 {".c++", "#C++"}, {".C", "#C++"}, {".ii", "#C++"},
726 {".ads", "#Ada"}, {".adb", "#Ada"}, {".ada", "#Ada"},
727 {".f", "#Fortran"}, {".for", "#Fortran"}, {".fpp", "#Fortran"},
728 {".F", "#Fortran"}, {".FOR", "#Fortran"}, {".FPP", "#Fortran"},
730 {".p", "#Pascal"}, {".pas", "#Pascal"},
731 {".ch", "#Chill"}, {".chi", "#Chill"},
732 {".java", "#Java"}, {".class", "#Java"},
733 {".zip", "#Java"}, {".jar", "#Java"},
734 /* Next come the entries for C. */
737 /* cc1 has an integrated ISO C preprocessor. We should invoke the
738 external preprocessor if -save-temps or -traditional is given. */
739 "%{E|M|MM:%(trad_capable_cpp) -lang-c %{ansi:-std=c89} %(cpp_options)}\
741 %{save-temps:%(trad_capable_cpp) -lang-c %{ansi:-std=c89}\
742 %(cpp_options) %b.i \n\
743 cc1 -fpreprocessed %b.i %(cc1_options)}\
745 %{traditional|ftraditional|traditional-cpp:\
746 tradcpp0 -lang-c %{ansi:-std=c89} %(cpp_options) %{!pipe:%g.i} |\n\
747 cc1 -fpreprocessed %{!pipe:%g.i} %(cc1_options)}\
748 %{!traditional:%{!ftraditional:%{!traditional-cpp:\
749 cc1 -lang-c %{ansi:-std=c89} %(cpp_options) %(cc1_options)}}}}\
750 %{!fsyntax-only:%(invoke_as)}}}}"},
752 "%{!E:%e-E required when input is from standard input}\
753 %(trad_capable_cpp) -lang-c %{ansi:-std=c89} %(cpp_options)"},
756 "%{!E:%eCompilation of header file requested} \
757 %(trad_capable_cpp) -lang-c %{ansi:-std=c89} %(cpp_options)"},
758 {".i", "@cpp-output"},
760 "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}"},
761 {".s", "@assembler"},
763 "%{!M:%{!MM:%{!E:%{!S:as %(asm_options) %i %A }}}}"},
764 {".S", "@assembler-with-cpp"},
765 {"@assembler-with-cpp",
766 "%(trad_capable_cpp) -lang-asm %(cpp_options)\
767 %{!M:%{!MM:%{!E:%(invoke_as)}}}"},
769 /* Mark end of table */
773 /* Number of elements in default_compilers, not counting the terminator. */
775 static int n_default_compilers
776 = (sizeof default_compilers
/ sizeof (struct compiler
)) - 1;
778 /* A vector of options to give to the linker.
779 These options are accumulated by %x,
780 and substituted into the linker command with %X. */
781 static int n_linker_options
;
782 static char **linker_options
;
784 /* A vector of options to give to the assembler.
785 These options are accumulated by -Wa,
786 and substituted into the assembler command with %Y. */
787 static int n_assembler_options
;
788 static char **assembler_options
;
790 /* A vector of options to give to the preprocessor.
791 These options are accumulated by -Wp,
792 and substituted into the preprocessor command with %Z. */
793 static int n_preprocessor_options
;
794 static char **preprocessor_options
;
796 /* Define how to map long options into short ones. */
798 /* This structure describes one mapping. */
801 /* The long option's name. */
803 /* The equivalent short option. */
804 const char *equivalent
;
805 /* Argument info. A string of flag chars; NULL equals no options.
806 a => argument required.
807 o => argument optional.
808 j => join argument to equivalent, making one word.
809 * => require other text after NAME as an argument. */
810 const char *arg_info
;
813 /* This is the table of mappings. Mappings are tried sequentially
814 for each option encountered; the first one that matches, wins. */
816 struct option_map option_map
[] =
818 {"--all-warnings", "-Wall", 0},
819 {"--ansi", "-ansi", 0},
820 {"--assemble", "-S", 0},
821 {"--assert", "-A", "a"},
822 {"--classpath", "-fclasspath=", "aj"},
823 {"--CLASSPATH", "-fCLASSPATH=", "aj"},
824 {"--comments", "-C", 0},
825 {"--compile", "-c", 0},
826 {"--debug", "-g", "oj"},
827 {"--define-macro", "-D", "aj"},
828 {"--dependencies", "-M", 0},
829 {"--dump", "-d", "a"},
830 {"--dumpbase", "-dumpbase", "a"},
831 {"--entry", "-e", 0},
832 {"--extra-warnings", "-W", 0},
833 {"--for-assembler", "-Wa", "a"},
834 {"--for-linker", "-Xlinker", "a"},
835 {"--force-link", "-u", "a"},
836 {"--imacros", "-imacros", "a"},
837 {"--include", "-include", "a"},
838 {"--include-barrier", "-I-", 0},
839 {"--include-directory", "-I", "aj"},
840 {"--include-directory-after", "-idirafter", "a"},
841 {"--include-prefix", "-iprefix", "a"},
842 {"--include-with-prefix", "-iwithprefix", "a"},
843 {"--include-with-prefix-before", "-iwithprefixbefore", "a"},
844 {"--include-with-prefix-after", "-iwithprefix", "a"},
845 {"--language", "-x", "a"},
846 {"--library-directory", "-L", "a"},
847 {"--machine", "-m", "aj"},
848 {"--machine-", "-m", "*j"},
849 {"--no-line-commands", "-P", 0},
850 {"--no-precompiled-includes", "-noprecomp", 0},
851 {"--no-standard-includes", "-nostdinc", 0},
852 {"--no-standard-libraries", "-nostdlib", 0},
853 {"--no-warnings", "-w", 0},
854 {"--optimize", "-O", "oj"},
855 {"--output", "-o", "a"},
856 {"--output-class-directory", "-foutput-class-dir=", "ja"},
857 {"--pedantic", "-pedantic", 0},
858 {"--pedantic-errors", "-pedantic-errors", 0},
859 {"--pipe", "-pipe", 0},
860 {"--prefix", "-B", "a"},
861 {"--preprocess", "-E", 0},
862 {"--print-search-dirs", "-print-search-dirs", 0},
863 {"--print-file-name", "-print-file-name=", "aj"},
864 {"--print-libgcc-file-name", "-print-libgcc-file-name", 0},
865 {"--print-missing-file-dependencies", "-MG", 0},
866 {"--print-multi-lib", "-print-multi-lib", 0},
867 {"--print-multi-directory", "-print-multi-directory", 0},
868 {"--print-prog-name", "-print-prog-name=", "aj"},
869 {"--profile", "-p", 0},
870 {"--profile-blocks", "-a", 0},
871 {"--quiet", "-q", 0},
872 {"--save-temps", "-save-temps", 0},
873 {"--shared", "-shared", 0},
874 {"--silent", "-q", 0},
875 {"--specs", "-specs=", "aj"},
876 {"--static", "-static", 0},
877 {"--std", "-std=", "aj"},
878 {"--symbolic", "-symbolic", 0},
879 {"--target", "-b", "a"},
880 {"--time", "-time", 0},
881 {"--trace-includes", "-H", 0},
882 {"--traditional", "-traditional", 0},
883 {"--traditional-cpp", "-traditional-cpp", 0},
884 {"--trigraphs", "-trigraphs", 0},
885 {"--undefine-macro", "-U", "aj"},
886 {"--use-version", "-V", "a"},
887 {"--user-dependencies", "-MM", 0},
888 {"--verbose", "-v", 0},
889 {"--version", "-dumpversion", 0},
890 {"--warn-", "-W", "*j"},
891 {"--write-dependencies", "-MD", 0},
892 {"--write-user-dependencies", "-MMD", 0},
896 /* Translate the options described by *ARGCP and *ARGVP.
897 Make a new vector and store it back in *ARGVP,
898 and store its length in *ARGVC. */
901 translate_options (argcp
, argvp
)
903 const char *const **argvp
;
907 const char *const *argv
= *argvp
;
909 (const char **) xmalloc ((argc
+ 2) * 2 * sizeof (const char *));
913 newv
[newindex
++] = argv
[i
++];
917 /* Translate -- options. */
918 if (argv
[i
][0] == '-' && argv
[i
][1] == '-')
921 /* Find a mapping that applies to this option. */
922 for (j
= 0; j
< ARRAY_SIZE (option_map
); j
++)
924 size_t optlen
= strlen (option_map
[j
].name
);
925 size_t arglen
= strlen (argv
[i
]);
926 size_t complen
= arglen
> optlen
? optlen
: arglen
;
927 const char *arginfo
= option_map
[j
].arg_info
;
932 if (!strncmp (argv
[i
], option_map
[j
].name
, complen
))
939 for (k
= j
+ 1; k
< ARRAY_SIZE (option_map
); k
++)
940 if (strlen (option_map
[k
].name
) >= arglen
941 && !strncmp (argv
[i
], option_map
[k
].name
, arglen
))
943 error ("Ambiguous abbreviation %s", argv
[i
]);
947 if (k
!= ARRAY_SIZE (option_map
))
953 /* If the option has an argument, accept that. */
954 if (argv
[i
][optlen
] == '=')
955 arg
= argv
[i
] + optlen
+ 1;
957 /* If this mapping requires extra text at end of name,
958 accept that as "argument". */
959 else if (strchr (arginfo
, '*') != 0)
960 arg
= argv
[i
] + optlen
;
962 /* Otherwise, extra text at end means mismatch.
963 Try other mappings. */
968 else if (strchr (arginfo
, '*') != 0)
970 error ("Incomplete `%s' option", option_map
[j
].name
);
974 /* Handle arguments. */
975 if (strchr (arginfo
, 'a') != 0)
981 error ("Missing argument to `%s' option",
989 else if (strchr (arginfo
, '*') != 0)
991 else if (strchr (arginfo
, 'o') == 0)
994 error ("Extraneous argument to `%s' option",
999 /* Store the translation as one argv elt or as two. */
1000 if (arg
!= 0 && strchr (arginfo
, 'j') != 0)
1001 newv
[newindex
++] = concat (option_map
[j
].equivalent
, arg
,
1005 newv
[newindex
++] = option_map
[j
].equivalent
;
1006 newv
[newindex
++] = arg
;
1009 newv
[newindex
++] = option_map
[j
].equivalent
;
1017 /* Handle old-fashioned options--just copy them through,
1018 with their arguments. */
1019 else if (argv
[i
][0] == '-')
1021 const char *p
= argv
[i
] + 1;
1025 if (SWITCH_TAKES_ARG (c
) > (p
[1] != 0))
1026 nskip
+= SWITCH_TAKES_ARG (c
) - (p
[1] != 0);
1027 else if (WORD_SWITCH_TAKES_ARG (p
))
1028 nskip
+= WORD_SWITCH_TAKES_ARG (p
);
1029 else if ((c
== 'B' || c
== 'b' || c
== 'V' || c
== 'x')
1032 else if (! strcmp (p
, "Xlinker"))
1035 /* Watch out for an option at the end of the command line that
1036 is missing arguments, and avoid skipping past the end of the
1038 if (nskip
+ i
> argc
)
1043 newv
[newindex
++] = argv
[i
++];
1048 /* Ordinary operands, or +e options. */
1049 newv
[newindex
++] = argv
[i
++];
1064 /* A fully-blank line is a delimiter in the SPEC file and shouldn't
1065 be considered whitespace. */
1066 if (p
[0] == '\n' && p
[1] == '\n' && p
[2] == '\n')
1068 else if (*p
== '\n' || *p
== ' ' || *p
== '\t')
1082 /* Structures to keep track of prefixes to try when looking for files. */
1086 char *prefix
; /* String to prepend to the path. */
1087 struct prefix_list
*next
; /* Next in linked list. */
1088 int require_machine_suffix
; /* Don't use without machine_suffix. */
1089 /* 2 means try both machine_suffix and just_machine_suffix. */
1090 int *used_flag_ptr
; /* 1 if a file was found with this prefix. */
1091 int priority
; /* Sort key - priority within list */
1096 struct prefix_list
*plist
; /* List of prefixes to try */
1097 int max_len
; /* Max length of a prefix in PLIST */
1098 const char *name
; /* Name of this list (used in config stuff) */
1101 /* List of prefixes to try when looking for executables. */
1103 static struct path_prefix exec_prefixes
= { 0, 0, "exec" };
1105 /* List of prefixes to try when looking for startup (crt0) files. */
1107 static struct path_prefix startfile_prefixes
= { 0, 0, "startfile" };
1109 /* List of prefixes to try when looking for include files. */
1111 static struct path_prefix include_prefixes
= { 0, 0, "include" };
1113 /* Suffix to attach to directories searched for commands.
1114 This looks like `MACHINE/VERSION/'. */
1116 static const char *machine_suffix
= 0;
1118 /* Suffix to attach to directories searched for commands.
1119 This is just `MACHINE/'. */
1121 static const char *just_machine_suffix
= 0;
1123 /* Adjusted value of GCC_EXEC_PREFIX envvar. */
1125 static const char *gcc_exec_prefix
;
1127 /* Default prefixes to attach to command names. */
1129 #ifdef CROSS_COMPILE /* Don't use these prefixes for a cross compiler. */
1130 #undef MD_EXEC_PREFIX
1131 #undef MD_STARTFILE_PREFIX
1132 #undef MD_STARTFILE_PREFIX_1
1135 /* If no prefixes defined, use the null string, which will disable them. */
1136 #ifndef MD_EXEC_PREFIX
1137 #define MD_EXEC_PREFIX ""
1139 #ifndef MD_STARTFILE_PREFIX
1140 #define MD_STARTFILE_PREFIX ""
1142 #ifndef MD_STARTFILE_PREFIX_1
1143 #define MD_STARTFILE_PREFIX_1 ""
1146 /* Supply defaults for the standard prefixes. */
1148 #ifndef STANDARD_EXEC_PREFIX
1149 #define STANDARD_EXEC_PREFIX "/usr/local/lib/gcc-lib/"
1151 #ifndef STANDARD_STARTFILE_PREFIX
1152 #define STANDARD_STARTFILE_PREFIX "/usr/local/lib/"
1154 #ifndef TOOLDIR_BASE_PREFIX
1155 #define TOOLDIR_BASE_PREFIX "/usr/local/"
1157 #ifndef STANDARD_BINDIR_PREFIX
1158 #define STANDARD_BINDIR_PREFIX "/usr/local/bin"
1161 static const char *standard_exec_prefix
= STANDARD_EXEC_PREFIX
;
1162 static const char *standard_exec_prefix_1
= "/usr/lib/gcc/";
1163 static const char *md_exec_prefix
= MD_EXEC_PREFIX
;
1165 static const char *md_startfile_prefix
= MD_STARTFILE_PREFIX
;
1166 static const char *md_startfile_prefix_1
= MD_STARTFILE_PREFIX_1
;
1167 static const char *standard_startfile_prefix
= STANDARD_STARTFILE_PREFIX
;
1168 static const char *standard_startfile_prefix_1
= "/lib/";
1169 static const char *standard_startfile_prefix_2
= "/usr/lib/";
1171 static const char *tooldir_base_prefix
= TOOLDIR_BASE_PREFIX
;
1172 static const char *tooldir_prefix
;
1174 static const char *standard_bindir_prefix
= STANDARD_BINDIR_PREFIX
;
1176 /* Subdirectory to use for locating libraries. Set by
1177 set_multilib_dir based on the compilation options. */
1179 static const char *multilib_dir
;
1181 /* Structure to keep track of the specs that have been defined so far.
1182 These are accessed using %(specname) or %[specname] in a compiler
1187 /* The following 2 fields must be first */
1188 /* to allow EXTRA_SPECS to be initialized */
1189 const char *name
; /* name of the spec. */
1190 const char *ptr
; /* available ptr if no static pointer */
1192 /* The following fields are not initialized */
1193 /* by EXTRA_SPECS */
1194 const char **ptr_spec
; /* pointer to the spec itself. */
1195 struct spec_list
*next
; /* Next spec in linked list. */
1196 int name_len
; /* length of the name */
1197 int alloc_p
; /* whether string was allocated */
1200 #define INIT_STATIC_SPEC(NAME,PTR) \
1201 { NAME, NULL_PTR, PTR, (struct spec_list *) 0, sizeof (NAME) - 1, 0 }
1203 /* List of statically defined specs. */
1204 static struct spec_list static_specs
[] =
1206 INIT_STATIC_SPEC ("asm", &asm_spec
),
1207 INIT_STATIC_SPEC ("asm_final", &asm_final_spec
),
1208 INIT_STATIC_SPEC ("asm_options", &asm_options
),
1209 INIT_STATIC_SPEC ("invoke_as", &invoke_as
),
1210 INIT_STATIC_SPEC ("cpp", &cpp_spec
),
1211 INIT_STATIC_SPEC ("cpp_options", &cpp_options
),
1212 INIT_STATIC_SPEC ("trad_capable_cpp", &trad_capable_cpp
),
1213 INIT_STATIC_SPEC ("cc1", &cc1_spec
),
1214 INIT_STATIC_SPEC ("cc1_options", &cc1_options
),
1215 INIT_STATIC_SPEC ("cc1plus", &cc1plus_spec
),
1216 INIT_STATIC_SPEC ("endfile", &endfile_spec
),
1217 INIT_STATIC_SPEC ("link", &link_spec
),
1218 INIT_STATIC_SPEC ("lib", &lib_spec
),
1219 INIT_STATIC_SPEC ("libgcc", &libgcc_spec
),
1220 INIT_STATIC_SPEC ("startfile", &startfile_spec
),
1221 INIT_STATIC_SPEC ("switches_need_spaces", &switches_need_spaces
),
1222 INIT_STATIC_SPEC ("signed_char", &signed_char_spec
),
1223 INIT_STATIC_SPEC ("predefines", &cpp_predefines
),
1224 INIT_STATIC_SPEC ("cross_compile", &cross_compile
),
1225 INIT_STATIC_SPEC ("version", &compiler_version
),
1226 INIT_STATIC_SPEC ("multilib", &multilib_select
),
1227 INIT_STATIC_SPEC ("multilib_defaults", &multilib_defaults
),
1228 INIT_STATIC_SPEC ("multilib_extra", &multilib_extra
),
1229 INIT_STATIC_SPEC ("multilib_matches", &multilib_matches
),
1230 INIT_STATIC_SPEC ("multilib_exclusions", &multilib_exclusions
),
1231 INIT_STATIC_SPEC ("linker", &linker_name_spec
),
1232 INIT_STATIC_SPEC ("link_libgcc", &link_libgcc_spec
),
1233 INIT_STATIC_SPEC ("md_exec_prefix", &md_exec_prefix
),
1234 INIT_STATIC_SPEC ("md_startfile_prefix", &md_startfile_prefix
),
1235 INIT_STATIC_SPEC ("md_startfile_prefix_1", &md_startfile_prefix_1
),
1238 #ifdef EXTRA_SPECS /* additional specs needed */
1239 /* Structure to keep track of just the first two args of a spec_list.
1240 That is all that the EXTRA_SPECS macro gives us. */
1247 static struct spec_list_1 extra_specs_1
[] = { EXTRA_SPECS
};
1248 static struct spec_list
*extra_specs
= (struct spec_list
*) 0;
1251 /* List of dynamically allocates specs that have been defined so far. */
1253 static struct spec_list
*specs
= (struct spec_list
*) 0;
1255 /* Initialize the specs lookup routines. */
1260 struct spec_list
*next
= (struct spec_list
*) 0;
1261 struct spec_list
*sl
= (struct spec_list
*) 0;
1265 return; /* Already initialized. */
1268 notice ("Using builtin specs.\n");
1271 extra_specs
= (struct spec_list
*)
1272 xcalloc (sizeof (struct spec_list
), ARRAY_SIZE (extra_specs_1
));
1274 for (i
= ARRAY_SIZE (extra_specs_1
) - 1; i
>= 0; i
--)
1276 sl
= &extra_specs
[i
];
1277 sl
->name
= extra_specs_1
[i
].name
;
1278 sl
->ptr
= extra_specs_1
[i
].ptr
;
1280 sl
->name_len
= strlen (sl
->name
);
1281 sl
->ptr_spec
= &sl
->ptr
;
1286 for (i
= ARRAY_SIZE (static_specs
) - 1; i
>= 0; i
--)
1288 sl
= &static_specs
[i
];
1293 #ifdef ENABLE_SHARED_LIBGCC
1294 /* ??? If neither -shared-libgcc nor --static-libgcc was
1295 seen, then we should be making an educated guess. Some proposed
1296 heuristics for ELF include:
1298 (1) If "-Wl,--export-dynamic", then it's a fair bet that the
1299 program will be doing dynamic loading, which will likely
1300 need the shared libgcc.
1302 (2) If "-ldl", then it's also a fair bet that we're doing
1305 (3) For each ET_DYN we're linking against (either through -lfoo
1306 or /some/path/foo.so), check to see whether it or one of
1307 its dependancies depends on a shared libgcc.
1311 If the runtime is fixed to look for program headers instead
1312 of calling __register_frame_info at all, for each object,
1313 use the shared libgcc if any EH symbol referenced.
1315 If crtstuff is fixed to not invoke __register_frame_info
1316 automatically, for each object, use the shared libgcc if
1317 any non-empty unwind section found.
1319 Doing any of this probably requires invoking an external program to
1320 do the actual object file scanning. */
1322 const char *p
= libgcc_spec
;
1325 /* Transform the extant libgcc_spec into one that uses the shared libgcc
1326 when given the proper command line arguments. */
1330 if (in_sep
&& *p
== '-' && strncmp (p
, "-lgcc", 5) == 0)
1332 #ifdef NO_SHARED_LIBGCC_MULTILIB
1333 r
= "%{shared-libgcc:-lgcc_s}%{!shared-libgcc:-lgcc}";
1335 r
= "%{shared-libgcc:-lgcc_s%M}%{!shared-libgcc:-lgcc}";
1337 obstack_grow (&obstack
, r
, strlen(r
));
1341 else if (in_sep
&& *p
== 'l' && strncmp (p
, "libgcc.a%s", 10) == 0)
1343 /* Ug. We don't know shared library extensions. Hope that
1344 systems that use this form don't do shared libraries. */
1345 #ifdef NO_SHARED_LIBGCC_MULTILIB
1346 r
= "%{shared-libgcc:-lgcc_s}%{!shared-libgcc:libgcc.a%s}";
1348 r
= "%{shared-libgcc:-lgcc_s%M}%{!shared-libgcc:libgcc.a%s}";
1350 obstack_grow (&obstack
, r
, strlen(r
));
1356 obstack_1grow (&obstack
, *p
);
1357 in_sep
= (*p
== ' ');
1362 obstack_1grow (&obstack
, '\0');
1363 libgcc_spec
= obstack_finish (&obstack
);
1370 /* Change the value of spec NAME to SPEC. If SPEC is empty, then the spec is
1371 removed; If the spec starts with a + then SPEC is added to the end of the
1375 set_spec (name
, spec
)
1379 struct spec_list
*sl
;
1380 const char *old_spec
;
1381 int name_len
= strlen (name
);
1384 /* If this is the first call, initialize the statically allocated specs. */
1387 struct spec_list
*next
= (struct spec_list
*) 0;
1388 for (i
= ARRAY_SIZE (static_specs
) - 1; i
>= 0; i
--)
1390 sl
= &static_specs
[i
];
1397 /* See if the spec already exists. */
1398 for (sl
= specs
; sl
; sl
= sl
->next
)
1399 if (name_len
== sl
->name_len
&& !strcmp (sl
->name
, name
))
1404 /* Not found - make it. */
1405 sl
= (struct spec_list
*) xmalloc (sizeof (struct spec_list
));
1406 sl
->name
= xstrdup (name
);
1407 sl
->name_len
= name_len
;
1408 sl
->ptr_spec
= &sl
->ptr
;
1410 *(sl
->ptr_spec
) = "";
1415 old_spec
= *(sl
->ptr_spec
);
1416 *(sl
->ptr_spec
) = ((spec
[0] == '+' && ISSPACE ((unsigned char)spec
[1]))
1417 ? concat (old_spec
, spec
+ 1, NULL_PTR
)
1422 notice ("Setting spec %s to '%s'\n\n", name
, *(sl
->ptr_spec
));
1425 /* Free the old spec. */
1426 if (old_spec
&& sl
->alloc_p
)
1427 free ((PTR
) old_spec
);
1432 /* Accumulate a command (program name and args), and run it. */
1434 /* Vector of pointers to arguments in the current line of specifications. */
1436 static const char **argbuf
;
1438 /* Number of elements allocated in argbuf. */
1440 static int argbuf_length
;
1442 /* Number of elements in argbuf currently in use (containing args). */
1444 static int argbuf_index
;
1446 /* This is the list of suffixes and codes (%g/%u/%U/%j) and the associated
1447 temp file. If the HOST_BIT_BUCKET is used for %j, no entry is made for
1450 static struct temp_name
{
1451 const char *suffix
; /* suffix associated with the code. */
1452 int length
; /* strlen (suffix). */
1453 int unique
; /* Indicates whether %g or %u/%U was used. */
1454 const char *filename
; /* associated filename. */
1455 int filename_length
; /* strlen (filename). */
1456 struct temp_name
*next
;
1459 /* Number of commands executed so far. */
1461 static int execution_count
;
1463 /* Number of commands that exited with a signal. */
1465 static int signal_count
;
1467 /* Name with which this program was invoked. */
1469 static const char *programname
;
1471 /* Clear out the vector of arguments (after a command is executed). */
1479 /* Add one argument to the vector at the end.
1480 This is done when a space is seen or at the end of the line.
1481 If DELETE_ALWAYS is nonzero, the arg is a filename
1482 and the file should be deleted eventually.
1483 If DELETE_FAILURE is nonzero, the arg is a filename
1484 and the file should be deleted if this compilation fails. */
1487 store_arg (arg
, delete_always
, delete_failure
)
1489 int delete_always
, delete_failure
;
1491 if (argbuf_index
+ 1 == argbuf_length
)
1493 = (const char **) xrealloc (argbuf
,
1494 (argbuf_length
*= 2) * sizeof (const char *));
1496 argbuf
[argbuf_index
++] = arg
;
1497 argbuf
[argbuf_index
] = 0;
1499 if (delete_always
|| delete_failure
)
1500 record_temp_file (arg
, delete_always
, delete_failure
);
1503 /* Load specs from a file name named FILENAME, replacing occurances of
1504 various different types of line-endings, \r\n, \n\r and just \r, with
1508 load_specs (filename
)
1509 const char *filename
;
1513 struct stat statbuf
;
1520 notice ("Reading specs from %s\n", filename
);
1522 /* Open and stat the file. */
1523 desc
= open (filename
, O_RDONLY
, 0);
1525 pfatal_with_name (filename
);
1526 if (stat (filename
, &statbuf
) < 0)
1527 pfatal_with_name (filename
);
1529 /* Read contents of file into BUFFER. */
1530 buffer
= xmalloc ((unsigned) statbuf
.st_size
+ 1);
1531 readlen
= read (desc
, buffer
, (unsigned) statbuf
.st_size
);
1533 pfatal_with_name (filename
);
1534 buffer
[readlen
] = 0;
1537 specs
= xmalloc (readlen
+ 1);
1539 for (buffer_p
= buffer
; buffer_p
&& *buffer_p
; buffer_p
++)
1545 if (buffer_p
> buffer
&& *(buffer_p
- 1) == '\n') /* \n\r */
1547 else if (*(buffer_p
+ 1) == '\n') /* \r\n */
1561 /* Read compilation specs from a file named FILENAME,
1562 replacing the default ones.
1564 A suffix which starts with `*' is a definition for
1565 one of the machine-specific sub-specs. The "suffix" should be
1566 *asm, *cc1, *cpp, *link, *startfile, *signed_char, etc.
1567 The corresponding spec is stored in asm_spec, etc.,
1568 rather than in the `compilers' vector.
1570 Anything invalid in the file is a fatal error. */
1573 read_specs (filename
, main_p
)
1574 const char *filename
;
1580 buffer
= load_specs (filename
);
1582 /* Scan BUFFER for specs, putting them in the vector. */
1588 char *in
, *out
, *p1
, *p2
, *p3
;
1590 /* Advance P in BUFFER to the next nonblank nocomment line. */
1591 p
= skip_whitespace (p
);
1595 /* Is this a special command that starts with '%'? */
1596 /* Don't allow this for the main specs file, since it would
1597 encourage people to overwrite it. */
1598 if (*p
== '%' && !main_p
)
1601 while (*p
&& *p
!= '\n')
1607 if (!strncmp (p1
, "%include", sizeof ("%include") - 1)
1608 && (p1
[sizeof "%include" - 1] == ' '
1609 || p1
[sizeof "%include" - 1] == '\t'))
1613 p1
+= sizeof ("%include");
1614 while (*p1
== ' ' || *p1
== '\t')
1617 if (*p1
++ != '<' || p
[-2] != '>')
1618 fatal ("specs %%include syntax malformed after %ld characters",
1619 (long) (p1
- buffer
+ 1));
1622 new_filename
= find_a_file (&startfile_prefixes
, p1
, R_OK
);
1623 read_specs (new_filename
? new_filename
: p1
, FALSE
);
1626 else if (!strncmp (p1
, "%include_noerr", sizeof "%include_noerr" - 1)
1627 && (p1
[sizeof "%include_noerr" - 1] == ' '
1628 || p1
[sizeof "%include_noerr" - 1] == '\t'))
1632 p1
+= sizeof "%include_noerr";
1633 while (*p1
== ' ' || *p1
== '\t')
1636 if (*p1
++ != '<' || p
[-2] != '>')
1637 fatal ("specs %%include syntax malformed after %ld characters",
1638 (long) (p1
- buffer
+ 1));
1641 new_filename
= find_a_file (&startfile_prefixes
, p1
, R_OK
);
1643 read_specs (new_filename
, FALSE
);
1644 else if (verbose_flag
)
1645 notice ("Could not find specs file %s\n", p1
);
1648 else if (!strncmp (p1
, "%rename", sizeof "%rename" - 1)
1649 && (p1
[sizeof "%rename" - 1] == ' '
1650 || p1
[sizeof "%rename" - 1] == '\t'))
1653 struct spec_list
*sl
;
1655 /* Get original name */
1656 p1
+= sizeof "%rename";
1657 while (*p1
== ' ' || *p1
== '\t')
1660 if (! ISALPHA ((unsigned char) *p1
))
1661 fatal ("specs %%rename syntax malformed after %ld characters",
1662 (long) (p1
- buffer
));
1665 while (*p2
&& !ISSPACE ((unsigned char) *p2
))
1668 if (*p2
!= ' ' && *p2
!= '\t')
1669 fatal ("specs %%rename syntax malformed after %ld characters",
1670 (long) (p2
- buffer
));
1674 while (*p2
== ' ' || *p2
== '\t')
1677 if (! ISALPHA ((unsigned char) *p2
))
1678 fatal ("specs %%rename syntax malformed after %ld characters",
1679 (long) (p2
- buffer
));
1681 /* Get new spec name. */
1683 while (*p3
&& !ISSPACE ((unsigned char) *p3
))
1687 fatal ("specs %%rename syntax malformed after %ld characters",
1688 (long) (p3
- buffer
));
1691 for (sl
= specs
; sl
; sl
= sl
->next
)
1692 if (name_len
== sl
->name_len
&& !strcmp (sl
->name
, p1
))
1696 fatal ("specs %s spec was not found to be renamed", p1
);
1698 if (strcmp (p1
, p2
) == 0)
1703 notice ("rename spec %s to %s\n", p1
, p2
);
1705 notice ("spec is '%s'\n\n", *(sl
->ptr_spec
));
1709 set_spec (p2
, *(sl
->ptr_spec
));
1711 free ((PTR
) *(sl
->ptr_spec
));
1713 *(sl
->ptr_spec
) = "";
1718 fatal ("specs unknown %% command after %ld characters",
1719 (long) (p1
- buffer
));
1722 /* Find the colon that should end the suffix. */
1724 while (*p1
&& *p1
!= ':' && *p1
!= '\n')
1727 /* The colon shouldn't be missing. */
1729 fatal ("specs file malformed after %ld characters",
1730 (long) (p1
- buffer
));
1732 /* Skip back over trailing whitespace. */
1734 while (p2
> buffer
&& (p2
[-1] == ' ' || p2
[-1] == '\t'))
1737 /* Copy the suffix to a string. */
1738 suffix
= save_string (p
, p2
- p
);
1739 /* Find the next line. */
1740 p
= skip_whitespace (p1
+ 1);
1742 fatal ("specs file malformed after %ld characters",
1743 (long) (p
- buffer
));
1746 /* Find next blank line or end of string. */
1747 while (*p1
&& !(*p1
== '\n' && (p1
[1] == '\n' || p1
[1] == '\0')))
1750 /* Specs end at the blank line and do not include the newline. */
1751 spec
= save_string (p
, p1
- p
);
1754 /* Delete backslash-newline sequences from the spec. */
1759 if (in
[0] == '\\' && in
[1] == '\n')
1761 else if (in
[0] == '#')
1762 while (*in
&& *in
!= '\n')
1770 if (suffix
[0] == '*')
1772 if (! strcmp (suffix
, "*link_command"))
1773 link_command_spec
= spec
;
1775 set_spec (suffix
+ 1, spec
);
1779 /* Add this pair to the vector. */
1781 = ((struct compiler
*)
1782 xrealloc (compilers
,
1783 (n_compilers
+ 2) * sizeof (struct compiler
)));
1785 compilers
[n_compilers
].suffix
= suffix
;
1786 compilers
[n_compilers
].spec
= spec
;
1788 memset (&compilers
[n_compilers
], 0, sizeof compilers
[n_compilers
]);
1792 link_command_spec
= spec
;
1795 if (link_command_spec
== 0)
1796 fatal ("spec file has no spec for linking");
1799 /* Record the names of temporary files we tell compilers to write,
1800 and delete them at the end of the run. */
1802 /* This is the common prefix we use to make temp file names.
1803 It is chosen once for each run of this program.
1804 It is substituted into a spec by %g or %j.
1805 Thus, all temp file names contain this prefix.
1806 In practice, all temp file names start with this prefix.
1808 This prefix comes from the envvar TMPDIR if it is defined;
1809 otherwise, from the P_tmpdir macro if that is defined;
1810 otherwise, in /usr/tmp or /tmp;
1811 or finally the current directory if all else fails. */
1813 static const char *temp_filename
;
1815 /* Length of the prefix. */
1817 static int temp_filename_length
;
1819 /* Define the list of temporary files to delete. */
1824 struct temp_file
*next
;
1827 /* Queue of files to delete on success or failure of compilation. */
1828 static struct temp_file
*always_delete_queue
;
1829 /* Queue of files to delete on failure of compilation. */
1830 static struct temp_file
*failure_delete_queue
;
1832 /* Record FILENAME as a file to be deleted automatically.
1833 ALWAYS_DELETE nonzero means delete it if all compilation succeeds;
1834 otherwise delete it in any case.
1835 FAIL_DELETE nonzero means delete it if a compilation step fails;
1836 otherwise delete it in any case. */
1839 record_temp_file (filename
, always_delete
, fail_delete
)
1840 const char *filename
;
1844 register char *const name
= xstrdup (filename
);
1848 register struct temp_file
*temp
;
1849 for (temp
= always_delete_queue
; temp
; temp
= temp
->next
)
1850 if (! strcmp (name
, temp
->name
))
1853 temp
= (struct temp_file
*) xmalloc (sizeof (struct temp_file
));
1854 temp
->next
= always_delete_queue
;
1856 always_delete_queue
= temp
;
1863 register struct temp_file
*temp
;
1864 for (temp
= failure_delete_queue
; temp
; temp
= temp
->next
)
1865 if (! strcmp (name
, temp
->name
))
1868 temp
= (struct temp_file
*) xmalloc (sizeof (struct temp_file
));
1869 temp
->next
= failure_delete_queue
;
1871 failure_delete_queue
= temp
;
1877 /* Delete all the temporary files whose names we previously recorded. */
1880 delete_if_ordinary (name
)
1887 printf ("Delete %s? (y or n) ", name
);
1891 while ((c
= getchar ()) != '\n' && c
!= EOF
)
1894 if (i
== 'y' || i
== 'Y')
1896 if (stat (name
, &st
) >= 0 && S_ISREG (st
.st_mode
))
1897 if (unlink (name
) < 0)
1899 perror_with_name (name
);
1903 delete_temp_files ()
1905 register struct temp_file
*temp
;
1907 for (temp
= always_delete_queue
; temp
; temp
= temp
->next
)
1908 delete_if_ordinary (temp
->name
);
1909 always_delete_queue
= 0;
1912 /* Delete all the files to be deleted on error. */
1915 delete_failure_queue ()
1917 register struct temp_file
*temp
;
1919 for (temp
= failure_delete_queue
; temp
; temp
= temp
->next
)
1920 delete_if_ordinary (temp
->name
);
1924 clear_failure_queue ()
1926 failure_delete_queue
= 0;
1929 /* Routine to add variables to the environment. We do this to pass
1930 the pathname of the gcc driver, and the directories search to the
1931 collect2 program, which is being run as ld. This way, we can be
1932 sure of executing the right compiler when collect2 wants to build
1933 constructors and destructors. Since the environment variables we
1934 use come from an obstack, we don't have to worry about allocating
1943 #ifndef VMS /* nor about VMS */
1945 extern char **environ
;
1946 char **old_environ
= environ
;
1950 int str_len
= strlen (str
);
1954 while ((ch
= *p
++) != '\0' && ch
!= '=')
1960 /* Search for replacing an existing environment variable, and
1961 count the number of total environment variables. */
1962 for (envp
= old_environ
; *envp
; envp
++)
1965 if (!strncmp (str
, *envp
, name_len
))
1972 /* Add a new environment variable */
1973 environ
= (char **) xmalloc (sizeof (char *) * (num_envs
+ 2));
1975 memcpy ((char *) (environ
+ 1), (char *) old_environ
,
1976 sizeof (char *) * (num_envs
+ 1));
1981 #endif /* HAVE_PUTENV */
1983 /* Build a list of search directories from PATHS.
1984 PREFIX is a string to prepend to the list.
1985 If CHECK_DIR_P is non-zero we ensure the directory exists.
1986 This is used mostly by putenv_from_prefixes so we use `collect_obstack'.
1987 It is also used by the --print-search-dirs flag. */
1990 build_search_list (paths
, prefix
, check_dir_p
)
1991 struct path_prefix
*paths
;
1995 int suffix_len
= (machine_suffix
) ? strlen (machine_suffix
) : 0;
1997 = (just_machine_suffix
) ? strlen (just_machine_suffix
) : 0;
1998 int first_time
= TRUE
;
1999 struct prefix_list
*pprefix
;
2001 obstack_grow (&collect_obstack
, prefix
, strlen (prefix
));
2002 obstack_1grow (&collect_obstack
, '=');
2004 for (pprefix
= paths
->plist
; pprefix
!= 0; pprefix
= pprefix
->next
)
2006 int len
= strlen (pprefix
->prefix
);
2010 || is_directory (pprefix
->prefix
, machine_suffix
, 0)))
2013 obstack_1grow (&collect_obstack
, PATH_SEPARATOR
);
2016 obstack_grow (&collect_obstack
, pprefix
->prefix
, len
);
2017 obstack_grow (&collect_obstack
, machine_suffix
, suffix_len
);
2020 if (just_machine_suffix
2021 && pprefix
->require_machine_suffix
== 2
2023 || is_directory (pprefix
->prefix
, just_machine_suffix
, 0)))
2026 obstack_1grow (&collect_obstack
, PATH_SEPARATOR
);
2029 obstack_grow (&collect_obstack
, pprefix
->prefix
, len
);
2030 obstack_grow (&collect_obstack
, just_machine_suffix
,
2034 if (! pprefix
->require_machine_suffix
)
2037 obstack_1grow (&collect_obstack
, PATH_SEPARATOR
);
2040 obstack_grow (&collect_obstack
, pprefix
->prefix
, len
);
2044 obstack_1grow (&collect_obstack
, '\0');
2045 return obstack_finish (&collect_obstack
);
2048 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
2052 putenv_from_prefixes (paths
, env_var
)
2053 struct path_prefix
*paths
;
2054 const char *env_var
;
2056 putenv (build_search_list (paths
, env_var
, 1));
2061 /* FIXME: the location independence code for VMS is hairier than this,
2062 and hasn't been written. */
2064 /* Split a filename into component directories. */
2067 split_directories (name
, ptr_num_dirs
)
2076 /* Count the number of directories. Special case MSDOS disk names as part
2077 of the initial directory. */
2079 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
2080 if (name
[1] == ':' && IS_DIR_SEPARATOR (name
[2]))
2085 #endif /* HAVE_DOS_BASED_FILE_SYSTEM */
2087 while ((ch
= *p
++) != '\0')
2089 if (IS_DIR_SEPARATOR (ch
))
2092 while (IS_DIR_SEPARATOR (*p
))
2097 dirs
= (char **) xmalloc (sizeof (char *) * (num_dirs
+ 2));
2099 /* Now copy the directory parts. */
2102 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
2103 if (name
[1] == ':' && IS_DIR_SEPARATOR (name
[2]))
2105 dirs
[num_dirs
++] = save_string (p
, 3);
2108 #endif /* HAVE_DOS_BASED_FILE_SYSTEM */
2111 while ((ch
= *p
++) != '\0')
2113 if (IS_DIR_SEPARATOR (ch
))
2115 while (IS_DIR_SEPARATOR (*p
))
2118 dirs
[num_dirs
++] = save_string (q
, p
- q
);
2124 dirs
[num_dirs
++] = save_string (q
, p
- 1 - q
);
2126 dirs
[num_dirs
] = NULL_PTR
;
2128 *ptr_num_dirs
= num_dirs
;
2133 /* Release storage held by split directories. */
2136 free_split_directories (dirs
)
2141 while (dirs
[i
] != NULL_PTR
)
2144 free ((char *) dirs
);
2147 /* Given three strings PROGNAME, BIN_PREFIX, PREFIX, return a string that gets
2148 to PREFIX starting with the directory portion of PROGNAME and a relative
2149 pathname of the difference between BIN_PREFIX and PREFIX.
2151 For example, if BIN_PREFIX is /alpha/beta/gamma/gcc/delta, PREFIX is
2152 /alpha/beta/gamma/omega/, and PROGNAME is /red/green/blue/gcc, then this
2153 function will return /red/green/blue/../omega.
2155 If no relative prefix can be found, return NULL. */
2158 make_relative_prefix (progname
, bin_prefix
, prefix
)
2159 const char *progname
;
2160 const char *bin_prefix
;
2163 char **prog_dirs
, **bin_dirs
, **prefix_dirs
;
2164 int prog_num
, bin_num
, prefix_num
, std_loc_p
;
2167 prog_dirs
= split_directories (progname
, &prog_num
);
2168 bin_dirs
= split_directories (bin_prefix
, &bin_num
);
2170 /* If there is no full pathname, try to find the program by checking in each
2171 of the directories specified in the PATH environment variable. */
2176 GET_ENV_PATH_LIST (temp
, "PATH");
2179 char *startp
, *endp
;
2180 char *nstore
= (char *) alloca (strlen (temp
) + strlen (progname
) + 1);
2182 startp
= endp
= temp
;
2185 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
2190 nstore
[1] = DIR_SEPARATOR
;
2195 strncpy (nstore
, startp
, endp
- startp
);
2196 if (! IS_DIR_SEPARATOR (endp
[-1]))
2198 nstore
[endp
- startp
] = DIR_SEPARATOR
;
2199 nstore
[endp
- startp
+ 1] = 0;
2202 nstore
[endp
- startp
] = 0;
2204 strcat (nstore
, progname
);
2205 if (! access (nstore
, X_OK
)
2206 #ifdef HAVE_EXECUTABLE_SUFFIX
2207 || ! access (strcat (nstore
, EXECUTABLE_SUFFIX
), X_OK
)
2211 free_split_directories (prog_dirs
);
2213 prog_dirs
= split_directories (progname
, &prog_num
);
2219 endp
= startp
= endp
+ 1;
2227 /* Remove the program name from comparison of directory names. */
2230 /* Determine if the compiler is installed in the standard location, and if
2231 so, we don't need to specify relative directories. Also, if argv[0]
2232 doesn't contain any directory specifiers, there is not much we can do. */
2234 if (prog_num
== bin_num
)
2236 for (i
= 0; i
< bin_num
; i
++)
2238 if (strcmp (prog_dirs
[i
], bin_dirs
[i
]) != 0)
2242 if (prog_num
<= 0 || i
== bin_num
)
2245 free_split_directories (prog_dirs
);
2246 free_split_directories (bin_dirs
);
2247 prog_dirs
= bin_dirs
= (char **) 0;
2252 prefix_dirs
= split_directories (prefix
, &prefix_num
);
2254 /* Find how many directories are in common between bin_prefix & prefix. */
2255 n
= (prefix_num
< bin_num
) ? prefix_num
: bin_num
;
2256 for (common
= 0; common
< n
; common
++)
2258 if (strcmp (bin_dirs
[common
], prefix_dirs
[common
]) != 0)
2262 /* If there are no common directories, there can be no relative prefix. */
2265 free_split_directories (prog_dirs
);
2266 free_split_directories (bin_dirs
);
2267 free_split_directories (prefix_dirs
);
2271 /* Build up the pathnames in argv[0]. */
2272 for (i
= 0; i
< prog_num
; i
++)
2273 obstack_grow (&obstack
, prog_dirs
[i
], strlen (prog_dirs
[i
]));
2275 /* Now build up the ..'s. */
2276 for (i
= common
; i
< n
; i
++)
2278 obstack_grow (&obstack
, DIR_UP
, sizeof (DIR_UP
) - 1);
2279 obstack_1grow (&obstack
, DIR_SEPARATOR
);
2282 /* Put in directories to move over to prefix. */
2283 for (i
= common
; i
< prefix_num
; i
++)
2284 obstack_grow (&obstack
, prefix_dirs
[i
], strlen (prefix_dirs
[i
]));
2286 free_split_directories (prog_dirs
);
2287 free_split_directories (bin_dirs
);
2288 free_split_directories (prefix_dirs
);
2290 obstack_1grow (&obstack
, '\0');
2291 return obstack_finish (&obstack
);
2295 /* Check whether NAME can be accessed in MODE. This is like access,
2296 except that it never considers directories to be executable. */
2299 access_check (name
, mode
)
2307 if (stat (name
, &st
) < 0
2308 || S_ISDIR (st
.st_mode
))
2312 return access (name
, mode
);
2315 /* Search for NAME using the prefix list PREFIXES. MODE is passed to
2316 access to check permissions.
2317 Return 0 if not found, otherwise return its name, allocated with malloc. */
2320 find_a_file (pprefix
, name
, mode
)
2321 struct path_prefix
*pprefix
;
2326 const char *file_suffix
= ((mode
& X_OK
) != 0 ? EXECUTABLE_SUFFIX
: "");
2327 struct prefix_list
*pl
;
2328 int len
= pprefix
->max_len
+ strlen (name
) + strlen (file_suffix
) + 1;
2330 #ifdef DEFAULT_ASSEMBLER
2331 if (! strcmp (name
, "as") && access (DEFAULT_ASSEMBLER
, mode
) == 0)
2332 return xstrdup (DEFAULT_ASSEMBLER
);
2335 #ifdef DEFAULT_LINKER
2336 if (! strcmp(name
, "ld") && access (DEFAULT_LINKER
, mode
) == 0)
2337 return xstrdup (DEFAULT_LINKER
);
2341 len
+= strlen (machine_suffix
);
2343 temp
= xmalloc (len
);
2345 /* Determine the filename to execute (special case for absolute paths). */
2347 if (IS_ABSOLUTE_PATHNAME (name
))
2349 if (access (name
, mode
) == 0)
2351 strcpy (temp
, name
);
2356 for (pl
= pprefix
->plist
; pl
; pl
= pl
->next
)
2360 /* Some systems have a suffix for executable files.
2361 So try appending that first. */
2362 if (file_suffix
[0] != 0)
2364 strcpy (temp
, pl
->prefix
);
2365 strcat (temp
, machine_suffix
);
2366 strcat (temp
, name
);
2367 strcat (temp
, file_suffix
);
2368 if (access_check (temp
, mode
) == 0)
2370 if (pl
->used_flag_ptr
!= 0)
2371 *pl
->used_flag_ptr
= 1;
2376 /* Now try just the name. */
2377 strcpy (temp
, pl
->prefix
);
2378 strcat (temp
, machine_suffix
);
2379 strcat (temp
, name
);
2380 if (access_check (temp
, mode
) == 0)
2382 if (pl
->used_flag_ptr
!= 0)
2383 *pl
->used_flag_ptr
= 1;
2388 /* Certain prefixes are tried with just the machine type,
2389 not the version. This is used for finding as, ld, etc. */
2390 if (just_machine_suffix
&& pl
->require_machine_suffix
== 2)
2392 /* Some systems have a suffix for executable files.
2393 So try appending that first. */
2394 if (file_suffix
[0] != 0)
2396 strcpy (temp
, pl
->prefix
);
2397 strcat (temp
, just_machine_suffix
);
2398 strcat (temp
, name
);
2399 strcat (temp
, file_suffix
);
2400 if (access_check (temp
, mode
) == 0)
2402 if (pl
->used_flag_ptr
!= 0)
2403 *pl
->used_flag_ptr
= 1;
2408 strcpy (temp
, pl
->prefix
);
2409 strcat (temp
, just_machine_suffix
);
2410 strcat (temp
, name
);
2411 if (access_check (temp
, mode
) == 0)
2413 if (pl
->used_flag_ptr
!= 0)
2414 *pl
->used_flag_ptr
= 1;
2419 /* Certain prefixes can't be used without the machine suffix
2420 when the machine or version is explicitly specified. */
2421 if (! pl
->require_machine_suffix
)
2423 /* Some systems have a suffix for executable files.
2424 So try appending that first. */
2425 if (file_suffix
[0] != 0)
2427 strcpy (temp
, pl
->prefix
);
2428 strcat (temp
, name
);
2429 strcat (temp
, file_suffix
);
2430 if (access_check (temp
, mode
) == 0)
2432 if (pl
->used_flag_ptr
!= 0)
2433 *pl
->used_flag_ptr
= 1;
2438 strcpy (temp
, pl
->prefix
);
2439 strcat (temp
, name
);
2440 if (access_check (temp
, mode
) == 0)
2442 if (pl
->used_flag_ptr
!= 0)
2443 *pl
->used_flag_ptr
= 1;
2453 /* Ranking of prefixes in the sort list. -B prefixes are put before
2456 enum path_prefix_priority
2458 PREFIX_PRIORITY_B_OPT
,
2459 PREFIX_PRIORITY_LAST
2462 /* Add an entry for PREFIX in PLIST. The PLIST is kept in assending
2463 order according to PRIORITY. Within each PRIORITY, new entries are
2466 If WARN is nonzero, we will warn if no file is found
2467 through this prefix. WARN should point to an int
2468 which will be set to 1 if this entry is used.
2470 COMPONENT is the value to be passed to update_path.
2472 REQUIRE_MACHINE_SUFFIX is 1 if this prefix can't be used without
2473 the complete value of machine_suffix.
2474 2 means try both machine_suffix and just_machine_suffix. */
2477 add_prefix (pprefix
, prefix
, component
, priority
, require_machine_suffix
, warn
)
2478 struct path_prefix
*pprefix
;
2480 const char *component
;
2481 /* enum prefix_priority */ int priority
;
2482 int require_machine_suffix
;
2485 struct prefix_list
*pl
, **prev
;
2488 for (prev
= &pprefix
->plist
;
2489 (*prev
) != NULL
&& (*prev
)->priority
<= priority
;
2490 prev
= &(*prev
)->next
)
2493 /* Keep track of the longest prefix */
2495 prefix
= update_path (prefix
, component
);
2496 len
= strlen (prefix
);
2497 if (len
> pprefix
->max_len
)
2498 pprefix
->max_len
= len
;
2500 pl
= (struct prefix_list
*) xmalloc (sizeof (struct prefix_list
));
2501 pl
->prefix
= save_string (prefix
, len
);
2502 pl
->require_machine_suffix
= require_machine_suffix
;
2503 pl
->used_flag_ptr
= warn
;
2504 pl
->priority
= priority
;
2508 /* Insert after PREV */
2513 /* Execute the command specified by the arguments on the current line of spec.
2514 When using pipes, this includes several piped-together commands
2515 with `|' between them.
2517 Return 0 if successful, -1 if failed. */
2523 int n_commands
; /* # of command. */
2527 const char *prog
; /* program name. */
2528 const char **argv
; /* vector of args. */
2529 int pid
; /* pid of process for this command. */
2532 struct command
*commands
; /* each command buffer with above info. */
2534 /* Count # of piped commands. */
2535 for (n_commands
= 1, i
= 0; i
< argbuf_index
; i
++)
2536 if (strcmp (argbuf
[i
], "|") == 0)
2539 /* Get storage for each command. */
2540 commands
= (struct command
*) alloca (n_commands
* sizeof (struct command
));
2542 /* Split argbuf into its separate piped processes,
2543 and record info about each one.
2544 Also search for the programs that are to be run. */
2546 commands
[0].prog
= argbuf
[0]; /* first command. */
2547 commands
[0].argv
= &argbuf
[0];
2548 string
= find_a_file (&exec_prefixes
, commands
[0].prog
, X_OK
);
2551 commands
[0].argv
[0] = string
;
2553 for (n_commands
= 1, i
= 0; i
< argbuf_index
; i
++)
2554 if (strcmp (argbuf
[i
], "|") == 0)
2555 { /* each command. */
2556 #if defined (__MSDOS__) || defined (OS2) || defined (VMS)
2557 fatal ("-pipe not supported");
2559 argbuf
[i
] = 0; /* termination of command args. */
2560 commands
[n_commands
].prog
= argbuf
[i
+ 1];
2561 commands
[n_commands
].argv
= &argbuf
[i
+ 1];
2562 string
= find_a_file (&exec_prefixes
, commands
[n_commands
].prog
, X_OK
);
2564 commands
[n_commands
].argv
[0] = string
;
2568 argbuf
[argbuf_index
] = 0;
2570 /* If -v, print what we are about to do, and maybe query. */
2574 /* For help listings, put a blank line between sub-processes. */
2575 if (print_help_list
)
2576 fputc ('\n', stderr
);
2578 /* Print each piped command as a separate line. */
2579 for (i
= 0; i
< n_commands
; i
++)
2581 const char *const *j
;
2583 for (j
= commands
[i
].argv
; *j
; j
++)
2584 fprintf (stderr
, " %s", *j
);
2586 /* Print a pipe symbol after all but the last command. */
2587 if (i
+ 1 != n_commands
)
2588 fprintf (stderr
, " |");
2589 fprintf (stderr
, "\n");
2593 notice ("\nGo ahead? (y or n) ");
2597 while (getchar () != '\n')
2600 if (i
!= 'y' && i
!= 'Y')
2605 /* Run each piped subprocess. */
2607 for (i
= 0; i
< n_commands
; i
++)
2609 char *errmsg_fmt
, *errmsg_arg
;
2610 const char *string
= commands
[i
].argv
[0];
2612 /* For some bizarre reason, the second argument of execvp() is
2613 char *const *, not const char *const *. */
2614 commands
[i
].pid
= pexecute (string
, (char *const *) commands
[i
].argv
,
2615 programname
, temp_filename
,
2616 &errmsg_fmt
, &errmsg_arg
,
2617 ((i
== 0 ? PEXECUTE_FIRST
: 0)
2618 | (i
+ 1 == n_commands
? PEXECUTE_LAST
: 0)
2619 | (string
== commands
[i
].prog
2620 ? PEXECUTE_SEARCH
: 0)
2621 | (verbose_flag
? PEXECUTE_VERBOSE
: 0)));
2623 if (commands
[i
].pid
== -1)
2624 pfatal_pexecute (errmsg_fmt
, errmsg_arg
);
2626 if (string
!= commands
[i
].prog
)
2627 free ((PTR
) string
);
2632 /* Wait for all the subprocesses to finish.
2633 We don't care what order they finish in;
2634 we know that N_COMMANDS waits will get them all.
2635 Ignore subprocesses that we don't know about,
2636 since they can be spawned by the process that exec'ed us. */
2640 #ifdef HAVE_GETRUSAGE
2642 double ut
= 0.0, st
= 0.0;
2645 for (i
= 0; i
< n_commands
;)
2651 pid
= pwait (commands
[i
].pid
, &status
, 0);
2655 #ifdef HAVE_GETRUSAGE
2658 /* getrusage returns the total resource usage of all children
2659 up to now. Copy the previous values into prus, get the
2660 current statistics, then take the difference. */
2663 getrusage (RUSAGE_CHILDREN
, &rus
);
2664 d
.tv_sec
= rus
.ru_utime
.tv_sec
- prus
.ru_utime
.tv_sec
;
2665 d
.tv_usec
= rus
.ru_utime
.tv_usec
- prus
.ru_utime
.tv_usec
;
2666 ut
= (double) d
.tv_sec
+ (double) d
.tv_usec
/ 1.0e6
;
2668 d
.tv_sec
= rus
.ru_stime
.tv_sec
- prus
.ru_stime
.tv_sec
;
2669 d
.tv_usec
= rus
.ru_stime
.tv_usec
- prus
.ru_stime
.tv_usec
;
2670 st
= (double) d
.tv_sec
+ (double) d
.tv_usec
/ 1.0e6
;
2674 for (j
= 0; j
< n_commands
; j
++)
2675 if (commands
[j
].pid
== pid
)
2678 if (WIFSIGNALED (status
))
2681 /* SIGPIPE is a special case. It happens in -pipe mode
2682 when the compiler dies before the preprocessor is
2683 done, or the assembler dies before the compiler is
2684 done. There's generally been an error already, and
2685 this is just fallout. So don't generate another error
2686 unless we would otherwise have succeeded. */
2687 if (WTERMSIG (status
) == SIGPIPE
2688 && (signal_count
|| greatest_status
>= MIN_FATAL_STATUS
))
2693 Internal error: %s (program %s)\n\
2694 Please submit a full bug report.\n\
2695 See %s for instructions.",
2696 strsignal (WTERMSIG (status
)), commands
[j
].prog
,
2701 else if (WIFEXITED (status
)
2702 && WEXITSTATUS (status
) >= MIN_FATAL_STATUS
)
2704 if (WEXITSTATUS (status
) > greatest_status
)
2705 greatest_status
= WEXITSTATUS (status
);
2708 #ifdef HAVE_GETRUSAGE
2709 if (report_times
&& ut
+ st
!= 0)
2710 notice ("# %s %.2f %.2f\n", commands
[j
].prog
, ut
, st
);
2719 /* Find all the switches given to us
2720 and make a vector describing them.
2721 The elements of the vector are strings, one per switch given.
2722 If a switch uses following arguments, then the `part1' field
2723 is the switch itself and the `args' field
2724 is a null-terminated vector containing the following arguments.
2725 The `live_cond' field is:
2727 1 if the switch is true in a conditional spec,
2728 -1 if false (overridden by a later switch)
2729 -2 if this switch should be ignored (used in %{<S})
2730 The `validated' field is nonzero if any spec has looked at this switch;
2731 if it remains zero at the end of the run, it must be meaningless. */
2734 #define SWITCH_FALSE -1
2735 #define SWITCH_IGNORE -2
2736 #define SWITCH_LIVE 1
2743 unsigned char validated
;
2744 unsigned char ordering
;
2747 static struct switchstr
*switches
;
2749 static int n_switches
;
2754 const char *language
;
2757 /* Also a vector of input files specified. */
2759 static struct infile
*infiles
;
2761 static int n_infiles
;
2763 /* This counts the number of libraries added by lang_specific_driver, so that
2764 we can tell if there were any user supplied any files or libraries. */
2766 static int added_libraries
;
2768 /* And a vector of corresponding output files is made up later. */
2770 static const char **outfiles
;
2772 /* Used to track if none of the -B paths are used. */
2775 /* Used to track if standard path isn't used and -b or -V is specified. */
2776 static int warn_std
;
2778 /* Gives value to pass as "warn" to add_prefix for standard prefixes. */
2779 static int *warn_std_ptr
= 0;
2781 #if defined(HAVE_OBJECT_SUFFIX) || defined(HAVE_EXECUTABLE_SUFFIX)
2783 /* Convert NAME to a new name if it is the standard suffix. DO_EXE
2784 is true if we should look for an executable suffix as well. */
2787 convert_filename (name
, do_exe
)
2797 len
= strlen (name
);
2799 #ifdef HAVE_OBJECT_SUFFIX
2800 /* Convert x.o to x.obj if OBJECT_SUFFIX is ".obj". */
2802 && name
[len
- 2] == '.'
2803 && name
[len
- 1] == 'o')
2805 obstack_grow (&obstack
, name
, len
- 2);
2806 obstack_grow0 (&obstack
, OBJECT_SUFFIX
, strlen (OBJECT_SUFFIX
));
2807 name
= obstack_finish (&obstack
);
2811 #ifdef HAVE_EXECUTABLE_SUFFIX
2812 /* If there is no filetype, make it the executable suffix (which includes
2813 the "."). But don't get confused if we have just "-o". */
2814 if (! do_exe
|| EXECUTABLE_SUFFIX
[0] == 0 || (len
== 2 && name
[0] == '-'))
2817 for (i
= len
- 1; i
>= 0; i
--)
2818 if (IS_DIR_SEPARATOR (name
[i
]))
2821 for (i
++; i
< len
; i
++)
2825 obstack_grow (&obstack
, name
, len
);
2826 obstack_grow0 (&obstack
, EXECUTABLE_SUFFIX
, strlen (EXECUTABLE_SUFFIX
));
2827 name
= obstack_finish (&obstack
);
2834 /* Display the command line switches accepted by gcc. */
2838 printf (_("Usage: %s [options] file...\n"), programname
);
2839 fputs (_("Options:\n"), stdout
);
2841 fputs (_(" -pass-exit-codes Exit with highest error code from a phase\n"), stdout
);
2842 fputs (_(" --help Display this information\n"), stdout
);
2843 fputs (_(" --target-help Display target specific command line options\n"), stdout
);
2845 fputs (_(" (Use '-v --help' to display command line options of sub-processes)\n"), stdout
);
2846 fputs (_(" -dumpspecs Display all of the built in spec strings\n"), stdout
);
2847 fputs (_(" -dumpversion Display the version of the compiler\n"), stdout
);
2848 fputs (_(" -dumpmachine Display the compiler's target processor\n"), stdout
);
2849 fputs (_(" -print-search-dirs Display the directories in the compiler's search path\n"), stdout
);
2850 fputs (_(" -print-libgcc-file-name Display the name of the compiler's companion library\n"), stdout
);
2851 fputs (_(" -print-file-name=<lib> Display the full path to library <lib>\n"), stdout
);
2852 fputs (_(" -print-prog-name=<prog> Display the full path to compiler component <prog>\n"), stdout
);
2853 fputs (_(" -print-multi-directory Display the root directory for versions of libgcc\n"), stdout
);
2855 -print-multi-lib Display the mapping between command line options and\n\
2856 multiple library search directories\n"), stdout
);
2857 fputs (_(" -Wa,<options> Pass comma-separated <options> on to the assembler\n"), stdout
);
2858 fputs (_(" -Wp,<options> Pass comma-separated <options> on to the preprocessor\n"), stdout
);
2859 fputs (_(" -Wl,<options> Pass comma-separated <options> on to the linker\n"), stdout
);
2860 fputs (_(" -Xlinker <arg> Pass <arg> on to the linker\n"), stdout
);
2861 fputs (_(" -save-temps Do not delete intermediate files\n"), stdout
);
2862 fputs (_(" -pipe Use pipes rather than intermediate files\n"), stdout
);
2863 fputs (_(" -time Time the execution of each subprocess\n"), stdout
);
2864 fputs (_(" -specs=<file> Override builtin specs with the contents of <file>\n"), stdout
);
2865 fputs (_(" -std=<standard> Assume that the input sources are for <standard>\n"), stdout
);
2866 fputs (_(" -B <directory> Add <directory> to the compiler's search paths\n"), stdout
);
2867 fputs (_(" -b <machine> Run gcc for target <machine>, if installed\n"), stdout
);
2868 fputs (_(" -V <version> Run gcc version number <version>, if installed\n"), stdout
);
2869 fputs (_(" -v Display the programs invoked by the compiler\n"), stdout
);
2870 fputs (_(" -E Preprocess only; do not compile, assemble or link\n"), stdout
);
2871 fputs (_(" -S Compile only; do not assemble or link\n"), stdout
);
2872 fputs (_(" -c Compile and assemble, but do not link\n"), stdout
);
2873 fputs (_(" -o <file> Place the output into <file>\n"), stdout
);
2875 -x <language> Specify the language of the following input files\n\
2876 Permissable languages include: c c++ assembler none\n\
2877 'none' means revert to the default behaviour of\n\
2878 guessing the language based on the file's extension\n\
2882 \nOptions starting with -g, -f, -m, -O or -W are automatically passed on to\n\
2883 the various sub-processes invoked by %s. In order to pass other options\n\
2884 on to these processes the -W<letter> options must be used.\n\
2887 /* The rest of the options are displayed by invocations of the various
2892 add_preprocessor_option (option
, len
)
2896 n_preprocessor_options
++;
2898 if (! preprocessor_options
)
2899 preprocessor_options
2900 = (char **) xmalloc (n_preprocessor_options
* sizeof (char *));
2902 preprocessor_options
2903 = (char **) xrealloc (preprocessor_options
,
2904 n_preprocessor_options
* sizeof (char *));
2906 preprocessor_options
[n_preprocessor_options
- 1] =
2907 save_string (option
, len
);
2911 add_assembler_option (option
, len
)
2915 n_assembler_options
++;
2917 if (! assembler_options
)
2919 = (char **) xmalloc (n_assembler_options
* sizeof (char *));
2922 = (char **) xrealloc (assembler_options
,
2923 n_assembler_options
* sizeof (char *));
2925 assembler_options
[n_assembler_options
- 1] = save_string (option
, len
);
2929 add_linker_option (option
, len
)
2935 if (! linker_options
)
2937 = (char **) xmalloc (n_linker_options
* sizeof (char *));
2940 = (char **) xrealloc (linker_options
,
2941 n_linker_options
* sizeof (char *));
2943 linker_options
[n_linker_options
- 1] = save_string (option
, len
);
2946 /* Create the vector `switches' and its contents.
2947 Store its length in `n_switches'. */
2950 process_command (argc
, argv
)
2952 const char *const *argv
;
2957 const char *spec_lang
= 0;
2958 int last_language_n_infiles
;
2961 int lang_n_infiles
= 0;
2962 #ifdef MODIFY_TARGET_NAME
2963 int is_modify_target_name
;
2967 GET_ENV_PATH_LIST (gcc_exec_prefix
, "GCC_EXEC_PREFIX");
2971 added_libraries
= 0;
2973 /* Figure compiler version from version string. */
2975 compiler_version
= temp1
= xstrdup (version_string
);
2977 for (; *temp1
; ++temp1
)
2986 /* Set up the default search paths. If there is no GCC_EXEC_PREFIX,
2987 see if we can create it from the pathname specified in argv[0]. */
2990 /* FIXME: make_relative_prefix doesn't yet work for VMS. */
2991 if (!gcc_exec_prefix
)
2993 gcc_exec_prefix
= make_relative_prefix (argv
[0], standard_bindir_prefix
,
2994 standard_exec_prefix
);
2995 if (gcc_exec_prefix
)
2996 putenv (concat ("GCC_EXEC_PREFIX=", gcc_exec_prefix
, NULL_PTR
));
3000 if (gcc_exec_prefix
)
3002 int len
= strlen (gcc_exec_prefix
);
3004 if (len
> (int) sizeof ("/lib/gcc-lib/") - 1
3005 && (IS_DIR_SEPARATOR (gcc_exec_prefix
[len
-1])))
3007 temp
= gcc_exec_prefix
+ len
- sizeof ("/lib/gcc-lib/") + 1;
3008 if (IS_DIR_SEPARATOR (*temp
)
3009 && strncmp (temp
+ 1, "lib", 3) == 0
3010 && IS_DIR_SEPARATOR (temp
[4])
3011 && strncmp (temp
+ 5, "gcc-lib", 7) == 0)
3012 len
-= sizeof ("/lib/gcc-lib/") - 1;
3015 set_std_prefix (gcc_exec_prefix
, len
);
3016 add_prefix (&exec_prefixes
, gcc_exec_prefix
, "GCC",
3017 PREFIX_PRIORITY_LAST
, 0, NULL_PTR
);
3018 add_prefix (&startfile_prefixes
, gcc_exec_prefix
, "GCC",
3019 PREFIX_PRIORITY_LAST
, 0, NULL_PTR
);
3022 /* COMPILER_PATH and LIBRARY_PATH have values
3023 that are lists of directory names with colons. */
3025 GET_ENV_PATH_LIST (temp
, "COMPILER_PATH");
3028 const char *startp
, *endp
;
3029 char *nstore
= (char *) alloca (strlen (temp
) + 3);
3031 startp
= endp
= temp
;
3034 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
3036 strncpy (nstore
, startp
, endp
- startp
);
3038 strcpy (nstore
, concat (".", dir_separator_str
, NULL_PTR
));
3039 else if (!IS_DIR_SEPARATOR (endp
[-1]))
3041 nstore
[endp
- startp
] = DIR_SEPARATOR
;
3042 nstore
[endp
- startp
+ 1] = 0;
3045 nstore
[endp
- startp
] = 0;
3046 add_prefix (&exec_prefixes
, nstore
, 0,
3047 PREFIX_PRIORITY_LAST
, 0, NULL_PTR
);
3048 add_prefix (&include_prefixes
,
3049 concat (nstore
, "include", NULL_PTR
),
3050 0, PREFIX_PRIORITY_LAST
, 0, NULL_PTR
);
3053 endp
= startp
= endp
+ 1;
3060 GET_ENV_PATH_LIST (temp
, LIBRARY_PATH_ENV
);
3061 if (temp
&& *cross_compile
== '0')
3063 const char *startp
, *endp
;
3064 char *nstore
= (char *) alloca (strlen (temp
) + 3);
3066 startp
= endp
= temp
;
3069 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
3071 strncpy (nstore
, startp
, endp
- startp
);
3073 strcpy (nstore
, concat (".", dir_separator_str
, NULL_PTR
));
3074 else if (!IS_DIR_SEPARATOR (endp
[-1]))
3076 nstore
[endp
- startp
] = DIR_SEPARATOR
;
3077 nstore
[endp
- startp
+ 1] = 0;
3080 nstore
[endp
- startp
] = 0;
3081 add_prefix (&startfile_prefixes
, nstore
, NULL_PTR
,
3082 PREFIX_PRIORITY_LAST
, 0, NULL_PTR
);
3085 endp
= startp
= endp
+ 1;
3092 /* Use LPATH like LIBRARY_PATH (for the CMU build program). */
3093 GET_ENV_PATH_LIST (temp
, "LPATH");
3094 if (temp
&& *cross_compile
== '0')
3096 const char *startp
, *endp
;
3097 char *nstore
= (char *) alloca (strlen (temp
) + 3);
3099 startp
= endp
= temp
;
3102 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
3104 strncpy (nstore
, startp
, endp
- startp
);
3106 strcpy (nstore
, concat (".", dir_separator_str
, NULL_PTR
));
3107 else if (!IS_DIR_SEPARATOR (endp
[-1]))
3109 nstore
[endp
- startp
] = DIR_SEPARATOR
;
3110 nstore
[endp
- startp
+ 1] = 0;
3113 nstore
[endp
- startp
] = 0;
3114 add_prefix (&startfile_prefixes
, nstore
, NULL_PTR
,
3115 PREFIX_PRIORITY_LAST
, 0, NULL_PTR
);
3118 endp
= startp
= endp
+ 1;
3125 /* Convert new-style -- options to old-style. */
3126 translate_options (&argc
, &argv
);
3128 /* Do language-specific adjustment/addition of flags. */
3129 lang_specific_driver (&argc
, &argv
, &added_libraries
);
3131 /* Scan argv twice. Here, the first time, just count how many switches
3132 there will be in their vector, and how many input files in theirs.
3133 Also parse any switches that determine the configuration name, such as -b.
3134 Here we also parse the switches that cc itself uses (e.g. -v). */
3136 for (i
= 1; i
< argc
; i
++)
3138 if (! strcmp (argv
[i
], "-dumpspecs"))
3140 struct spec_list
*sl
;
3142 for (sl
= specs
; sl
; sl
= sl
->next
)
3143 printf ("*%s:\n%s\n\n", sl
->name
, *(sl
->ptr_spec
));
3144 if (link_command_spec
)
3145 printf ("*link_command:\n%s\n\n", link_command_spec
);
3148 else if (! strcmp (argv
[i
], "-dumpversion"))
3150 printf ("%s\n", spec_version
);
3153 else if (! strcmp (argv
[i
], "-dumpmachine"))
3155 printf ("%s\n", spec_machine
);
3158 else if (strcmp (argv
[i
], "-fhelp") == 0)
3160 /* translate_options () has turned --help into -fhelp. */
3161 print_help_list
= 1;
3163 /* We will be passing a dummy file on to the sub-processes. */
3167 add_preprocessor_option ("--help", 6);
3168 add_assembler_option ("--help", 6);
3169 add_linker_option ("--help", 6);
3171 else if (strcmp (argv
[i
], "-ftarget-help") == 0)
3173 /* translate_options() has turned --target-help into -ftarget-help. */
3174 target_help_flag
= 1;
3176 /* We will be passing a dummy file on to the sub-processes. */
3180 add_preprocessor_option ("--target-help", 13);
3181 add_assembler_option ("--target-help", 13);
3182 add_linker_option ("--target-help", 13);
3184 else if (! strcmp (argv
[i
], "-pass-exit-codes"))
3186 pass_exit_codes
= 1;
3189 else if (! strcmp (argv
[i
], "-print-search-dirs"))
3190 print_search_dirs
= 1;
3191 else if (! strcmp (argv
[i
], "-print-libgcc-file-name"))
3192 print_file_name
= "libgcc.a";
3193 else if (! strncmp (argv
[i
], "-print-file-name=", 17))
3194 print_file_name
= argv
[i
] + 17;
3195 else if (! strncmp (argv
[i
], "-print-prog-name=", 17))
3196 print_prog_name
= argv
[i
] + 17;
3197 else if (! strcmp (argv
[i
], "-print-multi-lib"))
3198 print_multi_lib
= 1;
3199 else if (! strcmp (argv
[i
], "-print-multi-directory"))
3200 print_multi_directory
= 1;
3201 else if (! strncmp (argv
[i
], "-Wa,", 4))
3204 /* Pass the rest of this option to the assembler. */
3206 /* Split the argument at commas. */
3208 for (j
= 4; argv
[i
][j
]; j
++)
3209 if (argv
[i
][j
] == ',')
3211 add_assembler_option (argv
[i
] + prev
, j
- prev
);
3215 /* Record the part after the last comma. */
3216 add_assembler_option (argv
[i
] + prev
, j
- prev
);
3218 else if (! strncmp (argv
[i
], "-Wp,", 4))
3221 /* Pass the rest of this option to the preprocessor. */
3223 /* Split the argument at commas. */
3225 for (j
= 4; argv
[i
][j
]; j
++)
3226 if (argv
[i
][j
] == ',')
3228 add_preprocessor_option (argv
[i
] + prev
, j
- prev
);
3232 /* Record the part after the last comma. */
3233 add_preprocessor_option (argv
[i
] + prev
, j
- prev
);
3235 else if (argv
[i
][0] == '+' && argv
[i
][1] == 'e')
3236 /* The +e options to the C++ front-end. */
3238 else if (strncmp (argv
[i
], "-Wl,", 4) == 0)
3241 /* Split the argument at commas. */
3242 for (j
= 3; argv
[i
][j
]; j
++)
3243 n_infiles
+= (argv
[i
][j
] == ',');
3245 else if (strcmp (argv
[i
], "-Xlinker") == 0)
3248 fatal ("argument to `-Xlinker' is missing");
3253 else if (strncmp (argv
[i
], "-l", 2) == 0)
3255 else if (strcmp (argv
[i
], "-save-temps") == 0)
3257 save_temps_flag
= 1;
3260 else if (strcmp (argv
[i
], "-specs") == 0)
3262 struct user_specs
*user
= (struct user_specs
*)
3263 xmalloc (sizeof (struct user_specs
));
3265 fatal ("argument to `-specs' is missing");
3267 user
->next
= (struct user_specs
*) 0;
3268 user
->filename
= argv
[i
];
3269 if (user_specs_tail
)
3270 user_specs_tail
->next
= user
;
3272 user_specs_head
= user
;
3273 user_specs_tail
= user
;
3275 else if (strncmp (argv
[i
], "-specs=", 7) == 0)
3277 struct user_specs
*user
= (struct user_specs
*)
3278 xmalloc (sizeof (struct user_specs
));
3279 if (strlen (argv
[i
]) == 7)
3280 fatal ("argument to `-specs=' is missing");
3282 user
->next
= (struct user_specs
*) 0;
3283 user
->filename
= argv
[i
] + 7;
3284 if (user_specs_tail
)
3285 user_specs_tail
->next
= user
;
3287 user_specs_head
= user
;
3288 user_specs_tail
= user
;
3290 else if (strcmp (argv
[i
], "-time") == 0)
3292 else if (argv
[i
][0] == '-' && argv
[i
][1] != 0)
3294 register const char *p
= &argv
[i
][1];
3295 register int c
= *p
;
3301 if (p
[1] == 0 && i
+ 1 == argc
)
3302 fatal ("argument to `-b' is missing");
3304 spec_machine
= argv
[++i
];
3306 spec_machine
= p
+ 1;
3308 warn_std_ptr
= &warn_std
;
3314 if (p
[1] == 0 && i
+ 1 == argc
)
3315 fatal ("argument to `-B' is missing");
3321 /* As a kludge, if the arg is "[foo/]stageN/", just
3322 add "[foo/]include" to the include prefix. */
3323 int len
= strlen (value
);
3326 && (IS_DIR_SEPARATOR (value
[len
- 8]))))
3327 && strncmp (value
+ len
- 7, "stage", 5) == 0
3328 && ISDIGIT (value
[len
- 2])
3329 && (IS_DIR_SEPARATOR (value
[len
- 1])))
3332 add_prefix (&include_prefixes
, "include", NULL_PTR
,
3333 PREFIX_PRIORITY_B_OPT
, 0, NULL_PTR
);
3336 char *string
= xmalloc (len
+ 1);
3337 strncpy (string
, value
, len
-7);
3338 strcpy (string
+len
-7, "include");
3339 add_prefix (&include_prefixes
, string
, NULL_PTR
,
3340 PREFIX_PRIORITY_B_OPT
, 0, NULL_PTR
);
3344 add_prefix (&exec_prefixes
, value
, NULL_PTR
,
3345 PREFIX_PRIORITY_B_OPT
, 0, &warn_B
);
3346 add_prefix (&startfile_prefixes
, value
, NULL_PTR
,
3347 PREFIX_PRIORITY_B_OPT
, 0, &warn_B
);
3348 add_prefix (&include_prefixes
, concat (value
, "include",
3351 PREFIX_PRIORITY_B_OPT
, 0, NULL_PTR
);
3356 case 'v': /* Print our subcommands and print versions. */
3358 /* If they do anything other than exactly `-v', don't set
3359 verbose_flag; rather, continue on to give the error. */
3367 if (p
[1] == 0 && i
+ 1 == argc
)
3368 fatal ("argument to `-V' is missing");
3370 spec_version
= argv
[++i
];
3372 spec_version
= p
+ 1;
3373 compiler_version
= spec_version
;
3374 warn_std_ptr
= &warn_std
;
3376 /* Validate the version number. Use the same checks
3377 done when inserting it into a spec.
3379 The format of the version string is
3380 ([^0-9]*-)?[0-9]+[.][0-9]+([.][0-9]+)?([- ].*)? */
3382 const char *v
= compiler_version
;
3384 /* Ignore leading non-digits. i.e. "foo-" in "foo-2.7.2". */
3385 while (! ISDIGIT (*v
))
3388 if (v
> compiler_version
&& v
[-1] != '-')
3389 fatal ("invalid version number format");
3391 /* Set V after the first period. */
3392 while (ISDIGIT (*v
))
3396 fatal ("invalid version number format");
3399 while (ISDIGIT (*v
))
3402 if (*v
!= 0 && *v
!= ' ' && *v
!= '.' && *v
!= '-')
3403 fatal ("invalid version number format");
3419 #if defined(HAVE_EXECUTABLE_SUFFIX)
3424 /* Forward scan, just in case -S or -c is specified
3431 if (argv
[j
][0] == '-')
3433 if (SWITCH_CURTAILS_COMPILATION (argv
[j
][1])
3439 else if (skip
= SWITCH_TAKES_ARG (argv
[j
][1]))
3440 j
+= skip
- (argv
[j
][2] != 0);
3441 else if (skip
= WORD_SWITCH_TAKES_ARG (argv
[j
] + 1))
3448 #if defined(HAVE_EXECUTABLE_SUFFIX) || defined(HAVE_OBJECT_SUFFIX)
3450 argv
[i
+ 1] = convert_filename (argv
[i
+ 1], ! have_c
);
3452 argv
[i
] = convert_filename (argv
[i
], ! have_c
);
3459 #ifdef MODIFY_TARGET_NAME
3460 is_modify_target_name
= 0;
3463 j
< sizeof modify_target
/ sizeof modify_target
[0]; j
++)
3464 if (! strcmp (argv
[i
], modify_target
[j
].sw
))
3467 = (char *) xmalloc (strlen (modify_target
[j
].str
)
3468 + strlen (spec_machine
));
3471 int made_addition
= 0;
3473 is_modify_target_name
= 1;
3474 for (p
= spec_machine
, q
= new_name
; *p
!= 0; )
3476 if (modify_target
[j
].add_del
== DELETE
3477 && (! strncmp (q
, modify_target
[j
].str
,
3478 strlen (modify_target
[j
].str
))))
3479 p
+= strlen (modify_target
[j
].str
);
3480 else if (modify_target
[j
].add_del
== ADD
3481 && ! made_addition
&& *p
== '-')
3483 for (r
= modify_target
[j
].str
; *r
!= 0; )
3491 spec_machine
= new_name
;
3494 if (is_modify_target_name
)
3500 if (SWITCH_TAKES_ARG (c
) > (p
[1] != 0))
3501 i
+= SWITCH_TAKES_ARG (c
) - (p
[1] != 0);
3502 else if (WORD_SWITCH_TAKES_ARG (p
))
3503 i
+= WORD_SWITCH_TAKES_ARG (p
);
3513 if (have_c
&& have_o
&& lang_n_infiles
> 1)
3514 fatal ("cannot specify -o with -c or -S and multiple compilations");
3516 /* Set up the search paths before we go looking for config files. */
3518 /* These come before the md prefixes so that we will find gcc's subcommands
3519 (such as cpp) rather than those of the host system. */
3520 /* Use 2 as fourth arg meaning try just the machine as a suffix,
3521 as well as trying the machine and the version. */
3523 add_prefix (&exec_prefixes
, standard_exec_prefix
, "GCC",
3524 PREFIX_PRIORITY_LAST
, 1, warn_std_ptr
);
3525 add_prefix (&exec_prefixes
, standard_exec_prefix
, "BINUTILS",
3526 PREFIX_PRIORITY_LAST
, 2, warn_std_ptr
);
3527 add_prefix (&exec_prefixes
, standard_exec_prefix_1
, "BINUTILS",
3528 PREFIX_PRIORITY_LAST
, 2, warn_std_ptr
);
3531 add_prefix (&startfile_prefixes
, standard_exec_prefix
, "BINUTILS",
3532 PREFIX_PRIORITY_LAST
, 1, warn_std_ptr
);
3533 add_prefix (&startfile_prefixes
, standard_exec_prefix_1
, "BINUTILS",
3534 PREFIX_PRIORITY_LAST
, 1, warn_std_ptr
);
3536 tooldir_prefix
= concat (tooldir_base_prefix
, spec_machine
,
3537 dir_separator_str
, NULL_PTR
);
3539 /* If tooldir is relative, base it on exec_prefixes. A relative
3540 tooldir lets us move the installed tree as a unit.
3542 If GCC_EXEC_PREFIX is defined, then we want to add two relative
3543 directories, so that we can search both the user specified directory
3544 and the standard place. */
3546 if (!IS_ABSOLUTE_PATHNAME (tooldir_prefix
))
3548 if (gcc_exec_prefix
)
3550 char *gcc_exec_tooldir_prefix
3551 = concat (gcc_exec_prefix
, spec_machine
, dir_separator_str
,
3552 spec_version
, dir_separator_str
, tooldir_prefix
, NULL_PTR
);
3554 add_prefix (&exec_prefixes
,
3555 concat (gcc_exec_tooldir_prefix
, "bin",
3556 dir_separator_str
, NULL_PTR
),
3557 NULL_PTR
, PREFIX_PRIORITY_LAST
, 0, NULL_PTR
);
3558 add_prefix (&startfile_prefixes
,
3559 concat (gcc_exec_tooldir_prefix
, "lib",
3560 dir_separator_str
, NULL_PTR
),
3561 NULL_PTR
, PREFIX_PRIORITY_LAST
, 0, NULL_PTR
);
3564 tooldir_prefix
= concat (standard_exec_prefix
, spec_machine
,
3565 dir_separator_str
, spec_version
,
3566 dir_separator_str
, tooldir_prefix
, NULL_PTR
);
3569 add_prefix (&exec_prefixes
,
3570 concat (tooldir_prefix
, "bin", dir_separator_str
, NULL_PTR
),
3571 "BINUTILS", PREFIX_PRIORITY_LAST
, 0, NULL_PTR
);
3572 add_prefix (&startfile_prefixes
,
3573 concat (tooldir_prefix
, "lib", dir_separator_str
, NULL_PTR
),
3574 "BINUTILS", PREFIX_PRIORITY_LAST
, 0, NULL_PTR
);
3576 /* More prefixes are enabled in main, after we read the specs file
3577 and determine whether this is cross-compilation or not. */
3579 /* Then create the space for the vectors and scan again. */
3581 switches
= ((struct switchstr
*)
3582 xmalloc ((n_switches
+ 1) * sizeof (struct switchstr
)));
3583 infiles
= (struct infile
*) xmalloc ((n_infiles
+ 1) * sizeof (struct infile
));
3586 last_language_n_infiles
= -1;
3588 /* This, time, copy the text of each switch and store a pointer
3589 to the copy in the vector of switches.
3590 Store all the infiles in their vector. */
3592 for (i
= 1; i
< argc
; i
++)
3594 /* Just skip the switches that were handled by the preceding loop. */
3595 #ifdef MODIFY_TARGET_NAME
3596 is_modify_target_name
= 0;
3598 for (j
= 0; j
< sizeof modify_target
/ sizeof modify_target
[0]; j
++)
3599 if (! strcmp (argv
[i
], modify_target
[j
].sw
))
3600 is_modify_target_name
= 1;
3602 if (is_modify_target_name
)
3606 if (! strncmp (argv
[i
], "-Wa,", 4))
3608 else if (! strncmp (argv
[i
], "-Wp,", 4))
3610 else if (! strcmp (argv
[i
], "-pass-exit-codes"))
3612 else if (! strcmp (argv
[i
], "-print-search-dirs"))
3614 else if (! strcmp (argv
[i
], "-print-libgcc-file-name"))
3616 else if (! strncmp (argv
[i
], "-print-file-name=", 17))
3618 else if (! strncmp (argv
[i
], "-print-prog-name=", 17))
3620 else if (! strcmp (argv
[i
], "-print-multi-lib"))
3622 else if (! strcmp (argv
[i
], "-print-multi-directory"))
3624 else if (strcmp (argv
[i
], "-ftarget-help") == 0)
3626 /* Create a dummy input file, so that we can pass --target-help on to
3627 the various sub-processes. */
3628 infiles
[n_infiles
].language
= "c";
3629 infiles
[n_infiles
++].name
= "target-dummy";
3631 /* Preserve the --target-help switch so that it can be caught by
3632 the cc1 spec string. */
3633 switches
[n_switches
].part1
= "--target-help";
3634 switches
[n_switches
].args
= 0;
3635 switches
[n_switches
].live_cond
= SWITCH_OK
;
3636 switches
[n_switches
].validated
= 0;
3640 else if (strcmp (argv
[i
], "-fhelp") == 0)
3644 /* Create a dummy input file, so that we can pass --help on to
3645 the various sub-processes. */
3646 infiles
[n_infiles
].language
= "c";
3647 infiles
[n_infiles
++].name
= "help-dummy";
3649 /* Preserve the --help switch so that it can be caught by the
3651 switches
[n_switches
].part1
= "--help";
3652 switches
[n_switches
].args
= 0;
3653 switches
[n_switches
].live_cond
= SWITCH_OK
;
3654 switches
[n_switches
].validated
= 0;
3659 else if (argv
[i
][0] == '+' && argv
[i
][1] == 'e')
3661 /* Compensate for the +e options to the C++ front-end;
3662 they're there simply for cfront call-compatibility. We do
3663 some magic in default_compilers to pass them down properly.
3664 Note we deliberately start at the `+' here, to avoid passing
3665 -e0 or -e1 down into the linker. */
3666 switches
[n_switches
].part1
= &argv
[i
][0];
3667 switches
[n_switches
].args
= 0;
3668 switches
[n_switches
].live_cond
= SWITCH_OK
;
3669 switches
[n_switches
].validated
= 0;
3672 else if (strncmp (argv
[i
], "-Wl,", 4) == 0)
3675 /* Split the argument at commas. */
3677 for (j
= 4; argv
[i
][j
]; j
++)
3678 if (argv
[i
][j
] == ',')
3680 infiles
[n_infiles
].language
= "*";
3681 infiles
[n_infiles
++].name
3682 = save_string (argv
[i
] + prev
, j
- prev
);
3685 /* Record the part after the last comma. */
3686 infiles
[n_infiles
].language
= "*";
3687 infiles
[n_infiles
++].name
= argv
[i
] + prev
;
3689 else if (strcmp (argv
[i
], "-Xlinker") == 0)
3691 infiles
[n_infiles
].language
= "*";
3692 infiles
[n_infiles
++].name
= argv
[++i
];
3694 else if (strncmp (argv
[i
], "-l", 2) == 0)
3696 infiles
[n_infiles
].language
= "*";
3697 infiles
[n_infiles
++].name
= argv
[i
];
3699 else if (strcmp (argv
[i
], "-specs") == 0)
3701 else if (strncmp (argv
[i
], "-specs=", 7) == 0)
3703 else if (strcmp (argv
[i
], "-time") == 0)
3705 else if ((save_temps_flag
|| report_times
)
3706 && strcmp (argv
[i
], "-pipe") == 0)
3708 /* -save-temps overrides -pipe, so that temp files are produced */
3709 if (save_temps_flag
)
3710 error ("Warning: -pipe ignored because -save-temps specified");
3711 /* -time overrides -pipe because we can't get correct stats when
3712 multiple children are running at once. */
3713 else if (report_times
)
3714 error ("Warning: -pipe ignored because -time specified");
3716 else if (argv
[i
][0] == '-' && argv
[i
][1] != 0)
3718 const char *p
= &argv
[i
][1];
3723 if (p
[1] == 0 && i
+ 1 == argc
)
3724 fatal ("argument to `-x' is missing");
3726 spec_lang
= argv
[++i
];
3729 if (! strcmp (spec_lang
, "none"))
3730 /* Suppress the warning if -xnone comes after the last input
3731 file, because alternate command interfaces like g++ might
3732 find it useful to place -xnone after each input file. */
3735 last_language_n_infiles
= n_infiles
;
3738 switches
[n_switches
].part1
= p
;
3739 /* Deal with option arguments in separate argv elements. */
3740 if ((SWITCH_TAKES_ARG (c
) > (p
[1] != 0))
3741 || WORD_SWITCH_TAKES_ARG (p
))
3744 int n_args
= WORD_SWITCH_TAKES_ARG (p
);
3748 /* Count only the option arguments in separate argv elements. */
3749 n_args
= SWITCH_TAKES_ARG (c
) - (p
[1] != 0);
3751 if (i
+ n_args
>= argc
)
3752 fatal ("argument to `-%s' is missing", p
);
3753 switches
[n_switches
].args
3754 = (const char **) xmalloc ((n_args
+ 1) * sizeof(const char *));
3756 switches
[n_switches
].args
[j
++] = argv
[++i
];
3757 /* Null-terminate the vector. */
3758 switches
[n_switches
].args
[j
] = 0;
3760 else if (strchr (switches_need_spaces
, c
))
3762 /* On some systems, ld cannot handle some options without
3763 a space. So split the option from its argument. */
3764 char *part1
= (char *) xmalloc (2);
3769 switches
[n_switches
].part1
= part1
;
3770 switches
[n_switches
].args
3771 = (const char **) xmalloc (2 * sizeof (const char *));
3772 switches
[n_switches
].args
[0] = tmp
= xmalloc (strlen (p
));
3773 strcpy (tmp
, &p
[1]);
3774 switches
[n_switches
].args
[1] = 0;
3777 switches
[n_switches
].args
= 0;
3779 switches
[n_switches
].live_cond
= SWITCH_OK
;
3780 switches
[n_switches
].validated
= 0;
3781 switches
[n_switches
].ordering
= 0;
3782 /* These are always valid, since gcc.c itself understands it. */
3783 if (!strcmp (p
, "save-temps")
3784 || !strcmp (p
, "static-libgcc")
3785 || !strcmp (p
, "shared-libgcc"))
3786 switches
[n_switches
].validated
= 1;
3789 char ch
= switches
[n_switches
].part1
[0];
3790 if (ch
== 'V' || ch
== 'b' || ch
== 'B')
3791 switches
[n_switches
].validated
= 1;
3797 #ifdef HAVE_OBJECT_SUFFIX
3798 argv
[i
] = convert_filename (argv
[i
], 0);
3801 if (strcmp (argv
[i
], "-") != 0 && access (argv
[i
], F_OK
) < 0)
3803 perror_with_name (argv
[i
]);
3808 infiles
[n_infiles
].language
= spec_lang
;
3809 infiles
[n_infiles
++].name
= argv
[i
];
3814 if (n_infiles
== last_language_n_infiles
&& spec_lang
!= 0)
3815 error ("Warning: `-x %s' after last input file has no effect", spec_lang
);
3817 switches
[n_switches
].part1
= 0;
3818 infiles
[n_infiles
].name
= 0;
3821 /* Process a spec string, accumulating and running commands. */
3823 /* These variables describe the input file name.
3824 input_file_number is the index on outfiles of this file,
3825 so that the output file name can be stored for later use by %o.
3826 input_basename is the start of the part of the input file
3827 sans all directory names, and basename_length is the number
3828 of characters starting there excluding the suffix .c or whatever. */
3830 const char *input_filename
;
3831 static int input_file_number
;
3832 size_t input_filename_length
;
3833 static int basename_length
;
3834 static int suffixed_basename_length
;
3835 static const char *input_basename
;
3836 static const char *input_suffix
;
3838 /* These are variables used within do_spec and do_spec_1. */
3840 /* Nonzero if an arg has been started and not yet terminated
3841 (with space, tab or newline). */
3842 static int arg_going
;
3844 /* Nonzero means %d or %g has been seen; the next arg to be terminated
3845 is a temporary file name. */
3846 static int delete_this_arg
;
3848 /* Nonzero means %w has been seen; the next arg to be terminated
3849 is the output file name of this compilation. */
3850 static int this_is_output_file
;
3852 /* Nonzero means %s has been seen; the next arg to be terminated
3853 is the name of a library file and we should try the standard
3854 search dirs for it. */
3855 static int this_is_library_file
;
3857 /* Nonzero means that the input of this command is coming from a pipe. */
3858 static int input_from_pipe
;
3860 /* Nonnull means substitute this for any suffix when outputting a switches
3862 static const char *suffix_subst
;
3864 /* Process the spec SPEC and run the commands specified therein.
3865 Returns 0 if the spec is successfully processed; -1 if failed. */
3875 delete_this_arg
= 0;
3876 this_is_output_file
= 0;
3877 this_is_library_file
= 0;
3878 input_from_pipe
= 0;
3879 suffix_subst
= NULL
;
3881 value
= do_spec_1 (spec
, 0, NULL_PTR
);
3883 /* Force out any unfinished command.
3884 If -pipe, this forces out the last command if it ended in `|'. */
3887 if (argbuf_index
> 0 && !strcmp (argbuf
[argbuf_index
- 1], "|"))
3890 if (argbuf_index
> 0)
3897 /* Process the sub-spec SPEC as a portion of a larger spec.
3898 This is like processing a whole spec except that we do
3899 not initialize at the beginning and we do not supply a
3900 newline by default at the end.
3901 INSWITCH nonzero means don't process %-sequences in SPEC;
3902 in this case, % is treated as an ordinary character.
3903 This is used while substituting switches.
3904 INSWITCH nonzero also causes SPC not to terminate an argument.
3906 Value is zero unless a line was finished
3907 and the command on that line reported an error. */
3910 do_spec_1 (spec
, inswitch
, soft_matched_part
)
3913 const char *soft_matched_part
;
3915 register const char *p
= spec
;
3922 /* If substituting a switch, treat all chars like letters.
3923 Otherwise, NL, SPC, TAB and % are special. */
3924 switch (inswitch
? 'a' : c
)
3927 /* End of line: finish any pending argument,
3928 then run the pending command if one has been started. */
3931 obstack_1grow (&obstack
, 0);
3932 string
= obstack_finish (&obstack
);
3933 if (this_is_library_file
)
3934 string
= find_file (string
);
3935 store_arg (string
, delete_this_arg
, this_is_output_file
);
3936 if (this_is_output_file
)
3937 outfiles
[input_file_number
] = string
;
3941 if (argbuf_index
> 0 && !strcmp (argbuf
[argbuf_index
- 1], "|"))
3943 for (i
= 0; i
< n_switches
; i
++)
3944 if (!strcmp (switches
[i
].part1
, "pipe"))
3947 /* A `|' before the newline means use a pipe here,
3948 but only if -pipe was specified.
3949 Otherwise, execute now and don't pass the `|' as an arg. */
3952 input_from_pipe
= 1;
3953 switches
[i
].validated
= 1;
3960 if (argbuf_index
> 0)
3966 /* Reinitialize for a new command, and for a new argument. */
3969 delete_this_arg
= 0;
3970 this_is_output_file
= 0;
3971 this_is_library_file
= 0;
3972 input_from_pipe
= 0;
3976 /* End any pending argument. */
3979 obstack_1grow (&obstack
, 0);
3980 string
= obstack_finish (&obstack
);
3981 if (this_is_library_file
)
3982 string
= find_file (string
);
3983 store_arg (string
, delete_this_arg
, this_is_output_file
);
3984 if (this_is_output_file
)
3985 outfiles
[input_file_number
] = string
;
3989 obstack_1grow (&obstack
, c
);
3995 /* Space or tab ends an argument if one is pending. */
3998 obstack_1grow (&obstack
, 0);
3999 string
= obstack_finish (&obstack
);
4000 if (this_is_library_file
)
4001 string
= find_file (string
);
4002 store_arg (string
, delete_this_arg
, this_is_output_file
);
4003 if (this_is_output_file
)
4004 outfiles
[input_file_number
] = string
;
4006 /* Reinitialize for a new argument. */
4008 delete_this_arg
= 0;
4009 this_is_output_file
= 0;
4010 this_is_library_file
= 0;
4017 fatal ("Invalid specification! Bug in cc.");
4020 obstack_grow (&obstack
, input_basename
, basename_length
);
4025 obstack_grow (&obstack
, input_basename
, suffixed_basename_length
);
4030 delete_this_arg
= 2;
4033 /* Dump out the directories specified with LIBRARY_PATH,
4034 followed by the absolute directories
4035 that we search for startfiles. */
4038 struct prefix_list
*pl
= startfile_prefixes
.plist
;
4039 size_t bufsize
= 100;
4040 char *buffer
= (char *) xmalloc (bufsize
);
4043 for (; pl
; pl
= pl
->next
)
4045 #ifdef RELATIVE_PREFIX_NOT_LINKDIR
4046 /* Used on systems which record the specified -L dirs
4047 and use them to search for dynamic linking. */
4048 /* Relative directories always come from -B,
4049 and it is better not to use them for searching
4050 at run time. In particular, stage1 loses. */
4051 if (!IS_ABSOLUTE_PATHNAME (pl
->prefix
))
4054 /* Try subdirectory if there is one. */
4055 if (multilib_dir
!= NULL
)
4059 if (strlen (pl
->prefix
) + strlen (machine_suffix
)
4061 bufsize
= (strlen (pl
->prefix
)
4062 + strlen (machine_suffix
)) * 2 + 1;
4063 buffer
= (char *) xrealloc (buffer
, bufsize
);
4064 strcpy (buffer
, pl
->prefix
);
4065 strcat (buffer
, machine_suffix
);
4066 if (is_directory (buffer
, multilib_dir
, 1))
4068 do_spec_1 ("-L", 0, NULL_PTR
);
4069 #ifdef SPACE_AFTER_L_OPTION
4070 do_spec_1 (" ", 0, NULL_PTR
);
4072 do_spec_1 (buffer
, 1, NULL_PTR
);
4073 do_spec_1 (multilib_dir
, 1, NULL_PTR
);
4074 /* Make this a separate argument. */
4075 do_spec_1 (" ", 0, NULL_PTR
);
4078 if (!pl
->require_machine_suffix
)
4080 if (is_directory (pl
->prefix
, multilib_dir
, 1))
4082 do_spec_1 ("-L", 0, NULL_PTR
);
4083 #ifdef SPACE_AFTER_L_OPTION
4084 do_spec_1 (" ", 0, NULL_PTR
);
4086 do_spec_1 (pl
->prefix
, 1, NULL_PTR
);
4087 do_spec_1 (multilib_dir
, 1, NULL_PTR
);
4088 /* Make this a separate argument. */
4089 do_spec_1 (" ", 0, NULL_PTR
);
4095 if (is_directory (pl
->prefix
, machine_suffix
, 1))
4097 do_spec_1 ("-L", 0, NULL_PTR
);
4098 #ifdef SPACE_AFTER_L_OPTION
4099 do_spec_1 (" ", 0, NULL_PTR
);
4101 do_spec_1 (pl
->prefix
, 1, NULL_PTR
);
4102 /* Remove slash from machine_suffix. */
4103 if (strlen (machine_suffix
) >= bufsize
)
4104 bufsize
= strlen (machine_suffix
) * 2 + 1;
4105 buffer
= (char *) xrealloc (buffer
, bufsize
);
4106 strcpy (buffer
, machine_suffix
);
4107 idx
= strlen (buffer
);
4108 if (IS_DIR_SEPARATOR (buffer
[idx
- 1]))
4109 buffer
[idx
- 1] = 0;
4110 do_spec_1 (buffer
, 1, NULL_PTR
);
4111 /* Make this a separate argument. */
4112 do_spec_1 (" ", 0, NULL_PTR
);
4115 if (!pl
->require_machine_suffix
)
4117 if (is_directory (pl
->prefix
, "", 1))
4119 do_spec_1 ("-L", 0, NULL_PTR
);
4120 #ifdef SPACE_AFTER_L_OPTION
4121 do_spec_1 (" ", 0, NULL_PTR
);
4123 /* Remove slash from pl->prefix. */
4124 if (strlen (pl
->prefix
) >= bufsize
)
4125 bufsize
= strlen (pl
->prefix
) * 2 + 1;
4126 buffer
= (char *) xrealloc (buffer
, bufsize
);
4127 strcpy (buffer
, pl
->prefix
);
4128 idx
= strlen (buffer
);
4129 if (IS_DIR_SEPARATOR (buffer
[idx
- 1]))
4130 buffer
[idx
- 1] = 0;
4131 do_spec_1 (buffer
, 1, NULL_PTR
);
4132 /* Make this a separate argument. */
4133 do_spec_1 (" ", 0, NULL_PTR
);
4142 /* %efoo means report an error with `foo' as error message
4143 and don't execute any more commands for this file. */
4147 while (*p
!= 0 && *p
!= '\n')
4149 buf
= (char *) alloca (p
- q
+ 1);
4150 strncpy (buf
, q
, p
- q
);
4161 /* If save_temps_flag is off, and the HOST_BIT_BUCKET is defined,
4162 and it is not a directory, and it is writable, use it.
4163 Otherwise, fall through and treat this like any other
4166 if ((!save_temps_flag
)
4167 && (stat (HOST_BIT_BUCKET
, &st
) == 0) && (!S_ISDIR (st
.st_mode
))
4168 && (access (HOST_BIT_BUCKET
, W_OK
) == 0))
4170 obstack_grow (&obstack
, HOST_BIT_BUCKET
,
4171 strlen (HOST_BIT_BUCKET
));
4172 delete_this_arg
= 0;
4180 if (save_temps_flag
)
4182 obstack_grow (&obstack
, input_basename
, basename_length
);
4183 delete_this_arg
= 0;
4187 struct temp_name
*t
;
4189 const char *suffix
= p
;
4190 char *saved_suffix
= NULL
;
4192 while (*p
== '.' || ISALPHA ((unsigned char) *p
))
4194 suffix_length
= p
- suffix
;
4195 if (p
[0] == '%' && p
[1] == 'O')
4198 /* We don't support extra suffix characters after %O. */
4199 if (*p
== '.' || ISALPHA ((unsigned char) *p
))
4201 if (suffix_length
== 0)
4202 suffix
= OBJECT_SUFFIX
;
4206 = (char *) xmalloc (suffix_length
4207 + strlen (OBJECT_SUFFIX
));
4208 strncpy (saved_suffix
, suffix
, suffix_length
);
4209 strcpy (saved_suffix
+ suffix_length
,
4212 suffix_length
+= strlen (OBJECT_SUFFIX
);
4215 /* See if we already have an association of %g/%u/%U and
4217 for (t
= temp_names
; t
; t
= t
->next
)
4218 if (t
->length
== suffix_length
4219 && strncmp (t
->suffix
, suffix
, suffix_length
) == 0
4220 && t
->unique
== (c
!= 'g'))
4223 /* Make a new association if needed. %u and %j require one. */
4224 if (t
== 0 || c
== 'u' || c
== 'j')
4228 t
= (struct temp_name
*) xmalloc (sizeof (struct temp_name
));
4229 t
->next
= temp_names
;
4232 t
->length
= suffix_length
;
4233 t
->suffix
= save_string (suffix
, suffix_length
);
4234 t
->unique
= (c
!= 'g');
4235 temp_filename
= make_temp_file (t
->suffix
);
4236 temp_filename_length
= strlen (temp_filename
);
4237 t
->filename
= temp_filename
;
4238 t
->filename_length
= temp_filename_length
;
4242 free (saved_suffix
);
4244 obstack_grow (&obstack
, t
->filename
, t
->filename_length
);
4245 delete_this_arg
= 1;
4251 obstack_grow (&obstack
, input_filename
, input_filename_length
);
4257 struct prefix_list
*pl
= include_prefixes
.plist
;
4259 if (gcc_exec_prefix
)
4261 do_spec_1 ("-iprefix", 1, NULL_PTR
);
4262 /* Make this a separate argument. */
4263 do_spec_1 (" ", 0, NULL_PTR
);
4264 do_spec_1 (gcc_exec_prefix
, 1, NULL_PTR
);
4265 do_spec_1 (" ", 0, NULL_PTR
);
4268 for (; pl
; pl
= pl
->next
)
4270 do_spec_1 ("-isystem", 1, NULL_PTR
);
4271 /* Make this a separate argument. */
4272 do_spec_1 (" ", 0, NULL_PTR
);
4273 do_spec_1 (pl
->prefix
, 1, NULL_PTR
);
4274 do_spec_1 (" ", 0, NULL_PTR
);
4281 int max
= n_infiles
;
4282 max
+= lang_specific_extra_outfiles
;
4284 for (i
= 0; i
< max
; i
++)
4286 store_arg (outfiles
[i
], 0, 0);
4291 obstack_grow (&obstack
, OBJECT_SUFFIX
, strlen (OBJECT_SUFFIX
));
4296 this_is_library_file
= 1;
4300 this_is_output_file
= 1;
4305 int cur_index
= argbuf_index
;
4306 /* Handle the {...} following the %W. */
4309 p
= handle_braces (p
+ 1);
4312 /* If any args were output, mark the last one for deletion
4314 if (argbuf_index
!= cur_index
)
4315 record_temp_file (argbuf
[argbuf_index
- 1], 0, 1);
4319 /* %x{OPTION} records OPTION for %X to output. */
4325 /* Skip past the option value and make a copy. */
4330 string
= save_string (p1
+ 1, p
- p1
- 2);
4332 /* See if we already recorded this option. */
4333 for (i
= 0; i
< n_linker_options
; i
++)
4334 if (! strcmp (string
, linker_options
[i
]))
4340 /* This option is new; add it. */
4341 add_linker_option (string
, strlen (string
));
4345 /* Dump out the options accumulated previously using %x. */
4347 for (i
= 0; i
< n_linker_options
; i
++)
4349 do_spec_1 (linker_options
[i
], 1, NULL_PTR
);
4350 /* Make each accumulated option a separate argument. */
4351 do_spec_1 (" ", 0, NULL_PTR
);
4355 /* Dump out the options accumulated previously using -Wa,. */
4357 for (i
= 0; i
< n_assembler_options
; i
++)
4359 do_spec_1 (assembler_options
[i
], 1, NULL_PTR
);
4360 /* Make each accumulated option a separate argument. */
4361 do_spec_1 (" ", 0, NULL_PTR
);
4365 /* Dump out the options accumulated previously using -Wp,. */
4367 for (i
= 0; i
< n_preprocessor_options
; i
++)
4369 do_spec_1 (preprocessor_options
[i
], 1, NULL_PTR
);
4370 /* Make each accumulated option a separate argument. */
4371 do_spec_1 (" ", 0, NULL_PTR
);
4375 /* Here are digits and numbers that just process
4376 a certain constant string as a spec. */
4379 value
= do_spec_1 (cc1_spec
, 0, NULL_PTR
);
4385 value
= do_spec_1 (cc1plus_spec
, 0, NULL_PTR
);
4391 value
= do_spec_1 (asm_spec
, 0, NULL_PTR
);
4397 value
= do_spec_1 (asm_final_spec
, 0, NULL_PTR
);
4403 value
= do_spec_1 (signed_char_spec
, 0, NULL_PTR
);
4409 value
= do_spec_1 (cpp_spec
, 0, NULL_PTR
);
4415 value
= do_spec_1 (endfile_spec
, 0, NULL_PTR
);
4421 value
= do_spec_1 (link_spec
, 0, NULL_PTR
);
4427 value
= do_spec_1 (lib_spec
, 0, NULL_PTR
);
4433 value
= do_spec_1 (libgcc_spec
, 0, NULL_PTR
);
4439 if (multilib_dir
&& strcmp (multilib_dir
, ".") != 0)
4445 len
= strlen (multilib_dir
);
4446 obstack_blank (&obstack
, len
+ 1);
4447 p
= obstack_next_free (&obstack
) - len
;
4450 for (q
= multilib_dir
; *q
; ++q
, ++p
)
4451 *p
= (IS_DIR_SEPARATOR (*q
) ? '_' : *q
);
4457 char *x
= (char *) alloca (strlen (cpp_predefines
) + 1);
4461 /* Copy all of the -D options in CPP_PREDEFINES into BUF. */
4465 if (! strncmp (y
, "-D", 2))
4466 /* Copy the whole option. */
4467 while (*y
&& *y
!= ' ' && *y
!= '\t')
4469 else if (*y
== ' ' || *y
== '\t')
4470 /* Copy whitespace to the result. */
4472 /* Don't copy other options. */
4479 value
= do_spec_1 (buf
, 0, NULL_PTR
);
4487 char *x
= (char *) alloca (strlen (cpp_predefines
) * 4 + 1);
4491 /* Copy all of CPP_PREDEFINES into BUF,
4492 but force them all into the reserved name space if they
4493 aren't already there. The reserved name space is all
4494 identifiers beginning with two underscores or with one
4495 underscore and a capital letter. We do the forcing by
4496 adding up to two underscores to the beginning and end
4497 of each symbol. e.g. mips, _mips, mips_, and _mips_ all
4502 if (! strncmp (y
, "-D", 2))
4511 && ! ISUPPER ((unsigned char) *(y
+ 1))))
4513 /* Stick __ at front of macro name. */
4517 /* Arrange to stick __ at the end as well. */
4521 /* Copy the macro name. */
4522 while (*y
&& *y
!= '=' && *y
!= ' ' && *y
!= '\t')
4535 /* Copy the value given, if any. */
4536 while (*y
&& *y
!= ' ' && *y
!= '\t')
4539 else if (*y
== ' ' || *y
== '\t')
4540 /* Copy whitespace to the result. */
4542 /* Don't copy -A options */
4548 /* Copy all of CPP_PREDEFINES into BUF,
4549 but put __ after every -D. */
4553 if (! strncmp (y
, "-D", 2))
4559 && ! ISUPPER ((unsigned char) *(y
+ 1))))
4561 /* Stick -D__ at front of macro name. */
4568 /* Copy the macro name. */
4569 while (*y
&& *y
!= '=' && *y
!= ' ' && *y
!= '\t')
4572 /* Copy the value given, if any. */
4573 while (*y
&& *y
!= ' ' && *y
!= '\t')
4578 /* Do not copy this macro - we have just done it before */
4579 while (*y
&& *y
!= ' ' && *y
!= '\t')
4583 else if (*y
== ' ' || *y
== '\t')
4584 /* Copy whitespace to the result. */
4586 /* Don't copy -A options. */
4592 /* Copy all of the -A options in CPP_PREDEFINES into BUF. */
4596 if (! strncmp (y
, "-A", 2))
4597 /* Copy the whole option. */
4598 while (*y
&& *y
!= ' ' && *y
!= '\t')
4600 else if (*y
== ' ' || *y
== '\t')
4601 /* Copy whitespace to the result. */
4603 /* Don't copy other options. */
4610 value
= do_spec_1 (buf
, 0, NULL_PTR
);
4617 value
= do_spec_1 (startfile_spec
, 0, NULL_PTR
);
4622 /* Here we define characters other than letters and digits. */
4625 p
= handle_braces (p
);
4631 obstack_1grow (&obstack
, '%');
4638 while (p
[len
] && p
[len
] != ' ' && p
[len
] != '%')
4640 suffix_subst
= save_string (p
- 1, len
+ 1);
4646 if (soft_matched_part
)
4648 do_spec_1 (soft_matched_part
, 1, NULL_PTR
);
4649 do_spec_1 (" ", 0, NULL_PTR
);
4652 /* Catch the case where a spec string contains something like
4653 '%{foo:%*}'. ie there is no * in the pattern on the left
4654 hand side of the :. */
4655 error ("Spec failure: '%%*' has not been initialised by pattern match");
4658 /* Process a string found as the value of a spec given by name.
4659 This feature allows individual machine descriptions
4660 to add and use their own specs.
4661 %[...] modifies -D options the way %P does;
4662 %(...) uses the spec unmodified. */
4664 error ("Warning: use of obsolete %%[ operator in specs");
4667 const char *name
= p
;
4668 struct spec_list
*sl
;
4671 /* The string after the S/P is the name of a spec that is to be
4673 while (*p
&& *p
!= ')' && *p
!= ']')
4676 /* See if it's in the list. */
4677 for (len
= p
- name
, sl
= specs
; sl
; sl
= sl
->next
)
4678 if (sl
->name_len
== len
&& !strncmp (sl
->name
, name
, len
))
4680 name
= *(sl
->ptr_spec
);
4682 notice ("Processing spec %c%s%c, which is '%s'\n",
4683 c
, sl
->name
, (c
== '(') ? ')' : ']', name
);
4692 value
= do_spec_1 (name
, 0, NULL_PTR
);
4698 char *x
= (char *) alloca (strlen (name
) * 2 + 1);
4700 const char *y
= name
;
4703 /* Copy all of NAME into BUF, but put __ after
4704 every -D and at the end of each arg. */
4707 if (! strncmp (y
, "-D", 2))
4718 && (*y
== ' ' || *y
== '\t' || *y
== '='
4719 || *y
== '}' || *y
== 0))
4732 value
= do_spec_1 (buf
, 0, NULL_PTR
);
4738 /* Discard the closing paren or bracket. */
4746 int c1
= *p
++; /* Select first or second version number. */
4747 const char *v
= compiler_version
;
4749 static const char zeroc
= '0';
4751 /* The format of the version string is
4752 ([^0-9]*-)?[0-9]+[.][0-9]+([.][0-9]+)?([- ].*)? */
4754 /* Ignore leading non-digits. i.e. "foo-" in "foo-2.7.2". */
4755 while (! ISDIGIT (*v
))
4757 if (v
> compiler_version
&& v
[-1] != '-')
4760 /* If desired, advance to second version number. */
4763 /* Set V after the first period. */
4764 while (ISDIGIT (*v
))
4771 /* If desired, advance to third version number.
4772 But don't complain if it's not present */
4775 /* Set V after the second period. */
4776 while (ISDIGIT (*v
))
4778 if ((*v
!= 0) && (*v
!= ' ') && (*v
!= '.') && (*v
!= '-'))
4784 /* Set Q at the next period or at the end. */
4786 while (ISDIGIT (*q
))
4788 if (*q
!= 0 && q
> v
&& *q
!= ' ' && *q
!= '.' && *q
!= '-')
4792 /* Put that part into the command. */
4793 obstack_grow (&obstack
, v
, q
- v
);
4795 /* Default to "0" */
4796 obstack_grow (&obstack
, &zeroc
, 1);
4802 if (input_from_pipe
)
4803 do_spec_1 ("-", 0, NULL_PTR
);
4807 error ("Spec failure: Unrecognised spec option '%c'", c
);
4813 /* Backslash: treat next character as ordinary. */
4818 /* Ordinary character: put it into the current argument. */
4819 obstack_1grow (&obstack
, c
);
4823 /* End of string. */
4827 /* Return 0 if we call do_spec_1 and that returns -1. */
4831 register const char *p
;
4833 const char *filter
, *body
= NULL
, *endbody
= NULL
;
4835 int true_once
= 0; /* If, in %{a|b:d}, at least one of a,b was seen. */
4838 int include_blanks
= 1;
4839 int elide_switch
= 0;
4844 /* A '^' after the open-brace means to not give blanks before args. */
4851 /* A `|' after the open-brace means,
4852 if the test fails, output a single minus sign rather than nothing.
4853 This is used in %{|!pipe:...}. */
4860 /* A `<' after the open-brace means that the switch should be
4861 removed from the command-line. */
4867 negate
= suffix
= 0;
4870 /* A `!' after the open-brace negates the condition:
4871 succeed if the specified switch is not present. */
4875 /* A `.' after the open-brace means test against the current suffix. */
4884 if (elide_switch
&& (negate
|| pipe_p
|| suffix
))
4886 /* It doesn't make sense to mix elision with other flags. We
4887 could fatal() here, but the standard seems to be to abort. */
4893 while (*p
!= ':' && *p
!= '}' && *p
!= '|' && *p
!= '&')
4896 if (*p
== '|' && (pipe_p
|| ordered
))
4901 if (*p
!= '}' && *p
!= '&')
4903 register int count
= 1;
4904 register const char *q
= p
;
4923 body
= p
, endbody
= p
+ 1;
4928 int found
= (input_suffix
!= 0
4929 && (long) strlen (input_suffix
) == (long) (p
- filter
)
4930 && strncmp (input_suffix
, filter
, p
- filter
) == 0);
4936 && do_spec_1 (save_string (body
, endbody
-body
-1), 0, NULL_PTR
) < 0)
4939 else if (p
[-1] == '*' && (p
[0] == '}' || p
[0] == '&'))
4941 /* Substitute all matching switches as separate args. */
4944 for (i
= 0; i
< n_switches
; i
++)
4945 if (!strncmp (switches
[i
].part1
, filter
, p
- 1 - filter
)
4946 && check_live_switch (i
, p
- 1 - filter
))
4950 switches
[i
].live_cond
= SWITCH_IGNORE
;
4951 switches
[i
].validated
= 1;
4954 ordered
= 1, switches
[i
].ordering
= 1;
4959 /* Test for presence of the specified switch. */
4963 /* If name specified ends in *, as in {x*:...},
4964 check for %* and handle that case. */
4965 if (p
[-1] == '*' && !negate
)
4968 const char *r
= body
;
4970 /* First see whether we have %*. */
4974 if (*r
== '%' && r
[1] == '*')
4978 /* If we do, handle that case. */
4981 /* Substitute all matching switches as separate args.
4982 But do this by substituting for %*
4983 in the text that follows the colon. */
4985 unsigned hard_match_len
= p
- filter
- 1;
4986 char *string
= save_string (body
, endbody
- body
- 1);
4988 for (i
= 0; i
< n_switches
; i
++)
4989 if (!strncmp (switches
[i
].part1
, filter
, hard_match_len
)
4990 && check_live_switch (i
, -1))
4992 do_spec_1 (string
, 0, &switches
[i
].part1
[hard_match_len
]);
4993 /* Pass any arguments this switch has. */
4994 give_switch (i
, 1, 1);
4995 suffix_subst
= NULL
;
4998 /* We didn't match. Try again. */
5005 /* If name specified ends in *, as in {x*:...},
5006 check for presence of any switch name starting with x. */
5009 for (i
= 0; i
< n_switches
; i
++)
5011 unsigned hard_match_len
= p
- filter
- 1;
5013 if (!strncmp (switches
[i
].part1
, filter
, hard_match_len
)
5014 && check_live_switch (i
, hard_match_len
))
5021 /* Otherwise, check for presence of exact name specified. */
5024 for (i
= 0; i
< n_switches
; i
++)
5026 if (!strncmp (switches
[i
].part1
, filter
, p
- filter
)
5027 && switches
[i
].part1
[p
- filter
] == 0
5028 && check_live_switch (i
, -1))
5036 /* If it is as desired (present for %{s...}, absent for %{!s...})
5037 then substitute either the switch or the specified
5038 conditional text. */
5039 if (present
!= negate
)
5043 switches
[i
].live_cond
= SWITCH_IGNORE
;
5044 switches
[i
].validated
= 1;
5046 else if (ordered
|| *p
== '&')
5047 ordered
= 1, switches
[i
].ordering
= 1;
5049 give_switch (i
, 0, include_blanks
);
5051 /* Even if many alternatives are matched, only output once. */
5056 /* Here if a %{|...} conditional fails: output a minus sign,
5057 which means "standard output" or "standard input". */
5058 do_spec_1 ("-", 0, NULL_PTR
);
5063 /* We didn't match; try again. */
5070 goto next_ampersand
;
5076 /* Doing this set of switches later preserves their command-line
5077 ordering. This is needed for e.g. -U, -D and -A. */
5078 for (i
= 0; i
< n_switches
; i
++)
5079 if (switches
[i
].ordering
== 1)
5081 switches
[i
].ordering
= 0;
5082 give_switch (i
, 0, include_blanks
);
5085 /* Process the spec just once, regardless of match count. */
5088 if (do_spec_1 (save_string (body
, endbody
- body
- 1),
5096 /* Return 0 iff switch number SWITCHNUM is obsoleted by a later switch
5097 on the command line. PREFIX_LENGTH is the length of XXX in an {XXX*}
5098 spec, or -1 if either exact match or %* is used.
5100 A -O switch is obsoleted by a later -O switch. A -f, -m, or -W switch
5101 whose value does not begin with "no-" is obsoleted by the same value
5102 with the "no-", similarly for a switch with the "no-" prefix. */
5105 check_live_switch (switchnum
, prefix_length
)
5109 const char *name
= switches
[switchnum
].part1
;
5112 /* In the common case of {<at-most-one-letter>*}, a negating
5113 switch would always match, so ignore that case. We will just
5114 send the conflicting switches to the compiler phase. */
5115 if (prefix_length
>= 0 && prefix_length
<= 1)
5118 /* If we already processed this switch and determined if it was
5119 live or not, return our past determination. */
5120 if (switches
[switchnum
].live_cond
!= 0)
5121 return switches
[switchnum
].live_cond
> 0;
5123 /* Now search for duplicate in a manner that depends on the name. */
5127 for (i
= switchnum
+ 1; i
< n_switches
; i
++)
5128 if (switches
[i
].part1
[0] == 'O')
5130 switches
[switchnum
].validated
= 1;
5131 switches
[switchnum
].live_cond
= SWITCH_FALSE
;
5136 case 'W': case 'f': case 'm':
5137 if (! strncmp (name
+ 1, "no-", 3))
5139 /* We have Xno-YYY, search for XYYY. */
5140 for (i
= switchnum
+ 1; i
< n_switches
; i
++)
5141 if (switches
[i
].part1
[0] == name
[0]
5142 && ! strcmp (&switches
[i
].part1
[1], &name
[4]))
5144 switches
[switchnum
].validated
= 1;
5145 switches
[switchnum
].live_cond
= SWITCH_FALSE
;
5151 /* We have XYYY, search for Xno-YYY. */
5152 for (i
= switchnum
+ 1; i
< n_switches
; i
++)
5153 if (switches
[i
].part1
[0] == name
[0]
5154 && switches
[i
].part1
[1] == 'n'
5155 && switches
[i
].part1
[2] == 'o'
5156 && switches
[i
].part1
[3] == '-'
5157 && !strcmp (&switches
[i
].part1
[4], &name
[1]))
5159 switches
[switchnum
].validated
= 1;
5160 switches
[switchnum
].live_cond
= SWITCH_FALSE
;
5167 /* Otherwise the switch is live. */
5168 switches
[switchnum
].live_cond
= SWITCH_LIVE
;
5172 /* Pass a switch to the current accumulating command
5173 in the same form that we received it.
5174 SWITCHNUM identifies the switch; it is an index into
5175 the vector of switches gcc received, which is `switches'.
5176 This cannot fail since it never finishes a command line.
5178 If OMIT_FIRST_WORD is nonzero, then we omit .part1 of the argument.
5180 If INCLUDE_BLANKS is nonzero, then we include blanks before each argument
5184 give_switch (switchnum
, omit_first_word
, include_blanks
)
5186 int omit_first_word
;
5189 if (switches
[switchnum
].live_cond
== SWITCH_IGNORE
)
5192 if (!omit_first_word
)
5194 do_spec_1 ("-", 0, NULL_PTR
);
5195 do_spec_1 (switches
[switchnum
].part1
, 1, NULL_PTR
);
5198 if (switches
[switchnum
].args
!= 0)
5201 for (p
= switches
[switchnum
].args
; *p
; p
++)
5203 const char *arg
= *p
;
5206 do_spec_1 (" ", 0, NULL_PTR
);
5209 unsigned length
= strlen (arg
);
5211 while (length
-- && !IS_DIR_SEPARATOR (arg
[length
]))
5212 if (arg
[length
] == '.')
5214 ((char *)arg
)[length
] = 0;
5217 do_spec_1 (arg
, 1, NULL_PTR
);
5220 ((char *)arg
)[length
] = '.';
5221 do_spec_1 (suffix_subst
, 1, NULL_PTR
);
5225 do_spec_1 (arg
, 1, NULL_PTR
);
5229 do_spec_1 (" ", 0, NULL_PTR
);
5230 switches
[switchnum
].validated
= 1;
5233 /* Search for a file named NAME trying various prefixes including the
5234 user's -B prefix and some standard ones.
5235 Return the absolute file name found. If nothing is found, return NAME. */
5243 /* Try multilib_dir if it is defined. */
5244 if (multilib_dir
!= NULL
)
5248 try = (char *) alloca (strlen (multilib_dir
) + strlen (name
) + 2);
5249 strcpy (try, multilib_dir
);
5250 strcat (try, dir_separator_str
);
5253 newname
= find_a_file (&startfile_prefixes
, try, R_OK
);
5255 /* If we don't find it in the multi library dir, then fall
5256 through and look for it in the normal places. */
5257 if (newname
!= NULL
)
5261 newname
= find_a_file (&startfile_prefixes
, name
, R_OK
);
5262 return newname
? newname
: name
;
5265 /* Determine whether a directory exists. If LINKER, return 0 for
5266 certain fixed names not needed by the linker. If not LINKER, it is
5267 only important to return 0 if the host machine has a small ARG_MAX
5271 is_directory (path1
, path2
, linker
)
5276 int len1
= strlen (path1
);
5277 int len2
= strlen (path2
);
5278 char *path
= (char *) alloca (3 + len1
+ len2
);
5282 #ifndef SMALL_ARG_MAX
5287 /* Construct the path from the two parts. Ensure the string ends with "/.".
5288 The resulting path will be a directory even if the given path is a
5290 memcpy (path
, path1
, len1
);
5291 memcpy (path
+ len1
, path2
, len2
);
5292 cp
= path
+ len1
+ len2
;
5293 if (!IS_DIR_SEPARATOR (cp
[-1]))
5294 *cp
++ = DIR_SEPARATOR
;
5298 /* Exclude directories that the linker is known to search. */
5301 && strcmp (path
, concat (dir_separator_str
, "lib",
5302 dir_separator_str
, ".", NULL_PTR
)) == 0)
5304 && strcmp (path
, concat (dir_separator_str
, "usr",
5305 dir_separator_str
, "lib",
5306 dir_separator_str
, ".", NULL_PTR
)) == 0)))
5309 return (stat (path
, &st
) >= 0 && S_ISDIR (st
.st_mode
));
5312 /* Set up the various global variables to indicate that we're processing
5313 the input file named FILENAME. */
5316 set_input (filename
)
5317 const char *filename
;
5319 register const char *p
;
5321 input_filename
= filename
;
5322 input_filename_length
= strlen (input_filename
);
5324 input_basename
= input_filename
;
5325 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
5326 /* Skip drive name so 'x:foo' is handled properly. */
5327 if (input_basename
[1] == ':')
5328 input_basename
+= 2;
5330 for (p
= input_basename
; *p
; p
++)
5331 if (IS_DIR_SEPARATOR (*p
))
5332 input_basename
= p
+ 1;
5334 /* Find a suffix starting with the last period,
5335 and set basename_length to exclude that suffix. */
5336 basename_length
= strlen (input_basename
);
5337 suffixed_basename_length
= basename_length
;
5338 p
= input_basename
+ basename_length
;
5339 while (p
!= input_basename
&& *p
!= '.')
5341 if (*p
== '.' && p
!= input_basename
)
5343 basename_length
= p
- input_basename
;
5344 input_suffix
= p
+ 1;
5350 /* On fatal signals, delete all the temporary files. */
5353 fatal_error (signum
)
5356 signal (signum
, SIG_DFL
);
5357 delete_failure_queue ();
5358 delete_temp_files ();
5359 /* Get the same signal again, this time not handled,
5360 so its normal effect occurs. */
5361 kill (getpid (), signum
);
5364 extern int main
PARAMS ((int, const char *const *));
5369 const char *const *argv
;
5373 int linker_was_run
= 0;
5374 char *explicit_link_files
;
5377 struct user_specs
*uptr
;
5379 p
= argv
[0] + strlen (argv
[0]);
5380 while (p
!= argv
[0] && !IS_DIR_SEPARATOR (p
[-1]))
5384 xmalloc_set_program_name (programname
);
5386 #ifdef GCC_DRIVER_HOST_INITIALIZATION
5387 /* Perform host dependant initialization when needed. */
5388 GCC_DRIVER_HOST_INITIALIZATION
;
5391 /* LC_CTYPE determines the character set used by the terminal so it has be set
5392 to output messages correctly. */
5394 #ifdef HAVE_LC_MESSAGES
5395 setlocale (LC_CTYPE
, "");
5396 setlocale (LC_MESSAGES
, "");
5398 setlocale (LC_ALL
, "");
5401 (void) bindtextdomain (PACKAGE
, localedir
);
5402 (void) textdomain (PACKAGE
);
5404 if (signal (SIGINT
, SIG_IGN
) != SIG_IGN
)
5405 signal (SIGINT
, fatal_error
);
5407 if (signal (SIGHUP
, SIG_IGN
) != SIG_IGN
)
5408 signal (SIGHUP
, fatal_error
);
5410 if (signal (SIGTERM
, SIG_IGN
) != SIG_IGN
)
5411 signal (SIGTERM
, fatal_error
);
5413 if (signal (SIGPIPE
, SIG_IGN
) != SIG_IGN
)
5414 signal (SIGPIPE
, fatal_error
);
5418 argbuf
= (const char **) xmalloc (argbuf_length
* sizeof (const char *));
5420 obstack_init (&obstack
);
5422 /* Build multilib_select, et. al from the separate lines that make up each
5423 multilib selection. */
5425 const char *const *q
= multilib_raw
;
5428 obstack_init (&multilib_obstack
);
5429 while ((p
= *q
++) != (char *) 0)
5430 obstack_grow (&multilib_obstack
, p
, strlen (p
));
5432 obstack_1grow (&multilib_obstack
, 0);
5433 multilib_select
= obstack_finish (&multilib_obstack
);
5435 q
= multilib_matches_raw
;
5436 while ((p
= *q
++) != (char *) 0)
5437 obstack_grow (&multilib_obstack
, p
, strlen (p
));
5439 obstack_1grow (&multilib_obstack
, 0);
5440 multilib_matches
= obstack_finish (&multilib_obstack
);
5442 q
= multilib_exclusions_raw
;
5443 while ((p
= *q
++) != (char *) 0)
5444 obstack_grow (&multilib_obstack
, p
, strlen (p
));
5446 obstack_1grow (&multilib_obstack
, 0);
5447 multilib_exclusions
= obstack_finish (&multilib_obstack
);
5450 for (i
= 0; i
< ARRAY_SIZE (multilib_defaults_raw
); i
++)
5453 obstack_1grow (&multilib_obstack
, ' ');
5454 obstack_grow (&multilib_obstack
,
5455 multilib_defaults_raw
[i
],
5456 strlen (multilib_defaults_raw
[i
]));
5460 obstack_1grow (&multilib_obstack
, 0);
5461 multilib_defaults
= obstack_finish (&multilib_obstack
);
5464 /* Set up to remember the pathname of gcc and any options
5465 needed for collect. We use argv[0] instead of programname because
5466 we need the complete pathname. */
5467 obstack_init (&collect_obstack
);
5468 obstack_grow (&collect_obstack
, "COLLECT_GCC=", sizeof ("COLLECT_GCC=") - 1);
5469 obstack_grow (&collect_obstack
, argv
[0], strlen (argv
[0]) + 1);
5470 putenv (obstack_finish (&collect_obstack
));
5472 #ifdef INIT_ENVIRONMENT
5473 /* Set up any other necessary machine specific environment variables. */
5474 putenv (INIT_ENVIRONMENT
);
5477 /* Make a table of what switches there are (switches, n_switches).
5478 Make a table of specified input files (infiles, n_infiles).
5479 Decode switches that are handled locally. */
5481 process_command (argc
, argv
);
5486 /* Build COLLECT_GCC_OPTIONS to have all of the options specified to
5488 obstack_grow (&collect_obstack
, "COLLECT_GCC_OPTIONS=",
5489 sizeof ("COLLECT_GCC_OPTIONS=") - 1);
5492 for (i
= 0; (int) i
< n_switches
; i
++)
5494 const char *const *args
;
5497 obstack_grow (&collect_obstack
, " ", 1);
5500 obstack_grow (&collect_obstack
, "'-", 2);
5501 q
= switches
[i
].part1
;
5502 while ((p
= strchr (q
, '\'')))
5504 obstack_grow (&collect_obstack
, q
, p
- q
);
5505 obstack_grow (&collect_obstack
, "'\\''", 4);
5508 obstack_grow (&collect_obstack
, q
, strlen (q
));
5509 obstack_grow (&collect_obstack
, "'", 1);
5511 for (args
= switches
[i
].args
; args
&& *args
; args
++)
5513 obstack_grow (&collect_obstack
, " '", 2);
5515 while ((p
= strchr (q
, '\'')))
5517 obstack_grow (&collect_obstack
, q
, p
- q
);
5518 obstack_grow (&collect_obstack
, "'\\''", 4);
5521 obstack_grow (&collect_obstack
, q
, strlen (q
));
5522 obstack_grow (&collect_obstack
, "'", 1);
5525 obstack_grow (&collect_obstack
, "\0", 1);
5526 putenv (obstack_finish (&collect_obstack
));
5529 /* Initialize the vector of specs to just the default.
5530 This means one element containing 0s, as a terminator. */
5532 compilers
= (struct compiler
*) xmalloc (sizeof default_compilers
);
5533 memcpy ((char *) compilers
, (char *) default_compilers
,
5534 sizeof default_compilers
);
5535 n_compilers
= n_default_compilers
;
5537 /* Read specs from a file if there is one. */
5539 machine_suffix
= concat (spec_machine
, dir_separator_str
,
5540 spec_version
, dir_separator_str
, NULL_PTR
);
5541 just_machine_suffix
= concat (spec_machine
, dir_separator_str
, NULL_PTR
);
5543 specs_file
= find_a_file (&startfile_prefixes
, "specs", R_OK
);
5544 /* Read the specs file unless it is a default one. */
5545 if (specs_file
!= 0 && strcmp (specs_file
, "specs"))
5546 read_specs (specs_file
, TRUE
);
5550 /* We need to check standard_exec_prefix/just_machine_suffix/specs
5551 for any override of as, ld and libraries. */
5552 specs_file
= (char *) alloca (strlen (standard_exec_prefix
)
5553 + strlen (just_machine_suffix
)
5554 + sizeof ("specs"));
5556 strcpy (specs_file
, standard_exec_prefix
);
5557 strcat (specs_file
, just_machine_suffix
);
5558 strcat (specs_file
, "specs");
5559 if (access (specs_file
, R_OK
) == 0)
5560 read_specs (specs_file
, TRUE
);
5562 /* If not cross-compiling, look for startfiles in the standard places. */
5563 if (*cross_compile
== '0')
5565 if (*md_exec_prefix
)
5567 add_prefix (&exec_prefixes
, md_exec_prefix
, "GCC",
5568 PREFIX_PRIORITY_LAST
, 0, NULL_PTR
);
5569 add_prefix (&startfile_prefixes
, md_exec_prefix
, "GCC",
5570 PREFIX_PRIORITY_LAST
, 0, NULL_PTR
);
5573 if (*md_startfile_prefix
)
5574 add_prefix (&startfile_prefixes
, md_startfile_prefix
, "GCC",
5575 PREFIX_PRIORITY_LAST
, 0, NULL_PTR
);
5577 if (*md_startfile_prefix_1
)
5578 add_prefix (&startfile_prefixes
, md_startfile_prefix_1
, "GCC",
5579 PREFIX_PRIORITY_LAST
, 0, NULL_PTR
);
5581 /* If standard_startfile_prefix is relative, base it on
5582 standard_exec_prefix. This lets us move the installed tree
5583 as a unit. If GCC_EXEC_PREFIX is defined, base
5584 standard_startfile_prefix on that as well. */
5585 if (IS_ABSOLUTE_PATHNAME (standard_startfile_prefix
))
5586 add_prefix (&startfile_prefixes
, standard_startfile_prefix
, "BINUTILS",
5587 PREFIX_PRIORITY_LAST
, 0, NULL_PTR
);
5590 if (gcc_exec_prefix
)
5591 add_prefix (&startfile_prefixes
,
5592 concat (gcc_exec_prefix
, machine_suffix
,
5593 standard_startfile_prefix
, NULL_PTR
),
5594 NULL_PTR
, PREFIX_PRIORITY_LAST
, 0, NULL_PTR
);
5595 add_prefix (&startfile_prefixes
,
5596 concat (standard_exec_prefix
,
5598 standard_startfile_prefix
, NULL_PTR
),
5599 NULL_PTR
, PREFIX_PRIORITY_LAST
, 0, NULL_PTR
);
5602 add_prefix (&startfile_prefixes
, standard_startfile_prefix_1
,
5603 "BINUTILS", PREFIX_PRIORITY_LAST
, 0, NULL_PTR
);
5604 add_prefix (&startfile_prefixes
, standard_startfile_prefix_2
,
5605 "BINUTILS", PREFIX_PRIORITY_LAST
, 0, NULL_PTR
);
5606 #if 0 /* Can cause surprises, and one can use -B./ instead. */
5607 add_prefix (&startfile_prefixes
, "./", NULL_PTR
,
5608 PREFIX_PRIORITY_LAST
, 1, NULL_PTR
);
5613 if (!IS_ABSOLUTE_PATHNAME (standard_startfile_prefix
)
5615 add_prefix (&startfile_prefixes
,
5616 concat (gcc_exec_prefix
, machine_suffix
,
5617 standard_startfile_prefix
, NULL_PTR
),
5618 "BINUTILS", PREFIX_PRIORITY_LAST
, 0, NULL_PTR
);
5621 /* Process any user specified specs in the order given on the command
5623 for (uptr
= user_specs_head
; uptr
; uptr
= uptr
->next
)
5625 char *filename
= find_a_file (&startfile_prefixes
, uptr
->filename
, R_OK
);
5626 read_specs (filename
? filename
: uptr
->filename
, FALSE
);
5629 /* If we have a GCC_EXEC_PREFIX envvar, modify it for cpp's sake. */
5630 if (gcc_exec_prefix
)
5632 char *temp
= (char *) xmalloc (strlen (gcc_exec_prefix
)
5633 + strlen (spec_version
)
5634 + strlen (spec_machine
) + 3);
5635 strcpy (temp
, gcc_exec_prefix
);
5636 strcat (temp
, spec_machine
);
5637 strcat (temp
, dir_separator_str
);
5638 strcat (temp
, spec_version
);
5639 strcat (temp
, dir_separator_str
);
5640 gcc_exec_prefix
= temp
;
5643 /* Now we have the specs.
5644 Set the `valid' bits for switches that match anything in any spec. */
5646 validate_all_switches ();
5648 /* Now that we have the switches and the specs, set
5649 the subdirectory based on the options. */
5650 set_multilib_dir ();
5652 /* Warn about any switches that no pass was interested in. */
5654 for (i
= 0; (int) i
< n_switches
; i
++)
5655 if (! switches
[i
].validated
)
5656 error ("unrecognized option `-%s'", switches
[i
].part1
);
5658 /* Obey some of the options. */
5660 if (print_search_dirs
)
5662 printf (_("install: %s%s\n"), standard_exec_prefix
, machine_suffix
);
5663 printf (_("programs: %s\n"), build_search_list (&exec_prefixes
, "", 0));
5664 printf (_("libraries: %s\n"), build_search_list (&startfile_prefixes
, "", 0));
5668 if (print_file_name
)
5670 printf ("%s\n", find_file (print_file_name
));
5674 if (print_prog_name
)
5676 char *newname
= find_a_file (&exec_prefixes
, print_prog_name
, X_OK
);
5677 printf ("%s\n", (newname
? newname
: print_prog_name
));
5681 if (print_multi_lib
)
5683 print_multilib_info ();
5687 if (print_multi_directory
)
5689 if (multilib_dir
== NULL
)
5692 printf ("%s\n", multilib_dir
);
5696 if (target_help_flag
)
5698 /* Print if any target specific options.*/
5700 /* We do not exit here. Instead we have created a fake input file
5701 called 'target-dummy' which needs to be compiled, and we pass this
5702 on to the various sub-processes, along with the --target-help
5706 if (print_help_list
)
5712 printf (_("\nFor bug reporting instructions, please see:\n"));
5713 printf ("%s.\n", GCCBUGURL
);
5718 /* We do not exit here. Instead we have created a fake input file
5719 called 'help-dummy' which needs to be compiled, and we pass this
5720 on the the various sub-processes, along with the --help switch. */
5727 notice ("Configured with: %s\n", configuration_arguments
);
5729 /* compiler_version is truncated at the first space when initialized
5730 from version string, so truncate version_string at the first space
5731 before comparing. */
5732 for (n
= 0; version_string
[n
]; n
++)
5733 if (version_string
[n
] == ' ')
5736 if (! strncmp (version_string
, compiler_version
, n
)
5737 && compiler_version
[n
] == 0)
5738 notice ("gcc version %s\n", version_string
);
5740 notice ("gcc driver version %s executing gcc version %s\n",
5741 version_string
, compiler_version
);
5747 if (n_infiles
== added_libraries
)
5748 fatal ("No input files");
5750 /* Make a place to record the compiler output file names
5751 that correspond to the input files. */
5754 i
+= lang_specific_extra_outfiles
;
5755 outfiles
= (const char **) xcalloc (i
, sizeof (char *));
5757 /* Record which files were specified explicitly as link input. */
5759 explicit_link_files
= xcalloc (1, n_infiles
);
5761 for (i
= 0; (int) i
< n_infiles
; i
++)
5763 register struct compiler
*cp
= 0;
5764 int this_file_error
= 0;
5766 /* Tell do_spec what to substitute for %i. */
5768 input_file_number
= i
;
5769 set_input (infiles
[i
].name
);
5771 /* Use the same thing in %o, unless cp->spec says otherwise. */
5773 outfiles
[i
] = input_filename
;
5775 /* Figure out which compiler from the file's suffix. */
5777 cp
= lookup_compiler (infiles
[i
].name
, input_filename_length
,
5778 infiles
[i
].language
);
5782 /* Ok, we found an applicable compiler. Run its spec. */
5784 if (cp
->spec
[0] == '#')
5785 error ("%s: %s compiler not installed on this system",
5786 input_filename
, &cp
->spec
[1]);
5787 value
= do_spec (cp
->spec
);
5789 this_file_error
= 1;
5792 /* If this file's name does not contain a recognized suffix,
5793 record it as explicit linker input. */
5796 explicit_link_files
[i
] = 1;
5798 /* Clear the delete-on-failure queue, deleting the files in it
5799 if this compilation failed. */
5801 if (this_file_error
)
5803 delete_failure_queue ();
5806 /* If this compilation succeeded, don't delete those files later. */
5807 clear_failure_queue ();
5810 /* Reset the output file name to the first input file name, for use
5811 with %b in LINK_SPEC on a target that prefers not to emit a.out
5814 set_input (infiles
[0].name
);
5816 if (error_count
== 0)
5818 /* Make sure INPUT_FILE_NUMBER points to first available open
5820 input_file_number
= n_infiles
;
5821 if (lang_specific_pre_link ())
5825 /* Run ld to link all the compiler output files. */
5827 if (error_count
== 0)
5829 int tmp
= execution_count
;
5831 /* We'll use ld if we can't find collect2. */
5832 if (! strcmp (linker_name_spec
, "collect2"))
5834 char *s
= find_a_file (&exec_prefixes
, "collect2", X_OK
);
5836 linker_name_spec
= "ld";
5838 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
5840 putenv_from_prefixes (&exec_prefixes
, "COMPILER_PATH");
5841 putenv_from_prefixes (&startfile_prefixes
, LIBRARY_PATH_ENV
);
5843 value
= do_spec (link_command_spec
);
5846 linker_was_run
= (tmp
!= execution_count
);
5849 /* If options said don't run linker,
5850 complain about input files to be given to the linker. */
5852 if (! linker_was_run
&& error_count
== 0)
5853 for (i
= 0; (int) i
< n_infiles
; i
++)
5854 if (explicit_link_files
[i
])
5855 error ("%s: linker input file unused because linking not done",
5858 /* Delete some or all of the temporary files we made. */
5861 delete_failure_queue ();
5862 delete_temp_files ();
5864 if (print_help_list
)
5866 printf (("\nFor bug reporting instructions, please see:\n"));
5867 printf ("%s\n", GCCBUGURL
);
5870 return (signal_count
!= 0 ? 2
5871 : error_count
> 0 ? (pass_exit_codes
? greatest_status
: 1)
5875 /* Find the proper compilation spec for the file name NAME,
5876 whose length is LENGTH. LANGUAGE is the specified language,
5877 or 0 if this file is to be passed to the linker. */
5879 static struct compiler
*
5880 lookup_compiler (name
, length
, language
)
5883 const char *language
;
5885 struct compiler
*cp
;
5887 /* If this was specified by the user to be a linker input, indicate that. */
5888 if (language
!= 0 && language
[0] == '*')
5891 /* Otherwise, look for the language, if one is spec'd. */
5894 for (cp
= compilers
+ n_compilers
- 1; cp
>= compilers
; cp
--)
5895 if (cp
->suffix
[0] == '@' && !strcmp (cp
->suffix
+ 1, language
))
5898 error ("language %s not recognized", language
);
5902 /* Look for a suffix. */
5903 for (cp
= compilers
+ n_compilers
- 1; cp
>= compilers
; cp
--)
5905 if (/* The suffix `-' matches only the file name `-'. */
5906 (!strcmp (cp
->suffix
, "-") && !strcmp (name
, "-"))
5907 || (strlen (cp
->suffix
) < length
5908 /* See if the suffix matches the end of NAME. */
5909 && !strcmp (cp
->suffix
,
5910 name
+ length
- strlen (cp
->suffix
))
5915 #if defined (OS2) ||defined (HAVE_DOS_BASED_FILE_SYSTEM)
5916 /* look again, but case-insensitively this time. */
5918 for (cp
= compilers
+ n_compilers
- 1; cp
>= compilers
; cp
--)
5920 if (/* The suffix `-' matches only the file name `-'. */
5921 (!strcmp (cp
->suffix
, "-") && !strcmp (name
, "-"))
5922 || (strlen (cp
->suffix
) < length
5923 /* See if the suffix matches the end of NAME. */
5924 && ((!strcmp (cp
->suffix
,
5925 name
+ length
- strlen (cp
->suffix
))
5926 || !strpbrk (cp
->suffix
, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"))
5927 && !strcasecmp (cp
->suffix
,
5928 name
+ length
- strlen (cp
->suffix
)))
5934 if (cp
>= compilers
)
5936 if (cp
->spec
[0] != '@')
5937 /* A non-alias entry: return it. */
5940 /* An alias entry maps a suffix to a language.
5941 Search for the language; pass 0 for NAME and LENGTH
5942 to avoid infinite recursion if language not found. */
5943 return lookup_compiler (NULL_PTR
, 0, cp
->spec
+ 1);
5949 save_string (s
, len
)
5953 register char *result
= xmalloc (len
+ 1);
5955 memcpy (result
, s
, len
);
5961 pfatal_with_name (name
)
5964 perror_with_name (name
);
5965 delete_temp_files ();
5970 perror_with_name (name
)
5973 error ("%s: %s", name
, xstrerror (errno
));
5977 pfatal_pexecute (errmsg_fmt
, errmsg_arg
)
5978 const char *errmsg_fmt
;
5979 const char *errmsg_arg
;
5983 int save_errno
= errno
;
5985 /* Space for trailing '\0' is in %s. */
5986 char *msg
= xmalloc (strlen (errmsg_fmt
) + strlen (errmsg_arg
));
5987 sprintf (msg
, errmsg_fmt
, errmsg_arg
);
5993 pfatal_with_name (errmsg_fmt
);
5996 /* Output an error message and exit */
6001 fatal ("Internal gcc abort.");
6004 /* Output an error message and exit */
6007 fatal
VPARAMS ((const char *msgid
, ...))
6009 #ifndef ANSI_PROTOTYPES
6014 VA_START (ap
, msgid
);
6016 #ifndef ANSI_PROTOTYPES
6017 msgid
= va_arg (ap
, const char *);
6020 fprintf (stderr
, "%s: ", programname
);
6021 vfprintf (stderr
, _(msgid
), ap
);
6023 fprintf (stderr
, "\n");
6024 delete_temp_files ();
6029 error
VPARAMS ((const char *msgid
, ...))
6031 #ifndef ANSI_PROTOTYPES
6036 VA_START (ap
, msgid
);
6038 #ifndef ANSI_PROTOTYPES
6039 msgid
= va_arg (ap
, const char *);
6042 fprintf (stderr
, "%s: ", programname
);
6043 vfprintf (stderr
, _(msgid
), ap
);
6046 fprintf (stderr
, "\n");
6050 notice
VPARAMS ((const char *msgid
, ...))
6052 #ifndef ANSI_PROTOTYPES
6057 VA_START (ap
, msgid
);
6059 #ifndef ANSI_PROTOTYPES
6060 msgid
= va_arg (ap
, const char *);
6063 vfprintf (stderr
, _(msgid
), ap
);
6068 validate_all_switches ()
6070 struct compiler
*comp
;
6071 register const char *p
;
6073 struct spec_list
*spec
;
6075 for (comp
= compilers
; comp
->spec
; comp
++)
6079 if (c
== '%' && *p
== '{')
6080 /* We have a switch spec. */
6081 validate_switches (p
+ 1);
6084 /* Look through the linked list of specs read from the specs file. */
6085 for (spec
= specs
; spec
; spec
= spec
->next
)
6087 p
= *(spec
->ptr_spec
);
6089 if (c
== '%' && *p
== '{')
6090 /* We have a switch spec. */
6091 validate_switches (p
+ 1);
6094 p
= link_command_spec
;
6096 if (c
== '%' && *p
== '{')
6097 /* We have a switch spec. */
6098 validate_switches (p
+ 1);
6101 /* Look at the switch-name that comes after START
6102 and mark as valid all supplied switches that match it. */
6105 validate_switches (start
)
6108 register const char *p
= start
;
6125 while (*p
!= ':' && *p
!= '}' && *p
!= '|' && *p
!= '&')
6130 else if (p
[-1] == '*')
6132 /* Mark all matching switches as valid. */
6133 for (i
= 0; i
< n_switches
; i
++)
6134 if (!strncmp (switches
[i
].part1
, filter
, p
- filter
- 1))
6135 switches
[i
].validated
= 1;
6139 /* Mark an exact matching switch as valid. */
6140 for (i
= 0; i
< n_switches
; i
++)
6142 if (!strncmp (switches
[i
].part1
, filter
, p
- filter
)
6143 && switches
[i
].part1
[p
- filter
] == 0)
6144 switches
[i
].validated
= 1;
6148 if (*p
++ == '|' || p
[-1] == '&')
6152 /* Check whether a particular argument was used. The first time we
6153 canonicalize the switches to keep only the ones we care about. */
6163 const char *replace
;
6168 static struct mswitchstr
*mswitches
;
6169 static int n_mswitches
;
6174 struct mswitchstr
*matches
;
6178 /* Break multilib_matches into the component strings of string
6179 and replacement string. */
6180 for (q
= multilib_matches
; *q
!= '\0'; q
++)
6185 (struct mswitchstr
*) alloca ((sizeof (struct mswitchstr
)) * cnt
);
6187 q
= multilib_matches
;
6197 matches
[i
].len
= q
- matches
[i
].str
;
6199 matches
[i
].replace
= ++q
;
6200 while (*q
!= ';' && *q
!= '\0')
6206 matches
[i
].rep_len
= q
- matches
[i
].replace
;
6212 /* Now build a list of the replacement string for switches that we care
6213 about. Make sure we allocate at least one entry. This prevents
6214 xmalloc from calling fatal, and prevents us from re-executing this
6217 = (struct mswitchstr
*) xmalloc ((sizeof (struct mswitchstr
))
6218 * (n_switches
? n_switches
: 1));
6219 for (i
= 0; i
< n_switches
; i
++)
6221 int xlen
= strlen (switches
[i
].part1
);
6222 for (j
= 0; j
< cnt
; j
++)
6223 if (xlen
== matches
[j
].len
6224 && ! strncmp (switches
[i
].part1
, matches
[j
].str
, xlen
))
6226 mswitches
[n_mswitches
].str
= matches
[j
].replace
;
6227 mswitches
[n_mswitches
].len
= matches
[j
].rep_len
;
6228 mswitches
[n_mswitches
].replace
= (char *) 0;
6229 mswitches
[n_mswitches
].rep_len
= 0;
6236 for (i
= 0; i
< n_mswitches
; i
++)
6237 if (len
== mswitches
[i
].len
&& ! strncmp (p
, mswitches
[i
].str
, len
))
6244 default_arg (p
, len
)
6248 const char *start
, *end
;
6250 for (start
= multilib_defaults
; *start
!= '\0'; start
= end
+ 1)
6252 while (*start
== ' ' || *start
== '\t')
6258 for (end
= start
+ 1; *end
!= ' ' && *end
!= '\t' && *end
!= '\0'; end
++)
6261 if ((end
- start
) == len
&& strncmp (p
, start
, len
) == 0)
6271 /* Work out the subdirectory to use based on the options. The format of
6272 multilib_select is a list of elements. Each element is a subdirectory
6273 name followed by a list of options followed by a semicolon. The format
6274 of multilib_exclusions is the same, but without the preceding
6275 directory. First gcc will check the exclusions, if none of the options
6276 beginning with an exclamation point are present, and all of the other
6277 options are present, then we will ignore this completely. Passing
6278 that, gcc will consider each multilib_select in turn using the same
6279 rules for matching the options. If a match is found, that subdirectory
6286 unsigned int this_path_len
;
6287 const char *this_path
, *this_arg
;
6291 p
= multilib_exclusions
;
6294 /* Ignore newlines. */
6301 /* Check the arguments. */
6315 while (*p
!= ' ' && *p
!= ';')
6322 if (*this_arg
!= '!')
6330 ok
= used_arg (this_arg
, p
- this_arg
);
6344 p
= multilib_select
;
6347 /* Ignore newlines. */
6354 /* Get the initial path. */
6362 this_path_len
= p
- this_path
;
6364 /* Check the arguments. */
6379 while (*p
!= ' ' && *p
!= ';')
6386 if (*this_arg
!= '!')
6394 /* If this is a default argument, we can just ignore it.
6395 This is true even if this_arg begins with '!'. Beginning
6396 with '!' does not mean that this argument is necessarily
6397 inappropriate for this library: it merely means that
6398 there is a more specific library which uses this
6399 argument. If this argument is a default, we need not
6400 consider that more specific library. */
6401 if (! default_arg (this_arg
, p
- this_arg
))
6403 ok
= used_arg (this_arg
, p
- this_arg
);
6414 if (this_path_len
!= 1
6415 || this_path
[0] != '.')
6417 char *new_multilib_dir
= xmalloc (this_path_len
+ 1);
6418 strncpy (new_multilib_dir
, this_path
, this_path_len
);
6419 new_multilib_dir
[this_path_len
] = '\0';
6420 multilib_dir
= new_multilib_dir
;
6429 /* Print out the multiple library subdirectory selection
6430 information. This prints out a series of lines. Each line looks
6431 like SUBDIRECTORY;@OPTION@OPTION, with as many options as is
6432 required. Only the desired options are printed out, the negative
6433 matches. The options are print without a leading dash. There are
6434 no spaces to make it easy to use the information in the shell.
6435 Each subdirectory is printed only once. This assumes the ordering
6436 generated by the genmultilib script. Also, we leave out ones that match
6440 print_multilib_info ()
6442 const char *p
= multilib_select
;
6443 const char *last_path
= 0, *this_path
;
6445 unsigned int last_path_len
= 0;
6450 /* Ignore newlines. */
6457 /* Get the initial path. */
6466 /* Check for matches with the multilib_exclusions. We don't bother
6467 with the '!' in either list. If any of the exclusion rules match
6468 all of its options with the select rule, we skip it. */
6470 const char *e
= multilib_exclusions
;
6471 const char *this_arg
;
6476 /* Ignore newlines. */
6483 /* Check the arguments. */
6500 while (*e
!= ' ' && *e
!= ';')
6511 int len
= e
- this_arg
;
6518 while (*q
!= ' ' && *q
!= ';')
6525 if (! strncmp (arg
, this_arg
, (len
< q
- arg
) ? q
- arg
: len
) ||
6526 default_arg (this_arg
, e
- this_arg
))
6556 /* If this is a duplicate, skip it. */
6557 skip
= (last_path
!= 0 && (unsigned int) (p
- this_path
) == last_path_len
6558 && ! strncmp (last_path
, this_path
, last_path_len
));
6560 last_path
= this_path
;
6561 last_path_len
= p
- this_path
;
6564 /* If this directory requires any default arguments, we can skip
6565 it. We will already have printed a directory identical to
6566 this one which does not require that default argument. */
6584 while (*q
!= ' ' && *q
!= ';')
6592 && default_arg (arg
, q
- arg
))
6607 for (p1
= last_path
; p1
< p
; p1
++)
6626 use_arg
= *p
!= '!';
6631 while (*p
!= ' ' && *p
!= ';')
6646 /* If there are extra options, print them now. */
6647 if (multilib_extra
&& *multilib_extra
)
6649 int print_at
= TRUE
;
6652 for (q
= multilib_extra
; *q
!= '\0'; q
++)