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, 2002 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
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". */
35 /* A Short Introduction to Adding a Command-Line Option.
37 Before adding a command-line option, consider if it is really
38 necessary. Each additional command-line option adds complexity and
39 is difficult to remove in subsequent versions.
41 In the following, consider adding the command-line argument
44 1. Each command-line option is specified in the specs file. The
45 notation is described below in the comment entitled "The Specs
48 2. In this file, add an entry to "option_map" equating the long
49 `--' argument version and any shorter, single letter version. Read
50 the comments in the declaration of "struct option_map" for an
51 explanation. Do not omit the first `-'.
53 3. Look in the "specs" file to determine which program or option
54 list should be given the argument, e.g., "cc1_options". Add the
55 appropriate syntax for the shorter option version to the
56 corresponding "const char *" entry in this file. Omit the first
57 `-' from the option. For example, use `-bar', rather than `--bar'.
59 4. If the argument takes an argument, e.g., `--baz argument1',
60 modify either DEFAULT_SWITCH_TAKES_ARG or
61 DEFAULT_WORD_SWITCH_TAKES_ARG in this file. Omit the first `-'
64 5. Document the option in this file's display_help(). If the
65 option is passed to a subprogram, modify its corresponding
66 function, e.g., cppinit.c:print_help() or toplev.c:display_help(),
69 6. Compile and test. Make sure that your new specs file is being
70 read. For example, use a debugger to investigate the value of
71 "specs_file" in main(). */
76 #if ! defined( SIGCHLD ) && defined( SIGCLD )
77 # define SIGCHLD SIGCLD
85 #ifdef HAVE_SYS_RESOURCE_H
86 #include <sys/resource.h>
88 #if defined (HAVE_DECL_GETRUSAGE) && !HAVE_DECL_GETRUSAGE
89 extern int getrusage
PARAMS ((int, struct rusage
*));
92 /* By default there is no special suffix for target executables. */
93 /* FIXME: when autoconf is fixed, remove the host check - dj */
94 #if defined(TARGET_EXECUTABLE_SUFFIX) && defined(HOST_EXECUTABLE_SUFFIX)
95 #define HAVE_TARGET_EXECUTABLE_SUFFIX
98 /* By default there is no special suffix for host executables. */
99 #ifdef HOST_EXECUTABLE_SUFFIX
100 #define HAVE_HOST_EXECUTABLE_SUFFIX
102 #define HOST_EXECUTABLE_SUFFIX ""
105 /* By default, the suffix for target object files is ".o". */
106 #ifdef TARGET_OBJECT_SUFFIX
107 #define HAVE_TARGET_OBJECT_SUFFIX
109 #define TARGET_OBJECT_SUFFIX ".o"
113 /* FIXME: the location independence code for VMS is hairier than this,
114 and hasn't been written. */
120 static const char dir_separator_str
[] = { DIR_SEPARATOR
, 0 };
122 /* Most every one is fine with LIBRARY_PATH. For some, it conflicts. */
123 #ifndef LIBRARY_PATH_ENV
124 #define LIBRARY_PATH_ENV "LIBRARY_PATH"
128 #define kill(p,s) raise(s)
131 /* If a stage of compilation returns an exit status >= 1,
132 compilation of that file ceases. */
134 #define MIN_FATAL_STATUS 1
136 /* Flag set by cppspec.c to 1. */
139 /* Flag saying to pass the greatest exit code returned by a sub-process
140 to the calling program. */
141 static int pass_exit_codes
;
143 /* Definition of string containing the arguments given to configure. */
144 #include "configargs.h"
146 /* Flag saying to print the directories gcc will search through looking for
147 programs, libraries, etc. */
149 static int print_search_dirs
;
151 /* Flag saying to print the full filename of this file
152 as found through our usual search mechanism. */
154 static const char *print_file_name
= NULL
;
156 /* As print_file_name, but search for executable file. */
158 static const char *print_prog_name
= NULL
;
160 /* Flag saying to print the relative path we'd use to
161 find libgcc.a given the current compiler flags. */
163 static int print_multi_directory
;
165 /* Flag saying to print the relative path we'd use to
166 find OS libraries given the current compiler flags. */
168 static int print_multi_os_directory
;
170 /* Flag saying to print the list of subdirectories and
171 compiler flags used to select them in a standard form. */
173 static int print_multi_lib
;
175 /* Flag saying to print the command line options understood by gcc and its
178 static int print_help_list
;
180 /* Flag indicating whether we should print the command and arguments */
182 static int verbose_flag
;
184 /* Flag indicating whether we should ONLY print the command and
185 arguments (like verbose_flag) without executing the command.
186 Displayed arguments are quoted so that the generated command
187 line is suitable for execution. This is intended for use in
188 shell scripts to capture the driver-generated command line. */
189 static int verbose_only_flag
;
191 /* Flag indicating to print target specific command line options. */
193 static int target_help_flag
;
195 /* Flag indicating whether we should report subprocess execution times
196 (if this is supported by the system - see pexecute.c). */
198 static int report_times
;
200 /* Nonzero means place this string before uses of /, so that include
201 and library files can be found in an alternate location. */
203 #ifdef TARGET_SYSTEM_ROOT
204 static const char *target_system_root
= TARGET_SYSTEM_ROOT
;
206 static const char *target_system_root
= 0;
209 /* Nonzero means pass the updated target_system_root to the compiler. */
211 static int target_system_root_changed
;
213 /* Nonzero means write "temp" files in source directory
214 and use the source file's name in them, and don't delete them. */
216 static int save_temps_flag
;
218 /* The compiler version. */
220 static const char *compiler_version
;
222 /* The target version specified with -V */
224 static const char *const spec_version
= DEFAULT_TARGET_VERSION
;
226 /* The target machine specified with -b. */
228 static const char *spec_machine
= DEFAULT_TARGET_MACHINE
;
230 /* Nonzero if cross-compiling.
231 When -b is used, the value comes from the `specs' file. */
234 static const char *cross_compile
= "1";
236 static const char *cross_compile
= "0";
239 #ifdef MODIFY_TARGET_NAME
241 /* Information on how to alter the target name based on a command-line
242 switch. The only case we support now is simply appending or deleting a
243 string to or from the end of the first part of the configuration name. */
245 static const struct modify_target
247 const char *const sw
;
248 const enum add_del
{ADD
, DELETE
} add_del
;
249 const char *const str
;
251 modify_target
[] = MODIFY_TARGET_NAME
;
254 /* The number of errors that have occurred; the link phase will not be
255 run if this is nonzero. */
256 static int error_count
= 0;
258 /* Greatest exit code of sub-processes that has been encountered up to
260 static int greatest_status
= 1;
262 /* This is the obstack which we use to allocate many strings. */
264 static struct obstack obstack
;
266 /* This is the obstack to build an environment variable to pass to
267 collect2 that describes all of the relevant switches of what to
268 pass the compiler in building the list of pointers to constructors
271 static struct obstack collect_obstack
;
273 /* These structs are used to collect resource usage information for
275 #ifdef HAVE_GETRUSAGE
276 static struct rusage rus
, prus
;
279 /* Forward declaration for prototypes. */
282 static void init_spec
PARAMS ((void));
283 static void store_arg
PARAMS ((const char *, int, int));
284 static char *load_specs
PARAMS ((const char *));
285 static void read_specs
PARAMS ((const char *, int));
286 static void set_spec
PARAMS ((const char *, const char *));
287 static struct compiler
*lookup_compiler
PARAMS ((const char *, size_t, const char *));
288 static char *build_search_list
PARAMS ((struct path_prefix
*, const char *, int));
289 static void putenv_from_prefixes
PARAMS ((struct path_prefix
*, const char *));
290 static int access_check
PARAMS ((const char *, int));
291 static char *find_a_file
PARAMS ((struct path_prefix
*, const char *,
293 static void add_prefix
PARAMS ((struct path_prefix
*, const char *,
294 const char *, int, int, int *, int));
295 static void add_sysrooted_prefix
PARAMS ((struct path_prefix
*, const char *,
296 const char *, int, int, int *, int));
297 static void translate_options
PARAMS ((int *, const char *const **));
298 static char *skip_whitespace
PARAMS ((char *));
299 static void delete_if_ordinary
PARAMS ((const char *));
300 static void delete_temp_files
PARAMS ((void));
301 static void delete_failure_queue
PARAMS ((void));
302 static void clear_failure_queue
PARAMS ((void));
303 static int check_live_switch
PARAMS ((int, int));
304 static const char *handle_braces
PARAMS ((const char *));
305 static const struct spec_function
*lookup_spec_function
PARAMS ((const char *));
306 static const char *eval_spec_function
PARAMS ((const char *, const char *));
307 static const char *handle_spec_function
PARAMS ((const char *));
308 static char *save_string
PARAMS ((const char *, int));
309 static void set_collect_gcc_options
PARAMS ((void));
310 static int do_spec_1
PARAMS ((const char *, int, const char *));
311 static int do_spec_2
PARAMS ((const char *));
312 static void do_self_spec
PARAMS ((const char *));
313 static const char *find_file
PARAMS ((const char *));
314 static int is_directory
PARAMS ((const char *, const char *, int));
315 static void validate_switches
PARAMS ((const char *));
316 static void validate_all_switches
PARAMS ((void));
317 static void give_switch
PARAMS ((int, int, int));
318 static int used_arg
PARAMS ((const char *, int));
319 static int default_arg
PARAMS ((const char *, int));
320 static void set_multilib_dir
PARAMS ((void));
321 static void print_multilib_info
PARAMS ((void));
322 static void perror_with_name
PARAMS ((const char *));
323 static void pfatal_pexecute
PARAMS ((const char *, const char *))
325 static void notice
PARAMS ((const char *, ...))
327 static void display_help
PARAMS ((void));
328 static void add_preprocessor_option
PARAMS ((const char *, int));
329 static void add_assembler_option
PARAMS ((const char *, int));
330 static void add_linker_option
PARAMS ((const char *, int));
331 static void process_command
PARAMS ((int, const char *const *));
332 static int execute
PARAMS ((void));
333 static void alloc_args
PARAMS ((void));
334 static void clear_args
PARAMS ((void));
335 static void fatal_error
PARAMS ((int));
336 #ifdef ENABLE_SHARED_LIBGCC
337 static void init_gcc_specs
PARAMS ((struct obstack
*,
338 const char *, const char *,
341 #if defined(HAVE_TARGET_OBJECT_SUFFIX) || defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
342 static const char *convert_filename
PARAMS ((const char *, int, int));
345 static const char *if_exists_spec_function
PARAMS ((int, const char **));
346 static const char *if_exists_else_spec_function
PARAMS ((int, const char **));
348 /* The Specs Language
350 Specs are strings containing lines, each of which (if not blank)
351 is made up of a program name, and arguments separated by spaces.
352 The program name must be exact and start from root, since no path
353 is searched and it is unreliable to depend on the current working directory.
354 Redirection of input or output is not supported; the subprograms must
355 accept filenames saying what files to read and write.
357 In addition, the specs can contain %-sequences to substitute variable text
358 or for conditional text. Here is a table of all defined %-sequences.
359 Note that spaces are not generated automatically around the results of
360 expanding these sequences; therefore, you can concatenate them together
361 or with constant text in a single argument.
363 %% substitute one % into the program name or argument.
364 %i substitute the name of the input file being processed.
365 %b substitute the basename of the input file being processed.
366 This is the substring up to (and not including) the last period
367 and not including the directory.
368 %B same as %b, but include the file suffix (text after the last period).
370 substitute a file name that has suffix SUFFIX and is chosen
371 once per compilation, and mark the argument a la %d. To reduce
372 exposure to denial-of-service attacks, the file name is now
373 chosen in a way that is hard to predict even when previously
374 chosen file names are known. For example, `%g.s ... %g.o ... %g.s'
375 might turn into `ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s'. SUFFIX matches
376 the regexp "[.A-Za-z]*%O"; "%O" is treated exactly as if it
377 had been pre-processed. Previously, %g was simply substituted
378 with a file name chosen once per compilation, without regard
379 to any appended suffix (which was therefore treated just like
380 ordinary text), making such attacks more likely to succeed.
382 like %g, but generates a new temporary file name even if %uSUFFIX
385 substitutes the last file name generated with %uSUFFIX, generating a
386 new one if there is no such last file name. In the absence of any
387 %uSUFFIX, this is just like %gSUFFIX, except they don't share
388 the same suffix "space", so `%g.s ... %U.s ... %g.s ... %U.s'
389 would involve the generation of two distinct file names, one
390 for each `%g.s' and another for each `%U.s'. Previously, %U was
391 simply substituted with a file name chosen for the previous %u,
392 without regard to any appended suffix.
394 substitutes the name of the HOST_BIT_BUCKET, if any, and if it is
395 writable, and if save-temps is off; otherwise, substitute the name
396 of a temporary file, just like %u. This temporary file is not
397 meant for communication between processes, but rather as a junk
400 substitutes .SUFFIX for the suffixes of a matched switch's args when
401 it is subsequently output with %*. SUFFIX is terminated by the next
403 %d marks the argument containing or following the %d as a
404 temporary file name, so that that file will be deleted if CC exits
405 successfully. Unlike %g, this contributes no text to the argument.
406 %w marks the argument containing or following the %w as the
407 "output file" of this compilation. This puts the argument
408 into the sequence of arguments that %o will substitute later.
410 like %{...} but mark last argument supplied within
411 as a file to be deleted on failure.
412 %o substitutes the names of all the output files, with spaces
413 automatically placed around them. You should write spaces
414 around the %o as well or the results are undefined.
415 %o is for use in the specs for running the linker.
416 Input files whose names have no recognized suffix are not compiled
417 at all, but they are included among the output files, so they will
419 %O substitutes the suffix for object files. Note that this is
420 handled specially when it immediately follows %g, %u, or %U
421 (with or without a suffix argument) because of the need for
422 those to form complete file names. The handling is such that
423 %O is treated exactly as if it had already been substituted,
424 except that %g, %u, and %U do not currently support additional
425 SUFFIX characters following %O as they would following, for
427 %p substitutes the standard macro predefinitions for the
428 current target machine. Use this when running cpp.
429 %P like %p, but puts `__' before and after the name of each macro.
430 (Except macros that already have __.)
432 %I Substitute any of -iprefix (made from GCC_EXEC_PREFIX), -isysroot
433 (made from TARGET_SYSTEM_ROOT), and -isystem (made from COMPILER_PATH
434 and -B options) as necessary.
435 %s current argument is the name of a library or startup file of some sort.
436 Search for that file in a standard list of directories
437 and substitute the full name found.
438 %eSTR Print STR as an error message. STR is terminated by a newline.
439 Use this when inconsistent options are detected.
440 %nSTR Print STR as a notice. STR is terminated by a newline.
441 %x{OPTION} Accumulate an option for %X.
442 %X Output the accumulated linker options specified by compilations.
443 %Y Output the accumulated assembler options specified by compilations.
444 %Z Output the accumulated preprocessor options specified by compilations.
445 %v1 Substitute the major version number of GCC.
446 (For version 2.5.3, this is 2.)
447 %v2 Substitute the minor version number of GCC.
448 (For version 2.5.3, this is 5.)
449 %v3 Substitute the patch level number of GCC.
450 (For version 2.5.3, this is 3.)
451 %a process ASM_SPEC as a spec.
452 This allows config.h to specify part of the spec for running as.
453 %A process ASM_FINAL_SPEC as a spec. A capital A is actually
454 used here. This can be used to run a post-processor after the
455 assembler has done its job.
456 %D Dump out a -L option for each directory in startfile_prefixes.
457 If multilib_dir is set, extra entries are generated with it affixed.
458 %l process LINK_SPEC as a spec.
459 %L process LIB_SPEC as a spec.
460 %G process LIBGCC_SPEC as a spec.
461 %M output multilib_dir with directory separators replaced with "_";
462 if multilib_dir is not set or is ".", output "".
463 %S process STARTFILE_SPEC as a spec. A capital S is actually used here.
464 %E process ENDFILE_SPEC as a spec. A capital E is actually used here.
465 %C process CPP_SPEC as a spec.
466 %1 process CC1_SPEC as a spec.
467 %2 process CC1PLUS_SPEC as a spec.
468 %| output "-" if the input for the current command is coming from a pipe.
469 %* substitute the variable part of a matched option. (See below.)
470 Note that each comma in the substituted string is replaced by
473 Call the named function FUNCTION, passing it ARGS. ARGS is
474 first processed as a nested spec string, then split into an
475 argument vector in the usual fashion. The function returns
476 a string which is processed as if it had appeared literally
477 as part of the current spec.
478 %{S} substitutes the -S switch, if that switch was given to CC.
479 If that switch was not specified, this substitutes nothing.
480 Here S is a metasyntactic variable.
481 %{S*} substitutes all the switches specified to CC whose names start
482 with -S. This is used for -o, -I, etc; switches that take
483 arguments. CC considers `-o foo' as being one switch whose
484 name starts with `o'. %{o*} would substitute this text,
485 including the space; thus, two arguments would be generated.
486 %{^S*} likewise, but don't put a blank between a switch and any args.
487 %{S*&T*} likewise, but preserve order of S and T options (the order
488 of S and T in the spec is not significant). Can be any number
489 of ampersand-separated variables; for each the wild card is
490 optional. Useful for CPP as %{D*&U*&A*}.
491 %{S*:X} substitutes X if one or more switches whose names start with -S are
492 specified to CC. Note that the tail part of the -S option
493 (i.e. the part matched by the `*') will be substituted for each
494 occurrence of %* within X.
495 %{<S} remove all occurrences of -S from the command line.
496 Note - this option is position dependent. % commands in the
497 spec string before this option will see -S, % commands in the
498 spec string after this option will not.
499 %{S:X} substitutes X, but only if the -S switch was given to CC.
500 %{!S:X} substitutes X, but only if the -S switch was NOT given to CC.
501 %{|S:X} like %{S:X}, but if no S switch, substitute `-'.
502 %{|!S:X} like %{!S:X}, but if there is an S switch, substitute `-'.
503 %{.S:X} substitutes X, but only if processing a file with suffix S.
504 %{!.S:X} substitutes X, but only if NOT processing a file with suffix S.
505 %{S|P:X} substitutes X if either -S or -P was given to CC. This may be
506 combined with ! and . as above binding stronger than the OR.
507 %(Spec) processes a specification defined in a specs file as *Spec:
508 %[Spec] as above, but put __ around -D arguments
510 The conditional text X in a %{S:X} or %{!S:X} construct may contain
511 other nested % constructs or spaces, or even newlines. They are
512 processed as usual, as described above.
514 The -O, -f, -m, and -W switches are handled specifically in these
515 constructs. If another value of -O or the negated form of a -f, -m, or
516 -W switch is found later in the command line, the earlier switch
517 value is ignored, except with {S*} where S is just one letter; this
518 passes all matching options.
520 The character | at the beginning of the predicate text is used to indicate
521 that a command should be piped to the following command, but only if -pipe
524 Note that it is built into CC which switches take arguments and which
525 do not. You might think it would be useful to generalize this to
526 allow each compiler's spec to say which switches take arguments. But
527 this cannot be done in a consistent fashion. CC cannot even decide
528 which input files have been specified without knowing which switches
529 take arguments, and it must know which input files to compile in order
530 to tell which compilers to run.
532 CC also knows implicitly that arguments starting in `-l' are to be
533 treated as compiler output files, and passed to the linker in their
534 proper position among the other output files. */
536 /* Define the macros used for specs %a, %l, %L, %S, %C, %1. */
538 /* config.h can define ASM_SPEC to provide extra args to the assembler
539 or extra switch-translations. */
544 /* config.h can define ASM_FINAL_SPEC to run a post processor after
545 the assembler has run. */
546 #ifndef ASM_FINAL_SPEC
547 #define ASM_FINAL_SPEC ""
550 /* config.h can define CPP_SPEC to provide extra args to the C preprocessor
551 or extra switch-translations. */
556 /* config.h can define CC1_SPEC to provide extra args to cc1 and cc1plus
557 or extra switch-translations. */
562 /* config.h can define CC1PLUS_SPEC to provide extra args to cc1plus
563 or extra switch-translations. */
565 #define CC1PLUS_SPEC ""
568 /* config.h can define LINK_SPEC to provide extra args to the linker
569 or extra switch-translations. */
574 /* config.h can define LIB_SPEC to override the default libraries. */
576 #define LIB_SPEC "%{!shared:%{g*:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}}"
579 /* config.h can define LIBGCC_SPEC to override how and when libgcc.a is
582 #if defined(LINK_LIBGCC_SPECIAL) || defined(LINK_LIBGCC_SPECIAL_1)
583 /* Have gcc do the search for libgcc.a. */
584 #define LIBGCC_SPEC "libgcc.a%s"
586 #define LIBGCC_SPEC "-lgcc"
590 /* config.h can define STARTFILE_SPEC to override the default crt0 files. */
591 #ifndef STARTFILE_SPEC
592 #define STARTFILE_SPEC \
593 "%{!shared:%{pg:gcrt0%O%s}%{!pg:%{p:mcrt0%O%s}%{!p:crt0%O%s}}}"
596 /* config.h can define SWITCHES_NEED_SPACES to control which options
597 require spaces between the option and the argument. */
598 #ifndef SWITCHES_NEED_SPACES
599 #define SWITCHES_NEED_SPACES ""
602 /* config.h can define ENDFILE_SPEC to override the default crtn files. */
604 #define ENDFILE_SPEC ""
608 #define LINKER_NAME "collect2"
611 /* Define ASM_DEBUG_SPEC to be a spec suitable for translating '-g'
613 #ifndef ASM_DEBUG_SPEC
614 # if defined(DBX_DEBUGGING_INFO) && defined(DWARF2_DEBUGGING_INFO) \
615 && defined(HAVE_AS_GDWARF2_DEBUG_FLAG) && defined(HAVE_AS_GSTABS_DEBUG_FLAG)
616 # define ASM_DEBUG_SPEC \
617 (PREFERRED_DEBUGGING_TYPE == DBX_DEBUG \
618 ? "%{gdwarf-2*:--gdwarf2}%{!gdwarf-2*:%{g*:--gstabs}}" \
619 : "%{gstabs*:--gstabs}%{!gstabs*:%{g*:--gdwarf2}}")
621 # if defined(DBX_DEBUGGING_INFO) && defined(HAVE_AS_GSTABS_DEBUG_FLAG)
622 # define ASM_DEBUG_SPEC "%{g*:--gstabs}"
624 # if defined(DWARF2_DEBUGGING_INFO) && defined(HAVE_AS_GDWARF2_DEBUG_FLAG)
625 # define ASM_DEBUG_SPEC "%{g*:--gdwarf2}"
629 #ifndef ASM_DEBUG_SPEC
630 # define ASM_DEBUG_SPEC ""
633 /* Here is the spec for running the linker, after compiling all files. */
635 /* This is overridable by the target in case they need to specify the
636 -lgcc and -lc order specially, yet not require them to override all
637 of LINK_COMMAND_SPEC. */
638 #ifndef LINK_GCC_C_SEQUENCE_SPEC
639 #define LINK_GCC_C_SEQUENCE_SPEC "%G %L %G"
642 /* -u* was put back because both BSD and SysV seem to support it. */
643 /* %{static:} simply prevents an error message if the target machine
644 doesn't handle -static. */
645 /* We want %{T*} after %{L*} and %D so that it can be used to specify linker
646 scripts which exist in user specified directories, or in standard
648 #ifndef LINK_COMMAND_SPEC
649 #define LINK_COMMAND_SPEC "\
650 %{!fsyntax-only:%{!c:%{!M:%{!MM:%{!E:%{!S:\
651 %(linker) %l %X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} %{r} %{s} %{t}\
652 %{u*} %{x} %{z} %{Z} %{!A:%{!nostdlib:%{!nostartfiles:%S}}}\
653 %{static:} %{L*} %(link_libgcc) %o %{!nostdlib:%{!nodefaultlibs:%(link_gcc_c_sequence)}}\
654 %{!A:%{!nostdlib:%{!nostartfiles:%E}}} %{T*} }}}}}}"
657 #ifndef LINK_LIBGCC_SPEC
658 # ifdef LINK_LIBGCC_SPECIAL
659 /* Don't generate -L options for startfile prefix list. */
660 # define LINK_LIBGCC_SPEC ""
662 /* Do generate them. */
663 # define LINK_LIBGCC_SPEC "%D"
667 #ifndef STARTFILE_PREFIX_SPEC
668 # define STARTFILE_PREFIX_SPEC ""
671 static const char *asm_debug
;
672 static const char *cpp_spec
= CPP_SPEC
;
673 static const char *cpp_predefines
= CPP_PREDEFINES
;
674 static const char *cc1_spec
= CC1_SPEC
;
675 static const char *cc1plus_spec
= CC1PLUS_SPEC
;
676 static const char *link_gcc_c_sequence_spec
= LINK_GCC_C_SEQUENCE_SPEC
;
677 static const char *asm_spec
= ASM_SPEC
;
678 static const char *asm_final_spec
= ASM_FINAL_SPEC
;
679 static const char *link_spec
= LINK_SPEC
;
680 static const char *lib_spec
= LIB_SPEC
;
681 static const char *libgcc_spec
= LIBGCC_SPEC
;
682 static const char *endfile_spec
= ENDFILE_SPEC
;
683 static const char *startfile_spec
= STARTFILE_SPEC
;
684 static const char *switches_need_spaces
= SWITCHES_NEED_SPACES
;
685 static const char *linker_name_spec
= LINKER_NAME
;
686 static const char *link_command_spec
= LINK_COMMAND_SPEC
;
687 static const char *link_libgcc_spec
= LINK_LIBGCC_SPEC
;
688 static const char *startfile_prefix_spec
= STARTFILE_PREFIX_SPEC
;
690 /* Standard options to cpp, cc1, and as, to reduce duplication in specs.
691 There should be no need to override these in target dependent files,
692 but we need to copy them to the specs file so that newer versions
693 of the GCC driver can correctly drive older tool chains with the
694 appropriate -B options. */
696 /* When cpplib handles traditional preprocessing, get rid of this, and
697 call cc1 (or cc1obj in objc/lang-specs.h) from the main specs so
698 that we default the front end language better. */
699 static const char *trad_capable_cpp
=
700 "cc1 -E %{traditional|ftraditional|traditional-cpp:-traditional-cpp}";
702 /* We don't wrap .d files in %W{} since a missing .d file, and
703 therefore no dependency entry, confuses make into thinking a .o
704 file that happens to exist is up-to-date. */
705 static const char *cpp_unique_options
=
706 "%{C:%{!E:%eGNU C does not support -C without using -E}}\
707 %{CC:%{!E:%eGNU C does not support -CC without using -E}}\
708 %{!Q:-quiet} %{nostdinc*} %{C} %{CC} %{v} %{I*} %{P} %I\
709 %{MD:-MD %{!o:%b.d}%{o*:%.d%*}}\
710 %{MMD:-MMD %{!o:%b.d}%{o*:%.d%*}}\
711 %{M} %{MM} %{MF*} %{MG} %{MP} %{MQ*} %{MT*}\
712 %{!E:%{!M:%{!MM:%{MD|MMD:%{o*:-MQ %*}}}}}\
713 %{!no-gcc:-D__GNUC__=%v1 -D__GNUC_MINOR__=%v2 -D__GNUC_PATCHLEVEL__=%v3}\
714 %{!undef:%{!ansi:%{!std=*:%p}%{std=gnu*:%p}} %P} %{trigraphs}\
715 %{remap} %{g3:-dD} %{H} %C %{D*&U*&A*} %{i*} %Z %i\
718 /* This contains cpp options which are common with cc1_options and are passed
719 only when preprocessing only to avoid duplication. We pass the cc1 spec
720 options to the preprocessor so that it the cc1 spec may manipulate
721 options used to set target flags. Those special target flags settings may
722 in turn cause preprocessor symbols to be defined specially. */
723 static const char *cpp_options
=
724 "%(cpp_unique_options) %1 %{m*} %{std*} %{ansi} %{W*&pedantic*} %{w} %{f*}\
727 /* This contains cpp options which are not passed when the preprocessor
728 output will be used by another program. */
729 static const char *cpp_debug_options
= "%{d*}";
731 /* NB: This is shared amongst all front-ends. */
732 static const char *cc1_options
=
733 "%{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
734 %1 %{!Q:-quiet} -dumpbase %B %{d*} %{m*} %{a*}\
735 -auxbase%{c|S:%{o*:-strip %*}%{!o*: %b}}%{!c:%{!S: %b}}\
736 %{g*} %{O*} %{W*&pedantic*} %{w} %{std*} %{ansi}\
737 %{v:-version} %{pg:-p} %{p} %{f*} %{undef}\
738 %{Qn:-fno-ident} %{--help:--help}\
739 %{--target-help:--target-help}\
740 %{!fsyntax-only:%{S:%W{o*}%{!o*:-o %b.s}}}\
741 %{fsyntax-only:-o %j} %{-param*}";
743 static const char *asm_options
=
744 "%a %Y %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}";
746 static const char *invoke_as
=
747 "%{!S:-o %{|!pipe:%g.s} |\n as %(asm_options) %{!pipe:%g.s} %A }";
749 /* Some compilers have limits on line lengths, and the multilib_select
750 and/or multilib_matches strings can be very long, so we build them at
752 static struct obstack multilib_obstack
;
753 static const char *multilib_select
;
754 static const char *multilib_matches
;
755 static const char *multilib_defaults
;
756 static const char *multilib_exclusions
;
757 #include "multilib.h"
759 /* Check whether a particular argument is a default argument. */
761 #ifndef MULTILIB_DEFAULTS
762 #define MULTILIB_DEFAULTS { "" }
765 static const char *const multilib_defaults_raw
[] = MULTILIB_DEFAULTS
;
767 #ifndef DRIVER_SELF_SPECS
768 #define DRIVER_SELF_SPECS ""
771 static const char *const driver_self_specs
[] = { DRIVER_SELF_SPECS
};
775 struct user_specs
*next
;
776 const char *filename
;
779 static struct user_specs
*user_specs_head
, *user_specs_tail
;
781 #ifndef SWITCH_TAKES_ARG
782 #define SWITCH_TAKES_ARG(CHAR) DEFAULT_SWITCH_TAKES_ARG(CHAR)
785 #ifndef WORD_SWITCH_TAKES_ARG
786 #define WORD_SWITCH_TAKES_ARG(STR) DEFAULT_WORD_SWITCH_TAKES_ARG (STR)
789 #ifdef HAVE_TARGET_EXECUTABLE_SUFFIX
790 /* This defines which switches stop a full compilation. */
791 #define DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR) \
792 ((CHAR) == 'c' || (CHAR) == 'S')
794 #ifndef SWITCH_CURTAILS_COMPILATION
795 #define SWITCH_CURTAILS_COMPILATION(CHAR) \
796 DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR)
800 /* Record the mapping from file suffixes for compilation specs. */
804 const char *suffix
; /* Use this compiler for input files
805 whose names end in this suffix. */
807 const char *spec
; /* To use this compiler, run this spec. */
809 const char *cpp_spec
; /* If non-NULL, substitute this spec
810 for `%C', rather than the usual
814 /* Pointer to a vector of `struct compiler' that gives the spec for
815 compiling a file, based on its suffix.
816 A file that does not end in any of these suffixes will be passed
817 unchanged to the loader and nothing else will be done to it.
819 An entry containing two 0s is used to terminate the vector.
821 If multiple entries match a file, the last matching one is used. */
823 static struct compiler
*compilers
;
825 /* Number of entries in `compilers', not counting the null terminator. */
827 static int n_compilers
;
829 /* The default list of file name suffixes and their compilation specs. */
831 static const struct compiler default_compilers
[] =
833 /* Add lists of suffixes of known languages here. If those languages
834 were not present when we built the driver, we will hit these copies
835 and be given a more meaningful error than "file not used since
836 linking is not done". */
837 {".m", "#Objective-C", 0}, {".mi", "#Objective-C", 0},
838 {".cc", "#C++", 0}, {".cxx", "#C++", 0}, {".cpp", "#C++", 0},
839 {".cp", "#C++", 0}, {".c++", "#C++", 0}, {".C", "#C++", 0},
841 {".ads", "#Ada", 0}, {".adb", "#Ada", 0},
842 {".f", "#Fortran", 0}, {".for", "#Fortran", 0}, {".fpp", "#Fortran", 0},
843 {".F", "#Fortran", 0}, {".FOR", "#Fortran", 0}, {".FPP", "#Fortran", 0},
844 {".r", "#Ratfor", 0},
845 {".p", "#Pascal", 0}, {".pas", "#Pascal", 0},
846 {".java", "#Java", 0}, {".class", "#Java", 0},
847 {".zip", "#Java", 0}, {".jar", "#Java", 0},
848 /* Next come the entries for C. */
851 /* cc1 has an integrated ISO C preprocessor. We should invoke the
852 external preprocessor if -save-temps is given. */
853 "%{E|M|MM:%(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)}\
855 %{traditional|ftraditional:\
856 %eGNU C no longer supports -traditional without -E}\
857 %{save-temps|traditional-cpp|no-integrated-cpp:%(trad_capable_cpp) \
858 %(cpp_options) %{save-temps:%b.i} %{!save-temps:%g.i} \n\
859 cc1 -fpreprocessed %{save-temps:%b.i} %{!save-temps:%g.i} %(cc1_options)}\
860 %{!save-temps:%{!traditional-cpp:%{!no-integrated-cpp:\
861 cc1 %(cpp_unique_options) %(cc1_options)}}}\
862 %{!fsyntax-only:%(invoke_as)}}}}", 0},
864 "%{!E:%e-E required when input is from standard input}\
865 %(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)", 0},
866 {".h", "@c-header", 0},
868 "%{!E:%ecompilation of header file requested} \
869 %(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)",
871 {".i", "@cpp-output", 0},
873 "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0},
874 {".s", "@assembler", 0},
876 "%{!M:%{!MM:%{!E:%{!S:as %(asm_debug) %(asm_options) %i %A }}}}", 0},
877 {".S", "@assembler-with-cpp", 0},
878 {"@assembler-with-cpp",
879 "%(trad_capable_cpp) -lang-asm %(cpp_options)\
880 %{E|M|MM:%(cpp_debug_options)}\
881 %{!M:%{!MM:%{!E:%{!S:-o %{|!pipe:%g.s} |\n\
882 as %(asm_debug) %(asm_options) %{!pipe:%g.s} %A }}}}", 0},
884 /* Mark end of table */
888 /* Number of elements in default_compilers, not counting the terminator. */
890 static const int n_default_compilers
= ARRAY_SIZE (default_compilers
) - 1;
892 /* A vector of options to give to the linker.
893 These options are accumulated by %x,
894 and substituted into the linker command with %X. */
895 static int n_linker_options
;
896 static char **linker_options
;
898 /* A vector of options to give to the assembler.
899 These options are accumulated by -Wa,
900 and substituted into the assembler command with %Y. */
901 static int n_assembler_options
;
902 static char **assembler_options
;
904 /* A vector of options to give to the preprocessor.
905 These options are accumulated by -Wp,
906 and substituted into the preprocessor command with %Z. */
907 static int n_preprocessor_options
;
908 static char **preprocessor_options
;
910 /* Define how to map long options into short ones. */
912 /* This structure describes one mapping. */
915 /* The long option's name. */
916 const char *const name
;
917 /* The equivalent short option. */
918 const char *const equivalent
;
919 /* Argument info. A string of flag chars; NULL equals no options.
920 a => argument required.
921 o => argument optional.
922 j => join argument to equivalent, making one word.
923 * => require other text after NAME as an argument. */
924 const char *const arg_info
;
927 /* This is the table of mappings. Mappings are tried sequentially
928 for each option encountered; the first one that matches, wins. */
930 static const struct option_map option_map
[] =
932 {"--all-warnings", "-Wall", 0},
933 {"--ansi", "-ansi", 0},
934 {"--assemble", "-S", 0},
935 {"--assert", "-A", "a"},
936 {"--classpath", "-fclasspath=", "aj"},
937 {"--bootclasspath", "-fbootclasspath=", "aj"},
938 {"--CLASSPATH", "-fclasspath=", "aj"},
939 {"--comments", "-C", 0},
940 {"--comments-in-macros", "-CC", 0},
941 {"--compile", "-c", 0},
942 {"--debug", "-g", "oj"},
943 {"--define-macro", "-D", "aj"},
944 {"--dependencies", "-M", 0},
945 {"--dump", "-d", "a"},
946 {"--dumpbase", "-dumpbase", "a"},
947 {"--entry", "-e", 0},
948 {"--extra-warnings", "-W", 0},
949 {"--for-assembler", "-Wa", "a"},
950 {"--for-linker", "-Xlinker", "a"},
951 {"--force-link", "-u", "a"},
952 {"--imacros", "-imacros", "a"},
953 {"--include", "-include", "a"},
954 {"--include-barrier", "-I-", 0},
955 {"--include-directory", "-I", "aj"},
956 {"--include-directory-after", "-idirafter", "a"},
957 {"--include-prefix", "-iprefix", "a"},
958 {"--include-with-prefix", "-iwithprefix", "a"},
959 {"--include-with-prefix-before", "-iwithprefixbefore", "a"},
960 {"--include-with-prefix-after", "-iwithprefix", "a"},
961 {"--language", "-x", "a"},
962 {"--library-directory", "-L", "a"},
963 {"--machine", "-m", "aj"},
964 {"--machine-", "-m", "*j"},
965 {"--no-integrated-cpp", "-no-integrated-cpp", 0},
966 {"--no-line-commands", "-P", 0},
967 {"--no-precompiled-includes", "-noprecomp", 0},
968 {"--no-standard-includes", "-nostdinc", 0},
969 {"--no-standard-libraries", "-nostdlib", 0},
970 {"--no-warnings", "-w", 0},
971 {"--optimize", "-O", "oj"},
972 {"--output", "-o", "a"},
973 {"--output-class-directory", "-foutput-class-dir=", "ja"},
974 {"--param", "--param", "a"},
975 {"--pedantic", "-pedantic", 0},
976 {"--pedantic-errors", "-pedantic-errors", 0},
977 {"--pipe", "-pipe", 0},
978 {"--prefix", "-B", "a"},
979 {"--preprocess", "-E", 0},
980 {"--print-search-dirs", "-print-search-dirs", 0},
981 {"--print-file-name", "-print-file-name=", "aj"},
982 {"--print-libgcc-file-name", "-print-libgcc-file-name", 0},
983 {"--print-missing-file-dependencies", "-MG", 0},
984 {"--print-multi-lib", "-print-multi-lib", 0},
985 {"--print-multi-directory", "-print-multi-directory", 0},
986 {"--print-multi-os-directory", "-print-multi-os-directory", 0},
987 {"--print-prog-name", "-print-prog-name=", "aj"},
988 {"--profile", "-p", 0},
989 {"--profile-blocks", "-a", 0},
990 {"--quiet", "-q", 0},
991 {"--resource", "-fcompile-resource=", "aj"},
992 {"--save-temps", "-save-temps", 0},
993 {"--shared", "-shared", 0},
994 {"--silent", "-q", 0},
995 {"--specs", "-specs=", "aj"},
996 {"--static", "-static", 0},
997 {"--std", "-std=", "aj"},
998 {"--symbolic", "-symbolic", 0},
999 {"--target", "-b", "a"},
1000 {"--time", "-time", 0},
1001 {"--trace-includes", "-H", 0},
1002 {"--traditional", "-traditional", 0},
1003 {"--traditional-cpp", "-traditional-cpp", 0},
1004 {"--trigraphs", "-trigraphs", 0},
1005 {"--undefine-macro", "-U", "aj"},
1006 {"--use-version", "-V", "a"},
1007 {"--user-dependencies", "-MM", 0},
1008 {"--verbose", "-v", 0},
1009 {"--warn-", "-W", "*j"},
1010 {"--write-dependencies", "-MD", 0},
1011 {"--write-user-dependencies", "-MMD", 0},
1016 #ifdef TARGET_OPTION_TRANSLATE_TABLE
1017 static const struct {
1018 const char *const option_found
;
1019 const char *const replacements
;
1020 } target_option_translations
[] =
1022 TARGET_OPTION_TRANSLATE_TABLE
,
1027 /* Translate the options described by *ARGCP and *ARGVP.
1028 Make a new vector and store it back in *ARGVP,
1029 and store its length in *ARGVC. */
1032 translate_options (argcp
, argvp
)
1034 const char *const **argvp
;
1038 const char *const *argv
= *argvp
;
1039 int newvsize
= (argc
+ 2) * 2 * sizeof (const char *);
1041 (const char **) xmalloc (newvsize
);
1045 newv
[newindex
++] = argv
[i
++];
1049 #ifdef TARGET_OPTION_TRANSLATE_TABLE
1053 target_option_translations
[tott_idx
].option_found
;
1056 if (strcmp (target_option_translations
[tott_idx
].option_found
,
1063 for (sp
= target_option_translations
[tott_idx
].replacements
;
1070 newvsize
+= spaces
* sizeof (const char *);
1071 newv
= (const char **) xrealloc (newv
, newvsize
);
1073 sp
= target_option_translations
[tott_idx
].replacements
;
1082 newv
[newindex
++] = np
;
1083 while (*np
!= ' ' && *np
)
1094 if (target_option_translations
[tott_idx
].option_found
)
1098 /* Translate -- options. */
1099 if (argv
[i
][0] == '-' && argv
[i
][1] == '-')
1102 /* Find a mapping that applies to this option. */
1103 for (j
= 0; j
< ARRAY_SIZE (option_map
); j
++)
1105 size_t optlen
= strlen (option_map
[j
].name
);
1106 size_t arglen
= strlen (argv
[i
]);
1107 size_t complen
= arglen
> optlen
? optlen
: arglen
;
1108 const char *arginfo
= option_map
[j
].arg_info
;
1113 if (!strncmp (argv
[i
], option_map
[j
].name
, complen
))
1115 const char *arg
= 0;
1117 if (arglen
< optlen
)
1120 for (k
= j
+ 1; k
< ARRAY_SIZE (option_map
); k
++)
1121 if (strlen (option_map
[k
].name
) >= arglen
1122 && !strncmp (argv
[i
], option_map
[k
].name
, arglen
))
1124 error ("ambiguous abbreviation %s", argv
[i
]);
1128 if (k
!= ARRAY_SIZE (option_map
))
1132 if (arglen
> optlen
)
1134 /* If the option has an argument, accept that. */
1135 if (argv
[i
][optlen
] == '=')
1136 arg
= argv
[i
] + optlen
+ 1;
1138 /* If this mapping requires extra text at end of name,
1139 accept that as "argument". */
1140 else if (strchr (arginfo
, '*') != 0)
1141 arg
= argv
[i
] + optlen
;
1143 /* Otherwise, extra text at end means mismatch.
1144 Try other mappings. */
1149 else if (strchr (arginfo
, '*') != 0)
1151 error ("incomplete `%s' option", option_map
[j
].name
);
1155 /* Handle arguments. */
1156 if (strchr (arginfo
, 'a') != 0)
1162 error ("missing argument to `%s' option",
1163 option_map
[j
].name
);
1170 else if (strchr (arginfo
, '*') != 0)
1172 else if (strchr (arginfo
, 'o') == 0)
1175 error ("extraneous argument to `%s' option",
1176 option_map
[j
].name
);
1180 /* Store the translation as one argv elt or as two. */
1181 if (arg
!= 0 && strchr (arginfo
, 'j') != 0)
1182 newv
[newindex
++] = concat (option_map
[j
].equivalent
, arg
,
1186 newv
[newindex
++] = option_map
[j
].equivalent
;
1187 newv
[newindex
++] = arg
;
1190 newv
[newindex
++] = option_map
[j
].equivalent
;
1198 /* Handle old-fashioned options--just copy them through,
1199 with their arguments. */
1200 else if (argv
[i
][0] == '-')
1202 const char *p
= argv
[i
] + 1;
1206 if (SWITCH_TAKES_ARG (c
) > (p
[1] != 0))
1207 nskip
+= SWITCH_TAKES_ARG (c
) - (p
[1] != 0);
1208 else if (WORD_SWITCH_TAKES_ARG (p
))
1209 nskip
+= WORD_SWITCH_TAKES_ARG (p
);
1210 else if ((c
== 'B' || c
== 'b' || c
== 'x')
1213 else if (! strcmp (p
, "Xlinker"))
1216 /* Watch out for an option at the end of the command line that
1217 is missing arguments, and avoid skipping past the end of the
1219 if (nskip
+ i
> argc
)
1224 newv
[newindex
++] = argv
[i
++];
1229 /* Ordinary operands, or +e options. */
1230 newv
[newindex
++] = argv
[i
++];
1245 /* A fully-blank line is a delimiter in the SPEC file and shouldn't
1246 be considered whitespace. */
1247 if (p
[0] == '\n' && p
[1] == '\n' && p
[2] == '\n')
1249 else if (*p
== '\n' || *p
== ' ' || *p
== '\t')
1263 /* Structures to keep track of prefixes to try when looking for files. */
1267 const char *prefix
; /* String to prepend to the path. */
1268 struct prefix_list
*next
; /* Next in linked list. */
1269 int require_machine_suffix
; /* Don't use without machine_suffix. */
1270 /* 2 means try both machine_suffix and just_machine_suffix. */
1271 int *used_flag_ptr
; /* 1 if a file was found with this prefix. */
1272 int priority
; /* Sort key - priority within list. */
1273 int os_multilib
; /* 1 if OS multilib scheme should be used,
1274 0 for GCC multilib scheme. */
1279 struct prefix_list
*plist
; /* List of prefixes to try */
1280 int max_len
; /* Max length of a prefix in PLIST */
1281 const char *name
; /* Name of this list (used in config stuff) */
1284 /* List of prefixes to try when looking for executables. */
1286 static struct path_prefix exec_prefixes
= { 0, 0, "exec" };
1288 /* List of prefixes to try when looking for startup (crt0) files. */
1290 static struct path_prefix startfile_prefixes
= { 0, 0, "startfile" };
1292 /* List of prefixes to try when looking for include files. */
1294 static struct path_prefix include_prefixes
= { 0, 0, "include" };
1296 /* Suffix to attach to directories searched for commands.
1297 This looks like `MACHINE/VERSION/'. */
1299 static const char *machine_suffix
= 0;
1301 /* Suffix to attach to directories searched for commands.
1302 This is just `MACHINE/'. */
1304 static const char *just_machine_suffix
= 0;
1306 /* Adjusted value of GCC_EXEC_PREFIX envvar. */
1308 static const char *gcc_exec_prefix
;
1310 /* Default prefixes to attach to command names. */
1312 #ifdef CROSS_COMPILE /* Don't use these prefixes for a cross compiler. */
1313 #undef MD_EXEC_PREFIX
1314 #undef MD_STARTFILE_PREFIX
1315 #undef MD_STARTFILE_PREFIX_1
1318 /* If no prefixes defined, use the null string, which will disable them. */
1319 #ifndef MD_EXEC_PREFIX
1320 #define MD_EXEC_PREFIX ""
1322 #ifndef MD_STARTFILE_PREFIX
1323 #define MD_STARTFILE_PREFIX ""
1325 #ifndef MD_STARTFILE_PREFIX_1
1326 #define MD_STARTFILE_PREFIX_1 ""
1329 /* Supply defaults for the standard prefixes. */
1331 #ifndef STANDARD_EXEC_PREFIX
1332 #define STANDARD_EXEC_PREFIX "/usr/local/lib/gcc-lib/"
1334 #ifndef TOOLDIR_BASE_PREFIX
1335 #define TOOLDIR_BASE_PREFIX "/usr/local/"
1337 #ifndef STANDARD_BINDIR_PREFIX
1338 #define STANDARD_BINDIR_PREFIX "/usr/local/bin"
1341 static const char *const standard_exec_prefix
= STANDARD_EXEC_PREFIX
;
1342 static const char *const standard_exec_prefix_1
= "/usr/lib/gcc/";
1343 static const char *md_exec_prefix
= MD_EXEC_PREFIX
;
1345 static const char *md_startfile_prefix
= MD_STARTFILE_PREFIX
;
1346 static const char *md_startfile_prefix_1
= MD_STARTFILE_PREFIX_1
;
1347 static const char *const standard_startfile_prefix
= STANDARD_STARTFILE_PREFIX
;
1348 static const char *const standard_startfile_prefix_1
= "/lib/";
1349 static const char *const standard_startfile_prefix_2
= "/usr/lib/";
1351 static const char *const tooldir_base_prefix
= TOOLDIR_BASE_PREFIX
;
1352 static const char *tooldir_prefix
;
1354 static const char *const standard_bindir_prefix
= STANDARD_BINDIR_PREFIX
;
1356 /* Subdirectory to use for locating libraries. Set by
1357 set_multilib_dir based on the compilation options. */
1359 static const char *multilib_dir
;
1361 /* Subdirectory to use for locating libraries in OS conventions. Set by
1362 set_multilib_dir based on the compilation options. */
1364 static const char *multilib_os_dir
;
1366 /* Structure to keep track of the specs that have been defined so far.
1367 These are accessed using %(specname) or %[specname] in a compiler
1372 /* The following 2 fields must be first */
1373 /* to allow EXTRA_SPECS to be initialized */
1374 const char *name
; /* name of the spec. */
1375 const char *ptr
; /* available ptr if no static pointer */
1377 /* The following fields are not initialized */
1378 /* by EXTRA_SPECS */
1379 const char **ptr_spec
; /* pointer to the spec itself. */
1380 struct spec_list
*next
; /* Next spec in linked list. */
1381 int name_len
; /* length of the name */
1382 int alloc_p
; /* whether string was allocated */
1385 #define INIT_STATIC_SPEC(NAME,PTR) \
1386 { NAME, NULL, PTR, (struct spec_list *) 0, sizeof (NAME) - 1, 0 }
1388 /* List of statically defined specs. */
1389 static struct spec_list static_specs
[] =
1391 INIT_STATIC_SPEC ("asm", &asm_spec
),
1392 INIT_STATIC_SPEC ("asm_debug", &asm_debug
),
1393 INIT_STATIC_SPEC ("asm_final", &asm_final_spec
),
1394 INIT_STATIC_SPEC ("asm_options", &asm_options
),
1395 INIT_STATIC_SPEC ("invoke_as", &invoke_as
),
1396 INIT_STATIC_SPEC ("cpp", &cpp_spec
),
1397 INIT_STATIC_SPEC ("cpp_options", &cpp_options
),
1398 INIT_STATIC_SPEC ("cpp_debug_options", &cpp_debug_options
),
1399 INIT_STATIC_SPEC ("cpp_unique_options", &cpp_unique_options
),
1400 INIT_STATIC_SPEC ("trad_capable_cpp", &trad_capable_cpp
),
1401 INIT_STATIC_SPEC ("cc1", &cc1_spec
),
1402 INIT_STATIC_SPEC ("cc1_options", &cc1_options
),
1403 INIT_STATIC_SPEC ("cc1plus", &cc1plus_spec
),
1404 INIT_STATIC_SPEC ("link_gcc_c_sequence", &link_gcc_c_sequence_spec
),
1405 INIT_STATIC_SPEC ("endfile", &endfile_spec
),
1406 INIT_STATIC_SPEC ("link", &link_spec
),
1407 INIT_STATIC_SPEC ("lib", &lib_spec
),
1408 INIT_STATIC_SPEC ("libgcc", &libgcc_spec
),
1409 INIT_STATIC_SPEC ("startfile", &startfile_spec
),
1410 INIT_STATIC_SPEC ("switches_need_spaces", &switches_need_spaces
),
1411 INIT_STATIC_SPEC ("predefines", &cpp_predefines
),
1412 INIT_STATIC_SPEC ("cross_compile", &cross_compile
),
1413 INIT_STATIC_SPEC ("version", &compiler_version
),
1414 INIT_STATIC_SPEC ("multilib", &multilib_select
),
1415 INIT_STATIC_SPEC ("multilib_defaults", &multilib_defaults
),
1416 INIT_STATIC_SPEC ("multilib_extra", &multilib_extra
),
1417 INIT_STATIC_SPEC ("multilib_matches", &multilib_matches
),
1418 INIT_STATIC_SPEC ("multilib_exclusions", &multilib_exclusions
),
1419 INIT_STATIC_SPEC ("multilib_options", &multilib_options
),
1420 INIT_STATIC_SPEC ("linker", &linker_name_spec
),
1421 INIT_STATIC_SPEC ("link_libgcc", &link_libgcc_spec
),
1422 INIT_STATIC_SPEC ("md_exec_prefix", &md_exec_prefix
),
1423 INIT_STATIC_SPEC ("md_startfile_prefix", &md_startfile_prefix
),
1424 INIT_STATIC_SPEC ("md_startfile_prefix_1", &md_startfile_prefix_1
),
1425 INIT_STATIC_SPEC ("startfile_prefix_spec", &startfile_prefix_spec
),
1428 #ifdef EXTRA_SPECS /* additional specs needed */
1429 /* Structure to keep track of just the first two args of a spec_list.
1430 That is all that the EXTRA_SPECS macro gives us. */
1433 const char *const name
;
1434 const char *const ptr
;
1437 static const struct spec_list_1 extra_specs_1
[] = { EXTRA_SPECS
};
1438 static struct spec_list
*extra_specs
= (struct spec_list
*) 0;
1441 /* List of dynamically allocates specs that have been defined so far. */
1443 static struct spec_list
*specs
= (struct spec_list
*) 0;
1445 /* List of static spec functions. */
1447 static const struct spec_function static_spec_functions
[] =
1449 { "if-exists", if_exists_spec_function
},
1450 { "if-exists-else", if_exists_else_spec_function
},
1454 static int processing_spec_function
;
1456 /* Add appropriate libgcc specs to OBSTACK, taking into account
1457 various permutations of -shared-libgcc, -shared, and such. */
1459 #ifdef ENABLE_SHARED_LIBGCC
1461 init_gcc_specs (obstack
, shared_name
, static_name
, eh_name
)
1462 struct obstack
*obstack
;
1463 const char *shared_name
;
1464 const char *static_name
;
1465 const char *eh_name
;
1469 buf
= concat ("%{static|static-libgcc:", static_name
, " ", eh_name
,
1470 "}%{!static:%{!static-libgcc:",
1471 "%{!shared:%{!shared-libgcc:", static_name
, " ",
1472 eh_name
, "}%{shared-libgcc:", shared_name
, " ",
1473 static_name
, "}}%{shared:",
1475 "%{shared-libgcc:", shared_name
,
1476 "}%{!shared-libgcc:", static_name
, "}",
1482 obstack_grow (obstack
, buf
, strlen (buf
));
1485 #endif /* ENABLE_SHARED_LIBGCC */
1487 /* Initialize the specs lookup routines. */
1492 struct spec_list
*next
= (struct spec_list
*) 0;
1493 struct spec_list
*sl
= (struct spec_list
*) 0;
1497 return; /* Already initialized. */
1500 notice ("Using built-in specs.\n");
1503 extra_specs
= (struct spec_list
*)
1504 xcalloc (sizeof (struct spec_list
), ARRAY_SIZE (extra_specs_1
));
1506 for (i
= ARRAY_SIZE (extra_specs_1
) - 1; i
>= 0; i
--)
1508 sl
= &extra_specs
[i
];
1509 sl
->name
= extra_specs_1
[i
].name
;
1510 sl
->ptr
= extra_specs_1
[i
].ptr
;
1512 sl
->name_len
= strlen (sl
->name
);
1513 sl
->ptr_spec
= &sl
->ptr
;
1518 /* Initialize here, not in definition. The IRIX 6 O32 cc sometimes chokes
1519 on ?: in file-scope variable initializations. */
1520 asm_debug
= ASM_DEBUG_SPEC
;
1522 for (i
= ARRAY_SIZE (static_specs
) - 1; i
>= 0; i
--)
1524 sl
= &static_specs
[i
];
1529 #ifdef ENABLE_SHARED_LIBGCC
1530 /* ??? If neither -shared-libgcc nor --static-libgcc was
1531 seen, then we should be making an educated guess. Some proposed
1532 heuristics for ELF include:
1534 (1) If "-Wl,--export-dynamic", then it's a fair bet that the
1535 program will be doing dynamic loading, which will likely
1536 need the shared libgcc.
1538 (2) If "-ldl", then it's also a fair bet that we're doing
1541 (3) For each ET_DYN we're linking against (either through -lfoo
1542 or /some/path/foo.so), check to see whether it or one of
1543 its dependencies depends on a shared libgcc.
1547 If the runtime is fixed to look for program headers instead
1548 of calling __register_frame_info at all, for each object,
1549 use the shared libgcc if any EH symbol referenced.
1551 If crtstuff is fixed to not invoke __register_frame_info
1552 automatically, for each object, use the shared libgcc if
1553 any non-empty unwind section found.
1555 Doing any of this probably requires invoking an external program to
1556 do the actual object file scanning. */
1558 const char *p
= libgcc_spec
;
1561 /* Transform the extant libgcc_spec into one that uses the shared libgcc
1562 when given the proper command line arguments. */
1565 if (in_sep
&& *p
== '-' && strncmp (p
, "-lgcc", 5) == 0)
1567 init_gcc_specs (&obstack
,
1568 #ifdef NO_SHARED_LIBGCC_MULTILIB
1576 #ifdef USE_LIBUNWIND_EXCEPTIONS
1584 else if (in_sep
&& *p
== 'l' && strncmp (p
, "libgcc.a%s", 10) == 0)
1586 /* Ug. We don't know shared library extensions. Hope that
1587 systems that use this form don't do shared libraries. */
1588 init_gcc_specs (&obstack
,
1589 #ifdef NO_SHARED_LIBGCC_MULTILIB
1597 #ifdef USE_LIBUNWIND_EXCEPTIONS
1606 obstack_1grow (&obstack
, *p
);
1607 in_sep
= (*p
== ' ');
1612 obstack_1grow (&obstack
, '\0');
1613 libgcc_spec
= obstack_finish (&obstack
);
1616 #ifdef USE_AS_TRADITIONAL_FORMAT
1617 /* Prepend "--traditional-format" to whatever asm_spec we had before. */
1619 static const char tf
[] = "--traditional-format ";
1620 obstack_grow (&obstack
, tf
, sizeof(tf
) - 1);
1621 obstack_grow0 (&obstack
, asm_spec
, strlen (asm_spec
));
1622 asm_spec
= obstack_finish (&obstack
);
1626 /* Prepend LINK_EH_SPEC to whatever link_spec we had before. */
1627 obstack_grow (&obstack
, LINK_EH_SPEC
, sizeof(LINK_EH_SPEC
) - 1);
1628 obstack_grow0 (&obstack
, link_spec
, strlen (link_spec
));
1629 link_spec
= obstack_finish (&obstack
);
1635 /* Change the value of spec NAME to SPEC. If SPEC is empty, then the spec is
1636 removed; If the spec starts with a + then SPEC is added to the end of the
1640 set_spec (name
, spec
)
1644 struct spec_list
*sl
;
1645 const char *old_spec
;
1646 int name_len
= strlen (name
);
1649 /* If this is the first call, initialize the statically allocated specs. */
1652 struct spec_list
*next
= (struct spec_list
*) 0;
1653 for (i
= ARRAY_SIZE (static_specs
) - 1; i
>= 0; i
--)
1655 sl
= &static_specs
[i
];
1662 /* See if the spec already exists. */
1663 for (sl
= specs
; sl
; sl
= sl
->next
)
1664 if (name_len
== sl
->name_len
&& !strcmp (sl
->name
, name
))
1669 /* Not found - make it. */
1670 sl
= (struct spec_list
*) xmalloc (sizeof (struct spec_list
));
1671 sl
->name
= xstrdup (name
);
1672 sl
->name_len
= name_len
;
1673 sl
->ptr_spec
= &sl
->ptr
;
1675 *(sl
->ptr_spec
) = "";
1680 old_spec
= *(sl
->ptr_spec
);
1681 *(sl
->ptr_spec
) = ((spec
[0] == '+' && ISSPACE ((unsigned char)spec
[1]))
1682 ? concat (old_spec
, spec
+ 1, NULL
)
1687 notice ("Setting spec %s to '%s'\n\n", name
, *(sl
->ptr_spec
));
1690 /* Free the old spec. */
1691 if (old_spec
&& sl
->alloc_p
)
1692 free ((PTR
) old_spec
);
1697 /* Accumulate a command (program name and args), and run it. */
1699 /* Vector of pointers to arguments in the current line of specifications. */
1701 static const char **argbuf
;
1703 /* Number of elements allocated in argbuf. */
1705 static int argbuf_length
;
1707 /* Number of elements in argbuf currently in use (containing args). */
1709 static int argbuf_index
;
1711 /* This is the list of suffixes and codes (%g/%u/%U/%j) and the associated
1712 temp file. If the HOST_BIT_BUCKET is used for %j, no entry is made for
1715 static struct temp_name
{
1716 const char *suffix
; /* suffix associated with the code. */
1717 int length
; /* strlen (suffix). */
1718 int unique
; /* Indicates whether %g or %u/%U was used. */
1719 const char *filename
; /* associated filename. */
1720 int filename_length
; /* strlen (filename). */
1721 struct temp_name
*next
;
1724 /* Number of commands executed so far. */
1726 static int execution_count
;
1728 /* Number of commands that exited with a signal. */
1730 static int signal_count
;
1732 /* Name with which this program was invoked. */
1734 static const char *programname
;
1736 /* Allocate the argument vector. */
1742 argbuf
= (const char **) xmalloc (argbuf_length
* sizeof (const char *));
1745 /* Clear out the vector of arguments (after a command is executed). */
1753 /* Add one argument to the vector at the end.
1754 This is done when a space is seen or at the end of the line.
1755 If DELETE_ALWAYS is nonzero, the arg is a filename
1756 and the file should be deleted eventually.
1757 If DELETE_FAILURE is nonzero, the arg is a filename
1758 and the file should be deleted if this compilation fails. */
1761 store_arg (arg
, delete_always
, delete_failure
)
1763 int delete_always
, delete_failure
;
1765 if (argbuf_index
+ 1 == argbuf_length
)
1767 = (const char **) xrealloc (argbuf
,
1768 (argbuf_length
*= 2) * sizeof (const char *));
1770 argbuf
[argbuf_index
++] = arg
;
1771 argbuf
[argbuf_index
] = 0;
1773 if (delete_always
|| delete_failure
)
1774 record_temp_file (arg
, delete_always
, delete_failure
);
1777 /* Load specs from a file name named FILENAME, replacing occurrences of
1778 various different types of line-endings, \r\n, \n\r and just \r, with
1782 load_specs (filename
)
1783 const char *filename
;
1787 struct stat statbuf
;
1794 notice ("Reading specs from %s\n", filename
);
1796 /* Open and stat the file. */
1797 desc
= open (filename
, O_RDONLY
, 0);
1799 pfatal_with_name (filename
);
1800 if (stat (filename
, &statbuf
) < 0)
1801 pfatal_with_name (filename
);
1803 /* Read contents of file into BUFFER. */
1804 buffer
= xmalloc ((unsigned) statbuf
.st_size
+ 1);
1805 readlen
= read (desc
, buffer
, (unsigned) statbuf
.st_size
);
1807 pfatal_with_name (filename
);
1808 buffer
[readlen
] = 0;
1811 specs
= xmalloc (readlen
+ 1);
1813 for (buffer_p
= buffer
; buffer_p
&& *buffer_p
; buffer_p
++)
1819 if (buffer_p
> buffer
&& *(buffer_p
- 1) == '\n') /* \n\r */
1821 else if (*(buffer_p
+ 1) == '\n') /* \r\n */
1835 /* Read compilation specs from a file named FILENAME,
1836 replacing the default ones.
1838 A suffix which starts with `*' is a definition for
1839 one of the machine-specific sub-specs. The "suffix" should be
1840 *asm, *cc1, *cpp, *link, *startfile, etc.
1841 The corresponding spec is stored in asm_spec, etc.,
1842 rather than in the `compilers' vector.
1844 Anything invalid in the file is a fatal error. */
1847 read_specs (filename
, main_p
)
1848 const char *filename
;
1854 buffer
= load_specs (filename
);
1856 /* Scan BUFFER for specs, putting them in the vector. */
1862 char *in
, *out
, *p1
, *p2
, *p3
;
1864 /* Advance P in BUFFER to the next nonblank nocomment line. */
1865 p
= skip_whitespace (p
);
1869 /* Is this a special command that starts with '%'? */
1870 /* Don't allow this for the main specs file, since it would
1871 encourage people to overwrite it. */
1872 if (*p
== '%' && !main_p
)
1875 while (*p
&& *p
!= '\n')
1881 if (!strncmp (p1
, "%include", sizeof ("%include") - 1)
1882 && (p1
[sizeof "%include" - 1] == ' '
1883 || p1
[sizeof "%include" - 1] == '\t'))
1887 p1
+= sizeof ("%include");
1888 while (*p1
== ' ' || *p1
== '\t')
1891 if (*p1
++ != '<' || p
[-2] != '>')
1892 fatal ("specs %%include syntax malformed after %ld characters",
1893 (long) (p1
- buffer
+ 1));
1896 new_filename
= find_a_file (&startfile_prefixes
, p1
, R_OK
, 0);
1897 read_specs (new_filename
? new_filename
: p1
, FALSE
);
1900 else if (!strncmp (p1
, "%include_noerr", sizeof "%include_noerr" - 1)
1901 && (p1
[sizeof "%include_noerr" - 1] == ' '
1902 || p1
[sizeof "%include_noerr" - 1] == '\t'))
1906 p1
+= sizeof "%include_noerr";
1907 while (*p1
== ' ' || *p1
== '\t')
1910 if (*p1
++ != '<' || p
[-2] != '>')
1911 fatal ("specs %%include syntax malformed after %ld characters",
1912 (long) (p1
- buffer
+ 1));
1915 new_filename
= find_a_file (&startfile_prefixes
, p1
, R_OK
, 0);
1917 read_specs (new_filename
, FALSE
);
1918 else if (verbose_flag
)
1919 notice ("could not find specs file %s\n", p1
);
1922 else if (!strncmp (p1
, "%rename", sizeof "%rename" - 1)
1923 && (p1
[sizeof "%rename" - 1] == ' '
1924 || p1
[sizeof "%rename" - 1] == '\t'))
1927 struct spec_list
*sl
;
1928 struct spec_list
*newsl
;
1930 /* Get original name. */
1931 p1
+= sizeof "%rename";
1932 while (*p1
== ' ' || *p1
== '\t')
1935 if (! ISALPHA ((unsigned char) *p1
))
1936 fatal ("specs %%rename syntax malformed after %ld characters",
1937 (long) (p1
- buffer
));
1940 while (*p2
&& !ISSPACE ((unsigned char) *p2
))
1943 if (*p2
!= ' ' && *p2
!= '\t')
1944 fatal ("specs %%rename syntax malformed after %ld characters",
1945 (long) (p2
- buffer
));
1949 while (*p2
== ' ' || *p2
== '\t')
1952 if (! ISALPHA ((unsigned char) *p2
))
1953 fatal ("specs %%rename syntax malformed after %ld characters",
1954 (long) (p2
- buffer
));
1956 /* Get new spec name. */
1958 while (*p3
&& !ISSPACE ((unsigned char) *p3
))
1962 fatal ("specs %%rename syntax malformed after %ld characters",
1963 (long) (p3
- buffer
));
1966 for (sl
= specs
; sl
; sl
= sl
->next
)
1967 if (name_len
== sl
->name_len
&& !strcmp (sl
->name
, p1
))
1971 fatal ("specs %s spec was not found to be renamed", p1
);
1973 if (strcmp (p1
, p2
) == 0)
1976 for (newsl
= specs
; newsl
; newsl
= newsl
->next
)
1977 if (strcmp (newsl
->name
, p2
) == 0)
1978 fatal ("%s: attempt to rename spec '%s' to already defined spec '%s'",
1983 notice ("rename spec %s to %s\n", p1
, p2
);
1985 notice ("spec is '%s'\n\n", *(sl
->ptr_spec
));
1989 set_spec (p2
, *(sl
->ptr_spec
));
1991 free ((PTR
) *(sl
->ptr_spec
));
1993 *(sl
->ptr_spec
) = "";
1998 fatal ("specs unknown %% command after %ld characters",
1999 (long) (p1
- buffer
));
2002 /* Find the colon that should end the suffix. */
2004 while (*p1
&& *p1
!= ':' && *p1
!= '\n')
2007 /* The colon shouldn't be missing. */
2009 fatal ("specs file malformed after %ld characters",
2010 (long) (p1
- buffer
));
2012 /* Skip back over trailing whitespace. */
2014 while (p2
> buffer
&& (p2
[-1] == ' ' || p2
[-1] == '\t'))
2017 /* Copy the suffix to a string. */
2018 suffix
= save_string (p
, p2
- p
);
2019 /* Find the next line. */
2020 p
= skip_whitespace (p1
+ 1);
2022 fatal ("specs file malformed after %ld characters",
2023 (long) (p
- buffer
));
2026 /* Find next blank line or end of string. */
2027 while (*p1
&& !(*p1
== '\n' && (p1
[1] == '\n' || p1
[1] == '\0')))
2030 /* Specs end at the blank line and do not include the newline. */
2031 spec
= save_string (p
, p1
- p
);
2034 /* Delete backslash-newline sequences from the spec. */
2039 if (in
[0] == '\\' && in
[1] == '\n')
2041 else if (in
[0] == '#')
2042 while (*in
&& *in
!= '\n')
2050 if (suffix
[0] == '*')
2052 if (! strcmp (suffix
, "*link_command"))
2053 link_command_spec
= spec
;
2055 set_spec (suffix
+ 1, spec
);
2059 /* Add this pair to the vector. */
2061 = ((struct compiler
*)
2062 xrealloc (compilers
,
2063 (n_compilers
+ 2) * sizeof (struct compiler
)));
2065 compilers
[n_compilers
].suffix
= suffix
;
2066 compilers
[n_compilers
].spec
= spec
;
2068 memset (&compilers
[n_compilers
], 0, sizeof compilers
[n_compilers
]);
2072 link_command_spec
= spec
;
2075 if (link_command_spec
== 0)
2076 fatal ("spec file has no spec for linking");
2079 /* Record the names of temporary files we tell compilers to write,
2080 and delete them at the end of the run. */
2082 /* This is the common prefix we use to make temp file names.
2083 It is chosen once for each run of this program.
2084 It is substituted into a spec by %g or %j.
2085 Thus, all temp file names contain this prefix.
2086 In practice, all temp file names start with this prefix.
2088 This prefix comes from the envvar TMPDIR if it is defined;
2089 otherwise, from the P_tmpdir macro if that is defined;
2090 otherwise, in /usr/tmp or /tmp;
2091 or finally the current directory if all else fails. */
2093 static const char *temp_filename
;
2095 /* Length of the prefix. */
2097 static int temp_filename_length
;
2099 /* Define the list of temporary files to delete. */
2104 struct temp_file
*next
;
2107 /* Queue of files to delete on success or failure of compilation. */
2108 static struct temp_file
*always_delete_queue
;
2109 /* Queue of files to delete on failure of compilation. */
2110 static struct temp_file
*failure_delete_queue
;
2112 /* Record FILENAME as a file to be deleted automatically.
2113 ALWAYS_DELETE nonzero means delete it if all compilation succeeds;
2114 otherwise delete it in any case.
2115 FAIL_DELETE nonzero means delete it if a compilation step fails;
2116 otherwise delete it in any case. */
2119 record_temp_file (filename
, always_delete
, fail_delete
)
2120 const char *filename
;
2124 char *const name
= xstrdup (filename
);
2128 struct temp_file
*temp
;
2129 for (temp
= always_delete_queue
; temp
; temp
= temp
->next
)
2130 if (! strcmp (name
, temp
->name
))
2133 temp
= (struct temp_file
*) xmalloc (sizeof (struct temp_file
));
2134 temp
->next
= always_delete_queue
;
2136 always_delete_queue
= temp
;
2143 struct temp_file
*temp
;
2144 for (temp
= failure_delete_queue
; temp
; temp
= temp
->next
)
2145 if (! strcmp (name
, temp
->name
))
2148 temp
= (struct temp_file
*) xmalloc (sizeof (struct temp_file
));
2149 temp
->next
= failure_delete_queue
;
2151 failure_delete_queue
= temp
;
2157 /* Delete all the temporary files whose names we previously recorded. */
2160 delete_if_ordinary (name
)
2167 printf ("Delete %s? (y or n) ", name
);
2171 while ((c
= getchar ()) != '\n' && c
!= EOF
)
2174 if (i
== 'y' || i
== 'Y')
2176 if (stat (name
, &st
) >= 0 && S_ISREG (st
.st_mode
))
2177 if (unlink (name
) < 0)
2179 perror_with_name (name
);
2183 delete_temp_files ()
2185 struct temp_file
*temp
;
2187 for (temp
= always_delete_queue
; temp
; temp
= temp
->next
)
2188 delete_if_ordinary (temp
->name
);
2189 always_delete_queue
= 0;
2192 /* Delete all the files to be deleted on error. */
2195 delete_failure_queue ()
2197 struct temp_file
*temp
;
2199 for (temp
= failure_delete_queue
; temp
; temp
= temp
->next
)
2200 delete_if_ordinary (temp
->name
);
2204 clear_failure_queue ()
2206 failure_delete_queue
= 0;
2209 /* Build a list of search directories from PATHS.
2210 PREFIX is a string to prepend to the list.
2211 If CHECK_DIR_P is nonzero we ensure the directory exists.
2212 This is used mostly by putenv_from_prefixes so we use `collect_obstack'.
2213 It is also used by the --print-search-dirs flag. */
2216 build_search_list (paths
, prefix
, check_dir_p
)
2217 struct path_prefix
*paths
;
2221 int suffix_len
= (machine_suffix
) ? strlen (machine_suffix
) : 0;
2223 = (just_machine_suffix
) ? strlen (just_machine_suffix
) : 0;
2224 int first_time
= TRUE
;
2225 struct prefix_list
*pprefix
;
2227 obstack_grow (&collect_obstack
, prefix
, strlen (prefix
));
2228 obstack_1grow (&collect_obstack
, '=');
2230 for (pprefix
= paths
->plist
; pprefix
!= 0; pprefix
= pprefix
->next
)
2232 int len
= strlen (pprefix
->prefix
);
2236 || is_directory (pprefix
->prefix
, machine_suffix
, 0)))
2239 obstack_1grow (&collect_obstack
, PATH_SEPARATOR
);
2242 obstack_grow (&collect_obstack
, pprefix
->prefix
, len
);
2243 obstack_grow (&collect_obstack
, machine_suffix
, suffix_len
);
2246 if (just_machine_suffix
2247 && pprefix
->require_machine_suffix
== 2
2249 || is_directory (pprefix
->prefix
, just_machine_suffix
, 0)))
2252 obstack_1grow (&collect_obstack
, PATH_SEPARATOR
);
2255 obstack_grow (&collect_obstack
, pprefix
->prefix
, len
);
2256 obstack_grow (&collect_obstack
, just_machine_suffix
,
2260 if (! pprefix
->require_machine_suffix
)
2263 obstack_1grow (&collect_obstack
, PATH_SEPARATOR
);
2266 obstack_grow (&collect_obstack
, pprefix
->prefix
, len
);
2270 obstack_1grow (&collect_obstack
, '\0');
2271 return obstack_finish (&collect_obstack
);
2274 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
2278 putenv_from_prefixes (paths
, env_var
)
2279 struct path_prefix
*paths
;
2280 const char *env_var
;
2282 putenv (build_search_list (paths
, env_var
, 1));
2285 /* Check whether NAME can be accessed in MODE. This is like access,
2286 except that it never considers directories to be executable. */
2289 access_check (name
, mode
)
2297 if (stat (name
, &st
) < 0
2298 || S_ISDIR (st
.st_mode
))
2302 return access (name
, mode
);
2305 /* Search for NAME using the prefix list PREFIXES. MODE is passed to
2306 access to check permissions.
2307 Return 0 if not found, otherwise return its name, allocated with malloc. */
2310 find_a_file (pprefix
, name
, mode
, multilib
)
2311 struct path_prefix
*pprefix
;
2316 const char *const file_suffix
=
2317 ((mode
& X_OK
) != 0 ? HOST_EXECUTABLE_SUFFIX
: "");
2318 struct prefix_list
*pl
;
2319 int len
= pprefix
->max_len
+ strlen (name
) + strlen (file_suffix
) + 1;
2320 const char *multilib_name
, *multilib_os_name
;
2322 #ifdef DEFAULT_ASSEMBLER
2323 if (! strcmp (name
, "as") && access (DEFAULT_ASSEMBLER
, mode
) == 0)
2324 return xstrdup (DEFAULT_ASSEMBLER
);
2327 #ifdef DEFAULT_LINKER
2328 if (! strcmp(name
, "ld") && access (DEFAULT_LINKER
, mode
) == 0)
2329 return xstrdup (DEFAULT_LINKER
);
2333 len
+= strlen (machine_suffix
);
2335 multilib_name
= name
;
2336 multilib_os_name
= name
;
2337 if (multilib
&& multilib_os_dir
)
2339 int len1
= multilib_dir
? strlen (multilib_dir
) + 1 : 0;
2340 int len2
= strlen (multilib_os_dir
) + 1;
2342 len
+= len1
> len2
? len1
: len2
;
2344 multilib_name
= ACONCAT ((multilib_dir
, dir_separator_str
, name
,
2346 if (strcmp (multilib_os_dir
, ".") != 0)
2347 multilib_os_name
= ACONCAT ((multilib_os_dir
, dir_separator_str
, name
,
2351 temp
= xmalloc (len
);
2353 /* Determine the filename to execute (special case for absolute paths). */
2355 if (IS_ABSOLUTE_PATHNAME (name
))
2357 if (access (name
, mode
) == 0)
2359 strcpy (temp
, name
);
2364 for (pl
= pprefix
->plist
; pl
; pl
= pl
->next
)
2366 const char *this_name
2367 = pl
->os_multilib
? multilib_os_name
: multilib_name
;
2371 /* Some systems have a suffix for executable files.
2372 So try appending that first. */
2373 if (file_suffix
[0] != 0)
2375 strcpy (temp
, pl
->prefix
);
2376 strcat (temp
, machine_suffix
);
2377 strcat (temp
, multilib_name
);
2378 strcat (temp
, file_suffix
);
2379 if (access_check (temp
, mode
) == 0)
2381 if (pl
->used_flag_ptr
!= 0)
2382 *pl
->used_flag_ptr
= 1;
2387 /* Now try just the multilib_name. */
2388 strcpy (temp
, pl
->prefix
);
2389 strcat (temp
, machine_suffix
);
2390 strcat (temp
, multilib_name
);
2391 if (access_check (temp
, mode
) == 0)
2393 if (pl
->used_flag_ptr
!= 0)
2394 *pl
->used_flag_ptr
= 1;
2399 /* Certain prefixes are tried with just the machine type,
2400 not the version. This is used for finding as, ld, etc. */
2401 if (just_machine_suffix
&& pl
->require_machine_suffix
== 2)
2403 /* Some systems have a suffix for executable files.
2404 So try appending that first. */
2405 if (file_suffix
[0] != 0)
2407 strcpy (temp
, pl
->prefix
);
2408 strcat (temp
, just_machine_suffix
);
2409 strcat (temp
, multilib_name
);
2410 strcat (temp
, file_suffix
);
2411 if (access_check (temp
, mode
) == 0)
2413 if (pl
->used_flag_ptr
!= 0)
2414 *pl
->used_flag_ptr
= 1;
2419 strcpy (temp
, pl
->prefix
);
2420 strcat (temp
, just_machine_suffix
);
2421 strcat (temp
, multilib_name
);
2422 if (access_check (temp
, mode
) == 0)
2424 if (pl
->used_flag_ptr
!= 0)
2425 *pl
->used_flag_ptr
= 1;
2430 /* Certain prefixes can't be used without the machine suffix
2431 when the machine or version is explicitly specified. */
2432 if (! pl
->require_machine_suffix
)
2434 /* Some systems have a suffix for executable files.
2435 So try appending that first. */
2436 if (file_suffix
[0] != 0)
2438 strcpy (temp
, pl
->prefix
);
2439 strcat (temp
, this_name
);
2440 strcat (temp
, file_suffix
);
2441 if (access_check (temp
, mode
) == 0)
2443 if (pl
->used_flag_ptr
!= 0)
2444 *pl
->used_flag_ptr
= 1;
2449 strcpy (temp
, pl
->prefix
);
2450 strcat (temp
, this_name
);
2451 if (access_check (temp
, mode
) == 0)
2453 if (pl
->used_flag_ptr
!= 0)
2454 *pl
->used_flag_ptr
= 1;
2464 /* Ranking of prefixes in the sort list. -B prefixes are put before
2467 enum path_prefix_priority
2469 PREFIX_PRIORITY_B_OPT
,
2470 PREFIX_PRIORITY_LAST
2473 /* Add an entry for PREFIX in PLIST. The PLIST is kept in assending
2474 order according to PRIORITY. Within each PRIORITY, new entries are
2477 If WARN is nonzero, we will warn if no file is found
2478 through this prefix. WARN should point to an int
2479 which will be set to 1 if this entry is used.
2481 COMPONENT is the value to be passed to update_path.
2483 REQUIRE_MACHINE_SUFFIX is 1 if this prefix can't be used without
2484 the complete value of machine_suffix.
2485 2 means try both machine_suffix and just_machine_suffix. */
2488 add_prefix (pprefix
, prefix
, component
, priority
, require_machine_suffix
,
2490 struct path_prefix
*pprefix
;
2492 const char *component
;
2493 /* enum prefix_priority */ int priority
;
2494 int require_machine_suffix
;
2498 struct prefix_list
*pl
, **prev
;
2501 for (prev
= &pprefix
->plist
;
2502 (*prev
) != NULL
&& (*prev
)->priority
<= priority
;
2503 prev
= &(*prev
)->next
)
2506 /* Keep track of the longest prefix */
2508 prefix
= update_path (prefix
, component
);
2509 len
= strlen (prefix
);
2510 if (len
> pprefix
->max_len
)
2511 pprefix
->max_len
= len
;
2513 pl
= (struct prefix_list
*) xmalloc (sizeof (struct prefix_list
));
2514 pl
->prefix
= prefix
;
2515 pl
->require_machine_suffix
= require_machine_suffix
;
2516 pl
->used_flag_ptr
= warn
;
2517 pl
->priority
= priority
;
2518 pl
->os_multilib
= os_multilib
;
2522 /* Insert after PREV */
2527 /* Same as add_prefix, but prepending target_system_root to prefix. */
2529 add_sysrooted_prefix (pprefix
, prefix
, component
, priority
,
2530 require_machine_suffix
, warn
, os_multilib
)
2531 struct path_prefix
*pprefix
;
2533 const char *component
;
2534 /* enum prefix_priority */ int priority
;
2535 int require_machine_suffix
;
2539 if (!IS_ABSOLUTE_PATHNAME (prefix
))
2542 if (target_system_root
)
2544 prefix
= concat (target_system_root
, prefix
, NULL
);
2545 /* We have to override this because GCC's notion of sysroot
2546 moves along with GCC. */
2550 add_prefix (pprefix
, prefix
, component
, priority
,
2551 require_machine_suffix
, warn
, os_multilib
);
2554 /* Execute the command specified by the arguments on the current line of spec.
2555 When using pipes, this includes several piped-together commands
2556 with `|' between them.
2558 Return 0 if successful, -1 if failed. */
2564 int n_commands
; /* # of command. */
2568 const char *prog
; /* program name. */
2569 const char **argv
; /* vector of args. */
2570 int pid
; /* pid of process for this command. */
2573 struct command
*commands
; /* each command buffer with above info. */
2575 if (processing_spec_function
)
2578 /* Count # of piped commands. */
2579 for (n_commands
= 1, i
= 0; i
< argbuf_index
; i
++)
2580 if (strcmp (argbuf
[i
], "|") == 0)
2583 /* Get storage for each command. */
2584 commands
= (struct command
*) alloca (n_commands
* sizeof (struct command
));
2586 /* Split argbuf into its separate piped processes,
2587 and record info about each one.
2588 Also search for the programs that are to be run. */
2590 commands
[0].prog
= argbuf
[0]; /* first command. */
2591 commands
[0].argv
= &argbuf
[0];
2592 string
= find_a_file (&exec_prefixes
, commands
[0].prog
, X_OK
, 0);
2595 commands
[0].argv
[0] = string
;
2597 for (n_commands
= 1, i
= 0; i
< argbuf_index
; i
++)
2598 if (strcmp (argbuf
[i
], "|") == 0)
2599 { /* each command. */
2600 #if defined (__MSDOS__) || defined (OS2) || defined (VMS)
2601 fatal ("-pipe not supported");
2603 argbuf
[i
] = 0; /* termination of command args. */
2604 commands
[n_commands
].prog
= argbuf
[i
+ 1];
2605 commands
[n_commands
].argv
= &argbuf
[i
+ 1];
2606 string
= find_a_file (&exec_prefixes
, commands
[n_commands
].prog
,
2609 commands
[n_commands
].argv
[0] = string
;
2613 argbuf
[argbuf_index
] = 0;
2615 /* If -v, print what we are about to do, and maybe query. */
2619 /* For help listings, put a blank line between sub-processes. */
2620 if (print_help_list
)
2621 fputc ('\n', stderr
);
2623 /* Print each piped command as a separate line. */
2624 for (i
= 0; i
< n_commands
; i
++)
2626 const char *const *j
;
2628 if (verbose_only_flag
)
2630 for (j
= commands
[i
].argv
; *j
; j
++)
2633 fprintf (stderr
, " \"");
2634 for (p
= *j
; *p
; ++p
)
2636 if (*p
== '"' || *p
== '\\' || *p
== '$')
2637 fputc ('\\', stderr
);
2640 fputc ('"', stderr
);
2644 for (j
= commands
[i
].argv
; *j
; j
++)
2645 fprintf (stderr
, " %s", *j
);
2647 /* Print a pipe symbol after all but the last command. */
2648 if (i
+ 1 != n_commands
)
2649 fprintf (stderr
, " |");
2650 fprintf (stderr
, "\n");
2653 if (verbose_only_flag
!= 0)
2655 /* verbose_only_flag should act as if the spec was
2656 executed, so increment execution_count before
2657 returning. Theis prevent spurious warnings about
2658 unused linker input files, etc. */
2663 notice ("\nGo ahead? (y or n) ");
2667 while (getchar () != '\n')
2670 if (i
!= 'y' && i
!= 'Y')
2675 #ifdef ENABLE_VALGRIND_CHECKING
2676 /* Run the each command through valgrind. To simplifiy prepending the
2677 path to valgrind and the option "-q" (for quiet operation unless
2678 something triggers), we allocate a separate argv array. */
2680 for (i
= 0; i
< n_commands
; i
++)
2686 for (argc
= 0; commands
[i
].argv
[argc
] != NULL
; argc
++)
2689 argv
= alloca ((argc
+ 3) * sizeof (char *));
2691 argv
[0] = VALGRIND_PATH
;
2693 for (j
= 2; j
< argc
+ 2; j
++)
2694 argv
[j
] = commands
[i
].argv
[j
- 2];
2697 commands
[i
].argv
= argv
;
2698 commands
[i
].prog
= argv
[0];
2702 /* Run each piped subprocess. */
2704 for (i
= 0; i
< n_commands
; i
++)
2706 char *errmsg_fmt
, *errmsg_arg
;
2707 const char *string
= commands
[i
].argv
[0];
2709 /* For some bizarre reason, the second argument of execvp() is
2710 char *const *, not const char *const *. */
2711 commands
[i
].pid
= pexecute (string
, (char *const *) commands
[i
].argv
,
2712 programname
, temp_filename
,
2713 &errmsg_fmt
, &errmsg_arg
,
2714 ((i
== 0 ? PEXECUTE_FIRST
: 0)
2715 | (i
+ 1 == n_commands
? PEXECUTE_LAST
: 0)
2716 | (string
== commands
[i
].prog
2717 ? PEXECUTE_SEARCH
: 0)
2718 | (verbose_flag
? PEXECUTE_VERBOSE
: 0)));
2720 if (commands
[i
].pid
== -1)
2721 pfatal_pexecute (errmsg_fmt
, errmsg_arg
);
2723 if (string
!= commands
[i
].prog
)
2724 free ((PTR
) string
);
2729 /* Wait for all the subprocesses to finish.
2730 We don't care what order they finish in;
2731 we know that N_COMMANDS waits will get them all.
2732 Ignore subprocesses that we don't know about,
2733 since they can be spawned by the process that exec'ed us. */
2737 #ifdef HAVE_GETRUSAGE
2739 double ut
= 0.0, st
= 0.0;
2742 for (i
= 0; i
< n_commands
;)
2748 pid
= pwait (commands
[i
].pid
, &status
, 0);
2752 #ifdef HAVE_GETRUSAGE
2755 /* getrusage returns the total resource usage of all children
2756 up to now. Copy the previous values into prus, get the
2757 current statistics, then take the difference. */
2760 getrusage (RUSAGE_CHILDREN
, &rus
);
2761 d
.tv_sec
= rus
.ru_utime
.tv_sec
- prus
.ru_utime
.tv_sec
;
2762 d
.tv_usec
= rus
.ru_utime
.tv_usec
- prus
.ru_utime
.tv_usec
;
2763 ut
= (double) d
.tv_sec
+ (double) d
.tv_usec
/ 1.0e6
;
2765 d
.tv_sec
= rus
.ru_stime
.tv_sec
- prus
.ru_stime
.tv_sec
;
2766 d
.tv_usec
= rus
.ru_stime
.tv_usec
- prus
.ru_stime
.tv_usec
;
2767 st
= (double) d
.tv_sec
+ (double) d
.tv_usec
/ 1.0e6
;
2771 for (j
= 0; j
< n_commands
; j
++)
2772 if (commands
[j
].pid
== pid
)
2775 if (WIFSIGNALED (status
))
2778 /* SIGPIPE is a special case. It happens in -pipe mode
2779 when the compiler dies before the preprocessor is
2780 done, or the assembler dies before the compiler is
2781 done. There's generally been an error already, and
2782 this is just fallout. So don't generate another error
2783 unless we would otherwise have succeeded. */
2784 if (WTERMSIG (status
) == SIGPIPE
2785 && (signal_count
|| greatest_status
>= MIN_FATAL_STATUS
))
2790 Internal error: %s (program %s)\n\
2791 Please submit a full bug report.\n\
2792 See %s for instructions.",
2793 strsignal (WTERMSIG (status
)), commands
[j
].prog
,
2798 else if (WIFEXITED (status
)
2799 && WEXITSTATUS (status
) >= MIN_FATAL_STATUS
)
2801 if (WEXITSTATUS (status
) > greatest_status
)
2802 greatest_status
= WEXITSTATUS (status
);
2805 #ifdef HAVE_GETRUSAGE
2806 if (report_times
&& ut
+ st
!= 0)
2807 notice ("# %s %.2f %.2f\n", commands
[j
].prog
, ut
, st
);
2816 /* Find all the switches given to us
2817 and make a vector describing them.
2818 The elements of the vector are strings, one per switch given.
2819 If a switch uses following arguments, then the `part1' field
2820 is the switch itself and the `args' field
2821 is a null-terminated vector containing the following arguments.
2822 The `live_cond' field is:
2824 1 if the switch is true in a conditional spec,
2825 -1 if false (overridden by a later switch)
2826 -2 if this switch should be ignored (used in %{<S})
2827 The `validated' field is nonzero if any spec has looked at this switch;
2828 if it remains zero at the end of the run, it must be meaningless. */
2831 #define SWITCH_FALSE -1
2832 #define SWITCH_IGNORE -2
2833 #define SWITCH_LIVE 1
2840 unsigned char validated
;
2841 unsigned char ordering
;
2844 static struct switchstr
*switches
;
2846 static int n_switches
;
2851 const char *language
;
2854 /* Also a vector of input files specified. */
2856 static struct infile
*infiles
;
2860 /* This counts the number of libraries added by lang_specific_driver, so that
2861 we can tell if there were any user supplied any files or libraries. */
2863 static int added_libraries
;
2865 /* And a vector of corresponding output files is made up later. */
2867 const char **outfiles
;
2869 /* Used to track if none of the -B paths are used. */
2872 /* Gives value to pass as "warn" to add_prefix for standard prefixes. */
2873 static int *warn_std_ptr
= 0;
2875 #if defined(HAVE_TARGET_OBJECT_SUFFIX) || defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
2877 /* Convert NAME to a new name if it is the standard suffix. DO_EXE
2878 is true if we should look for an executable suffix. DO_OBJ
2879 is true if we should look for an object suffix. */
2882 convert_filename (name
, do_exe
, do_obj
)
2884 int do_exe ATTRIBUTE_UNUSED
;
2885 int do_obj ATTRIBUTE_UNUSED
;
2887 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
2895 len
= strlen (name
);
2897 #ifdef HAVE_TARGET_OBJECT_SUFFIX
2898 /* Convert x.o to x.obj if TARGET_OBJECT_SUFFIX is ".obj". */
2899 if (do_obj
&& len
> 2
2900 && name
[len
- 2] == '.'
2901 && name
[len
- 1] == 'o')
2903 obstack_grow (&obstack
, name
, len
- 2);
2904 obstack_grow0 (&obstack
, TARGET_OBJECT_SUFFIX
, strlen (TARGET_OBJECT_SUFFIX
));
2905 name
= obstack_finish (&obstack
);
2909 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
2910 /* If there is no filetype, make it the executable suffix (which includes
2911 the "."). But don't get confused if we have just "-o". */
2912 if (! do_exe
|| TARGET_EXECUTABLE_SUFFIX
[0] == 0 || (len
== 2 && name
[0] == '-'))
2915 for (i
= len
- 1; i
>= 0; i
--)
2916 if (IS_DIR_SEPARATOR (name
[i
]))
2919 for (i
++; i
< len
; i
++)
2923 obstack_grow (&obstack
, name
, len
);
2924 obstack_grow0 (&obstack
, TARGET_EXECUTABLE_SUFFIX
,
2925 strlen (TARGET_EXECUTABLE_SUFFIX
));
2926 name
= obstack_finish (&obstack
);
2933 /* Display the command line switches accepted by gcc. */
2937 printf (_("Usage: %s [options] file...\n"), programname
);
2938 fputs (_("Options:\n"), stdout
);
2940 fputs (_(" -pass-exit-codes Exit with highest error code from a phase\n"), stdout
);
2941 fputs (_(" --help Display this information\n"), stdout
);
2942 fputs (_(" --target-help Display target specific command line options\n"), stdout
);
2944 fputs (_(" (Use '-v --help' to display command line options of sub-processes)\n"), stdout
);
2945 fputs (_(" -dumpspecs Display all of the built in spec strings\n"), stdout
);
2946 fputs (_(" -dumpversion Display the version of the compiler\n"), stdout
);
2947 fputs (_(" -dumpmachine Display the compiler's target processor\n"), stdout
);
2948 fputs (_(" -print-search-dirs Display the directories in the compiler's search path\n"), stdout
);
2949 fputs (_(" -print-libgcc-file-name Display the name of the compiler's companion library\n"), stdout
);
2950 fputs (_(" -print-file-name=<lib> Display the full path to library <lib>\n"), stdout
);
2951 fputs (_(" -print-prog-name=<prog> Display the full path to compiler component <prog>\n"), stdout
);
2952 fputs (_(" -print-multi-directory Display the root directory for versions of libgcc\n"), stdout
);
2954 -print-multi-lib Display the mapping between command line options and\n\
2955 multiple library search directories\n"), stdout
);
2956 fputs (_(" -print-multi-os-directory Display the relative path to OS libraries\n"), stdout
);
2957 fputs (_(" -Wa,<options> Pass comma-separated <options> on to the assembler\n"), stdout
);
2958 fputs (_(" -Wp,<options> Pass comma-separated <options> on to the preprocessor\n"), stdout
);
2959 fputs (_(" -Wl,<options> Pass comma-separated <options> on to the linker\n"), stdout
);
2960 fputs (_(" -Xlinker <arg> Pass <arg> on to the linker\n"), stdout
);
2961 fputs (_(" -save-temps Do not delete intermediate files\n"), stdout
);
2962 fputs (_(" -pipe Use pipes rather than intermediate files\n"), stdout
);
2963 fputs (_(" -time Time the execution of each subprocess\n"), stdout
);
2964 fputs (_(" -specs=<file> Override built-in specs with the contents of <file>\n"), stdout
);
2965 fputs (_(" -std=<standard> Assume that the input sources are for <standard>\n"), stdout
);
2966 fputs (_(" -B <directory> Add <directory> to the compiler's search paths\n"), stdout
);
2967 fputs (_(" -b <machine> Run gcc for target <machine>, if installed\n"), stdout
);
2968 fputs (_(" -V <version> Run gcc version number <version>, if installed\n"), stdout
);
2969 fputs (_(" -v Display the programs invoked by the compiler\n"), stdout
);
2970 fputs (_(" -### Like -v but options quoted and commands not executed\n"), stdout
);
2971 fputs (_(" -E Preprocess only; do not compile, assemble or link\n"), stdout
);
2972 fputs (_(" -S Compile only; do not assemble or link\n"), stdout
);
2973 fputs (_(" -c Compile and assemble, but do not link\n"), stdout
);
2974 fputs (_(" -o <file> Place the output into <file>\n"), stdout
);
2976 -x <language> Specify the language of the following input files\n\
2977 Permissible languages include: c c++ assembler none\n\
2978 'none' means revert to the default behavior of\n\
2979 guessing the language based on the file's extension\n\
2983 \nOptions starting with -g, -f, -m, -O, -W, or --param are automatically\n\
2984 passed on to the various sub-processes invoked by %s. In order to pass\n\
2985 other options on to these processes the -W<letter> options must be used.\n\
2988 /* The rest of the options are displayed by invocations of the various
2993 add_preprocessor_option (option
, len
)
2997 n_preprocessor_options
++;
2999 if (! preprocessor_options
)
3000 preprocessor_options
3001 = (char **) xmalloc (n_preprocessor_options
* sizeof (char *));
3003 preprocessor_options
3004 = (char **) xrealloc (preprocessor_options
,
3005 n_preprocessor_options
* sizeof (char *));
3007 preprocessor_options
[n_preprocessor_options
- 1] =
3008 save_string (option
, len
);
3012 add_assembler_option (option
, len
)
3016 n_assembler_options
++;
3018 if (! assembler_options
)
3020 = (char **) xmalloc (n_assembler_options
* sizeof (char *));
3023 = (char **) xrealloc (assembler_options
,
3024 n_assembler_options
* sizeof (char *));
3026 assembler_options
[n_assembler_options
- 1] = save_string (option
, len
);
3030 add_linker_option (option
, len
)
3036 if (! linker_options
)
3038 = (char **) xmalloc (n_linker_options
* sizeof (char *));
3041 = (char **) xrealloc (linker_options
,
3042 n_linker_options
* sizeof (char *));
3044 linker_options
[n_linker_options
- 1] = save_string (option
, len
);
3047 /* Create the vector `switches' and its contents.
3048 Store its length in `n_switches'. */
3051 process_command (argc
, argv
)
3053 const char *const *argv
;
3058 const char *spec_lang
= 0;
3059 int last_language_n_infiles
;
3062 int lang_n_infiles
= 0;
3063 #ifdef MODIFY_TARGET_NAME
3064 int is_modify_target_name
;
3068 GET_ENVIRONMENT (gcc_exec_prefix
, "GCC_EXEC_PREFIX");
3072 added_libraries
= 0;
3074 /* Figure compiler version from version string. */
3076 compiler_version
= temp1
= xstrdup (version_string
);
3078 for (; *temp1
; ++temp1
)
3087 /* If there is a -V or -b option (or both), process it now, before
3088 trying to interpret the rest of the command line. */
3089 if (argc
> 1 && argv
[1][0] == '-'
3090 && (argv
[1][1] == 'V' || argv
[1][1] == 'b'))
3092 const char *new_version
= DEFAULT_TARGET_VERSION
;
3093 const char *new_machine
= DEFAULT_TARGET_MACHINE
;
3094 const char *progname
= argv
[0];
3099 while (argc
> 1 && argv
[1][0] == '-'
3100 && (argv
[1][1] == 'V' || argv
[1][1] == 'b'))
3102 char opt
= argv
[1][1];
3104 if (argv
[1][2] != '\0')
3117 fatal ("`-%c' option must have argument", opt
);
3124 for (baselen
= strlen (progname
); baselen
> 0; baselen
--)
3125 if (IS_DIR_SEPARATOR (progname
[baselen
-1]))
3127 new_argv0
= xmemdup (progname
, baselen
,
3128 baselen
+ concat_length (new_version
, new_machine
,
3129 "-gcc-", NULL
) + 1);
3130 strcpy (new_argv0
+ baselen
, new_machine
);
3131 strcat (new_argv0
, "-gcc-");
3132 strcat (new_argv0
, new_version
);
3134 new_argv
= xmemdup (argv
, (argc
+ 1) * sizeof (argv
[0]),
3135 (argc
+ 1) * sizeof (argv
[0]));
3136 new_argv
[0] = new_argv0
;
3138 execvp (new_argv0
, new_argv
);
3139 fatal ("couldn't run `%s': %s", new_argv0
, xstrerror (errno
));
3142 /* Set up the default search paths. If there is no GCC_EXEC_PREFIX,
3143 see if we can create it from the pathname specified in argv[0]. */
3146 /* FIXME: make_relative_prefix doesn't yet work for VMS. */
3147 if (!gcc_exec_prefix
)
3149 gcc_exec_prefix
= make_relative_prefix (argv
[0], standard_bindir_prefix
,
3150 standard_exec_prefix
);
3151 if (gcc_exec_prefix
)
3152 putenv (concat ("GCC_EXEC_PREFIX=", gcc_exec_prefix
, NULL
));
3156 if (gcc_exec_prefix
)
3158 int len
= strlen (gcc_exec_prefix
);
3160 if (len
> (int) sizeof ("/lib/gcc-lib/") - 1
3161 && (IS_DIR_SEPARATOR (gcc_exec_prefix
[len
-1])))
3163 temp
= gcc_exec_prefix
+ len
- sizeof ("/lib/gcc-lib/") + 1;
3164 if (IS_DIR_SEPARATOR (*temp
)
3165 && strncmp (temp
+ 1, "lib", 3) == 0
3166 && IS_DIR_SEPARATOR (temp
[4])
3167 && strncmp (temp
+ 5, "gcc-lib", 7) == 0)
3168 len
-= sizeof ("/lib/gcc-lib/") - 1;
3171 set_std_prefix (gcc_exec_prefix
, len
);
3172 add_prefix (&exec_prefixes
, gcc_exec_prefix
, "GCC",
3173 PREFIX_PRIORITY_LAST
, 0, NULL
, 0);
3174 add_prefix (&startfile_prefixes
, gcc_exec_prefix
, "GCC",
3175 PREFIX_PRIORITY_LAST
, 0, NULL
, 0);
3178 /* COMPILER_PATH and LIBRARY_PATH have values
3179 that are lists of directory names with colons. */
3181 GET_ENVIRONMENT (temp
, "COMPILER_PATH");
3184 const char *startp
, *endp
;
3185 char *nstore
= (char *) alloca (strlen (temp
) + 3);
3187 startp
= endp
= temp
;
3190 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
3192 strncpy (nstore
, startp
, endp
- startp
);
3194 strcpy (nstore
, concat (".", dir_separator_str
, NULL
));
3195 else if (!IS_DIR_SEPARATOR (endp
[-1]))
3197 nstore
[endp
- startp
] = DIR_SEPARATOR
;
3198 nstore
[endp
- startp
+ 1] = 0;
3201 nstore
[endp
- startp
] = 0;
3202 add_prefix (&exec_prefixes
, nstore
, 0,
3203 PREFIX_PRIORITY_LAST
, 0, NULL
, 0);
3204 add_prefix (&include_prefixes
,
3205 concat (nstore
, "include", NULL
),
3206 0, PREFIX_PRIORITY_LAST
, 0, NULL
, 0);
3209 endp
= startp
= endp
+ 1;
3216 GET_ENVIRONMENT (temp
, LIBRARY_PATH_ENV
);
3217 if (temp
&& *cross_compile
== '0')
3219 const char *startp
, *endp
;
3220 char *nstore
= (char *) alloca (strlen (temp
) + 3);
3222 startp
= endp
= temp
;
3225 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
3227 strncpy (nstore
, startp
, endp
- startp
);
3229 strcpy (nstore
, concat (".", dir_separator_str
, NULL
));
3230 else if (!IS_DIR_SEPARATOR (endp
[-1]))
3232 nstore
[endp
- startp
] = DIR_SEPARATOR
;
3233 nstore
[endp
- startp
+ 1] = 0;
3236 nstore
[endp
- startp
] = 0;
3237 add_prefix (&startfile_prefixes
, nstore
, NULL
,
3238 PREFIX_PRIORITY_LAST
, 0, NULL
, 1);
3241 endp
= startp
= endp
+ 1;
3248 /* Use LPATH like LIBRARY_PATH (for the CMU build program). */
3249 GET_ENVIRONMENT (temp
, "LPATH");
3250 if (temp
&& *cross_compile
== '0')
3252 const char *startp
, *endp
;
3253 char *nstore
= (char *) alloca (strlen (temp
) + 3);
3255 startp
= endp
= temp
;
3258 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
3260 strncpy (nstore
, startp
, endp
- startp
);
3262 strcpy (nstore
, concat (".", dir_separator_str
, NULL
));
3263 else if (!IS_DIR_SEPARATOR (endp
[-1]))
3265 nstore
[endp
- startp
] = DIR_SEPARATOR
;
3266 nstore
[endp
- startp
+ 1] = 0;
3269 nstore
[endp
- startp
] = 0;
3270 add_prefix (&startfile_prefixes
, nstore
, NULL
,
3271 PREFIX_PRIORITY_LAST
, 0, NULL
, 1);
3274 endp
= startp
= endp
+ 1;
3281 /* Convert new-style -- options to old-style. */
3282 translate_options (&argc
, &argv
);
3284 /* Do language-specific adjustment/addition of flags. */
3285 lang_specific_driver (&argc
, &argv
, &added_libraries
);
3287 /* Scan argv twice. Here, the first time, just count how many switches
3288 there will be in their vector, and how many input files in theirs.
3289 Here we also parse the switches that cc itself uses (e.g. -v). */
3291 for (i
= 1; i
< argc
; i
++)
3293 if (! strcmp (argv
[i
], "-dumpspecs"))
3295 struct spec_list
*sl
;
3297 for (sl
= specs
; sl
; sl
= sl
->next
)
3298 printf ("*%s:\n%s\n\n", sl
->name
, *(sl
->ptr_spec
));
3299 if (link_command_spec
)
3300 printf ("*link_command:\n%s\n\n", link_command_spec
);
3303 else if (! strcmp (argv
[i
], "-dumpversion"))
3305 printf ("%s\n", spec_version
);
3308 else if (! strcmp (argv
[i
], "-dumpmachine"))
3310 printf ("%s\n", spec_machine
);
3313 else if (strcmp (argv
[i
], "-fversion") == 0)
3315 /* translate_options () has turned --version into -fversion. */
3316 printf (_("%s (GCC) %s\n"), programname
, version_string
);
3317 fputs (_("Copyright (C) 2003 Free Software Foundation, Inc.\n"),
3319 fputs (_("This is free software; see the source for copying conditions. There is NO\n\
3320 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n"),
3324 else if (strcmp (argv
[i
], "-fhelp") == 0)
3326 /* translate_options () has turned --help into -fhelp. */
3327 print_help_list
= 1;
3329 /* We will be passing a dummy file on to the sub-processes. */
3333 /* CPP driver cannot obtain switch from cc1_options. */
3335 add_preprocessor_option ("--help", 6);
3336 add_assembler_option ("--help", 6);
3337 add_linker_option ("--help", 6);
3339 else if (strcmp (argv
[i
], "-ftarget-help") == 0)
3341 /* translate_options() has turned --target-help into -ftarget-help. */
3342 target_help_flag
= 1;
3344 /* We will be passing a dummy file on to the sub-processes. */
3348 /* CPP driver cannot obtain switch from cc1_options. */
3350 add_preprocessor_option ("--target-help", 13);
3351 add_assembler_option ("--target-help", 13);
3352 add_linker_option ("--target-help", 13);
3354 else if (! strcmp (argv
[i
], "-pass-exit-codes"))
3356 pass_exit_codes
= 1;
3359 else if (! strcmp (argv
[i
], "-print-search-dirs"))
3360 print_search_dirs
= 1;
3361 else if (! strcmp (argv
[i
], "-print-libgcc-file-name"))
3362 print_file_name
= "libgcc.a";
3363 else if (! strncmp (argv
[i
], "-print-file-name=", 17))
3364 print_file_name
= argv
[i
] + 17;
3365 else if (! strncmp (argv
[i
], "-print-prog-name=", 17))
3366 print_prog_name
= argv
[i
] + 17;
3367 else if (! strcmp (argv
[i
], "-print-multi-lib"))
3368 print_multi_lib
= 1;
3369 else if (! strcmp (argv
[i
], "-print-multi-directory"))
3370 print_multi_directory
= 1;
3371 else if (! strcmp (argv
[i
], "-print-multi-os-directory"))
3372 print_multi_os_directory
= 1;
3373 else if (! strncmp (argv
[i
], "-Wa,", 4))
3376 /* Pass the rest of this option to the assembler. */
3378 /* Split the argument at commas. */
3380 for (j
= 4; argv
[i
][j
]; j
++)
3381 if (argv
[i
][j
] == ',')
3383 add_assembler_option (argv
[i
] + prev
, j
- prev
);
3387 /* Record the part after the last comma. */
3388 add_assembler_option (argv
[i
] + prev
, j
- prev
);
3390 else if (! strncmp (argv
[i
], "-Wp,", 4))
3393 /* Pass the rest of this option to the preprocessor. */
3395 /* Split the argument at commas. */
3397 for (j
= 4; argv
[i
][j
]; j
++)
3398 if (argv
[i
][j
] == ',')
3400 add_preprocessor_option (argv
[i
] + prev
, j
- prev
);
3404 /* Record the part after the last comma. */
3405 add_preprocessor_option (argv
[i
] + prev
, j
- prev
);
3407 else if (argv
[i
][0] == '+' && argv
[i
][1] == 'e')
3408 /* The +e options to the C++ front-end. */
3410 else if (strncmp (argv
[i
], "-Wl,", 4) == 0)
3413 /* Split the argument at commas. */
3414 for (j
= 3; argv
[i
][j
]; j
++)
3415 n_infiles
+= (argv
[i
][j
] == ',');
3417 else if (strcmp (argv
[i
], "-Xlinker") == 0)
3420 fatal ("argument to `-Xlinker' is missing");
3425 else if (strcmp (argv
[i
], "-l") == 0)
3428 fatal ("argument to `-l' is missing");
3433 else if (strncmp (argv
[i
], "-l", 2) == 0)
3435 else if (strcmp (argv
[i
], "-save-temps") == 0)
3437 save_temps_flag
= 1;
3440 else if (strcmp (argv
[i
], "-specs") == 0)
3442 struct user_specs
*user
= (struct user_specs
*)
3443 xmalloc (sizeof (struct user_specs
));
3445 fatal ("argument to `-specs' is missing");
3447 user
->next
= (struct user_specs
*) 0;
3448 user
->filename
= argv
[i
];
3449 if (user_specs_tail
)
3450 user_specs_tail
->next
= user
;
3452 user_specs_head
= user
;
3453 user_specs_tail
= user
;
3455 else if (strncmp (argv
[i
], "-specs=", 7) == 0)
3457 struct user_specs
*user
= (struct user_specs
*)
3458 xmalloc (sizeof (struct user_specs
));
3459 if (strlen (argv
[i
]) == 7)
3460 fatal ("argument to `-specs=' is missing");
3462 user
->next
= (struct user_specs
*) 0;
3463 user
->filename
= argv
[i
] + 7;
3464 if (user_specs_tail
)
3465 user_specs_tail
->next
= user
;
3467 user_specs_head
= user
;
3468 user_specs_tail
= user
;
3470 else if (strcmp (argv
[i
], "-time") == 0)
3472 else if (strcmp (argv
[i
], "-###") == 0)
3474 /* This is similar to -v except that there is no execution
3475 of the commands and the echoed arguments are quoted. It
3476 is intended for use in shell scripts to capture the
3477 driver-generated command line. */
3478 verbose_only_flag
++;
3481 else if (argv
[i
][0] == '-' && argv
[i
][1] != 0)
3483 const char *p
= &argv
[i
][1];
3490 fatal ("`-%c' must come at the start of the command line", c
);
3498 if (p
[1] == 0 && i
+ 1 == argc
)
3499 fatal ("argument to `-B' is missing");
3505 len
= strlen (value
);
3507 /* Catch the case where the user has forgotten to append a
3508 directory separator to the path. Note, they may be using
3509 -B to add an executable name prefix, eg "i386-elf-", in
3510 order to distinguish between multiple installations of
3511 GCC in the same directory. Hence we must check to see
3512 if appending a directory separator actually makes a
3513 valid directory name. */
3514 if (! IS_DIR_SEPARATOR (value
[len
- 1])
3515 && is_directory (value
, "", 0))
3517 char *tmp
= xmalloc (len
+ 2);
3518 strcpy (tmp
, value
);
3519 tmp
[len
] = DIR_SEPARATOR
;
3524 /* As a kludge, if the arg is "[foo/]stageN/", just
3525 add "[foo/]include" to the include prefix. */
3528 && (IS_DIR_SEPARATOR (value
[len
- 8]))))
3529 && strncmp (value
+ len
- 7, "stage", 5) == 0
3530 && ISDIGIT (value
[len
- 2])
3531 && (IS_DIR_SEPARATOR (value
[len
- 1])))
3534 add_prefix (&include_prefixes
, "include", NULL
,
3535 PREFIX_PRIORITY_B_OPT
, 0, NULL
, 0);
3538 char * string
= xmalloc (len
+ 1);
3540 strncpy (string
, value
, len
- 7);
3541 strcpy (string
+ len
- 7, "include");
3542 add_prefix (&include_prefixes
, string
, NULL
,
3543 PREFIX_PRIORITY_B_OPT
, 0, NULL
, 0);
3547 add_prefix (&exec_prefixes
, value
, NULL
,
3548 PREFIX_PRIORITY_B_OPT
, 0, &warn_B
, 0);
3549 add_prefix (&startfile_prefixes
, value
, NULL
,
3550 PREFIX_PRIORITY_B_OPT
, 0, &warn_B
, 0);
3551 add_prefix (&include_prefixes
, concat (value
, "include", NULL
),
3552 NULL
, PREFIX_PRIORITY_B_OPT
, 0, NULL
, 0);
3557 case 'v': /* Print our subcommands and print versions. */
3559 /* If they do anything other than exactly `-v', don't set
3560 verbose_flag; rather, continue on to give the error. */
3578 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
3583 /* Forward scan, just in case -S or -c is specified
3590 if (argv
[j
][0] == '-')
3592 if (SWITCH_CURTAILS_COMPILATION (argv
[j
][1])
3598 else if ((skip
= SWITCH_TAKES_ARG (argv
[j
][1])))
3599 j
+= skip
- (argv
[j
][2] != 0);
3600 else if ((skip
= WORD_SWITCH_TAKES_ARG (argv
[j
] + 1)))
3607 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX) || defined(HAVE_TARGET_OBJECT_SUFFIX)
3609 argv
[i
+ 1] = convert_filename (argv
[i
+ 1], ! have_c
, 0);
3611 argv
[i
] = convert_filename (argv
[i
], ! have_c
, 0);
3618 #ifdef MODIFY_TARGET_NAME
3619 is_modify_target_name
= 0;
3621 for (j
= 0; j
< ARRAY_SIZE (modify_target
); j
++)
3622 if (! strcmp (argv
[i
], modify_target
[j
].sw
))
3625 = (char *) xmalloc (strlen (modify_target
[j
].str
)
3626 + strlen (spec_machine
));
3629 int made_addition
= 0;
3631 is_modify_target_name
= 1;
3632 for (p
= spec_machine
, q
= new_name
; *p
!= 0; )
3634 if (modify_target
[j
].add_del
== DELETE
3635 && (! strncmp (q
, modify_target
[j
].str
,
3636 strlen (modify_target
[j
].str
))))
3637 p
+= strlen (modify_target
[j
].str
);
3638 else if (modify_target
[j
].add_del
== ADD
3639 && ! made_addition
&& *p
== '-')
3641 for (r
= modify_target
[j
].str
; *r
!= 0; )
3649 spec_machine
= new_name
;
3652 if (is_modify_target_name
)
3658 if (SWITCH_TAKES_ARG (c
) > (p
[1] != 0))
3659 i
+= SWITCH_TAKES_ARG (c
) - (p
[1] != 0);
3660 else if (WORD_SWITCH_TAKES_ARG (p
))
3661 i
+= WORD_SWITCH_TAKES_ARG (p
);
3671 if (have_c
&& have_o
&& lang_n_infiles
> 1)
3672 fatal ("cannot specify -o with -c or -S and multiple compilations");
3674 /* Set up the search paths before we go looking for config files. */
3676 /* These come before the md prefixes so that we will find gcc's subcommands
3677 (such as cpp) rather than those of the host system. */
3678 /* Use 2 as fourth arg meaning try just the machine as a suffix,
3679 as well as trying the machine and the version. */
3681 add_prefix (&exec_prefixes
, standard_exec_prefix
, "GCC",
3682 PREFIX_PRIORITY_LAST
, 1, warn_std_ptr
, 0);
3683 add_prefix (&exec_prefixes
, standard_exec_prefix
, "BINUTILS",
3684 PREFIX_PRIORITY_LAST
, 2, warn_std_ptr
, 0);
3685 add_prefix (&exec_prefixes
, standard_exec_prefix_1
, "BINUTILS",
3686 PREFIX_PRIORITY_LAST
, 2, warn_std_ptr
, 0);
3689 add_prefix (&startfile_prefixes
, standard_exec_prefix
, "BINUTILS",
3690 PREFIX_PRIORITY_LAST
, 1, warn_std_ptr
, 0);
3691 add_prefix (&startfile_prefixes
, standard_exec_prefix_1
, "BINUTILS",
3692 PREFIX_PRIORITY_LAST
, 1, warn_std_ptr
, 0);
3694 tooldir_prefix
= concat (tooldir_base_prefix
, spec_machine
,
3695 dir_separator_str
, NULL
);
3697 /* If tooldir is relative, base it on exec_prefixes. A relative
3698 tooldir lets us move the installed tree as a unit.
3700 If GCC_EXEC_PREFIX is defined, then we want to add two relative
3701 directories, so that we can search both the user specified directory
3702 and the standard place. */
3704 if (!IS_ABSOLUTE_PATHNAME (tooldir_prefix
))
3706 if (gcc_exec_prefix
)
3708 char *gcc_exec_tooldir_prefix
3709 = concat (gcc_exec_prefix
, spec_machine
, dir_separator_str
,
3710 spec_version
, dir_separator_str
, tooldir_prefix
, NULL
);
3712 add_prefix (&exec_prefixes
,
3713 concat (gcc_exec_tooldir_prefix
, "bin",
3714 dir_separator_str
, NULL
),
3715 NULL
, PREFIX_PRIORITY_LAST
, 0, NULL
, 0);
3716 add_prefix (&startfile_prefixes
,
3717 concat (gcc_exec_tooldir_prefix
, "lib",
3718 dir_separator_str
, NULL
),
3719 NULL
, PREFIX_PRIORITY_LAST
, 0, NULL
, 1);
3722 tooldir_prefix
= concat (standard_exec_prefix
, spec_machine
,
3723 dir_separator_str
, spec_version
,
3724 dir_separator_str
, tooldir_prefix
, NULL
);
3727 add_prefix (&exec_prefixes
,
3728 concat (tooldir_prefix
, "bin", dir_separator_str
, NULL
),
3729 "BINUTILS", PREFIX_PRIORITY_LAST
, 0, NULL
, 0);
3730 add_prefix (&startfile_prefixes
,
3731 concat (tooldir_prefix
, "lib", dir_separator_str
, NULL
),
3732 "BINUTILS", PREFIX_PRIORITY_LAST
, 0, NULL
, 1);
3734 #if defined(TARGET_SYSTEM_ROOT_RELOCATABLE) && !defined(VMS)
3735 /* If the normal TARGET_SYSTEM_ROOT is inside of $exec_prefix,
3736 then consider it to relocate with the rest of the GCC installation
3737 if GCC_EXEC_PREFIX is set.
3738 ``make_relative_prefix'' is not compiled for VMS, so don't call it. */
3739 if (target_system_root
&& gcc_exec_prefix
)
3741 char *tmp_prefix
= make_relative_prefix (argv
[0],
3742 standard_bindir_prefix
,
3743 target_system_root
);
3744 if (tmp_prefix
&& access_check (tmp_prefix
, F_OK
) == 0)
3746 target_system_root
= tmp_prefix
;
3747 target_system_root_changed
= 1;
3752 /* More prefixes are enabled in main, after we read the specs file
3753 and determine whether this is cross-compilation or not. */
3755 /* Then create the space for the vectors and scan again. */
3757 switches
= ((struct switchstr
*)
3758 xmalloc ((n_switches
+ 1) * sizeof (struct switchstr
)));
3759 infiles
= (struct infile
*) xmalloc ((n_infiles
+ 1) * sizeof (struct infile
));
3762 last_language_n_infiles
= -1;
3764 /* This, time, copy the text of each switch and store a pointer
3765 to the copy in the vector of switches.
3766 Store all the infiles in their vector. */
3768 for (i
= 1; i
< argc
; i
++)
3770 /* Just skip the switches that were handled by the preceding loop. */
3771 #ifdef MODIFY_TARGET_NAME
3772 is_modify_target_name
= 0;
3774 for (j
= 0; j
< ARRAY_SIZE (modify_target
); j
++)
3775 if (! strcmp (argv
[i
], modify_target
[j
].sw
))
3776 is_modify_target_name
= 1;
3778 if (is_modify_target_name
)
3782 if (! strncmp (argv
[i
], "-Wa,", 4))
3784 else if (! strncmp (argv
[i
], "-Wp,", 4))
3786 else if (! strcmp (argv
[i
], "-pass-exit-codes"))
3788 else if (! strcmp (argv
[i
], "-print-search-dirs"))
3790 else if (! strcmp (argv
[i
], "-print-libgcc-file-name"))
3792 else if (! strncmp (argv
[i
], "-print-file-name=", 17))
3794 else if (! strncmp (argv
[i
], "-print-prog-name=", 17))
3796 else if (! strcmp (argv
[i
], "-print-multi-lib"))
3798 else if (! strcmp (argv
[i
], "-print-multi-directory"))
3800 else if (! strcmp (argv
[i
], "-print-multi-os-directory"))
3802 else if (! strcmp (argv
[i
], "-ftarget-help"))
3804 else if (! strcmp (argv
[i
], "-fhelp"))
3806 else if (argv
[i
][0] == '+' && argv
[i
][1] == 'e')
3808 /* Compensate for the +e options to the C++ front-end;
3809 they're there simply for cfront call-compatibility. We do
3810 some magic in default_compilers to pass them down properly.
3811 Note we deliberately start at the `+' here, to avoid passing
3812 -e0 or -e1 down into the linker. */
3813 switches
[n_switches
].part1
= &argv
[i
][0];
3814 switches
[n_switches
].args
= 0;
3815 switches
[n_switches
].live_cond
= SWITCH_OK
;
3816 switches
[n_switches
].validated
= 0;
3819 else if (strncmp (argv
[i
], "-Wl,", 4) == 0)
3822 /* Split the argument at commas. */
3824 for (j
= 4; argv
[i
][j
]; j
++)
3825 if (argv
[i
][j
] == ',')
3827 infiles
[n_infiles
].language
= "*";
3828 infiles
[n_infiles
++].name
3829 = save_string (argv
[i
] + prev
, j
- prev
);
3832 /* Record the part after the last comma. */
3833 infiles
[n_infiles
].language
= "*";
3834 infiles
[n_infiles
++].name
= argv
[i
] + prev
;
3836 else if (strcmp (argv
[i
], "-Xlinker") == 0)
3838 infiles
[n_infiles
].language
= "*";
3839 infiles
[n_infiles
++].name
= argv
[++i
];
3841 else if (strcmp (argv
[i
], "-l") == 0)
3842 { /* POSIX allows separation of -l and the lib arg;
3843 canonicalize by concatenating -l with its arg */
3844 infiles
[n_infiles
].language
= "*";
3845 infiles
[n_infiles
++].name
= concat ("-l", argv
[++i
], NULL
);
3847 else if (strncmp (argv
[i
], "-l", 2) == 0)
3849 infiles
[n_infiles
].language
= "*";
3850 infiles
[n_infiles
++].name
= argv
[i
];
3852 else if (strcmp (argv
[i
], "-specs") == 0)
3854 else if (strncmp (argv
[i
], "-specs=", 7) == 0)
3856 else if (strcmp (argv
[i
], "-time") == 0)
3858 else if ((save_temps_flag
|| report_times
)
3859 && strcmp (argv
[i
], "-pipe") == 0)
3861 /* -save-temps overrides -pipe, so that temp files are produced */
3862 if (save_temps_flag
)
3863 error ("warning: -pipe ignored because -save-temps specified");
3864 /* -time overrides -pipe because we can't get correct stats when
3865 multiple children are running at once. */
3866 else if (report_times
)
3867 error ("warning: -pipe ignored because -time specified");
3869 else if (strcmp (argv
[i
], "-###") == 0)
3871 else if (argv
[i
][0] == '-' && argv
[i
][1] != 0)
3873 const char *p
= &argv
[i
][1];
3878 if (p
[1] == 0 && i
+ 1 == argc
)
3879 fatal ("argument to `-x' is missing");
3881 spec_lang
= argv
[++i
];
3884 if (! strcmp (spec_lang
, "none"))
3885 /* Suppress the warning if -xnone comes after the last input
3886 file, because alternate command interfaces like g++ might
3887 find it useful to place -xnone after each input file. */
3890 last_language_n_infiles
= n_infiles
;
3893 switches
[n_switches
].part1
= p
;
3894 /* Deal with option arguments in separate argv elements. */
3895 if ((SWITCH_TAKES_ARG (c
) > (p
[1] != 0))
3896 || WORD_SWITCH_TAKES_ARG (p
))
3899 int n_args
= WORD_SWITCH_TAKES_ARG (p
);
3903 /* Count only the option arguments in separate argv elements. */
3904 n_args
= SWITCH_TAKES_ARG (c
) - (p
[1] != 0);
3906 if (i
+ n_args
>= argc
)
3907 fatal ("argument to `-%s' is missing", p
);
3908 switches
[n_switches
].args
3909 = (const char **) xmalloc ((n_args
+ 1) * sizeof(const char *));
3911 switches
[n_switches
].args
[j
++] = argv
[++i
];
3912 /* Null-terminate the vector. */
3913 switches
[n_switches
].args
[j
] = 0;
3915 else if (strchr (switches_need_spaces
, c
))
3917 /* On some systems, ld cannot handle some options without
3918 a space. So split the option from its argument. */
3919 char *part1
= (char *) xmalloc (2);
3923 switches
[n_switches
].part1
= part1
;
3924 switches
[n_switches
].args
3925 = (const char **) xmalloc (2 * sizeof (const char *));
3926 switches
[n_switches
].args
[0] = xstrdup (p
+1);
3927 switches
[n_switches
].args
[1] = 0;
3930 switches
[n_switches
].args
= 0;
3932 switches
[n_switches
].live_cond
= SWITCH_OK
;
3933 switches
[n_switches
].validated
= 0;
3934 switches
[n_switches
].ordering
= 0;
3935 /* These are always valid, since gcc.c itself understands it. */
3936 if (!strcmp (p
, "save-temps")
3937 || !strcmp (p
, "static-libgcc")
3938 || !strcmp (p
, "shared-libgcc"))
3939 switches
[n_switches
].validated
= 1;
3942 char ch
= switches
[n_switches
].part1
[0];
3944 switches
[n_switches
].validated
= 1;
3950 #ifdef HAVE_TARGET_OBJECT_SUFFIX
3951 argv
[i
] = convert_filename (argv
[i
], 0, access (argv
[i
], F_OK
));
3954 if (strcmp (argv
[i
], "-") != 0 && access (argv
[i
], F_OK
) < 0)
3956 perror_with_name (argv
[i
]);
3961 infiles
[n_infiles
].language
= spec_lang
;
3962 infiles
[n_infiles
++].name
= argv
[i
];
3967 if (n_infiles
== last_language_n_infiles
&& spec_lang
!= 0)
3968 error ("warning: `-x %s' after last input file has no effect", spec_lang
);
3970 /* Ensure we only invoke each subprocess once. */
3971 if (target_help_flag
|| print_help_list
)
3975 /* Create a dummy input file, so that we can pass --target-help on to
3976 the various sub-processes. */
3977 infiles
[0].language
= "c";
3978 infiles
[0].name
= "help-dummy";
3980 if (target_help_flag
)
3982 switches
[n_switches
].part1
= "--target-help";
3983 switches
[n_switches
].args
= 0;
3984 switches
[n_switches
].live_cond
= SWITCH_OK
;
3985 switches
[n_switches
].validated
= 0;
3990 if (print_help_list
)
3992 switches
[n_switches
].part1
= "--help";
3993 switches
[n_switches
].args
= 0;
3994 switches
[n_switches
].live_cond
= SWITCH_OK
;
3995 switches
[n_switches
].validated
= 0;
4001 switches
[n_switches
].part1
= 0;
4002 infiles
[n_infiles
].name
= 0;
4005 /* Store switches not filtered out by %{<S} in spec in COLLECT_GCC_OPTIONS
4006 and place that in the environment. */
4009 set_collect_gcc_options ()
4014 /* Build COLLECT_GCC_OPTIONS to have all of the options specified to
4016 obstack_grow (&collect_obstack
, "COLLECT_GCC_OPTIONS=",
4017 sizeof ("COLLECT_GCC_OPTIONS=") - 1);
4020 for (i
= 0; (int) i
< n_switches
; i
++)
4022 const char *const *args
;
4025 obstack_grow (&collect_obstack
, " ", 1);
4029 /* Ignore elided switches. */
4030 if (switches
[i
].live_cond
== SWITCH_IGNORE
)
4033 obstack_grow (&collect_obstack
, "'-", 2);
4034 q
= switches
[i
].part1
;
4035 while ((p
= strchr (q
, '\'')))
4037 obstack_grow (&collect_obstack
, q
, p
- q
);
4038 obstack_grow (&collect_obstack
, "'\\''", 4);
4041 obstack_grow (&collect_obstack
, q
, strlen (q
));
4042 obstack_grow (&collect_obstack
, "'", 1);
4044 for (args
= switches
[i
].args
; args
&& *args
; args
++)
4046 obstack_grow (&collect_obstack
, " '", 2);
4048 while ((p
= strchr (q
, '\'')))
4050 obstack_grow (&collect_obstack
, q
, p
- q
);
4051 obstack_grow (&collect_obstack
, "'\\''", 4);
4054 obstack_grow (&collect_obstack
, q
, strlen (q
));
4055 obstack_grow (&collect_obstack
, "'", 1);
4058 obstack_grow (&collect_obstack
, "\0", 1);
4059 putenv (obstack_finish (&collect_obstack
));
4062 /* Process a spec string, accumulating and running commands. */
4064 /* These variables describe the input file name.
4065 input_file_number is the index on outfiles of this file,
4066 so that the output file name can be stored for later use by %o.
4067 input_basename is the start of the part of the input file
4068 sans all directory names, and basename_length is the number
4069 of characters starting there excluding the suffix .c or whatever. */
4071 const char *input_filename
;
4072 static int input_file_number
;
4073 size_t input_filename_length
;
4074 static int basename_length
;
4075 static int suffixed_basename_length
;
4076 static const char *input_basename
;
4077 static const char *input_suffix
;
4078 static struct stat input_stat
;
4079 static int input_stat_set
;
4081 /* The compiler used to process the current input file. */
4082 static struct compiler
*input_file_compiler
;
4084 /* These are variables used within do_spec and do_spec_1. */
4086 /* Nonzero if an arg has been started and not yet terminated
4087 (with space, tab or newline). */
4088 static int arg_going
;
4090 /* Nonzero means %d or %g has been seen; the next arg to be terminated
4091 is a temporary file name. */
4092 static int delete_this_arg
;
4094 /* Nonzero means %w has been seen; the next arg to be terminated
4095 is the output file name of this compilation. */
4096 static int this_is_output_file
;
4098 /* Nonzero means %s has been seen; the next arg to be terminated
4099 is the name of a library file and we should try the standard
4100 search dirs for it. */
4101 static int this_is_library_file
;
4103 /* Nonzero means that the input of this command is coming from a pipe. */
4104 static int input_from_pipe
;
4106 /* Nonnull means substitute this for any suffix when outputting a switches
4108 static const char *suffix_subst
;
4110 /* Process the spec SPEC and run the commands specified therein.
4111 Returns 0 if the spec is successfully processed; -1 if failed. */
4119 value
= do_spec_2 (spec
);
4121 /* Force out any unfinished command.
4122 If -pipe, this forces out the last command if it ended in `|'. */
4125 if (argbuf_index
> 0 && !strcmp (argbuf
[argbuf_index
- 1], "|"))
4128 set_collect_gcc_options ();
4130 if (argbuf_index
> 0)
4143 delete_this_arg
= 0;
4144 this_is_output_file
= 0;
4145 this_is_library_file
= 0;
4146 input_from_pipe
= 0;
4147 suffix_subst
= NULL
;
4149 return do_spec_1 (spec
, 0, NULL
);
4153 /* Process the given spec string and add any new options to the end
4154 of the switches/n_switches array. */
4161 do_spec_1 (" ", 0, NULL
);
4163 if (argbuf_index
> 0)
4168 n_switches
+= argbuf_index
;
4169 switches
= xrealloc (switches
,
4170 sizeof (struct switchstr
) * (n_switches
+ 1));
4172 switches
[n_switches
] = switches
[first
];
4173 for (i
= 0; i
< argbuf_index
; i
++)
4175 struct switchstr
*sw
;
4177 /* Each switch should start with '-'. */
4178 if (argbuf
[i
][0] != '-')
4181 sw
= &switches
[i
+ first
];
4182 sw
->part1
= &argbuf
[i
][1];
4184 sw
->live_cond
= SWITCH_OK
;
4191 /* Process the sub-spec SPEC as a portion of a larger spec.
4192 This is like processing a whole spec except that we do
4193 not initialize at the beginning and we do not supply a
4194 newline by default at the end.
4195 INSWITCH nonzero means don't process %-sequences in SPEC;
4196 in this case, % is treated as an ordinary character.
4197 This is used while substituting switches.
4198 INSWITCH nonzero also causes SPC not to terminate an argument.
4200 Value is zero unless a line was finished
4201 and the command on that line reported an error. */
4204 do_spec_1 (spec
, inswitch
, soft_matched_part
)
4207 const char *soft_matched_part
;
4209 const char *p
= spec
;
4216 /* If substituting a switch, treat all chars like letters.
4217 Otherwise, NL, SPC, TAB and % are special. */
4218 switch (inswitch
? 'a' : c
)
4221 /* End of line: finish any pending argument,
4222 then run the pending command if one has been started. */
4225 obstack_1grow (&obstack
, 0);
4226 string
= obstack_finish (&obstack
);
4227 if (this_is_library_file
)
4228 string
= find_file (string
);
4229 store_arg (string
, delete_this_arg
, this_is_output_file
);
4230 if (this_is_output_file
)
4231 outfiles
[input_file_number
] = string
;
4235 if (argbuf_index
> 0 && !strcmp (argbuf
[argbuf_index
- 1], "|"))
4237 for (i
= 0; i
< n_switches
; i
++)
4238 if (!strcmp (switches
[i
].part1
, "pipe"))
4241 /* A `|' before the newline means use a pipe here,
4242 but only if -pipe was specified.
4243 Otherwise, execute now and don't pass the `|' as an arg. */
4246 input_from_pipe
= 1;
4247 switches
[i
].validated
= 1;
4254 set_collect_gcc_options ();
4256 if (argbuf_index
> 0)
4262 /* Reinitialize for a new command, and for a new argument. */
4265 delete_this_arg
= 0;
4266 this_is_output_file
= 0;
4267 this_is_library_file
= 0;
4268 input_from_pipe
= 0;
4272 /* End any pending argument. */
4275 obstack_1grow (&obstack
, 0);
4276 string
= obstack_finish (&obstack
);
4277 if (this_is_library_file
)
4278 string
= find_file (string
);
4279 store_arg (string
, delete_this_arg
, this_is_output_file
);
4280 if (this_is_output_file
)
4281 outfiles
[input_file_number
] = string
;
4285 obstack_1grow (&obstack
, c
);
4291 /* Space or tab ends an argument if one is pending. */
4294 obstack_1grow (&obstack
, 0);
4295 string
= obstack_finish (&obstack
);
4296 if (this_is_library_file
)
4297 string
= find_file (string
);
4298 store_arg (string
, delete_this_arg
, this_is_output_file
);
4299 if (this_is_output_file
)
4300 outfiles
[input_file_number
] = string
;
4302 /* Reinitialize for a new argument. */
4304 delete_this_arg
= 0;
4305 this_is_output_file
= 0;
4306 this_is_library_file
= 0;
4313 fatal ("invalid specification! Bug in cc");
4316 obstack_grow (&obstack
, input_basename
, basename_length
);
4321 obstack_grow (&obstack
, input_basename
, suffixed_basename_length
);
4326 delete_this_arg
= 2;
4329 /* Dump out the directories specified with LIBRARY_PATH,
4330 followed by the absolute directories
4331 that we search for startfiles. */
4334 struct prefix_list
*pl
= startfile_prefixes
.plist
;
4335 size_t bufsize
= 100;
4336 char *buffer
= (char *) xmalloc (bufsize
);
4339 for (; pl
; pl
= pl
->next
)
4341 #ifdef RELATIVE_PREFIX_NOT_LINKDIR
4342 /* Used on systems which record the specified -L dirs
4343 and use them to search for dynamic linking. */
4344 /* Relative directories always come from -B,
4345 and it is better not to use them for searching
4346 at run time. In particular, stage1 loses. */
4347 if (!IS_ABSOLUTE_PATHNAME (pl
->prefix
))
4350 /* Try subdirectory if there is one. */
4351 if (multilib_dir
!= NULL
4352 || (pl
->os_multilib
&& multilib_os_dir
!= NULL
))
4354 const char *multi_dir
;
4356 multi_dir
= pl
->os_multilib
? multilib_os_dir
4358 if (machine_suffix
&& multilib_dir
)
4360 if (strlen (pl
->prefix
) + strlen (machine_suffix
)
4362 bufsize
= (strlen (pl
->prefix
)
4363 + strlen (machine_suffix
)) * 2 + 1;
4364 buffer
= (char *) xrealloc (buffer
, bufsize
);
4365 strcpy (buffer
, pl
->prefix
);
4366 strcat (buffer
, machine_suffix
);
4367 if (is_directory (buffer
, multilib_dir
, 1))
4369 do_spec_1 ("-L", 0, NULL
);
4370 #ifdef SPACE_AFTER_L_OPTION
4371 do_spec_1 (" ", 0, NULL
);
4373 do_spec_1 (buffer
, 1, NULL
);
4374 do_spec_1 (multilib_dir
, 1, NULL
);
4375 /* Make this a separate argument. */
4376 do_spec_1 (" ", 0, NULL
);
4379 if (!pl
->require_machine_suffix
)
4381 if (is_directory (pl
->prefix
, multi_dir
, 1))
4383 do_spec_1 ("-L", 0, NULL
);
4384 #ifdef SPACE_AFTER_L_OPTION
4385 do_spec_1 (" ", 0, NULL
);
4387 do_spec_1 (pl
->prefix
, 1, NULL
);
4388 do_spec_1 (multi_dir
, 1, NULL
);
4389 /* Make this a separate argument. */
4390 do_spec_1 (" ", 0, NULL
);
4396 if (is_directory (pl
->prefix
, machine_suffix
, 1))
4398 do_spec_1 ("-L", 0, NULL
);
4399 #ifdef SPACE_AFTER_L_OPTION
4400 do_spec_1 (" ", 0, NULL
);
4402 do_spec_1 (pl
->prefix
, 1, NULL
);
4403 /* Remove slash from machine_suffix. */
4404 if (strlen (machine_suffix
) >= bufsize
)
4405 bufsize
= strlen (machine_suffix
) * 2 + 1;
4406 buffer
= (char *) xrealloc (buffer
, bufsize
);
4407 strcpy (buffer
, machine_suffix
);
4408 idx
= strlen (buffer
);
4409 if (IS_DIR_SEPARATOR (buffer
[idx
- 1]))
4410 buffer
[idx
- 1] = 0;
4411 do_spec_1 (buffer
, 1, NULL
);
4412 /* Make this a separate argument. */
4413 do_spec_1 (" ", 0, NULL
);
4416 if (!pl
->require_machine_suffix
)
4418 if (is_directory (pl
->prefix
, "", 1))
4420 do_spec_1 ("-L", 0, NULL
);
4421 #ifdef SPACE_AFTER_L_OPTION
4422 do_spec_1 (" ", 0, NULL
);
4424 /* Remove slash from pl->prefix. */
4425 if (strlen (pl
->prefix
) >= bufsize
)
4426 bufsize
= strlen (pl
->prefix
) * 2 + 1;
4427 buffer
= (char *) xrealloc (buffer
, bufsize
);
4428 strcpy (buffer
, pl
->prefix
);
4429 idx
= strlen (buffer
);
4430 if (IS_DIR_SEPARATOR (buffer
[idx
- 1]))
4431 buffer
[idx
- 1] = 0;
4432 do_spec_1 (buffer
, 1, NULL
);
4433 /* Make this a separate argument. */
4434 do_spec_1 (" ", 0, NULL
);
4443 /* %efoo means report an error with `foo' as error message
4444 and don't execute any more commands for this file. */
4448 while (*p
!= 0 && *p
!= '\n')
4450 buf
= (char *) alloca (p
- q
+ 1);
4451 strncpy (buf
, q
, p
- q
);
4458 /* %nfoo means report a notice with `foo' on stderr. */
4462 while (*p
!= 0 && *p
!= '\n')
4464 buf
= (char *) alloca (p
- q
+ 1);
4465 strncpy (buf
, q
, p
- q
);
4467 notice ("%s\n", buf
);
4477 /* If save_temps_flag is off, and the HOST_BIT_BUCKET is defined,
4478 and it is not a directory, and it is writable, use it.
4479 Otherwise, fall through and treat this like any other
4482 if ((!save_temps_flag
)
4483 && (stat (HOST_BIT_BUCKET
, &st
) == 0) && (!S_ISDIR (st
.st_mode
))
4484 && (access (HOST_BIT_BUCKET
, W_OK
) == 0))
4486 obstack_grow (&obstack
, HOST_BIT_BUCKET
,
4487 strlen (HOST_BIT_BUCKET
));
4488 delete_this_arg
= 0;
4497 struct temp_name
*t
;
4499 const char *suffix
= p
;
4500 char *saved_suffix
= NULL
;
4502 while (*p
== '.' || ISALPHA ((unsigned char) *p
))
4504 suffix_length
= p
- suffix
;
4505 if (p
[0] == '%' && p
[1] == 'O')
4508 /* We don't support extra suffix characters after %O. */
4509 if (*p
== '.' || ISALPHA ((unsigned char) *p
))
4511 if (suffix_length
== 0)
4512 suffix
= TARGET_OBJECT_SUFFIX
;
4516 = (char *) xmalloc (suffix_length
4517 + strlen (TARGET_OBJECT_SUFFIX
));
4518 strncpy (saved_suffix
, suffix
, suffix_length
);
4519 strcpy (saved_suffix
+ suffix_length
,
4520 TARGET_OBJECT_SUFFIX
);
4522 suffix_length
+= strlen (TARGET_OBJECT_SUFFIX
);
4525 /* If the input_filename has the same suffix specified
4526 for the %g, %u, or %U, and -save-temps is specified,
4527 we could end up using that file as an intermediate
4528 thus clobbering the user's source file (.e.g.,
4529 gcc -save-temps foo.s would clobber foo.s with the
4530 output of cpp0). So check for this condition and
4531 generate a temp file as the intermediate. */
4533 if (save_temps_flag
)
4535 temp_filename_length
= basename_length
+ suffix_length
;
4536 temp_filename
= alloca (temp_filename_length
+ 1);
4537 strncpy ((char *) temp_filename
, input_basename
, basename_length
);
4538 strncpy ((char *) temp_filename
+ basename_length
, suffix
,
4540 *((char *) temp_filename
+ temp_filename_length
) = '\0';
4541 if (strcmp (temp_filename
, input_filename
) != 0)
4543 struct stat st_temp
;
4545 /* Note, set_input() resets input_stat_set to 0. */
4546 if (input_stat_set
== 0)
4548 input_stat_set
= stat (input_filename
, &input_stat
);
4549 if (input_stat_set
>= 0)
4553 /* If we have the stat for the input_filename
4554 and we can do the stat for the temp_filename
4555 then the they could still refer to the same
4556 file if st_dev/st_ino's are the same. */
4558 if (input_stat_set
!= 1
4559 || stat (temp_filename
, &st_temp
) < 0
4560 || input_stat
.st_dev
!= st_temp
.st_dev
4561 || input_stat
.st_ino
!= st_temp
.st_ino
)
4563 temp_filename
= save_string (temp_filename
,
4564 temp_filename_length
+ 1);
4565 obstack_grow (&obstack
, temp_filename
,
4566 temp_filename_length
);
4568 delete_this_arg
= 0;
4574 /* See if we already have an association of %g/%u/%U and
4576 for (t
= temp_names
; t
; t
= t
->next
)
4577 if (t
->length
== suffix_length
4578 && strncmp (t
->suffix
, suffix
, suffix_length
) == 0
4579 && t
->unique
== (c
!= 'g'))
4582 /* Make a new association if needed. %u and %j
4584 if (t
== 0 || c
== 'u' || c
== 'j')
4588 t
= (struct temp_name
*) xmalloc (sizeof (struct temp_name
));
4589 t
->next
= temp_names
;
4592 t
->length
= suffix_length
;
4595 t
->suffix
= saved_suffix
;
4596 saved_suffix
= NULL
;
4599 t
->suffix
= save_string (suffix
, suffix_length
);
4600 t
->unique
= (c
!= 'g');
4601 temp_filename
= make_temp_file (t
->suffix
);
4602 temp_filename_length
= strlen (temp_filename
);
4603 t
->filename
= temp_filename
;
4604 t
->filename_length
= temp_filename_length
;
4608 free (saved_suffix
);
4610 obstack_grow (&obstack
, t
->filename
, t
->filename_length
);
4611 delete_this_arg
= 1;
4617 obstack_grow (&obstack
, input_filename
, input_filename_length
);
4623 struct prefix_list
*pl
= include_prefixes
.plist
;
4625 if (gcc_exec_prefix
)
4627 do_spec_1 ("-iprefix", 1, NULL
);
4628 /* Make this a separate argument. */
4629 do_spec_1 (" ", 0, NULL
);
4630 do_spec_1 (gcc_exec_prefix
, 1, NULL
);
4631 do_spec_1 (" ", 0, NULL
);
4634 if (target_system_root_changed
)
4636 do_spec_1 ("-isysroot", 1, NULL
);
4637 /* Make this a separate argument. */
4638 do_spec_1 (" ", 0, NULL
);
4639 do_spec_1 (target_system_root
, 1, NULL
);
4640 do_spec_1 (" ", 0, NULL
);
4643 for (; pl
; pl
= pl
->next
)
4645 do_spec_1 ("-isystem", 1, NULL
);
4646 /* Make this a separate argument. */
4647 do_spec_1 (" ", 0, NULL
);
4648 do_spec_1 (pl
->prefix
, 1, NULL
);
4649 do_spec_1 (" ", 0, NULL
);
4656 int max
= n_infiles
;
4657 max
+= lang_specific_extra_outfiles
;
4659 for (i
= 0; i
< max
; i
++)
4661 store_arg (outfiles
[i
], 0, 0);
4666 obstack_grow (&obstack
, TARGET_OBJECT_SUFFIX
, strlen (TARGET_OBJECT_SUFFIX
));
4671 this_is_library_file
= 1;
4675 this_is_output_file
= 1;
4680 int cur_index
= argbuf_index
;
4681 /* Handle the {...} following the %W. */
4684 p
= handle_braces (p
+ 1);
4687 /* If any args were output, mark the last one for deletion
4689 if (argbuf_index
!= cur_index
)
4690 record_temp_file (argbuf
[argbuf_index
- 1], 0, 1);
4694 /* %x{OPTION} records OPTION for %X to output. */
4700 /* Skip past the option value and make a copy. */
4705 string
= save_string (p1
+ 1, p
- p1
- 2);
4707 /* See if we already recorded this option. */
4708 for (i
= 0; i
< n_linker_options
; i
++)
4709 if (! strcmp (string
, linker_options
[i
]))
4715 /* This option is new; add it. */
4716 add_linker_option (string
, strlen (string
));
4720 /* Dump out the options accumulated previously using %x. */
4722 for (i
= 0; i
< n_linker_options
; i
++)
4724 do_spec_1 (linker_options
[i
], 1, NULL
);
4725 /* Make each accumulated option a separate argument. */
4726 do_spec_1 (" ", 0, NULL
);
4730 /* Dump out the options accumulated previously using -Wa,. */
4732 for (i
= 0; i
< n_assembler_options
; i
++)
4734 do_spec_1 (assembler_options
[i
], 1, NULL
);
4735 /* Make each accumulated option a separate argument. */
4736 do_spec_1 (" ", 0, NULL
);
4740 /* Dump out the options accumulated previously using -Wp,. */
4742 for (i
= 0; i
< n_preprocessor_options
; i
++)
4744 do_spec_1 (preprocessor_options
[i
], 1, NULL
);
4745 /* Make each accumulated option a separate argument. */
4746 do_spec_1 (" ", 0, NULL
);
4750 /* Here are digits and numbers that just process
4751 a certain constant string as a spec. */
4754 value
= do_spec_1 (cc1_spec
, 0, NULL
);
4760 value
= do_spec_1 (cc1plus_spec
, 0, NULL
);
4766 value
= do_spec_1 (asm_spec
, 0, NULL
);
4772 value
= do_spec_1 (asm_final_spec
, 0, NULL
);
4779 const char *const spec
4780 = (input_file_compiler
->cpp_spec
4781 ? input_file_compiler
->cpp_spec
4783 value
= do_spec_1 (spec
, 0, NULL
);
4790 value
= do_spec_1 (endfile_spec
, 0, NULL
);
4796 value
= do_spec_1 (link_spec
, 0, NULL
);
4802 value
= do_spec_1 (lib_spec
, 0, NULL
);
4808 value
= do_spec_1 (libgcc_spec
, 0, NULL
);
4814 if (multilib_dir
&& strcmp (multilib_dir
, ".") != 0)
4820 len
= strlen (multilib_dir
);
4821 obstack_blank (&obstack
, len
+ 1);
4822 p
= obstack_next_free (&obstack
) - (len
+ 1);
4825 for (q
= multilib_dir
; *q
; ++q
, ++p
)
4826 *p
= (IS_DIR_SEPARATOR (*q
) ? '_' : *q
);
4832 char *x
= (char *) alloca (strlen (cpp_predefines
) + 1);
4836 /* Copy all of the -D options in CPP_PREDEFINES into BUF. */
4840 if (! strncmp (y
, "-D", 2))
4841 /* Copy the whole option. */
4842 while (*y
&& *y
!= ' ' && *y
!= '\t')
4844 else if (*y
== ' ' || *y
== '\t')
4845 /* Copy whitespace to the result. */
4847 /* Don't copy other options. */
4854 value
= do_spec_1 (buf
, 0, NULL
);
4862 char *x
= (char *) alloca (strlen (cpp_predefines
) * 4 + 1);
4866 /* Copy all of CPP_PREDEFINES into BUF,
4867 but force them all into the reserved name space if they
4868 aren't already there. The reserved name space is all
4869 identifiers beginning with two underscores or with one
4870 underscore and a capital letter. We do the forcing by
4871 adding up to two underscores to the beginning and end
4872 of each symbol. e.g. mips, _mips, mips_, and _mips_ all
4877 if (! strncmp (y
, "-D", 2))
4886 && ! ISUPPER ((unsigned char) *(y
+ 1))))
4888 /* Stick __ at front of macro name. */
4892 /* Arrange to stick __ at the end as well. */
4896 /* Copy the macro name. */
4897 while (*y
&& *y
!= '=' && *y
!= ' ' && *y
!= '\t')
4910 /* Copy the value given, if any. */
4911 while (*y
&& *y
!= ' ' && *y
!= '\t')
4914 else if (*y
== ' ' || *y
== '\t')
4915 /* Copy whitespace to the result. */
4917 /* Don't copy -A options */
4923 /* Copy all of CPP_PREDEFINES into BUF,
4924 but put __ after every -D. */
4928 if (! strncmp (y
, "-D", 2))
4934 && ! ISUPPER ((unsigned char) *(y
+ 1))))
4936 /* Stick -D__ at front of macro name. */
4943 /* Copy the macro name. */
4944 while (*y
&& *y
!= '=' && *y
!= ' ' && *y
!= '\t')
4947 /* Copy the value given, if any. */
4948 while (*y
&& *y
!= ' ' && *y
!= '\t')
4953 /* Do not copy this macro - we have just done it before */
4954 while (*y
&& *y
!= ' ' && *y
!= '\t')
4958 else if (*y
== ' ' || *y
== '\t')
4959 /* Copy whitespace to the result. */
4961 /* Don't copy -A options. */
4967 /* Copy all of the -A options in CPP_PREDEFINES into BUF. */
4971 if (! strncmp (y
, "-A", 2))
4972 /* Copy the whole option. */
4973 while (*y
&& *y
!= ' ' && *y
!= '\t')
4975 else if (*y
== ' ' || *y
== '\t')
4976 /* Copy whitespace to the result. */
4978 /* Don't copy other options. */
4985 value
= do_spec_1 (buf
, 0, NULL
);
4992 /* We assume there is a directory
4993 separator at the end of this string. */
4994 if (target_system_root
)
4995 obstack_grow (&obstack
, target_system_root
,
4996 strlen (target_system_root
));
5000 value
= do_spec_1 (startfile_spec
, 0, NULL
);
5005 /* Here we define characters other than letters and digits. */
5008 p
= handle_braces (p
);
5014 p
= handle_spec_function (p
);
5020 obstack_1grow (&obstack
, '%');
5027 while (p
[len
] && p
[len
] != ' ' && p
[len
] != '%')
5029 suffix_subst
= save_string (p
- 1, len
+ 1);
5035 if (soft_matched_part
)
5037 do_spec_1 (soft_matched_part
, 1, NULL
);
5038 do_spec_1 (" ", 0, NULL
);
5041 /* Catch the case where a spec string contains something like
5042 '%{foo:%*}'. ie there is no * in the pattern on the left
5043 hand side of the :. */
5044 error ("spec failure: '%%*' has not been initialized by pattern match");
5047 /* Process a string found as the value of a spec given by name.
5048 This feature allows individual machine descriptions
5049 to add and use their own specs.
5050 %[...] modifies -D options the way %P does;
5051 %(...) uses the spec unmodified. */
5053 error ("warning: use of obsolete %%[ operator in specs");
5056 const char *name
= p
;
5057 struct spec_list
*sl
;
5060 /* The string after the S/P is the name of a spec that is to be
5062 while (*p
&& *p
!= ')' && *p
!= ']')
5065 /* See if it's in the list. */
5066 for (len
= p
- name
, sl
= specs
; sl
; sl
= sl
->next
)
5067 if (sl
->name_len
== len
&& !strncmp (sl
->name
, name
, len
))
5069 name
= *(sl
->ptr_spec
);
5071 notice ("Processing spec %c%s%c, which is '%s'\n",
5072 c
, sl
->name
, (c
== '(') ? ')' : ']', name
);
5081 value
= do_spec_1 (name
, 0, NULL
);
5087 char *x
= (char *) alloca (strlen (name
) * 2 + 1);
5089 const char *y
= name
;
5092 /* Copy all of NAME into BUF, but put __ after
5093 every -D and at the end of each arg. */
5096 if (! strncmp (y
, "-D", 2))
5107 && (*y
== ' ' || *y
== '\t' || *y
== '='
5108 || *y
== '}' || *y
== 0))
5121 value
= do_spec_1 (buf
, 0, NULL
);
5127 /* Discard the closing paren or bracket. */
5135 int c1
= *p
++; /* Select first or second version number. */
5136 const char *v
= compiler_version
;
5138 static const char zeroc
= '0';
5140 /* The format of the version string is
5141 ([^0-9]*-)?[0-9]+[.][0-9]+([.][0-9]+)?([- ].*)? */
5143 /* Ignore leading non-digits. i.e. "foo-" in "foo-2.7.2". */
5144 while (! ISDIGIT (*v
))
5146 if (v
> compiler_version
&& v
[-1] != '-')
5149 /* If desired, advance to second version number. */
5152 /* Set V after the first period. */
5153 while (ISDIGIT (*v
))
5160 /* If desired, advance to third version number.
5161 But don't complain if it's not present */
5164 /* Set V after the second period. */
5165 while (ISDIGIT (*v
))
5167 if ((*v
!= 0) && (*v
!= ' ') && (*v
!= '.') && (*v
!= '-'))
5173 /* Set Q at the next period or at the end. */
5175 while (ISDIGIT (*q
))
5177 if (*q
!= 0 && q
> v
&& *q
!= ' ' && *q
!= '.' && *q
!= '-')
5181 /* Put that part into the command. */
5182 obstack_grow (&obstack
, v
, q
- v
);
5184 /* Default to "0" */
5185 obstack_grow (&obstack
, &zeroc
, 1);
5191 if (input_from_pipe
)
5192 do_spec_1 ("-", 0, NULL
);
5196 error ("spec failure: unrecognized spec option '%c'", c
);
5202 /* Backslash: treat next character as ordinary. */
5207 /* Ordinary character: put it into the current argument. */
5208 obstack_1grow (&obstack
, c
);
5212 /* End of string. If we are processing a spec function, we need to
5213 end any pending argument. */
5214 if (processing_spec_function
&& arg_going
)
5216 obstack_1grow (&obstack
, 0);
5217 string
= obstack_finish (&obstack
);
5218 if (this_is_library_file
)
5219 string
= find_file (string
);
5220 store_arg (string
, delete_this_arg
, this_is_output_file
);
5221 if (this_is_output_file
)
5222 outfiles
[input_file_number
] = string
;
5229 /* Look up a spec function. */
5231 static const struct spec_function
*
5232 lookup_spec_function (name
)
5235 static const struct spec_function
* const spec_function_tables
[] =
5237 static_spec_functions
,
5238 lang_specific_spec_functions
,
5240 const struct spec_function
*sf
;
5243 for (i
= 0; i
< ARRAY_SIZE (spec_function_tables
); i
++)
5245 for (sf
= spec_function_tables
[i
]; sf
->name
!= NULL
; sf
++)
5246 if (strcmp (sf
->name
, name
) == 0)
5253 /* Evaluate a spec function. */
5256 eval_spec_function (func
, args
)
5257 const char *func
, *args
;
5259 const struct spec_function
*sf
;
5260 const char *funcval
;
5262 /* Saved spec processing context. */
5263 int save_argbuf_index
;
5264 int save_argbuf_length
;
5265 const char **save_argbuf
;
5268 int save_delete_this_arg
;
5269 int save_this_is_output_file
;
5270 int save_this_is_library_file
;
5271 int save_input_from_pipe
;
5272 const char *save_suffix_subst
;
5275 sf
= lookup_spec_function (func
);
5277 fatal ("unknown spec function `%s'", func
);
5279 /* Push the spec processing context. */
5280 save_argbuf_index
= argbuf_index
;
5281 save_argbuf_length
= argbuf_length
;
5282 save_argbuf
= argbuf
;
5284 save_arg_going
= arg_going
;
5285 save_delete_this_arg
= delete_this_arg
;
5286 save_this_is_output_file
= this_is_output_file
;
5287 save_this_is_library_file
= this_is_library_file
;
5288 save_input_from_pipe
= input_from_pipe
;
5289 save_suffix_subst
= suffix_subst
;
5291 /* Create a new spec processing context, and build the function
5295 if (do_spec_2 (args
) < 0)
5296 fatal ("error in args to spec function `%s'", func
);
5298 /* argbuf_index is an index for the next argument to be inserted, and
5299 so contains the count of the args already inserted. */
5301 funcval
= (*sf
->func
) (argbuf_index
, argbuf
);
5303 /* Pop the spec processing context. */
5304 argbuf_index
= save_argbuf_index
;
5305 argbuf_length
= save_argbuf_length
;
5307 argbuf
= save_argbuf
;
5309 arg_going
= save_arg_going
;
5310 delete_this_arg
= save_delete_this_arg
;
5311 this_is_output_file
= save_this_is_output_file
;
5312 this_is_library_file
= save_this_is_library_file
;
5313 input_from_pipe
= save_input_from_pipe
;
5314 suffix_subst
= save_suffix_subst
;
5319 /* Handle a spec function call of the form:
5323 ARGS is processed as a spec in a separate context and split into an
5324 argument vector in the normal fashion. The function returns a string
5325 containing a spec which we then process in the caller's context, or
5326 NULL if no processing is required. */
5329 handle_spec_function (p
)
5333 const char *endp
, *funcval
;
5336 processing_spec_function
++;
5338 /* Get the function name. */
5339 for (endp
= p
; *endp
!= '\0'; endp
++)
5341 if (*endp
== '(') /* ) */
5343 /* Only allow [A-Za-z0-9], -, and _ in function names. */
5344 if (!ISALNUM (*endp
) && !(*endp
== '-' || *endp
== '_'))
5345 fatal ("malformed spec function name");
5347 if (*endp
!= '(') /* ) */
5348 fatal ("no arguments for spec function");
5349 func
= save_string (p
, endp
- p
);
5352 /* Get the arguments. */
5353 for (count
= 0; *endp
!= '\0'; endp
++)
5362 else if (*endp
== '(') /* ) */
5367 fatal ("malformed spec function arguments");
5368 args
= save_string (p
, endp
- p
);
5371 /* p now points to just past the end of the spec function expression. */
5373 funcval
= eval_spec_function (func
, args
);
5374 if (funcval
!= NULL
&& do_spec_1 (funcval
, 0, NULL
) < 0)
5380 processing_spec_function
--;
5385 /* Return 0 if we call do_spec_1 and that returns -1. */
5391 const char *filter
, *body
= NULL
, *endbody
= NULL
;
5393 int true_once
= 0; /* If, in %{a|b:d}, at least one of a,b was seen. */
5396 int include_blanks
= 1;
5397 int elide_switch
= 0;
5402 /* A '^' after the open-brace means to not give blanks before args. */
5409 /* A `|' after the open-brace means,
5410 if the test fails, output a single minus sign rather than nothing.
5411 This is used in %{|!pipe:...}. */
5418 /* A `<' after the open-brace means that the switch should be
5419 removed from the command-line. */
5425 negate
= suffix
= 0;
5428 /* A `!' after the open-brace negates the condition:
5429 succeed if the specified switch is not present. */
5433 /* A `.' after the open-brace means test against the current suffix. */
5442 if (elide_switch
&& (negate
|| pipe_p
|| suffix
))
5444 /* It doesn't make sense to mix elision with other flags. We
5445 could fatal() here, but the standard seems to be to abort. */
5451 while (*p
!= ':' && *p
!= '}' && *p
!= '|' && *p
!= '&')
5454 if (*p
== '|' && (pipe_p
|| ordered
))
5459 if (*p
!= '}' && *p
!= '&')
5475 fatal ("mismatched braces in specs");
5481 body
= p
, endbody
= p
+ 1;
5486 int found
= (input_suffix
!= 0
5487 && (long) strlen (input_suffix
) == (long) (p
- filter
)
5488 && strncmp (input_suffix
, filter
, p
- filter
) == 0);
5494 && do_spec_1 (save_string (body
, endbody
-body
-1), 0, NULL
) < 0)
5497 else if (p
[-1] == '*' && (p
[0] == '}' || p
[0] == '&'))
5499 /* Substitute all matching switches as separate args. */
5502 for (i
= 0; i
< n_switches
; i
++)
5503 if (!strncmp (switches
[i
].part1
, filter
, p
- 1 - filter
)
5504 && check_live_switch (i
, p
- 1 - filter
))
5508 switches
[i
].live_cond
= SWITCH_IGNORE
;
5509 switches
[i
].validated
= 1;
5512 ordered
= 1, switches
[i
].ordering
= 1;
5517 /* Test for presence of the specified switch. */
5521 /* If name specified ends in *, as in {x*:...},
5522 check for %* and handle that case. */
5523 if (p
[-1] == '*' && !negate
)
5526 const char *r
= body
;
5528 /* First see whether we have %*. */
5532 if (*r
== '%' && r
[1] == '*')
5536 /* If we do, handle that case. */
5539 /* Substitute all matching switches as separate args.
5540 But do this by substituting for %*
5541 in the text that follows the colon. */
5543 unsigned hard_match_len
= p
- filter
- 1;
5544 char *string
= save_string (body
, endbody
- body
- 1);
5546 for (i
= 0; i
< n_switches
; i
++)
5547 if (!strncmp (switches
[i
].part1
, filter
, hard_match_len
)
5548 && check_live_switch (i
, -1))
5550 do_spec_1 (string
, 0, &switches
[i
].part1
[hard_match_len
]);
5551 /* Pass any arguments this switch has. */
5552 give_switch (i
, 1, 1);
5553 suffix_subst
= NULL
;
5556 /* We didn't match. Try again. */
5563 /* If name specified ends in *, as in {x*:...},
5564 check for presence of any switch name starting with x. */
5567 for (i
= 0; i
< n_switches
; i
++)
5569 unsigned hard_match_len
= p
- filter
- 1;
5571 if (!strncmp (switches
[i
].part1
, filter
, hard_match_len
)
5572 && check_live_switch (i
, hard_match_len
))
5579 /* Otherwise, check for presence of exact name specified. */
5582 for (i
= 0; i
< n_switches
; i
++)
5584 if (!strncmp (switches
[i
].part1
, filter
, p
- filter
)
5585 && switches
[i
].part1
[p
- filter
] == 0
5586 && check_live_switch (i
, -1))
5594 /* If it is as desired (present for %{s...}, absent for %{!s...})
5595 then substitute either the switch or the specified
5596 conditional text. */
5597 if (present
!= negate
)
5601 switches
[i
].live_cond
= SWITCH_IGNORE
;
5602 switches
[i
].validated
= 1;
5604 else if (ordered
|| *p
== '&')
5605 ordered
= 1, switches
[i
].ordering
= 1;
5607 give_switch (i
, 0, include_blanks
);
5609 /* Even if many alternatives are matched, only output once. */
5614 /* Here if a %{|...} conditional fails: output a minus sign,
5615 which means "standard output" or "standard input". */
5616 do_spec_1 ("-", 0, NULL
);
5621 /* We didn't match; try again. */
5628 goto next_ampersand
;
5634 /* Doing this set of switches later preserves their command-line
5635 ordering. This is needed for e.g. -U, -D and -A. */
5636 for (i
= 0; i
< n_switches
; i
++)
5637 if (switches
[i
].ordering
== 1)
5639 switches
[i
].ordering
= 0;
5640 give_switch (i
, 0, include_blanks
);
5643 /* Process the spec just once, regardless of match count. */
5646 if (do_spec_1 (save_string (body
, endbody
- body
- 1),
5654 /* Return 0 iff switch number SWITCHNUM is obsoleted by a later switch
5655 on the command line. PREFIX_LENGTH is the length of XXX in an {XXX*}
5656 spec, or -1 if either exact match or %* is used.
5658 A -O switch is obsoleted by a later -O switch. A -f, -m, or -W switch
5659 whose value does not begin with "no-" is obsoleted by the same value
5660 with the "no-", similarly for a switch with the "no-" prefix. */
5663 check_live_switch (switchnum
, prefix_length
)
5667 const char *name
= switches
[switchnum
].part1
;
5670 /* In the common case of {<at-most-one-letter>*}, a negating
5671 switch would always match, so ignore that case. We will just
5672 send the conflicting switches to the compiler phase. */
5673 if (prefix_length
>= 0 && prefix_length
<= 1)
5676 /* If we already processed this switch and determined if it was
5677 live or not, return our past determination. */
5678 if (switches
[switchnum
].live_cond
!= 0)
5679 return switches
[switchnum
].live_cond
> 0;
5681 /* Now search for duplicate in a manner that depends on the name. */
5685 for (i
= switchnum
+ 1; i
< n_switches
; i
++)
5686 if (switches
[i
].part1
[0] == 'O')
5688 switches
[switchnum
].validated
= 1;
5689 switches
[switchnum
].live_cond
= SWITCH_FALSE
;
5694 case 'W': case 'f': case 'm':
5695 if (! strncmp (name
+ 1, "no-", 3))
5697 /* We have Xno-YYY, search for XYYY. */
5698 for (i
= switchnum
+ 1; i
< n_switches
; i
++)
5699 if (switches
[i
].part1
[0] == name
[0]
5700 && ! strcmp (&switches
[i
].part1
[1], &name
[4]))
5702 switches
[switchnum
].validated
= 1;
5703 switches
[switchnum
].live_cond
= SWITCH_FALSE
;
5709 /* We have XYYY, search for Xno-YYY. */
5710 for (i
= switchnum
+ 1; i
< n_switches
; i
++)
5711 if (switches
[i
].part1
[0] == name
[0]
5712 && switches
[i
].part1
[1] == 'n'
5713 && switches
[i
].part1
[2] == 'o'
5714 && switches
[i
].part1
[3] == '-'
5715 && !strcmp (&switches
[i
].part1
[4], &name
[1]))
5717 switches
[switchnum
].validated
= 1;
5718 switches
[switchnum
].live_cond
= SWITCH_FALSE
;
5725 /* Otherwise the switch is live. */
5726 switches
[switchnum
].live_cond
= SWITCH_LIVE
;
5730 /* Pass a switch to the current accumulating command
5731 in the same form that we received it.
5732 SWITCHNUM identifies the switch; it is an index into
5733 the vector of switches gcc received, which is `switches'.
5734 This cannot fail since it never finishes a command line.
5736 If OMIT_FIRST_WORD is nonzero, then we omit .part1 of the argument.
5738 If INCLUDE_BLANKS is nonzero, then we include blanks before each argument
5742 give_switch (switchnum
, omit_first_word
, include_blanks
)
5744 int omit_first_word
;
5747 if (switches
[switchnum
].live_cond
== SWITCH_IGNORE
)
5750 if (!omit_first_word
)
5752 do_spec_1 ("-", 0, NULL
);
5753 do_spec_1 (switches
[switchnum
].part1
, 1, NULL
);
5756 if (switches
[switchnum
].args
!= 0)
5759 for (p
= switches
[switchnum
].args
; *p
; p
++)
5761 const char *arg
= *p
;
5764 do_spec_1 (" ", 0, NULL
);
5767 unsigned length
= strlen (arg
);
5770 while (length
-- && !IS_DIR_SEPARATOR (arg
[length
]))
5771 if (arg
[length
] == '.')
5773 ((char *)arg
)[length
] = 0;
5777 do_spec_1 (arg
, 1, NULL
);
5779 ((char *)arg
)[length
] = '.';
5780 do_spec_1 (suffix_subst
, 1, NULL
);
5783 do_spec_1 (arg
, 1, NULL
);
5787 do_spec_1 (" ", 0, NULL
);
5788 switches
[switchnum
].validated
= 1;
5791 /* Search for a file named NAME trying various prefixes including the
5792 user's -B prefix and some standard ones.
5793 Return the absolute file name found. If nothing is found, return NAME. */
5801 /* Try multilib_dir if it is defined. */
5802 if (multilib_os_dir
!= NULL
)
5804 newname
= find_a_file (&startfile_prefixes
, name
, R_OK
, 1);
5806 /* If we don't find it in the multi library dir, then fall
5807 through and look for it in the normal places. */
5808 if (newname
!= NULL
)
5812 newname
= find_a_file (&startfile_prefixes
, name
, R_OK
, 0);
5813 return newname
? newname
: name
;
5816 /* Determine whether a directory exists. If LINKER, return 0 for
5817 certain fixed names not needed by the linker. If not LINKER, it is
5818 only important to return 0 if the host machine has a small ARG_MAX
5822 is_directory (path1
, path2
, linker
)
5827 int len1
= strlen (path1
);
5828 int len2
= strlen (path2
);
5829 char *path
= (char *) alloca (3 + len1
+ len2
);
5833 #ifndef SMALL_ARG_MAX
5838 /* Construct the path from the two parts. Ensure the string ends with "/.".
5839 The resulting path will be a directory even if the given path is a
5841 memcpy (path
, path1
, len1
);
5842 memcpy (path
+ len1
, path2
, len2
);
5843 cp
= path
+ len1
+ len2
;
5844 if (!IS_DIR_SEPARATOR (cp
[-1]))
5845 *cp
++ = DIR_SEPARATOR
;
5849 /* Exclude directories that the linker is known to search. */
5852 && strcmp (path
, concat (dir_separator_str
, "lib",
5853 dir_separator_str
, ".", NULL
)) == 0)
5855 && strcmp (path
, concat (dir_separator_str
, "usr",
5856 dir_separator_str
, "lib",
5857 dir_separator_str
, ".", NULL
)) == 0)))
5860 return (stat (path
, &st
) >= 0 && S_ISDIR (st
.st_mode
));
5863 /* Set up the various global variables to indicate that we're processing
5864 the input file named FILENAME. */
5867 set_input (filename
)
5868 const char *filename
;
5872 input_filename
= filename
;
5873 input_filename_length
= strlen (input_filename
);
5875 input_basename
= input_filename
;
5876 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
5877 /* Skip drive name so 'x:foo' is handled properly. */
5878 if (input_basename
[1] == ':')
5879 input_basename
+= 2;
5881 for (p
= input_basename
; *p
; p
++)
5882 if (IS_DIR_SEPARATOR (*p
))
5883 input_basename
= p
+ 1;
5885 /* Find a suffix starting with the last period,
5886 and set basename_length to exclude that suffix. */
5887 basename_length
= strlen (input_basename
);
5888 suffixed_basename_length
= basename_length
;
5889 p
= input_basename
+ basename_length
;
5890 while (p
!= input_basename
&& *p
!= '.')
5892 if (*p
== '.' && p
!= input_basename
)
5894 basename_length
= p
- input_basename
;
5895 input_suffix
= p
+ 1;
5900 /* If a spec for 'g', 'u', or 'U' is seen with -save-temps then
5901 we will need to do a stat on the input_filename. The
5902 INPUT_STAT_SET signals that the stat is needed. */
5906 /* On fatal signals, delete all the temporary files. */
5909 fatal_error (signum
)
5912 signal (signum
, SIG_DFL
);
5913 delete_failure_queue ();
5914 delete_temp_files ();
5915 /* Get the same signal again, this time not handled,
5916 so its normal effect occurs. */
5917 kill (getpid (), signum
);
5920 extern int main
PARAMS ((int, const char *const *));
5925 const char *const *argv
;
5929 int linker_was_run
= 0;
5930 char *explicit_link_files
;
5933 struct user_specs
*uptr
;
5935 p
= argv
[0] + strlen (argv
[0]);
5936 while (p
!= argv
[0] && !IS_DIR_SEPARATOR (p
[-1]))
5940 xmalloc_set_program_name (programname
);
5942 #ifdef GCC_DRIVER_HOST_INITIALIZATION
5943 /* Perform host dependent initialization when needed. */
5944 GCC_DRIVER_HOST_INITIALIZATION
;
5947 gcc_init_libintl ();
5949 if (signal (SIGINT
, SIG_IGN
) != SIG_IGN
)
5950 signal (SIGINT
, fatal_error
);
5952 if (signal (SIGHUP
, SIG_IGN
) != SIG_IGN
)
5953 signal (SIGHUP
, fatal_error
);
5955 if (signal (SIGTERM
, SIG_IGN
) != SIG_IGN
)
5956 signal (SIGTERM
, fatal_error
);
5958 if (signal (SIGPIPE
, SIG_IGN
) != SIG_IGN
)
5959 signal (SIGPIPE
, fatal_error
);
5962 /* We *MUST* set SIGCHLD to SIG_DFL so that the wait4() call will
5963 receive the signal. A different setting is inheritable */
5964 signal (SIGCHLD
, SIG_DFL
);
5967 /* Allocate the argument vector. */
5970 obstack_init (&obstack
);
5972 /* Build multilib_select, et. al from the separate lines that make up each
5973 multilib selection. */
5975 const char *const *q
= multilib_raw
;
5978 obstack_init (&multilib_obstack
);
5979 while ((p
= *q
++) != (char *) 0)
5980 obstack_grow (&multilib_obstack
, p
, strlen (p
));
5982 obstack_1grow (&multilib_obstack
, 0);
5983 multilib_select
= obstack_finish (&multilib_obstack
);
5985 q
= multilib_matches_raw
;
5986 while ((p
= *q
++) != (char *) 0)
5987 obstack_grow (&multilib_obstack
, p
, strlen (p
));
5989 obstack_1grow (&multilib_obstack
, 0);
5990 multilib_matches
= obstack_finish (&multilib_obstack
);
5992 q
= multilib_exclusions_raw
;
5993 while ((p
= *q
++) != (char *) 0)
5994 obstack_grow (&multilib_obstack
, p
, strlen (p
));
5996 obstack_1grow (&multilib_obstack
, 0);
5997 multilib_exclusions
= obstack_finish (&multilib_obstack
);
6000 for (i
= 0; i
< ARRAY_SIZE (multilib_defaults_raw
); i
++)
6003 obstack_1grow (&multilib_obstack
, ' ');
6004 obstack_grow (&multilib_obstack
,
6005 multilib_defaults_raw
[i
],
6006 strlen (multilib_defaults_raw
[i
]));
6010 obstack_1grow (&multilib_obstack
, 0);
6011 multilib_defaults
= obstack_finish (&multilib_obstack
);
6014 /* Set up to remember the pathname of gcc and any options
6015 needed for collect. We use argv[0] instead of programname because
6016 we need the complete pathname. */
6017 obstack_init (&collect_obstack
);
6018 obstack_grow (&collect_obstack
, "COLLECT_GCC=", sizeof ("COLLECT_GCC=") - 1);
6019 obstack_grow (&collect_obstack
, argv
[0], strlen (argv
[0]) + 1);
6020 putenv (obstack_finish (&collect_obstack
));
6022 #ifdef INIT_ENVIRONMENT
6023 /* Set up any other necessary machine specific environment variables. */
6024 putenv (INIT_ENVIRONMENT
);
6027 /* Make a table of what switches there are (switches, n_switches).
6028 Make a table of specified input files (infiles, n_infiles).
6029 Decode switches that are handled locally. */
6031 process_command (argc
, argv
);
6033 /* Process DRIVER_SELF_SPECS, adding any new options to the end
6034 of the command line. */
6036 for (i
= 0; i
< ARRAY_SIZE (driver_self_specs
); i
++)
6037 do_self_spec (driver_self_specs
[i
]);
6039 /* Initialize the vector of specs to just the default.
6040 This means one element containing 0s, as a terminator. */
6042 compilers
= (struct compiler
*) xmalloc (sizeof default_compilers
);
6043 memcpy ((char *) compilers
, (char *) default_compilers
,
6044 sizeof default_compilers
);
6045 n_compilers
= n_default_compilers
;
6047 /* Read specs from a file if there is one. */
6049 machine_suffix
= concat (spec_machine
, dir_separator_str
,
6050 spec_version
, dir_separator_str
, NULL
);
6051 just_machine_suffix
= concat (spec_machine
, dir_separator_str
, NULL
);
6053 specs_file
= find_a_file (&startfile_prefixes
, "specs", R_OK
, 0);
6054 /* Read the specs file unless it is a default one. */
6055 if (specs_file
!= 0 && strcmp (specs_file
, "specs"))
6056 read_specs (specs_file
, TRUE
);
6060 /* We need to check standard_exec_prefix/just_machine_suffix/specs
6061 for any override of as, ld and libraries. */
6062 specs_file
= (char *) alloca (strlen (standard_exec_prefix
)
6063 + strlen (just_machine_suffix
)
6064 + sizeof ("specs"));
6066 strcpy (specs_file
, standard_exec_prefix
);
6067 strcat (specs_file
, just_machine_suffix
);
6068 strcat (specs_file
, "specs");
6069 if (access (specs_file
, R_OK
) == 0)
6070 read_specs (specs_file
, TRUE
);
6072 /* If not cross-compiling, look for executables in the standard
6074 if (*cross_compile
== '0')
6076 if (*md_exec_prefix
)
6078 add_prefix (&exec_prefixes
, md_exec_prefix
, "GCC",
6079 PREFIX_PRIORITY_LAST
, 0, NULL
, 0);
6083 /* Look for startfiles in the standard places. */
6084 if (*startfile_prefix_spec
!= 0
6085 && do_spec_2 (startfile_prefix_spec
) == 0
6086 && do_spec_1 (" ", 0, NULL
) == 0)
6089 for (ndx
= 0; ndx
< argbuf_index
; ndx
++)
6090 add_sysrooted_prefix (&startfile_prefixes
, argbuf
[ndx
], "BINUTILS",
6091 PREFIX_PRIORITY_LAST
, 0, NULL
, 1);
6093 /* We should eventually get rid of all these and stick to
6094 startfile_prefix_spec exclusively. */
6095 else if (*cross_compile
== '0' || target_system_root
)
6097 if (*md_exec_prefix
)
6098 add_sysrooted_prefix (&startfile_prefixes
, md_exec_prefix
, "GCC",
6099 PREFIX_PRIORITY_LAST
, 0, NULL
, 1);
6101 if (*md_startfile_prefix
)
6102 add_sysrooted_prefix (&startfile_prefixes
, md_startfile_prefix
,
6103 "GCC", PREFIX_PRIORITY_LAST
, 0, NULL
, 1);
6105 if (*md_startfile_prefix_1
)
6106 add_sysrooted_prefix (&startfile_prefixes
, md_startfile_prefix_1
,
6107 "GCC", PREFIX_PRIORITY_LAST
, 0, NULL
, 1);
6109 /* Base standard_startfile_prefix (unlibsubdir) on standard_exec_prefix.
6110 This lets us move the installed tree as a unit. If GCC_EXEC_PREFIX
6111 is defined, base standard_startfile_prefix on that as well. */
6112 if (*cross_compile
== '0')
6114 if (gcc_exec_prefix
)
6115 add_prefix (&startfile_prefixes
,
6116 concat (gcc_exec_prefix
, machine_suffix
,
6117 standard_startfile_prefix
, NULL
),
6118 NULL
, PREFIX_PRIORITY_LAST
, 0, NULL
, 1);
6119 add_prefix (&startfile_prefixes
,
6120 concat (standard_exec_prefix
,
6122 standard_startfile_prefix
, NULL
),
6123 NULL
, PREFIX_PRIORITY_LAST
, 0, NULL
, 1);
6126 add_sysrooted_prefix (&startfile_prefixes
, standard_startfile_prefix_1
,
6127 "BINUTILS", PREFIX_PRIORITY_LAST
, 0, NULL
, 1);
6128 add_sysrooted_prefix (&startfile_prefixes
, standard_startfile_prefix_2
,
6129 "BINUTILS", PREFIX_PRIORITY_LAST
, 0, NULL
, 1);
6130 #if 0 /* Can cause surprises, and one can use -B./ instead. */
6131 add_prefix (&startfile_prefixes
, "./", NULL
,
6132 PREFIX_PRIORITY_LAST
, 1, NULL
, 0);
6136 /* Process any user specified specs in the order given on the command
6138 for (uptr
= user_specs_head
; uptr
; uptr
= uptr
->next
)
6140 char *filename
= find_a_file (&startfile_prefixes
, uptr
->filename
,
6142 read_specs (filename
? filename
: uptr
->filename
, FALSE
);
6145 /* If we have a GCC_EXEC_PREFIX envvar, modify it for cpp's sake. */
6146 if (gcc_exec_prefix
)
6147 gcc_exec_prefix
= concat (gcc_exec_prefix
, spec_machine
, dir_separator_str
,
6148 spec_version
, dir_separator_str
, NULL
);
6150 /* Now we have the specs.
6151 Set the `valid' bits for switches that match anything in any spec. */
6153 validate_all_switches ();
6155 /* Now that we have the switches and the specs, set
6156 the subdirectory based on the options. */
6157 set_multilib_dir ();
6159 /* Warn about any switches that no pass was interested in. */
6161 for (i
= 0; (int) i
< n_switches
; i
++)
6162 if (! switches
[i
].validated
)
6163 error ("unrecognized option `-%s'", switches
[i
].part1
);
6165 /* Obey some of the options. */
6167 if (print_search_dirs
)
6169 printf (_("install: %s%s\n"), standard_exec_prefix
, machine_suffix
);
6170 printf (_("programs: %s\n"), build_search_list (&exec_prefixes
, "", 0));
6171 printf (_("libraries: %s\n"), build_search_list (&startfile_prefixes
, "", 0));
6175 if (print_file_name
)
6177 printf ("%s\n", find_file (print_file_name
));
6181 if (print_prog_name
)
6183 char *newname
= find_a_file (&exec_prefixes
, print_prog_name
, X_OK
, 0);
6184 printf ("%s\n", (newname
? newname
: print_prog_name
));
6188 if (print_multi_lib
)
6190 print_multilib_info ();
6194 if (print_multi_directory
)
6196 if (multilib_dir
== NULL
)
6199 printf ("%s\n", multilib_dir
);
6203 if (print_multi_os_directory
)
6205 if (multilib_os_dir
== NULL
)
6208 printf ("%s\n", multilib_os_dir
);
6212 if (target_help_flag
)
6214 /* Print if any target specific options. */
6216 /* We do not exit here. Instead we have created a fake input file
6217 called 'target-dummy' which needs to be compiled, and we pass this
6218 on to the various sub-processes, along with the --target-help
6222 if (print_help_list
)
6228 printf (_("\nFor bug reporting instructions, please see:\n"));
6229 printf ("%s.\n", bug_report_url
);
6234 /* We do not exit here. Instead we have created a fake input file
6235 called 'help-dummy' which needs to be compiled, and we pass this
6236 on the various sub-processes, along with the --help switch. */
6244 notice ("Configured with: %s\n", configuration_arguments
);
6246 #ifdef THREAD_MODEL_SPEC
6247 /* We could have defined THREAD_MODEL_SPEC to "%*" by default,
6248 but there's no point in doing all this processing just to get
6249 thread_model back. */
6250 obstack_init (&obstack
);
6251 do_spec_1 (THREAD_MODEL_SPEC
, 0, thread_model
);
6252 obstack_1grow (&obstack
, '\0');
6253 thrmod
= obstack_finish (&obstack
);
6255 thrmod
= thread_model
;
6258 notice ("Thread model: %s\n", thrmod
);
6260 /* compiler_version is truncated at the first space when initialized
6261 from version string, so truncate version_string at the first space
6262 before comparing. */
6263 for (n
= 0; version_string
[n
]; n
++)
6264 if (version_string
[n
] == ' ')
6267 if (! strncmp (version_string
, compiler_version
, n
)
6268 && compiler_version
[n
] == 0)
6269 notice ("gcc version %s\n", version_string
);
6271 notice ("gcc driver version %s executing gcc version %s\n",
6272 version_string
, compiler_version
);
6278 if (n_infiles
== added_libraries
)
6279 fatal ("no input files");
6281 /* Make a place to record the compiler output file names
6282 that correspond to the input files. */
6285 i
+= lang_specific_extra_outfiles
;
6286 outfiles
= (const char **) xcalloc (i
, sizeof (char *));
6288 /* Record which files were specified explicitly as link input. */
6290 explicit_link_files
= xcalloc (1, n_infiles
);
6292 for (i
= 0; (int) i
< n_infiles
; i
++)
6294 int this_file_error
= 0;
6296 /* Tell do_spec what to substitute for %i. */
6298 input_file_number
= i
;
6299 set_input (infiles
[i
].name
);
6301 /* Use the same thing in %o, unless cp->spec says otherwise. */
6303 outfiles
[i
] = input_filename
;
6305 /* Figure out which compiler from the file's suffix. */
6308 = lookup_compiler (infiles
[i
].name
, input_filename_length
,
6309 infiles
[i
].language
);
6311 if (input_file_compiler
)
6313 /* Ok, we found an applicable compiler. Run its spec. */
6315 if (input_file_compiler
->spec
[0] == '#')
6317 error ("%s: %s compiler not installed on this system",
6318 input_filename
, &input_file_compiler
->spec
[1]);
6319 this_file_error
= 1;
6323 value
= do_spec (input_file_compiler
->spec
);
6325 this_file_error
= 1;
6329 /* If this file's name does not contain a recognized suffix,
6330 record it as explicit linker input. */
6333 explicit_link_files
[i
] = 1;
6335 /* Clear the delete-on-failure queue, deleting the files in it
6336 if this compilation failed. */
6338 if (this_file_error
)
6340 delete_failure_queue ();
6343 /* If this compilation succeeded, don't delete those files later. */
6344 clear_failure_queue ();
6347 /* Reset the output file name to the first input file name, for use
6348 with %b in LINK_SPEC on a target that prefers not to emit a.out
6351 set_input (infiles
[0].name
);
6353 if (error_count
== 0)
6355 /* Make sure INPUT_FILE_NUMBER points to first available open
6357 input_file_number
= n_infiles
;
6358 if (lang_specific_pre_link ())
6362 /* Run ld to link all the compiler output files. */
6364 if (error_count
== 0)
6366 int tmp
= execution_count
;
6368 /* We'll use ld if we can't find collect2. */
6369 if (! strcmp (linker_name_spec
, "collect2"))
6371 char *s
= find_a_file (&exec_prefixes
, "collect2", X_OK
, 0);
6373 linker_name_spec
= "ld";
6375 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
6377 putenv_from_prefixes (&exec_prefixes
, "COMPILER_PATH");
6378 putenv_from_prefixes (&startfile_prefixes
, LIBRARY_PATH_ENV
);
6380 value
= do_spec (link_command_spec
);
6383 linker_was_run
= (tmp
!= execution_count
);
6386 /* If options said don't run linker,
6387 complain about input files to be given to the linker. */
6389 if (! linker_was_run
&& error_count
== 0)
6390 for (i
= 0; (int) i
< n_infiles
; i
++)
6391 if (explicit_link_files
[i
])
6392 error ("%s: linker input file unused because linking not done",
6395 /* Delete some or all of the temporary files we made. */
6398 delete_failure_queue ();
6399 delete_temp_files ();
6401 if (print_help_list
)
6403 printf (("\nFor bug reporting instructions, please see:\n"));
6404 printf ("%s\n", bug_report_url
);
6407 return (signal_count
!= 0 ? 2
6408 : error_count
> 0 ? (pass_exit_codes
? greatest_status
: 1)
6412 /* Find the proper compilation spec for the file name NAME,
6413 whose length is LENGTH. LANGUAGE is the specified language,
6414 or 0 if this file is to be passed to the linker. */
6416 static struct compiler
*
6417 lookup_compiler (name
, length
, language
)
6420 const char *language
;
6422 struct compiler
*cp
;
6424 /* If this was specified by the user to be a linker input, indicate that. */
6425 if (language
!= 0 && language
[0] == '*')
6428 /* Otherwise, look for the language, if one is spec'd. */
6431 for (cp
= compilers
+ n_compilers
- 1; cp
>= compilers
; cp
--)
6432 if (cp
->suffix
[0] == '@' && !strcmp (cp
->suffix
+ 1, language
))
6435 error ("language %s not recognized", language
);
6439 /* Look for a suffix. */
6440 for (cp
= compilers
+ n_compilers
- 1; cp
>= compilers
; cp
--)
6442 if (/* The suffix `-' matches only the file name `-'. */
6443 (!strcmp (cp
->suffix
, "-") && !strcmp (name
, "-"))
6444 || (strlen (cp
->suffix
) < length
6445 /* See if the suffix matches the end of NAME. */
6446 && !strcmp (cp
->suffix
,
6447 name
+ length
- strlen (cp
->suffix
))
6452 #if defined (OS2) ||defined (HAVE_DOS_BASED_FILE_SYSTEM)
6453 /* look again, but case-insensitively this time. */
6455 for (cp
= compilers
+ n_compilers
- 1; cp
>= compilers
; cp
--)
6457 if (/* The suffix `-' matches only the file name `-'. */
6458 (!strcmp (cp
->suffix
, "-") && !strcmp (name
, "-"))
6459 || (strlen (cp
->suffix
) < length
6460 /* See if the suffix matches the end of NAME. */
6461 && ((!strcmp (cp
->suffix
,
6462 name
+ length
- strlen (cp
->suffix
))
6463 || !strpbrk (cp
->suffix
, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"))
6464 && !strcasecmp (cp
->suffix
,
6465 name
+ length
- strlen (cp
->suffix
)))
6471 if (cp
>= compilers
)
6473 if (cp
->spec
[0] != '@')
6474 /* A non-alias entry: return it. */
6477 /* An alias entry maps a suffix to a language.
6478 Search for the language; pass 0 for NAME and LENGTH
6479 to avoid infinite recursion if language not found. */
6480 return lookup_compiler (NULL
, 0, cp
->spec
+ 1);
6486 save_string (s
, len
)
6490 char *result
= xmalloc (len
+ 1);
6492 memcpy (result
, s
, len
);
6498 pfatal_with_name (name
)
6501 perror_with_name (name
);
6502 delete_temp_files ();
6507 perror_with_name (name
)
6510 error ("%s: %s", name
, xstrerror (errno
));
6514 pfatal_pexecute (errmsg_fmt
, errmsg_arg
)
6515 const char *errmsg_fmt
;
6516 const char *errmsg_arg
;
6520 int save_errno
= errno
;
6522 /* Space for trailing '\0' is in %s. */
6523 char *msg
= xmalloc (strlen (errmsg_fmt
) + strlen (errmsg_arg
));
6524 sprintf (msg
, errmsg_fmt
, errmsg_arg
);
6530 pfatal_with_name (errmsg_fmt
);
6533 /* Output an error message and exit */
6538 fatal ("internal gcc abort");
6541 /* Output an error message and exit */
6544 fatal
VPARAMS ((const char *msgid
, ...))
6546 VA_OPEN (ap
, msgid
);
6547 VA_FIXEDARG (ap
, const char *, msgid
);
6549 fprintf (stderr
, "%s: ", programname
);
6550 vfprintf (stderr
, _(msgid
), ap
);
6552 fprintf (stderr
, "\n");
6553 delete_temp_files ();
6558 error
VPARAMS ((const char *msgid
, ...))
6560 VA_OPEN (ap
, msgid
);
6561 VA_FIXEDARG (ap
, const char *, msgid
);
6563 fprintf (stderr
, "%s: ", programname
);
6564 vfprintf (stderr
, _(msgid
), ap
);
6567 fprintf (stderr
, "\n");
6571 notice
VPARAMS ((const char *msgid
, ...))
6573 VA_OPEN (ap
, msgid
);
6574 VA_FIXEDARG (ap
, const char *, msgid
);
6576 vfprintf (stderr
, _(msgid
), ap
);
6581 validate_all_switches ()
6583 struct compiler
*comp
;
6586 struct spec_list
*spec
;
6588 for (comp
= compilers
; comp
->spec
; comp
++)
6592 if (c
== '%' && (*p
== '{' || (*p
== 'W' && *++p
== '{')))
6593 /* We have a switch spec. */
6594 validate_switches (p
+ 1);
6597 /* Look through the linked list of specs read from the specs file. */
6598 for (spec
= specs
; spec
; spec
= spec
->next
)
6600 p
= *(spec
->ptr_spec
);
6602 if (c
== '%' && (*p
== '{' || (*p
== 'W' && *++p
== '{')))
6603 /* We have a switch spec. */
6604 validate_switches (p
+ 1);
6607 p
= link_command_spec
;
6609 if (c
== '%' && (*p
== '{' || (*p
== 'W' && *++p
== '{')))
6610 /* We have a switch spec. */
6611 validate_switches (p
+ 1);
6614 /* Look at the switch-name that comes after START
6615 and mark as valid all supplied switches that match it. */
6618 validate_switches (start
)
6621 const char *p
= start
;
6638 while (*p
!= ':' && *p
!= '}' && *p
!= '|' && *p
!= '&')
6643 else if (p
[-1] == '*')
6645 /* Mark all matching switches as valid. */
6646 for (i
= 0; i
< n_switches
; i
++)
6647 if (!strncmp (switches
[i
].part1
, filter
, p
- filter
- 1))
6648 switches
[i
].validated
= 1;
6652 /* Mark an exact matching switch as valid. */
6653 for (i
= 0; i
< n_switches
; i
++)
6655 if (!strncmp (switches
[i
].part1
, filter
, p
- filter
)
6656 && switches
[i
].part1
[p
- filter
] == 0)
6657 switches
[i
].validated
= 1;
6661 if (*p
++ == '|' || p
[-1] == '&')
6671 static struct mdswitchstr
*mdswitches
;
6672 static int n_mdswitches
;
6674 /* Check whether a particular argument was used. The first time we
6675 canonicalize the switches to keep only the ones we care about. */
6685 const char *replace
;
6690 static struct mswitchstr
*mswitches
;
6691 static int n_mswitches
;
6696 struct mswitchstr
*matches
;
6700 /* Break multilib_matches into the component strings of string
6701 and replacement string. */
6702 for (q
= multilib_matches
; *q
!= '\0'; q
++)
6707 (struct mswitchstr
*) alloca ((sizeof (struct mswitchstr
)) * cnt
);
6709 q
= multilib_matches
;
6719 matches
[i
].len
= q
- matches
[i
].str
;
6721 matches
[i
].replace
= ++q
;
6722 while (*q
!= ';' && *q
!= '\0')
6728 matches
[i
].rep_len
= q
- matches
[i
].replace
;
6734 /* Now build a list of the replacement string for switches that we care
6735 about. Make sure we allocate at least one entry. This prevents
6736 xmalloc from calling fatal, and prevents us from re-executing this
6739 = (struct mswitchstr
*)
6740 xmalloc (sizeof (struct mswitchstr
)
6741 * (n_mdswitches
+ (n_switches
? n_switches
: 1)));
6742 for (i
= 0; i
< n_switches
; i
++)
6744 int xlen
= strlen (switches
[i
].part1
);
6745 for (j
= 0; j
< cnt
; j
++)
6746 if (xlen
== matches
[j
].len
6747 && ! strncmp (switches
[i
].part1
, matches
[j
].str
, xlen
))
6749 mswitches
[n_mswitches
].str
= matches
[j
].replace
;
6750 mswitches
[n_mswitches
].len
= matches
[j
].rep_len
;
6751 mswitches
[n_mswitches
].replace
= (char *) 0;
6752 mswitches
[n_mswitches
].rep_len
= 0;
6758 /* Add MULTILIB_DEFAULTS switches too, as long as they were not present
6759 on the command line nor any options mutually incompatible with
6761 for (i
= 0; i
< n_mdswitches
; i
++)
6765 for (q
= multilib_options
; *q
!= '\0'; q
++)
6771 while (strncmp (q
, mdswitches
[i
].str
, mdswitches
[i
].len
) != 0
6772 || strchr (" /", q
[mdswitches
[i
].len
]) == NULL
)
6774 while (*q
!= ' ' && *q
!= '/' && *q
!= '\0')
6781 if (*q
!= ' ' && *q
!= '\0')
6783 while (*r
!= ' ' && *r
!= '\0')
6786 while (*q
!= ' ' && *q
!= '/' && *q
!= '\0')
6789 if (used_arg (r
, q
- r
))
6794 mswitches
[n_mswitches
].str
= mdswitches
[i
].str
;
6795 mswitches
[n_mswitches
].len
= mdswitches
[i
].len
;
6796 mswitches
[n_mswitches
].replace
= (char *) 0;
6797 mswitches
[n_mswitches
].rep_len
= 0;
6810 for (i
= 0; i
< n_mswitches
; i
++)
6811 if (len
== mswitches
[i
].len
&& ! strncmp (p
, mswitches
[i
].str
, len
))
6818 default_arg (p
, len
)
6824 for (i
= 0; i
< n_mdswitches
; i
++)
6825 if (len
== mdswitches
[i
].len
&& ! strncmp (p
, mdswitches
[i
].str
, len
))
6831 /* Work out the subdirectory to use based on the options. The format of
6832 multilib_select is a list of elements. Each element is a subdirectory
6833 name followed by a list of options followed by a semicolon. The format
6834 of multilib_exclusions is the same, but without the preceding
6835 directory. First gcc will check the exclusions, if none of the options
6836 beginning with an exclamation point are present, and all of the other
6837 options are present, then we will ignore this completely. Passing
6838 that, gcc will consider each multilib_select in turn using the same
6839 rules for matching the options. If a match is found, that subdirectory
6846 unsigned int this_path_len
;
6847 const char *this_path
, *this_arg
;
6848 const char *start
, *end
;
6850 int ok
, ndfltok
, first
;
6853 start
= multilib_defaults
;
6854 while (*start
== ' ' || *start
== '\t')
6856 while (*start
!= '\0')
6859 while (*start
!= ' ' && *start
!= '\t' && *start
!= '\0')
6861 while (*start
== ' ' || *start
== '\t')
6870 = (struct mdswitchstr
*) xmalloc (sizeof (struct mdswitchstr
)
6872 for (start
= multilib_defaults
; *start
!= '\0'; start
= end
+ 1)
6874 while (*start
== ' ' || *start
== '\t')
6880 for (end
= start
+ 1;
6881 *end
!= ' ' && *end
!= '\t' && *end
!= '\0'; end
++)
6884 obstack_grow (&multilib_obstack
, start
, end
- start
);
6885 obstack_1grow (&multilib_obstack
, 0);
6886 mdswitches
[i
].str
= obstack_finish (&multilib_obstack
);
6887 mdswitches
[i
++].len
= end
- start
;
6894 p
= multilib_exclusions
;
6897 /* Ignore newlines. */
6904 /* Check the arguments. */
6918 while (*p
!= ' ' && *p
!= ';')
6925 if (*this_arg
!= '!')
6933 ok
= used_arg (this_arg
, p
- this_arg
);
6948 p
= multilib_select
;
6951 /* Ignore newlines. */
6958 /* Get the initial path. */
6966 this_path_len
= p
- this_path
;
6968 /* Check the arguments. */
6984 while (*p
!= ' ' && *p
!= ';')
6991 if (*this_arg
!= '!')
6999 /* If this is a default argument, we can just ignore it.
7000 This is true even if this_arg begins with '!'. Beginning
7001 with '!' does not mean that this argument is necessarily
7002 inappropriate for this library: it merely means that
7003 there is a more specific library which uses this
7004 argument. If this argument is a default, we need not
7005 consider that more specific library. */
7006 ok
= used_arg (this_arg
, p
- this_arg
);
7013 if (default_arg (this_arg
, p
- this_arg
))
7022 if (this_path_len
!= 1
7023 || this_path
[0] != '.')
7025 char *new_multilib_dir
= xmalloc (this_path_len
+ 1);
7028 strncpy (new_multilib_dir
, this_path
, this_path_len
);
7029 new_multilib_dir
[this_path_len
] = '\0';
7030 q
= strchr (new_multilib_dir
, ':');
7033 multilib_dir
= new_multilib_dir
;
7040 const char *q
= this_path
, *end
= this_path
+ this_path_len
;
7042 while (q
< end
&& *q
!= ':')
7046 char *new_multilib_os_dir
= xmalloc (end
- q
);
7047 memcpy (new_multilib_os_dir
, q
+ 1, end
- q
- 1);
7048 new_multilib_os_dir
[end
- q
- 1] = '\0';
7049 multilib_os_dir
= new_multilib_os_dir
;
7057 if (multilib_dir
== NULL
&& multilib_os_dir
!= NULL
7058 && strcmp (multilib_os_dir
, ".") == 0)
7060 free ((char *) multilib_os_dir
);
7061 multilib_os_dir
= NULL
;
7063 else if (multilib_dir
!= NULL
&& multilib_os_dir
== NULL
)
7064 multilib_os_dir
= multilib_dir
;
7067 /* Print out the multiple library subdirectory selection
7068 information. This prints out a series of lines. Each line looks
7069 like SUBDIRECTORY;@OPTION@OPTION, with as many options as is
7070 required. Only the desired options are printed out, the negative
7071 matches. The options are print without a leading dash. There are
7072 no spaces to make it easy to use the information in the shell.
7073 Each subdirectory is printed only once. This assumes the ordering
7074 generated by the genmultilib script. Also, we leave out ones that match
7078 print_multilib_info ()
7080 const char *p
= multilib_select
;
7081 const char *last_path
= 0, *this_path
;
7083 unsigned int last_path_len
= 0;
7088 /* Ignore newlines. */
7095 /* Get the initial path. */
7104 /* When --disable-multilib was used but target defines
7105 MULTILIB_OSDIRNAMES, entries starting with .: are there just
7106 to find multilib_os_dir, so skip them from output. */
7107 if (this_path
[0] == '.' && this_path
[1] == ':')
7110 /* Check for matches with the multilib_exclusions. We don't bother
7111 with the '!' in either list. If any of the exclusion rules match
7112 all of its options with the select rule, we skip it. */
7114 const char *e
= multilib_exclusions
;
7115 const char *this_arg
;
7120 /* Ignore newlines. */
7127 /* Check the arguments. */
7144 while (*e
!= ' ' && *e
!= ';')
7155 int len
= e
- this_arg
;
7162 while (*q
!= ' ' && *q
!= ';')
7169 if (! strncmp (arg
, this_arg
, (len
< q
- arg
) ? q
- arg
: len
) ||
7170 default_arg (this_arg
, e
- this_arg
))
7200 /* If this is a duplicate, skip it. */
7201 skip
= (last_path
!= 0 && (unsigned int) (p
- this_path
) == last_path_len
7202 && ! strncmp (last_path
, this_path
, last_path_len
));
7204 last_path
= this_path
;
7205 last_path_len
= p
- this_path
;
7208 /* If this directory requires any default arguments, we can skip
7209 it. We will already have printed a directory identical to
7210 this one which does not require that default argument. */
7228 while (*q
!= ' ' && *q
!= ';')
7236 && default_arg (arg
, q
- arg
))
7251 for (p1
= last_path
; p1
< p
&& *p1
!= ':'; p1
++)
7270 use_arg
= *p
!= '!';
7275 while (*p
!= ' ' && *p
!= ';')
7290 /* If there are extra options, print them now. */
7291 if (multilib_extra
&& *multilib_extra
)
7293 int print_at
= TRUE
;
7296 for (q
= multilib_extra
; *q
!= '\0'; q
++)
7317 /* if-exists built-in spec function.
7319 Checks to see if the file specified by the absolute pathname in
7320 ARGS exists. Returns that pathname if found.
7322 The usual use for this function is to check for a library file
7323 (whose name has been expanded with %s). */
7326 if_exists_spec_function (argc
, argv
)
7330 /* Must have only one argument. */
7331 if (argc
== 1 && IS_ABSOLUTE_PATHNAME (argv
[0]) && ! access (argv
[0], R_OK
))
7337 /* if-exists-else built-in spec function.
7339 This is like if-exists, but takes an additional argument which
7340 is returned if the first argument does not exist. */
7343 if_exists_else_spec_function (argc
, argv
)
7347 /* Must have exactly two arguments. */
7351 if (IS_ABSOLUTE_PATHNAME (argv
[0]) && ! access (argv
[0], R_OK
))