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, 2003, 2004, 2005, 2006, 2007, 2008, 2009
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /* This program is the user interface to the C compiler and possibly to
23 other compilers. It is used because compilation is a complicated procedure
24 which involves running several programs and passing temporary files between
25 them, forwarding the users switches to those programs selectively,
26 and deleting the temporary files at the end.
28 CC recognizes how to compile each input file by suffixes in the file names.
29 Once it knows which kind of compilation to perform, the procedure for
30 compilation is specified by a string called a "spec". */
32 /* A Short Introduction to Adding a Command-Line Option.
34 Before adding a command-line option, consider if it is really
35 necessary. Each additional command-line option adds complexity and
36 is difficult to remove in subsequent versions.
38 In the following, consider adding the command-line argument
41 1. Each command-line option is specified in the specs file. The
42 notation is described below in the comment entitled "The Specs
45 2. In this file, add an entry to "option_map" equating the long
46 `--' argument version and any shorter, single letter version. Read
47 the comments in the declaration of "struct option_map" for an
48 explanation. Do not omit the first `-'.
50 3. Look in the "specs" file to determine which program or option
51 list should be given the argument, e.g., "cc1_options". Add the
52 appropriate syntax for the shorter option version to the
53 corresponding "const char *" entry in this file. Omit the first
54 `-' from the option. For example, use `-bar', rather than `--bar'.
56 4. If the argument takes an argument, e.g., `--baz argument1',
57 modify either DEFAULT_SWITCH_TAKES_ARG or
58 DEFAULT_WORD_SWITCH_TAKES_ARG in gcc.h. Omit the first `-'
61 5. Document the option in this file's display_help(). If the
62 option is passed to a subprogram, modify its corresponding
63 function, e.g., cppinit.c:print_help() or toplev.c:display_help(),
66 6. Compile and test. Make sure that your new specs file is being
67 read. For example, use a debugger to investigate the value of
68 "specs_file" in main(). */
72 #include "coretypes.h"
73 #include "multilib.h" /* before tm.h */
76 #if ! defined( SIGCHLD ) && defined( SIGCLD )
77 # define SIGCHLD SIGCLD
88 # include <sys/mman.h>
90 /* This is on Solaris. */
91 # include <sys/types.h>
96 # define MAP_FAILED ((void *)-1)
99 /* By default there is no special suffix for target executables. */
100 /* FIXME: when autoconf is fixed, remove the host check - dj */
101 #if defined(TARGET_EXECUTABLE_SUFFIX) && defined(HOST_EXECUTABLE_SUFFIX)
102 #define HAVE_TARGET_EXECUTABLE_SUFFIX
105 /* By default there is no special suffix for host executables. */
106 #ifdef HOST_EXECUTABLE_SUFFIX
107 #define HAVE_HOST_EXECUTABLE_SUFFIX
109 #define HOST_EXECUTABLE_SUFFIX ""
112 /* By default, the suffix for target object files is ".o". */
113 #ifdef TARGET_OBJECT_SUFFIX
114 #define HAVE_TARGET_OBJECT_SUFFIX
116 #define TARGET_OBJECT_SUFFIX ".o"
119 static const char dir_separator_str[] = { DIR_SEPARATOR, 0 };
121 /* Most every one is fine with LIBRARY_PATH. For some, it conflicts. */
122 #ifndef LIBRARY_PATH_ENV
123 #define LIBRARY_PATH_ENV "LIBRARY_PATH"
127 #define kill(p,s) raise(s)
130 /* If a stage of compilation returns an exit status >= 1,
131 compilation of that file ceases. */
133 #define MIN_FATAL_STATUS 1
135 /* Flag set by cppspec.c to 1. */
138 /* Flag set to nonzero if an @file argument has been supplied to gcc. */
139 static bool at_file_supplied;
141 /* Flag saying to pass the greatest exit code returned by a sub-process
142 to the calling program. */
143 static int pass_exit_codes;
145 /* Definition of string containing the arguments given to configure. */
146 #include "configargs.h"
148 /* Flag saying to print the directories gcc will search through looking for
149 programs, libraries, etc. */
151 static int print_search_dirs;
153 /* Flag saying to print the full filename of this file
154 as found through our usual search mechanism. */
156 static const char *print_file_name = NULL;
158 /* As print_file_name, but search for executable file. */
160 static const char *print_prog_name = NULL;
162 /* Flag saying to print the relative path we'd use to
163 find libgcc.a given the current compiler flags. */
165 static int print_multi_directory;
167 static int print_sysroot;
169 /* Flag saying to print the relative path we'd use to
170 find OS libraries given the current compiler flags. */
172 static int print_multi_os_directory;
174 /* Flag saying to print the list of subdirectories and
175 compiler flags used to select them in a standard form. */
177 static int print_multi_lib;
179 /* Flag saying to print the command line options understood by gcc and its
182 static int print_help_list;
184 /* Flag saying to print the version of gcc and its sub-processes. */
186 static int print_version;
188 /* Flag saying to print the sysroot suffix used for searching for
191 static int print_sysroot_headers_suffix;
193 /* Flag indicating whether we should print the command and arguments */
195 static int verbose_flag;
197 /* Flag indicating whether we should ONLY print the command and
198 arguments (like verbose_flag) without executing the command.
199 Displayed arguments are quoted so that the generated command
200 line is suitable for execution. This is intended for use in
201 shell scripts to capture the driver-generated command line. */
202 static int verbose_only_flag;
204 /* Flag indicating how to print command line options of sub-processes. */
206 static int print_subprocess_help;
208 /* Flag indicating whether we should report subprocess execution times
209 (if this is supported by the system - see pexecute.c). */
211 static int report_times;
213 /* Whether we should report subprocess execution times to a file. */
215 FILE *report_times_to_file = NULL;
217 /* Nonzero means place this string before uses of /, so that include
218 and library files can be found in an alternate location. */
220 #ifdef TARGET_SYSTEM_ROOT
221 static const char *target_system_root = TARGET_SYSTEM_ROOT;
223 static const char *target_system_root = 0;
226 /* Nonzero means pass the updated target_system_root to the compiler. */
228 static int target_system_root_changed;
230 /* Nonzero means append this string to target_system_root. */
232 static const char *target_sysroot_suffix = 0;
234 /* Nonzero means append this string to target_system_root for headers. */
236 static const char *target_sysroot_hdrs_suffix = 0;
238 /* Nonzero means write "temp" files in source directory
239 and use the source file's name in them, and don't delete them. */
241 static enum save_temps {
242 SAVE_TEMPS_NONE, /* no -save-temps */
243 SAVE_TEMPS_CWD, /* -save-temps in current directory */
244 SAVE_TEMPS_OBJ /* -save-temps in object directory */
247 /* Output file to use to get the object directory for -save-temps=obj */
248 static char *save_temps_prefix = 0;
249 static size_t save_temps_length = 0;
251 /* Nonzero means pass multiple source files to the compiler at one time. */
253 static int combine_flag = 0;
255 /* Nonzero means use pipes to communicate between subprocesses.
256 Overridden by either of the above two flags. */
258 static int use_pipes;
260 /* The compiler version. */
262 static const char *compiler_version;
264 /* The target version specified with -V */
266 static const char *const spec_version = DEFAULT_TARGET_VERSION;
268 /* The target machine specified with -b. */
270 static const char *spec_machine = DEFAULT_TARGET_MACHINE;
272 /* Nonzero if cross-compiling.
273 When -b is used, the value comes from the `specs' file. */
275 #ifdef CROSS_DIRECTORY_STRUCTURE
276 static const char *cross_compile = "1";
278 static const char *cross_compile = "0";
281 #ifdef MODIFY_TARGET_NAME
283 /* Information on how to alter the target name based on a command-line
284 switch. The only case we support now is simply appending or deleting a
285 string to or from the end of the first part of the configuration name. */
287 enum add_del {ADD, DELETE};
289 static const struct modify_target
291 const char *const sw;
292 const enum add_del add_del;
293 const char *const str;
295 modify_target[] = MODIFY_TARGET_NAME;
298 /* The number of errors that have occurred; the link phase will not be
299 run if this is nonzero. */
300 static int error_count = 0;
302 /* Greatest exit code of sub-processes that has been encountered up to
304 static int greatest_status = 1;
306 /* This is the obstack which we use to allocate many strings. */
308 static struct obstack obstack;
310 /* This is the obstack to build an environment variable to pass to
311 collect2 that describes all of the relevant switches of what to
312 pass the compiler in building the list of pointers to constructors
315 static struct obstack collect_obstack;
317 /* This is a list of a wrapper program and its arguments.
318 e.g. wrapper_string of "strace,-c"
319 will cause all programs to run as
320 strace -c program arguments
323 static const char *wrapper_string;
325 /* Forward declaration for prototypes. */
329 static void init_spec (void);
330 static void store_arg (const char *, int, int);
331 static void insert_wrapper (const char *);
332 static char *load_specs (const char *);
333 static void read_specs (const char *, int);
334 static void set_spec (const char *, const char *);
335 static struct compiler *lookup_compiler (const char *, size_t, const char *);
336 static char *build_search_list (const struct path_prefix *, const char *,
338 static void xputenv (const char *);
339 static void putenv_from_prefixes (const struct path_prefix *, const char *,
341 static int access_check (const char *, int);
342 static char *find_a_file (const struct path_prefix *, const char *, int, bool);
343 static void add_prefix (struct path_prefix *, const char *, const char *,
345 static void add_sysrooted_prefix (struct path_prefix *, const char *,
346 const char *, int, int, int);
347 static void translate_options (int *, const char *const **);
348 static char *skip_whitespace (char *);
349 static void delete_if_ordinary (const char *);
350 static void delete_temp_files (void);
351 static void delete_failure_queue (void);
352 static void clear_failure_queue (void);
353 static int check_live_switch (int, int);
354 static const char *handle_braces (const char *);
355 static inline bool input_suffix_matches (const char *, const char *);
356 static inline bool switch_matches (const char *, const char *, int);
357 static inline void mark_matching_switches (const char *, const char *, int);
358 static inline void process_marked_switches (void);
359 static const char *process_brace_body (const char *, const char *, const char *, int, int);
360 static const struct spec_function *lookup_spec_function (const char *);
361 static const char *eval_spec_function (const char *, const char *);
362 static const char *handle_spec_function (const char *);
363 static char *save_string (const char *, int);
364 static void set_collect_gcc_options (void);
365 static int do_spec_1 (const char *, int, const char *);
366 static int do_spec_2 (const char *);
367 static void do_option_spec (const char *, const char *);
368 static void do_self_spec (const char *);
369 static const char *find_file (const char *);
370 static int is_directory (const char *, bool);
371 static const char *validate_switches (const char *);
372 static void validate_all_switches (void);
373 static inline void validate_switches_from_spec (const char *);
374 static void give_switch (int, int);
375 static int used_arg (const char *, int);
376 static int default_arg (const char *, int);
377 static void set_multilib_dir (void);
378 static void print_multilib_info (void);
379 static void perror_with_name (const char *);
380 static void fatal_ice (const char *, ...) ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN;
381 static void notice (const char *, ...) ATTRIBUTE_PRINTF_1;
382 static void display_help (void);
383 static void add_preprocessor_option (const char *, int);
384 static void add_assembler_option (const char *, int);
385 static void add_linker_option (const char *, int);
386 static void process_command (int, const char **);
387 static int execute (void);
388 static void alloc_args (void);
389 static void clear_args (void);
390 static void fatal_error (int);
391 #if defined(ENABLE_SHARED_LIBGCC) && !defined(REAL_LIBGCC_SPEC)
392 static void init_gcc_specs (struct obstack *, const char *, const char *,
395 #if defined(HAVE_TARGET_OBJECT_SUFFIX) || defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
396 static const char *convert_filename (const char *, int, int);
399 static const char *getenv_spec_function (int, const char **);
400 static const char *if_exists_spec_function (int, const char **);
401 static const char *if_exists_else_spec_function (int, const char **);
402 static const char *replace_outfile_spec_function (int, const char **);
403 static const char *version_compare_spec_function (int, const char **);
404 static const char *include_spec_function (int, const char **);
405 static const char *print_asm_header_spec_function (int, const char **);
406 static const char *compare_debug_dump_opt_spec_function (int, const char **);
407 static const char *compare_debug_self_opt_spec_function (int, const char **);
408 static const char *compare_debug_auxbase_opt_spec_function (int, const char **);
410 /* The Specs Language
412 Specs are strings containing lines, each of which (if not blank)
413 is made up of a program name, and arguments separated by spaces.
414 The program name must be exact and start from root, since no path
415 is searched and it is unreliable to depend on the current working directory.
416 Redirection of input or output is not supported; the subprograms must
417 accept filenames saying what files to read and write.
419 In addition, the specs can contain %-sequences to substitute variable text
420 or for conditional text. Here is a table of all defined %-sequences.
421 Note that spaces are not generated automatically around the results of
422 expanding these sequences; therefore, you can concatenate them together
423 or with constant text in a single argument.
425 %% substitute one % into the program name or argument.
426 %i substitute the name of the input file being processed.
427 %b substitute the basename of the input file being processed.
428 This is the substring up to (and not including) the last period
429 and not including the directory unless -save-temps was specified
430 to put temporaries in a different location.
431 %B same as %b, but include the file suffix (text after the last period).
433 substitute a file name that has suffix SUFFIX and is chosen
434 once per compilation, and mark the argument a la %d. To reduce
435 exposure to denial-of-service attacks, the file name is now
436 chosen in a way that is hard to predict even when previously
437 chosen file names are known. For example, `%g.s ... %g.o ... %g.s'
438 might turn into `ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s'. SUFFIX matches
439 the regexp "[.0-9A-Za-z]*%O"; "%O" is treated exactly as if it
440 had been pre-processed. Previously, %g was simply substituted
441 with a file name chosen once per compilation, without regard
442 to any appended suffix (which was therefore treated just like
443 ordinary text), making such attacks more likely to succeed.
445 like %g, but if -pipe is in effect, expands simply to "-".
447 like %g, but if -pipe is in effect, expands to nothing. (We have both
448 %| and %m to accommodate differences between system assemblers; see
449 the AS_NEEDS_DASH_FOR_PIPED_INPUT target macro.)
451 like %g, but generates a new temporary file name even if %uSUFFIX
454 substitutes the last file name generated with %uSUFFIX, generating a
455 new one if there is no such last file name. In the absence of any
456 %uSUFFIX, this is just like %gSUFFIX, except they don't share
457 the same suffix "space", so `%g.s ... %U.s ... %g.s ... %U.s'
458 would involve the generation of two distinct file names, one
459 for each `%g.s' and another for each `%U.s'. Previously, %U was
460 simply substituted with a file name chosen for the previous %u,
461 without regard to any appended suffix.
463 substitutes the name of the HOST_BIT_BUCKET, if any, and if it is
464 writable, and if save-temps is off; otherwise, substitute the name
465 of a temporary file, just like %u. This temporary file is not
466 meant for communication between processes, but rather as a junk
469 substitutes .SUFFIX for the suffixes of a matched switch's args when
470 it is subsequently output with %*. SUFFIX is terminated by the next
472 %d marks the argument containing or following the %d as a
473 temporary file name, so that that file will be deleted if GCC exits
474 successfully. Unlike %g, this contributes no text to the argument.
475 %w marks the argument containing or following the %w as the
476 "output file" of this compilation. This puts the argument
477 into the sequence of arguments that %o will substitute later.
478 %V indicates that this compilation produces no "output file".
480 like %{...} but mark last argument supplied within
481 as a file to be deleted on failure.
482 %o substitutes the names of all the output files, with spaces
483 automatically placed around them. You should write spaces
484 around the %o as well or the results are undefined.
485 %o is for use in the specs for running the linker.
486 Input files whose names have no recognized suffix are not compiled
487 at all, but they are included among the output files, so they will
489 %O substitutes the suffix for object files. Note that this is
490 handled specially when it immediately follows %g, %u, or %U
491 (with or without a suffix argument) because of the need for
492 those to form complete file names. The handling is such that
493 %O is treated exactly as if it had already been substituted,
494 except that %g, %u, and %U do not currently support additional
495 SUFFIX characters following %O as they would following, for
497 %I Substitute any of -iprefix (made from GCC_EXEC_PREFIX), -isysroot
498 (made from TARGET_SYSTEM_ROOT), -isystem (made from COMPILER_PATH
499 and -B options) and -imultilib as necessary.
500 %s current argument is the name of a library or startup file of some sort.
501 Search for that file in a standard list of directories
502 and substitute the full name found.
503 %eSTR Print STR as an error message. STR is terminated by a newline.
504 Use this when inconsistent options are detected.
505 %nSTR Print STR as a notice. STR is terminated by a newline.
506 %x{OPTION} Accumulate an option for %X.
507 %X Output the accumulated linker options specified by compilations.
508 %Y Output the accumulated assembler options specified by compilations.
509 %Z Output the accumulated preprocessor options specified by compilations.
510 %a process ASM_SPEC as a spec.
511 This allows config.h to specify part of the spec for running as.
512 %A process ASM_FINAL_SPEC as a spec. A capital A is actually
513 used here. This can be used to run a post-processor after the
514 assembler has done its job.
515 %D Dump out a -L option for each directory in startfile_prefixes.
516 If multilib_dir is set, extra entries are generated with it affixed.
517 %l process LINK_SPEC as a spec.
518 %L process LIB_SPEC as a spec.
519 %G process LIBGCC_SPEC as a spec.
520 %R Output the concatenation of target_system_root and
521 target_sysroot_suffix.
522 %S process STARTFILE_SPEC as a spec. A capital S is actually used here.
523 %E process ENDFILE_SPEC as a spec. A capital E is actually used here.
524 %C process CPP_SPEC as a spec.
525 %1 process CC1_SPEC as a spec.
526 %2 process CC1PLUS_SPEC as a spec.
527 %* substitute the variable part of a matched option. (See below.)
528 Note that each comma in the substituted string is replaced by
530 %<S remove all occurrences of -S from the command line.
531 Note - this command is position dependent. % commands in the
532 spec string before this one will see -S, % commands in the
533 spec string after this one will not.
534 %<S* remove all occurrences of all switches beginning with -S from the
537 Call the named function FUNCTION, passing it ARGS. ARGS is
538 first processed as a nested spec string, then split into an
539 argument vector in the usual fashion. The function returns
540 a string which is processed as if it had appeared literally
541 as part of the current spec.
542 %{S} substitutes the -S switch, if that switch was given to GCC.
543 If that switch was not specified, this substitutes nothing.
544 Here S is a metasyntactic variable.
545 %{S*} substitutes all the switches specified to GCC whose names start
546 with -S. This is used for -o, -I, etc; switches that take
547 arguments. GCC considers `-o foo' as being one switch whose
548 name starts with `o'. %{o*} would substitute this text,
549 including the space; thus, two arguments would be generated.
550 %{S*&T*} likewise, but preserve order of S and T options (the order
551 of S and T in the spec is not significant). Can be any number
552 of ampersand-separated variables; for each the wild card is
553 optional. Useful for CPP as %{D*&U*&A*}.
555 %{S:X} substitutes X, if the -S switch was given to GCC.
556 %{!S:X} substitutes X, if the -S switch was NOT given to GCC.
557 %{S*:X} substitutes X if one or more switches whose names start
558 with -S was given to GCC. Normally X is substituted only
559 once, no matter how many such switches appeared. However,
560 if %* appears somewhere in X, then X will be substituted
561 once for each matching switch, with the %* replaced by the
562 part of that switch that matched the '*'.
563 %{.S:X} substitutes X, if processing a file with suffix S.
564 %{!.S:X} substitutes X, if NOT processing a file with suffix S.
565 %{,S:X} substitutes X, if processing a file which will use spec S.
566 %{!,S:X} substitutes X, if NOT processing a file which will use spec S.
568 %{S|T:X} substitutes X if either -S or -T was given to GCC. This may be
569 combined with '!', '.', ',', and '*' as above binding stronger
571 If %* appears in X, all of the alternatives must be starred, and
572 only the first matching alternative is substituted.
573 %{S:X; if S was given to GCC, substitutes X;
574 T:Y; else if T was given to GCC, substitutes Y;
575 :D} else substitutes D. There can be as many clauses as you need.
576 This may be combined with '.', '!', ',', '|', and '*' as above.
578 %(Spec) processes a specification defined in a specs file as *Spec:
579 %[Spec] as above, but put __ around -D arguments
581 The conditional text X in a %{S:X} or similar construct may contain
582 other nested % constructs or spaces, or even newlines. They are
583 processed as usual, as described above. Trailing white space in X is
584 ignored. White space may also appear anywhere on the left side of the
585 colon in these constructs, except between . or * and the corresponding
588 The -O, -f, -m, and -W switches are handled specifically in these
589 constructs. If another value of -O or the negated form of a -f, -m, or
590 -W switch is found later in the command line, the earlier switch
591 value is ignored, except with {S*} where S is just one letter; this
592 passes all matching options.
594 The character | at the beginning of the predicate text is used to indicate
595 that a command should be piped to the following command, but only if -pipe
598 Note that it is built into GCC which switches take arguments and which
599 do not. You might think it would be useful to generalize this to
600 allow each compiler's spec to say which switches take arguments. But
601 this cannot be done in a consistent fashion. GCC cannot even decide
602 which input files have been specified without knowing which switches
603 take arguments, and it must know which input files to compile in order
604 to tell which compilers to run.
606 GCC also knows implicitly that arguments starting in `-l' are to be
607 treated as compiler output files, and passed to the linker in their
608 proper position among the other output files. */
610 /* Define the macros used for specs %a, %l, %L, %S, %C, %1. */
612 /* config.h can define ASM_SPEC to provide extra args to the assembler
613 or extra switch-translations. */
618 /* config.h can define ASM_FINAL_SPEC to run a post processor after
619 the assembler has run. */
620 #ifndef ASM_FINAL_SPEC
621 #define ASM_FINAL_SPEC ""
624 /* config.h can define CPP_SPEC to provide extra args to the C preprocessor
625 or extra switch-translations. */
630 /* config.h can define CC1_SPEC to provide extra args to cc1 and cc1plus
631 or extra switch-translations. */
636 /* config.h can define CC1PLUS_SPEC to provide extra args to cc1plus
637 or extra switch-translations. */
639 #define CC1PLUS_SPEC ""
642 /* config.h can define LINK_SPEC to provide extra args to the linker
643 or extra switch-translations. */
648 /* config.h can define LIB_SPEC to override the default libraries. */
650 #define LIB_SPEC "%{!shared:%{g*:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}}"
655 /* XXX: valid only for GNU ld */
656 /* XXX: should exactly match hooks provided by libmudflap.a */
657 #define MFWRAP_SPEC " %{static: %{fmudflap|fmudflapth: \
658 --wrap=malloc --wrap=free --wrap=calloc --wrap=realloc\
659 --wrap=mmap --wrap=munmap --wrap=alloca\
660 } %{fmudflapth: --wrap=pthread_create\
661 }} %{fmudflap|fmudflapth: --wrap=main}"
664 #define MFLIB_SPEC "%{fmudflap|fmudflapth: -export-dynamic}"
667 /* config.h can define LIBGCC_SPEC to override how and when libgcc.a is
670 #if defined(REAL_LIBGCC_SPEC)
671 #define LIBGCC_SPEC REAL_LIBGCC_SPEC
672 #elif defined(LINK_LIBGCC_SPECIAL_1)
673 /* Have gcc do the search for libgcc.a. */
674 #define LIBGCC_SPEC "libgcc.a%s"
676 #define LIBGCC_SPEC "-lgcc"
680 /* config.h can define STARTFILE_SPEC to override the default crt0 files. */
681 #ifndef STARTFILE_SPEC
682 #define STARTFILE_SPEC \
683 "%{!shared:%{pg:gcrt0%O%s}%{!pg:%{p:mcrt0%O%s}%{!p:crt0%O%s}}}"
686 /* config.h can define SWITCHES_NEED_SPACES to control which options
687 require spaces between the option and the argument. */
688 #ifndef SWITCHES_NEED_SPACES
689 #define SWITCHES_NEED_SPACES ""
692 /* config.h can define ENDFILE_SPEC to override the default crtn files. */
694 #define ENDFILE_SPEC ""
698 #define LINKER_NAME "collect2"
701 #ifdef HAVE_AS_DEBUG_PREFIX_MAP
702 #define ASM_MAP " %{fdebug-prefix-map=*:--debug-prefix-map %*}"
707 /* Define ASM_DEBUG_SPEC to be a spec suitable for translating '-g'
709 #ifndef ASM_DEBUG_SPEC
710 # if defined(DBX_DEBUGGING_INFO) && defined(DWARF2_DEBUGGING_INFO) \
711 && defined(HAVE_AS_GDWARF2_DEBUG_FLAG) && defined(HAVE_AS_GSTABS_DEBUG_FLAG)
712 # define ASM_DEBUG_SPEC \
713 (PREFERRED_DEBUGGING_TYPE == DBX_DEBUG \
714 ? "%{!g0:%{gdwarf-2*:--gdwarf2}%{!gdwarf-2*:%{g*:--gstabs}}}" ASM_MAP \
715 : "%{!g0:%{gstabs*:--gstabs}%{!gstabs*:%{g*:--gdwarf2}}}" ASM_MAP)
717 # if defined(DBX_DEBUGGING_INFO) && defined(HAVE_AS_GSTABS_DEBUG_FLAG)
718 # define ASM_DEBUG_SPEC "%{g*:%{!g0:--gstabs}}" ASM_MAP
720 # if defined(DWARF2_DEBUGGING_INFO) && defined(HAVE_AS_GDWARF2_DEBUG_FLAG)
721 # define ASM_DEBUG_SPEC "%{g*:%{!g0:--gdwarf2}}" ASM_MAP
725 #ifndef ASM_DEBUG_SPEC
726 # define ASM_DEBUG_SPEC ""
729 /* Here is the spec for running the linker, after compiling all files. */
731 /* This is overridable by the target in case they need to specify the
732 -lgcc and -lc order specially, yet not require them to override all
733 of LINK_COMMAND_SPEC. */
734 #ifndef LINK_GCC_C_SEQUENCE_SPEC
735 #define LINK_GCC_C_SEQUENCE_SPEC "%G %L %G"
738 #ifndef LINK_SSP_SPEC
739 #ifdef TARGET_LIBC_PROVIDES_SSP
740 #define LINK_SSP_SPEC "%{fstack-protector:}"
742 #define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all:-lssp_nonshared -lssp}"
746 #ifndef LINK_PIE_SPEC
748 #define LINK_PIE_SPEC "%{pie:-pie} "
750 #define LINK_PIE_SPEC "%{pie:} "
754 #ifndef LINK_BUILDID_SPEC
755 # if defined(HAVE_LD_BUILDID) && defined(ENABLE_LD_BUILDID)
756 # define LINK_BUILDID_SPEC "%{!r:--build-id} "
761 /* -u* was put back because both BSD and SysV seem to support it. */
762 /* %{static:} simply prevents an error message if the target machine
763 doesn't handle -static. */
764 /* We want %{T*} after %{L*} and %D so that it can be used to specify linker
765 scripts which exist in user specified directories, or in standard
767 /* We pass any -flto and -fwhopr flags on to the linker, which is expected
768 to understand them. In practice, this means it had better be collect2. */
769 #ifndef LINK_COMMAND_SPEC
770 #define LINK_COMMAND_SPEC "\
771 %{!fsyntax-only:%{!c:%{!M:%{!MM:%{!E:%{!S:\
773 %{use-linker-plugin: \
774 -plugin %(linker_plugin_file) \
775 -plugin-opt=%(lto_wrapper) \
776 -plugin-opt=%(lto_gcc) \
777 %{static|static-libgcc:-plugin-opt=-pass-through=%(lto_libgcc)} \
778 %{static:-plugin-opt=-pass-through=-lc} \
779 %{O*:-plugin-opt=-O%*} \
780 %{w:-plugin-opt=-w} \
781 %{f*:-plugin-opt=-f%*} \
783 %{flto} %{fwhopr} %l " LINK_PIE_SPEC \
784 "%X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} %{r}\
785 %{s} %{t} %{u*} %{x} %{z} %{Z} %{!A:%{!nostdlib:%{!nostartfiles:%S}}}\
786 %{static:} %{L*} %(mfwrap) %(link_libgcc) %o\
787 %{fopenmp|ftree-parallelize-loops=*:%:include(libgomp.spec)%(link_gomp)} %(mflib)\
788 %{fprofile-arcs|fprofile-generate*|coverage:-lgcov}\
789 %{!nostdlib:%{!nodefaultlibs:%(link_ssp) %(link_gcc_c_sequence)}}\
790 %{!A:%{!nostdlib:%{!nostartfiles:%E}}} %{T*} }}}}}}"
793 #ifndef LINK_LIBGCC_SPEC
794 /* Generate -L options for startfile prefix list. */
795 # define LINK_LIBGCC_SPEC "%D"
798 #ifndef STARTFILE_PREFIX_SPEC
799 # define STARTFILE_PREFIX_SPEC ""
803 # define SYSROOT_SPEC "--sysroot=%R"
806 #ifndef SYSROOT_SUFFIX_SPEC
807 # define SYSROOT_SUFFIX_SPEC ""
810 #ifndef SYSROOT_HEADERS_SUFFIX_SPEC
811 # define SYSROOT_HEADERS_SUFFIX_SPEC ""
814 static const char *asm_debug;
815 static const char *cpp_spec = CPP_SPEC;
816 static const char *cc1_spec = CC1_SPEC;
817 static const char *cc1plus_spec = CC1PLUS_SPEC;
818 static const char *link_gcc_c_sequence_spec = LINK_GCC_C_SEQUENCE_SPEC;
819 static const char *link_ssp_spec = LINK_SSP_SPEC;
820 static const char *asm_spec = ASM_SPEC;
821 static const char *asm_final_spec = ASM_FINAL_SPEC;
822 static const char *link_spec = LINK_SPEC;
823 static const char *lib_spec = LIB_SPEC;
824 static const char *mfwrap_spec = MFWRAP_SPEC;
825 static const char *mflib_spec = MFLIB_SPEC;
826 static const char *link_gomp_spec = "";
827 static const char *libgcc_spec = LIBGCC_SPEC;
828 static const char *endfile_spec = ENDFILE_SPEC;
829 static const char *startfile_spec = STARTFILE_SPEC;
830 static const char *switches_need_spaces = SWITCHES_NEED_SPACES;
831 static const char *linker_name_spec = LINKER_NAME;
832 static const char *linker_plugin_file_spec = "";
833 static const char *lto_wrapper_spec = "";
834 static const char *lto_gcc_spec = "";
835 static const char *lto_libgcc_spec = "";
836 static const char *link_command_spec = LINK_COMMAND_SPEC;
837 static const char *link_libgcc_spec = LINK_LIBGCC_SPEC;
838 static const char *startfile_prefix_spec = STARTFILE_PREFIX_SPEC;
839 static const char *sysroot_spec = SYSROOT_SPEC;
840 static const char *sysroot_suffix_spec = SYSROOT_SUFFIX_SPEC;
841 static const char *sysroot_hdrs_suffix_spec = SYSROOT_HEADERS_SUFFIX_SPEC;
843 /* Standard options to cpp, cc1, and as, to reduce duplication in specs.
844 There should be no need to override these in target dependent files,
845 but we need to copy them to the specs file so that newer versions
846 of the GCC driver can correctly drive older tool chains with the
847 appropriate -B options. */
849 /* When cpplib handles traditional preprocessing, get rid of this, and
850 call cc1 (or cc1obj in objc/lang-specs.h) from the main specs so
851 that we default the front end language better. */
852 static const char *trad_capable_cpp =
853 "cc1 -E %{traditional|ftraditional|traditional-cpp:-traditional-cpp}";
855 /* We don't wrap .d files in %W{} since a missing .d file, and
856 therefore no dependency entry, confuses make into thinking a .o
857 file that happens to exist is up-to-date. */
858 static const char *cpp_unique_options =
859 "%{C|CC:%{!E:%eGCC does not support -C or -CC without -E}}\
860 %{!Q:-quiet} %{nostdinc*} %{C} %{CC} %{v} %{I*&F*} %{P} %I\
861 %{MD:-MD %{!o:%b.d}%{o*:%.d%*}}\
862 %{MMD:-MMD %{!o:%b.d}%{o*:%.d%*}}\
863 %{M} %{MM} %{MF*} %{MG} %{MP} %{MQ*} %{MT*}\
864 %{!E:%{!M:%{!MM:%{!MT:%{!MQ:%{MD|MMD:%{o*:-MQ %*}}}}}}}\
865 %{remap} %{g3|ggdb3|gstabs3|gcoff3|gxcoff3|gvms3:-dD}\
866 %{H} %C %{D*&U*&A*} %{i*} %Z %i\
867 %{fmudflap:-D_MUDFLAP -include mf-runtime.h}\
868 %{fmudflapth:-D_MUDFLAP -D_MUDFLAPTH -include mf-runtime.h}\
871 /* This contains cpp options which are common with cc1_options and are passed
872 only when preprocessing only to avoid duplication. We pass the cc1 spec
873 options to the preprocessor so that it the cc1 spec may manipulate
874 options used to set target flags. Those special target flags settings may
875 in turn cause preprocessor symbols to be defined specially. */
876 static const char *cpp_options =
877 "%(cpp_unique_options) %1 %{m*} %{std*&ansi&trigraphs} %{W*&pedantic*} %{w}\
878 %{f*} %{g*:%{!g0:%{g*} %{!fno-working-directory:-fworking-directory}}} %{O*}\
879 %{undef} %{save-temps*:-fpch-preprocess}";
881 /* This contains cpp options which are not passed when the preprocessor
882 output will be used by another program. */
883 static const char *cpp_debug_options = "%{d*}";
885 /* NB: This is shared amongst all front-ends, except for Ada. */
886 static const char *cc1_options =
887 "%{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
888 %1 %{!Q:-quiet} -dumpbase %B %{d*} %{m*} %{a*}\
889 %{fcompare-debug-second:%:compare-debug-auxbase-opt(%b)} \
890 %{!fcompare-debug-second:%{c|S:%{o*:-auxbase-strip %*}%{!o*:-auxbase %b}}}%{!c:%{!S:-auxbase %b}} \
891 %{g*} %{O*} %{W*&pedantic*} %{w} %{std*&ansi&trigraphs}\
892 %{v:-version} %{pg:-p} %{p} %{f*} %{undef}\
893 %{Qn:-fno-ident} %{--help:--help}\
894 %{--target-help:--target-help}\
895 %{--help=*:--help=%(VALUE)}\
896 %{!fsyntax-only:%{S:%W{o*}%{!o*:-o %b.s}}}\
897 %{fsyntax-only:-o %j} %{-param*}\
898 %{fmudflap|fmudflapth:-fno-builtin -fno-merge-constants}\
899 %{coverage:-fprofile-arcs -ftest-coverage}";
901 static const char *asm_options =
902 "%{--target-help:%:print-asm-header()} "
904 /* If GNU AS is used, then convert -w (no warnings), -I, and -v
905 to the assembler equivalents. */
906 "%{v} %{w:-W} %{I*} "
908 "%a %Y %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}";
910 static const char *invoke_as =
911 #ifdef AS_NEEDS_DASH_FOR_PIPED_INPUT
913 %{fcompare-debug=*|fdump-final-insns=*:%:compare-debug-dump-opt()}\
914 %{!S:-o %|.s |\n as %(asm_options) %|.s %A }\
918 %{fcompare-debug=*|fdump-final-insns=*:%:compare-debug-dump-opt()}\
919 %{!S:-o %|.s |\n as %(asm_options) %m.s %A }\
923 /* Some compilers have limits on line lengths, and the multilib_select
924 and/or multilib_matches strings can be very long, so we build them at
926 static struct obstack multilib_obstack;
927 static const char *multilib_select;
928 static const char *multilib_matches;
929 static const char *multilib_defaults;
930 static const char *multilib_exclusions;
932 /* Check whether a particular argument is a default argument. */
934 #ifndef MULTILIB_DEFAULTS
935 #define MULTILIB_DEFAULTS { "" }
938 static const char *const multilib_defaults_raw[] = MULTILIB_DEFAULTS;
940 #ifndef DRIVER_SELF_SPECS
941 #define DRIVER_SELF_SPECS ""
944 /* Adding -fopenmp should imply pthreads. This is particularly important
945 for targets that use different start files and suchlike. */
946 #ifndef GOMP_SELF_SPECS
947 #define GOMP_SELF_SPECS "%{fopenmp|ftree-parallelize-loops=*: -pthread}"
950 static const char *const driver_self_specs[] = {
951 "%{fdump-final-insns:-fdump-final-insns=.} %<fdump-final-insns",
952 DRIVER_SELF_SPECS, GOMP_SELF_SPECS
955 #ifndef OPTION_DEFAULT_SPECS
956 #define OPTION_DEFAULT_SPECS { "", "" }
965 static const struct default_spec
966 option_default_specs[] = { OPTION_DEFAULT_SPECS };
970 struct user_specs *next;
971 const char *filename;
974 static struct user_specs *user_specs_head, *user_specs_tail;
976 #ifndef SWITCH_TAKES_ARG
977 #define SWITCH_TAKES_ARG(CHAR) DEFAULT_SWITCH_TAKES_ARG(CHAR)
980 #ifndef WORD_SWITCH_TAKES_ARG
981 #define WORD_SWITCH_TAKES_ARG(STR) DEFAULT_WORD_SWITCH_TAKES_ARG (STR)
984 #ifdef HAVE_TARGET_EXECUTABLE_SUFFIX
985 /* This defines which switches stop a full compilation. */
986 #define DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR) \
987 ((CHAR) == 'c' || (CHAR) == 'S')
989 #ifndef SWITCH_CURTAILS_COMPILATION
990 #define SWITCH_CURTAILS_COMPILATION(CHAR) \
991 DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR)
995 /* Record the mapping from file suffixes for compilation specs. */
999 const char *suffix; /* Use this compiler for input files
1000 whose names end in this suffix. */
1002 const char *spec; /* To use this compiler, run this spec. */
1004 const char *cpp_spec; /* If non-NULL, substitute this spec
1005 for `%C', rather than the usual
1007 const int combinable; /* If nonzero, compiler can deal with
1008 multiple source files at once (IMA). */
1009 const int needs_preprocessing; /* If nonzero, source files need to
1010 be run through a preprocessor. */
1013 /* Pointer to a vector of `struct compiler' that gives the spec for
1014 compiling a file, based on its suffix.
1015 A file that does not end in any of these suffixes will be passed
1016 unchanged to the loader and nothing else will be done to it.
1018 An entry containing two 0s is used to terminate the vector.
1020 If multiple entries match a file, the last matching one is used. */
1022 static struct compiler *compilers;
1024 /* Number of entries in `compilers', not counting the null terminator. */
1026 static int n_compilers;
1028 /* The default list of file name suffixes and their compilation specs. */
1030 static const struct compiler default_compilers[] =
1032 /* Add lists of suffixes of known languages here. If those languages
1033 were not present when we built the driver, we will hit these copies
1034 and be given a more meaningful error than "file not used since
1035 linking is not done". */
1036 {".m", "#Objective-C", 0, 0, 0}, {".mi", "#Objective-C", 0, 0, 0},
1037 {".mm", "#Objective-C++", 0, 0, 0}, {".M", "#Objective-C++", 0, 0, 0},
1038 {".mii", "#Objective-C++", 0, 0, 0},
1039 {".cc", "#C++", 0, 0, 0}, {".cxx", "#C++", 0, 0, 0},
1040 {".cpp", "#C++", 0, 0, 0}, {".cp", "#C++", 0, 0, 0},
1041 {".c++", "#C++", 0, 0, 0}, {".C", "#C++", 0, 0, 0},
1042 {".CPP", "#C++", 0, 0, 0}, {".ii", "#C++", 0, 0, 0},
1043 {".ads", "#Ada", 0, 0, 0}, {".adb", "#Ada", 0, 0, 0},
1044 {".f", "#Fortran", 0, 0, 0}, {".F", "#Fortran", 0, 0, 0},
1045 {".for", "#Fortran", 0, 0, 0}, {".FOR", "#Fortran", 0, 0, 0},
1046 {".ftn", "#Fortran", 0, 0, 0}, {".FTN", "#Fortran", 0, 0, 0},
1047 {".fpp", "#Fortran", 0, 0, 0}, {".FPP", "#Fortran", 0, 0, 0},
1048 {".f90", "#Fortran", 0, 0, 0}, {".F90", "#Fortran", 0, 0, 0},
1049 {".f95", "#Fortran", 0, 0, 0}, {".F95", "#Fortran", 0, 0, 0},
1050 {".f03", "#Fortran", 0, 0, 0}, {".F03", "#Fortran", 0, 0, 0},
1051 {".f08", "#Fortran", 0, 0, 0}, {".F08", "#Fortran", 0, 0, 0},
1052 {".r", "#Ratfor", 0, 0, 0},
1053 {".p", "#Pascal", 0, 0, 0}, {".pas", "#Pascal", 0, 0, 0},
1054 {".java", "#Java", 0, 0, 0}, {".class", "#Java", 0, 0, 0},
1055 {".zip", "#Java", 0, 0, 0}, {".jar", "#Java", 0, 0, 0},
1056 /* Next come the entries for C. */
1057 {".c", "@c", 0, 1, 1},
1059 /* cc1 has an integrated ISO C preprocessor. We should invoke the
1060 external preprocessor if -save-temps is given. */
1061 "%{E|M|MM:%(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)}\
1063 %{traditional|ftraditional:\
1064 %eGNU C no longer supports -traditional without -E}\
1066 %{save-temps*|traditional-cpp|no-integrated-cpp:%(trad_capable_cpp) \
1067 %(cpp_options) -o %{save-temps*:%b.i} %{!save-temps*:%g.i} \n\
1068 cc1 -fpreprocessed %{save-temps*:%b.i} %{!save-temps*:%g.i} \
1070 %{!save-temps*:%{!traditional-cpp:%{!no-integrated-cpp:\
1071 cc1 %(cpp_unique_options) %(cc1_options)}}}\
1072 %{!fsyntax-only:%(invoke_as)}} \
1074 %{save-temps*|traditional-cpp|no-integrated-cpp:%(trad_capable_cpp) \
1075 %(cpp_options) -o %{save-temps*:%b.i} %{!save-temps*:%g.i}}\
1076 %{!save-temps*:%{!traditional-cpp:%{!no-integrated-cpp:\
1077 cc1 %(cpp_unique_options) %(cc1_options)}}\
1078 %{!fsyntax-only:%(invoke_as)}}}}}}", 0, 1, 1},
1080 "%{!E:%e-E or -x required when input is from standard input}\
1081 %(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)", 0, 0, 0},
1082 {".h", "@c-header", 0, 0, 0},
1084 /* cc1 has an integrated ISO C preprocessor. We should invoke the
1085 external preprocessor if -save-temps is given. */
1086 "%{E|M|MM:%(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)}\
1088 %{save-temps*|traditional-cpp|no-integrated-cpp:%(trad_capable_cpp) \
1089 %(cpp_options) -o %{save-temps*:%b.i} %{!save-temps*:%g.i} \n\
1090 cc1 -fpreprocessed %{save-temps*:%b.i} %{!save-temps*:%g.i} \
1092 -o %g.s %{!o*:--output-pch=%i.gch}\
1093 %W{o*:--output-pch=%*}%V}\
1094 %{!save-temps*:%{!traditional-cpp:%{!no-integrated-cpp:\
1095 cc1 %(cpp_unique_options) %(cc1_options)\
1096 -o %g.s %{!o*:--output-pch=%i.gch}\
1097 %W{o*:--output-pch=%*}%V}}}}}}", 0, 0, 0},
1098 {".i", "@cpp-output", 0, 1, 0},
1100 "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0, 1, 0},
1101 {".s", "@assembler", 0, 1, 0},
1103 "%{!M:%{!MM:%{!E:%{!S:as %(asm_debug) %(asm_options) %i %A }}}}", 0, 1, 0},
1104 {".sx", "@assembler-with-cpp", 0, 1, 0},
1105 {".S", "@assembler-with-cpp", 0, 1, 0},
1106 {"@assembler-with-cpp",
1107 #ifdef AS_NEEDS_DASH_FOR_PIPED_INPUT
1108 "%(trad_capable_cpp) -lang-asm %(cpp_options) -fno-directives-only\
1109 %{E|M|MM:%(cpp_debug_options)}\
1110 %{!M:%{!MM:%{!E:%{!S:-o %|.s |\n\
1111 as %(asm_debug) %(asm_options) %|.s %A }}}}"
1113 "%(trad_capable_cpp) -lang-asm %(cpp_options) -fno-directives-only\
1114 %{E|M|MM:%(cpp_debug_options)}\
1115 %{!M:%{!MM:%{!E:%{!S:-o %|.s |\n\
1116 as %(asm_debug) %(asm_options) %m.s %A }}}}"
1121 /* Mark end of table. */
1125 /* Number of elements in default_compilers, not counting the terminator. */
1127 static const int n_default_compilers = ARRAY_SIZE (default_compilers) - 1;
1129 /* A vector of options to give to the linker.
1130 These options are accumulated by %x,
1131 and substituted into the linker command with %X. */
1132 static int n_linker_options;
1133 static char **linker_options;
1135 /* A vector of options to give to the assembler.
1136 These options are accumulated by -Wa,
1137 and substituted into the assembler command with %Y. */
1138 static int n_assembler_options;
1139 static char **assembler_options;
1141 /* A vector of options to give to the preprocessor.
1142 These options are accumulated by -Wp,
1143 and substituted into the preprocessor command with %Z. */
1144 static int n_preprocessor_options;
1145 static char **preprocessor_options;
1147 /* Define how to map long options into short ones. */
1149 /* This structure describes one mapping. */
1152 /* The long option's name. */
1153 const char *const name;
1154 /* The equivalent short option. */
1155 const char *const equivalent;
1156 /* Argument info. A string of flag chars; NULL equals no options.
1157 a => argument required.
1158 o => argument optional.
1159 j => join argument to equivalent, making one word.
1160 * => require other text after NAME as an argument. */
1161 const char *const arg_info;
1164 /* This is the table of mappings. Mappings are tried sequentially
1165 for each option encountered; the first one that matches, wins. */
1167 static const struct option_map option_map[] =
1169 {"--all-warnings", "-Wall", 0},
1170 {"--ansi", "-ansi", 0},
1171 {"--assemble", "-S", 0},
1172 {"--assert", "-A", "a"},
1173 {"--classpath", "-fclasspath=", "aj"},
1174 {"--bootclasspath", "-fbootclasspath=", "aj"},
1175 {"--CLASSPATH", "-fclasspath=", "aj"},
1176 {"--combine", "-combine", 0},
1177 {"--comments", "-C", 0},
1178 {"--comments-in-macros", "-CC", 0},
1179 {"--compile", "-c", 0},
1180 {"--debug", "-g", "oj"},
1181 {"--define-macro", "-D", "aj"},
1182 {"--dependencies", "-M", 0},
1183 {"--dump", "-d", "a"},
1184 {"--dumpbase", "-dumpbase", "a"},
1185 {"--encoding", "-fencoding=", "aj"},
1186 {"--entry", "-e", 0},
1187 {"--extra-warnings", "-W", 0},
1188 {"--extdirs", "-fextdirs=", "aj"},
1189 {"--for-assembler", "-Wa", "a"},
1190 {"--for-linker", "-Xlinker", "a"},
1191 {"--force-link", "-u", "a"},
1192 {"--coverage", "-coverage", 0},
1193 {"--imacros", "-imacros", "a"},
1194 {"--include", "-include", "a"},
1195 {"--include-barrier", "-I-", 0},
1196 {"--include-directory", "-I", "aj"},
1197 {"--include-directory-after", "-idirafter", "a"},
1198 {"--include-prefix", "-iprefix", "a"},
1199 {"--include-with-prefix", "-iwithprefix", "a"},
1200 {"--include-with-prefix-before", "-iwithprefixbefore", "a"},
1201 {"--include-with-prefix-after", "-iwithprefix", "a"},
1202 {"--language", "-x", "a"},
1203 {"--library-directory", "-L", "a"},
1204 {"--machine", "-m", "aj"},
1205 {"--machine-", "-m", "*j"},
1206 {"--no-canonical-prefixes", "-no-canonical-prefixes", 0},
1207 {"--no-integrated-cpp", "-no-integrated-cpp", 0},
1208 {"--no-line-commands", "-P", 0},
1209 {"--no-precompiled-includes", "-noprecomp", 0},
1210 {"--no-standard-includes", "-nostdinc", 0},
1211 {"--no-standard-libraries", "-nostdlib", 0},
1212 {"--no-warnings", "-w", 0},
1213 {"--optimize", "-O", "oj"},
1214 {"--output", "-o", "a"},
1215 {"--output-class-directory", "-foutput-class-dir=", "ja"},
1216 {"--param", "--param", "a"},
1217 {"--pass-exit-codes", "-pass-exit-codes", 0},
1218 {"--pedantic", "-pedantic", 0},
1219 {"--pedantic-errors", "-pedantic-errors", 0},
1220 {"--pie", "-pie", 0},
1221 {"--pipe", "-pipe", 0},
1222 {"--prefix", "-B", "a"},
1223 {"--preprocess", "-E", 0},
1224 {"--print-search-dirs", "-print-search-dirs", 0},
1225 {"--print-file-name", "-print-file-name=", "aj"},
1226 {"--print-libgcc-file-name", "-print-libgcc-file-name", 0},
1227 {"--print-missing-file-dependencies", "-MG", 0},
1228 {"--print-multi-lib", "-print-multi-lib", 0},
1229 {"--print-multi-directory", "-print-multi-directory", 0},
1230 {"--print-multi-os-directory", "-print-multi-os-directory", 0},
1231 {"--print-prog-name", "-print-prog-name=", "aj"},
1232 {"--print-sysroot", "-print-sysroot", 0},
1233 {"--print-sysroot-headers-suffix", "-print-sysroot-headers-suffix", 0},
1234 {"--profile", "-p", 0},
1235 {"--profile-blocks", "-a", 0},
1236 {"--quiet", "-q", 0},
1237 {"--resource", "-fcompile-resource=", "aj"},
1238 {"--save-temps", "-save-temps", 0},
1239 {"--shared", "-shared", 0},
1240 {"--silent", "-q", 0},
1241 {"--specs", "-specs=", "aj"},
1242 {"--static", "-static", 0},
1243 {"--std", "-std=", "aj"},
1244 {"--symbolic", "-symbolic", 0},
1245 {"--sysroot", "--sysroot=", "aj"},
1246 {"--time", "-time", 0},
1247 {"--trace-includes", "-H", 0},
1248 {"--traditional", "-traditional", 0},
1249 {"--traditional-cpp", "-traditional-cpp", 0},
1250 {"--trigraphs", "-trigraphs", 0},
1251 {"--undefine-macro", "-U", "aj"},
1252 {"--user-dependencies", "-MM", 0},
1253 {"--verbose", "-v", 0},
1254 {"--warn-", "-W", "*j"},
1255 {"--write-dependencies", "-MD", 0},
1256 {"--write-user-dependencies", "-MMD", 0},
1261 #ifdef TARGET_OPTION_TRANSLATE_TABLE
1262 static const struct {
1263 const char *const option_found;
1264 const char *const replacements;
1265 } target_option_translations[] =
1267 TARGET_OPTION_TRANSLATE_TABLE,
1272 /* Translate the options described by *ARGCP and *ARGVP.
1273 Make a new vector and store it back in *ARGVP,
1274 and store its length in *ARGCP. */
1277 translate_options (int *argcp, const char *const **argvp)
1281 const char *const *argv = *argvp;
1282 int newvsize = (argc + 2) * 2 * sizeof (const char *);
1283 const char **newv = XNEWVAR (const char *, newvsize);
1287 newv[newindex++] = argv[i++];
1291 #ifdef TARGET_OPTION_TRANSLATE_TABLE
1295 target_option_translations[tott_idx].option_found;
1298 if (strcmp (target_option_translations[tott_idx].option_found,
1305 for (sp = target_option_translations[tott_idx].replacements;
1312 newvsize += spaces * sizeof (const char *);
1313 newv = XRESIZEVAR (const char *, newv, newvsize);
1315 sp = target_option_translations[tott_idx].replacements;
1324 newv[newindex++] = np;
1325 while (*np != ' ' && *np)
1336 if (target_option_translations[tott_idx].option_found)
1340 /* Translate -- options. */
1341 if (argv[i][0] == '-' && argv[i][1] == '-')
1344 /* Find a mapping that applies to this option. */
1345 for (j = 0; j < ARRAY_SIZE (option_map); j++)
1347 size_t optlen = strlen (option_map[j].name);
1348 size_t arglen = strlen (argv[i]);
1349 size_t complen = arglen > optlen ? optlen : arglen;
1350 const char *arginfo = option_map[j].arg_info;
1355 if (!strncmp (argv[i], option_map[j].name, complen))
1357 const char *arg = 0;
1359 if (arglen < optlen)
1362 for (k = j + 1; k < ARRAY_SIZE (option_map); k++)
1363 if (strlen (option_map[k].name) >= arglen
1364 && !strncmp (argv[i], option_map[k].name, arglen))
1366 error ("ambiguous abbreviation %s", argv[i]);
1370 if (k != ARRAY_SIZE (option_map))
1374 if (arglen > optlen)
1376 /* If the option has an argument, accept that. */
1377 if (argv[i][optlen] == '=')
1378 arg = argv[i] + optlen + 1;
1380 /* If this mapping requires extra text at end of name,
1381 accept that as "argument". */
1382 else if (strchr (arginfo, '*') != 0)
1383 arg = argv[i] + optlen;
1385 /* Otherwise, extra text at end means mismatch.
1386 Try other mappings. */
1391 else if (strchr (arginfo, '*') != 0)
1393 error ("incomplete '%s' option", option_map[j].name);
1397 /* Handle arguments. */
1398 if (strchr (arginfo, 'a') != 0)
1404 error ("missing argument to '%s' option",
1405 option_map[j].name);
1412 else if (strchr (arginfo, '*') != 0)
1414 else if (strchr (arginfo, 'o') == 0)
1417 error ("extraneous argument to '%s' option",
1418 option_map[j].name);
1422 /* Store the translation as one argv elt or as two. */
1423 if (arg != 0 && strchr (arginfo, 'j') != 0)
1424 newv[newindex++] = concat (option_map[j].equivalent, arg,
1428 newv[newindex++] = option_map[j].equivalent;
1429 newv[newindex++] = arg;
1432 newv[newindex++] = option_map[j].equivalent;
1440 /* Handle old-fashioned options--just copy them through,
1441 with their arguments. */
1442 else if (argv[i][0] == '-')
1444 const char *p = argv[i] + 1;
1448 if (SWITCH_TAKES_ARG (c) > (p[1] != 0))
1449 nskip += SWITCH_TAKES_ARG (c) - (p[1] != 0);
1450 else if (WORD_SWITCH_TAKES_ARG (p))
1451 nskip += WORD_SWITCH_TAKES_ARG (p);
1452 else if ((c == 'B' || c == 'b' || c == 'x')
1455 else if (! strcmp (p, "Xlinker"))
1457 else if (! strcmp (p, "Xpreprocessor"))
1459 else if (! strcmp (p, "Xassembler"))
1462 /* Watch out for an option at the end of the command line that
1463 is missing arguments, and avoid skipping past the end of the
1465 if (nskip + i > argc)
1470 newv[newindex++] = argv[i++];
1475 /* Ordinary operands, or +e options. */
1476 newv[newindex++] = argv[i++];
1486 skip_whitespace (char *p)
1490 /* A fully-blank line is a delimiter in the SPEC file and shouldn't
1491 be considered whitespace. */
1492 if (p[0] == '\n' && p[1] == '\n' && p[2] == '\n')
1494 else if (*p == '\n' || *p == ' ' || *p == '\t')
1508 /* Structures to keep track of prefixes to try when looking for files. */
1512 const char *prefix; /* String to prepend to the path. */
1513 struct prefix_list *next; /* Next in linked list. */
1514 int require_machine_suffix; /* Don't use without machine_suffix. */
1515 /* 2 means try both machine_suffix and just_machine_suffix. */
1516 int priority; /* Sort key - priority within list. */
1517 int os_multilib; /* 1 if OS multilib scheme should be used,
1518 0 for GCC multilib scheme. */
1523 struct prefix_list *plist; /* List of prefixes to try */
1524 int max_len; /* Max length of a prefix in PLIST */
1525 const char *name; /* Name of this list (used in config stuff) */
1528 /* List of prefixes to try when looking for executables. */
1530 static struct path_prefix exec_prefixes = { 0, 0, "exec" };
1532 /* List of prefixes to try when looking for startup (crt0) files. */
1534 static struct path_prefix startfile_prefixes = { 0, 0, "startfile" };
1536 /* List of prefixes to try when looking for include files. */
1538 static struct path_prefix include_prefixes = { 0, 0, "include" };
1540 /* Suffix to attach to directories searched for commands.
1541 This looks like `MACHINE/VERSION/'. */
1543 static const char *machine_suffix = 0;
1545 /* Suffix to attach to directories searched for commands.
1546 This is just `MACHINE/'. */
1548 static const char *just_machine_suffix = 0;
1550 /* Adjusted value of GCC_EXEC_PREFIX envvar. */
1552 static const char *gcc_exec_prefix;
1554 /* Adjusted value of standard_libexec_prefix. */
1556 static const char *gcc_libexec_prefix;
1558 /* Default prefixes to attach to command names. */
1560 #ifndef STANDARD_STARTFILE_PREFIX_1
1561 #define STANDARD_STARTFILE_PREFIX_1 "/lib/"
1563 #ifndef STANDARD_STARTFILE_PREFIX_2
1564 #define STANDARD_STARTFILE_PREFIX_2 "/usr/lib/"
1567 #ifdef CROSS_DIRECTORY_STRUCTURE /* Don't use these prefixes for a cross compiler. */
1568 #undef MD_EXEC_PREFIX
1569 #undef MD_STARTFILE_PREFIX
1570 #undef MD_STARTFILE_PREFIX_1
1573 /* If no prefixes defined, use the null string, which will disable them. */
1574 #ifndef MD_EXEC_PREFIX
1575 #define MD_EXEC_PREFIX ""
1577 #ifndef MD_STARTFILE_PREFIX
1578 #define MD_STARTFILE_PREFIX ""
1580 #ifndef MD_STARTFILE_PREFIX_1
1581 #define MD_STARTFILE_PREFIX_1 ""
1584 /* These directories are locations set at configure-time based on the
1585 --prefix option provided to configure. Their initializers are
1586 defined in Makefile.in. These paths are not *directly* used when
1587 gcc_exec_prefix is set because, in that case, we know where the
1588 compiler has been installed, and use paths relative to that
1589 location instead. */
1590 static const char *const standard_exec_prefix = STANDARD_EXEC_PREFIX;
1591 static const char *const standard_libexec_prefix = STANDARD_LIBEXEC_PREFIX;
1592 static const char *const standard_bindir_prefix = STANDARD_BINDIR_PREFIX;
1593 static const char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
1595 /* For native compilers, these are well-known paths containing
1596 components that may be provided by the system. For cross
1597 compilers, these paths are not used. */
1598 static const char *md_exec_prefix = MD_EXEC_PREFIX;
1599 static const char *md_startfile_prefix = MD_STARTFILE_PREFIX;
1600 static const char *md_startfile_prefix_1 = MD_STARTFILE_PREFIX_1;
1601 static const char *const standard_startfile_prefix_1
1602 = STANDARD_STARTFILE_PREFIX_1;
1603 static const char *const standard_startfile_prefix_2
1604 = STANDARD_STARTFILE_PREFIX_2;
1606 /* A relative path to be used in finding the location of tools
1607 relative to the driver. */
1608 static const char *const tooldir_base_prefix = TOOLDIR_BASE_PREFIX;
1610 /* Subdirectory to use for locating libraries. Set by
1611 set_multilib_dir based on the compilation options. */
1613 static const char *multilib_dir;
1615 /* Subdirectory to use for locating libraries in OS conventions. Set by
1616 set_multilib_dir based on the compilation options. */
1618 static const char *multilib_os_dir;
1620 /* Structure to keep track of the specs that have been defined so far.
1621 These are accessed using %(specname) or %[specname] in a compiler
1626 /* The following 2 fields must be first */
1627 /* to allow EXTRA_SPECS to be initialized */
1628 const char *name; /* name of the spec. */
1629 const char *ptr; /* available ptr if no static pointer */
1631 /* The following fields are not initialized */
1632 /* by EXTRA_SPECS */
1633 const char **ptr_spec; /* pointer to the spec itself. */
1634 struct spec_list *next; /* Next spec in linked list. */
1635 int name_len; /* length of the name */
1636 int alloc_p; /* whether string was allocated */
1639 #define INIT_STATIC_SPEC(NAME,PTR) \
1640 { NAME, NULL, PTR, (struct spec_list *) 0, sizeof (NAME) - 1, 0 }
1642 /* List of statically defined specs. */
1643 static struct spec_list static_specs[] =
1645 INIT_STATIC_SPEC ("asm", &asm_spec),
1646 INIT_STATIC_SPEC ("asm_debug", &asm_debug),
1647 INIT_STATIC_SPEC ("asm_final", &asm_final_spec),
1648 INIT_STATIC_SPEC ("asm_options", &asm_options),
1649 INIT_STATIC_SPEC ("invoke_as", &invoke_as),
1650 INIT_STATIC_SPEC ("cpp", &cpp_spec),
1651 INIT_STATIC_SPEC ("cpp_options", &cpp_options),
1652 INIT_STATIC_SPEC ("cpp_debug_options", &cpp_debug_options),
1653 INIT_STATIC_SPEC ("cpp_unique_options", &cpp_unique_options),
1654 INIT_STATIC_SPEC ("trad_capable_cpp", &trad_capable_cpp),
1655 INIT_STATIC_SPEC ("cc1", &cc1_spec),
1656 INIT_STATIC_SPEC ("cc1_options", &cc1_options),
1657 INIT_STATIC_SPEC ("cc1plus", &cc1plus_spec),
1658 INIT_STATIC_SPEC ("link_gcc_c_sequence", &link_gcc_c_sequence_spec),
1659 INIT_STATIC_SPEC ("link_ssp", &link_ssp_spec),
1660 INIT_STATIC_SPEC ("endfile", &endfile_spec),
1661 INIT_STATIC_SPEC ("link", &link_spec),
1662 INIT_STATIC_SPEC ("lib", &lib_spec),
1663 INIT_STATIC_SPEC ("mfwrap", &mfwrap_spec),
1664 INIT_STATIC_SPEC ("mflib", &mflib_spec),
1665 INIT_STATIC_SPEC ("link_gomp", &link_gomp_spec),
1666 INIT_STATIC_SPEC ("libgcc", &libgcc_spec),
1667 INIT_STATIC_SPEC ("startfile", &startfile_spec),
1668 INIT_STATIC_SPEC ("switches_need_spaces", &switches_need_spaces),
1669 INIT_STATIC_SPEC ("cross_compile", &cross_compile),
1670 INIT_STATIC_SPEC ("version", &compiler_version),
1671 INIT_STATIC_SPEC ("multilib", &multilib_select),
1672 INIT_STATIC_SPEC ("multilib_defaults", &multilib_defaults),
1673 INIT_STATIC_SPEC ("multilib_extra", &multilib_extra),
1674 INIT_STATIC_SPEC ("multilib_matches", &multilib_matches),
1675 INIT_STATIC_SPEC ("multilib_exclusions", &multilib_exclusions),
1676 INIT_STATIC_SPEC ("multilib_options", &multilib_options),
1677 INIT_STATIC_SPEC ("linker", &linker_name_spec),
1678 INIT_STATIC_SPEC ("linker_plugin_file", &linker_plugin_file_spec),
1679 INIT_STATIC_SPEC ("lto_wrapper", <o_wrapper_spec),
1680 INIT_STATIC_SPEC ("lto_gcc", <o_gcc_spec),
1681 INIT_STATIC_SPEC ("lto_libgcc", <o_libgcc_spec),
1682 INIT_STATIC_SPEC ("link_libgcc", &link_libgcc_spec),
1683 INIT_STATIC_SPEC ("md_exec_prefix", &md_exec_prefix),
1684 INIT_STATIC_SPEC ("md_startfile_prefix", &md_startfile_prefix),
1685 INIT_STATIC_SPEC ("md_startfile_prefix_1", &md_startfile_prefix_1),
1686 INIT_STATIC_SPEC ("startfile_prefix_spec", &startfile_prefix_spec),
1687 INIT_STATIC_SPEC ("sysroot_spec", &sysroot_spec),
1688 INIT_STATIC_SPEC ("sysroot_suffix_spec", &sysroot_suffix_spec),
1689 INIT_STATIC_SPEC ("sysroot_hdrs_suffix_spec", &sysroot_hdrs_suffix_spec),
1692 #ifdef EXTRA_SPECS /* additional specs needed */
1693 /* Structure to keep track of just the first two args of a spec_list.
1694 That is all that the EXTRA_SPECS macro gives us. */
1697 const char *const name;
1698 const char *const ptr;
1701 static const struct spec_list_1 extra_specs_1[] = { EXTRA_SPECS };
1702 static struct spec_list *extra_specs = (struct spec_list *) 0;
1705 /* List of dynamically allocates specs that have been defined so far. */
1707 static struct spec_list *specs = (struct spec_list *) 0;
1709 /* List of static spec functions. */
1711 static const struct spec_function static_spec_functions[] =
1713 { "getenv", getenv_spec_function },
1714 { "if-exists", if_exists_spec_function },
1715 { "if-exists-else", if_exists_else_spec_function },
1716 { "replace-outfile", replace_outfile_spec_function },
1717 { "version-compare", version_compare_spec_function },
1718 { "include", include_spec_function },
1719 { "print-asm-header", print_asm_header_spec_function },
1720 { "compare-debug-dump-opt", compare_debug_dump_opt_spec_function },
1721 { "compare-debug-self-opt", compare_debug_self_opt_spec_function },
1722 { "compare-debug-auxbase-opt", compare_debug_auxbase_opt_spec_function },
1723 #ifdef EXTRA_SPEC_FUNCTIONS
1724 EXTRA_SPEC_FUNCTIONS
1729 static int processing_spec_function;
1731 /* Add appropriate libgcc specs to OBSTACK, taking into account
1732 various permutations of -shared-libgcc, -shared, and such. */
1734 #if defined(ENABLE_SHARED_LIBGCC) && !defined(REAL_LIBGCC_SPEC)
1736 #ifndef USE_LD_AS_NEEDED
1737 #define USE_LD_AS_NEEDED 0
1741 init_gcc_specs (struct obstack *obstack, const char *shared_name,
1742 const char *static_name, const char *eh_name)
1746 buf = concat ("%{static|static-libgcc:", static_name, " ", eh_name, "}"
1747 "%{!static:%{!static-libgcc:"
1748 #if USE_LD_AS_NEEDED
1749 "%{!shared-libgcc:",
1750 static_name, " --as-needed ", shared_name, " --no-as-needed"
1753 shared_name, "%{!shared: ", static_name, "}"
1757 "%{!shared-libgcc:", static_name, " ", eh_name, "}"
1758 "%{shared-libgcc:", shared_name, " ", static_name, "}"
1762 "%{shared-libgcc:", shared_name, "}"
1763 "%{!shared-libgcc:", static_name, "}"
1766 "%{shared:", shared_name, "}"
1771 obstack_grow (obstack, buf, strlen (buf));
1774 #endif /* ENABLE_SHARED_LIBGCC */
1776 /* Initialize the specs lookup routines. */
1781 struct spec_list *next = (struct spec_list *) 0;
1782 struct spec_list *sl = (struct spec_list *) 0;
1786 return; /* Already initialized. */
1789 notice ("Using built-in specs.\n");
1792 extra_specs = XCNEWVEC (struct spec_list, ARRAY_SIZE (extra_specs_1));
1794 for (i = ARRAY_SIZE (extra_specs_1) - 1; i >= 0; i--)
1796 sl = &extra_specs[i];
1797 sl->name = extra_specs_1[i].name;
1798 sl->ptr = extra_specs_1[i].ptr;
1800 sl->name_len = strlen (sl->name);
1801 sl->ptr_spec = &sl->ptr;
1806 for (i = ARRAY_SIZE (static_specs) - 1; i >= 0; i--)
1808 sl = &static_specs[i];
1813 #if defined(ENABLE_SHARED_LIBGCC) && !defined(REAL_LIBGCC_SPEC)
1814 /* ??? If neither -shared-libgcc nor --static-libgcc was
1815 seen, then we should be making an educated guess. Some proposed
1816 heuristics for ELF include:
1818 (1) If "-Wl,--export-dynamic", then it's a fair bet that the
1819 program will be doing dynamic loading, which will likely
1820 need the shared libgcc.
1822 (2) If "-ldl", then it's also a fair bet that we're doing
1825 (3) For each ET_DYN we're linking against (either through -lfoo
1826 or /some/path/foo.so), check to see whether it or one of
1827 its dependencies depends on a shared libgcc.
1831 If the runtime is fixed to look for program headers instead
1832 of calling __register_frame_info at all, for each object,
1833 use the shared libgcc if any EH symbol referenced.
1835 If crtstuff is fixed to not invoke __register_frame_info
1836 automatically, for each object, use the shared libgcc if
1837 any non-empty unwind section found.
1839 Doing any of this probably requires invoking an external program to
1840 do the actual object file scanning. */
1842 const char *p = libgcc_spec;
1845 /* Transform the extant libgcc_spec into one that uses the shared libgcc
1846 when given the proper command line arguments. */
1849 if (in_sep && *p == '-' && strncmp (p, "-lgcc", 5) == 0)
1851 init_gcc_specs (&obstack,
1853 #ifdef USE_LIBUNWIND_EXCEPTIONS
1859 #ifdef USE_LIBUNWIND_EXCEPTIONS
1860 # ifdef HAVE_LD_STATIC_DYNAMIC
1861 " %{!static:-Bstatic} -lunwind %{!static:-Bdynamic}"
1871 else if (in_sep && *p == 'l' && strncmp (p, "libgcc.a%s", 10) == 0)
1873 /* Ug. We don't know shared library extensions. Hope that
1874 systems that use this form don't do shared libraries. */
1875 init_gcc_specs (&obstack,
1879 #ifdef USE_LIBUNWIND_EXCEPTIONS
1888 obstack_1grow (&obstack, *p);
1889 in_sep = (*p == ' ');
1894 obstack_1grow (&obstack, '\0');
1895 libgcc_spec = XOBFINISH (&obstack, const char *);
1898 #ifdef USE_AS_TRADITIONAL_FORMAT
1899 /* Prepend "--traditional-format" to whatever asm_spec we had before. */
1901 static const char tf[] = "--traditional-format ";
1902 obstack_grow (&obstack, tf, sizeof(tf) - 1);
1903 obstack_grow0 (&obstack, asm_spec, strlen (asm_spec));
1904 asm_spec = XOBFINISH (&obstack, const char *);
1908 #if defined LINK_EH_SPEC || defined LINK_BUILDID_SPEC
1909 # ifdef LINK_BUILDID_SPEC
1910 /* Prepend LINK_BUILDID_SPEC to whatever link_spec we had before. */
1911 obstack_grow (&obstack, LINK_BUILDID_SPEC, sizeof(LINK_BUILDID_SPEC) - 1);
1913 # ifdef LINK_EH_SPEC
1914 /* Prepend LINK_EH_SPEC to whatever link_spec we had before. */
1915 obstack_grow (&obstack, LINK_EH_SPEC, sizeof(LINK_EH_SPEC) - 1);
1917 obstack_grow0 (&obstack, link_spec, strlen (link_spec));
1918 link_spec = XOBFINISH (&obstack, const char *);
1924 /* Change the value of spec NAME to SPEC. If SPEC is empty, then the spec is
1925 removed; If the spec starts with a + then SPEC is added to the end of the
1929 set_spec (const char *name, const char *spec)
1931 struct spec_list *sl;
1932 const char *old_spec;
1933 int name_len = strlen (name);
1936 /* If this is the first call, initialize the statically allocated specs. */
1939 struct spec_list *next = (struct spec_list *) 0;
1940 for (i = ARRAY_SIZE (static_specs) - 1; i >= 0; i--)
1942 sl = &static_specs[i];
1949 /* See if the spec already exists. */
1950 for (sl = specs; sl; sl = sl->next)
1951 if (name_len == sl->name_len && !strcmp (sl->name, name))
1956 /* Not found - make it. */
1957 sl = XNEW (struct spec_list);
1958 sl->name = xstrdup (name);
1959 sl->name_len = name_len;
1960 sl->ptr_spec = &sl->ptr;
1962 *(sl->ptr_spec) = "";
1967 old_spec = *(sl->ptr_spec);
1968 *(sl->ptr_spec) = ((spec[0] == '+' && ISSPACE ((unsigned char)spec[1]))
1969 ? concat (old_spec, spec + 1, NULL)
1974 notice ("Setting spec %s to '%s'\n\n", name, *(sl->ptr_spec));
1977 /* Free the old spec. */
1978 if (old_spec && sl->alloc_p)
1979 free (CONST_CAST(char *, old_spec));
1984 /* Accumulate a command (program name and args), and run it. */
1986 /* Vector of pointers to arguments in the current line of specifications. */
1988 static const char **argbuf;
1990 /* Number of elements allocated in argbuf. */
1992 static int argbuf_length;
1994 /* Number of elements in argbuf currently in use (containing args). */
1996 static int argbuf_index;
1998 /* Position in the argbuf array containing the name of the output file
1999 (the value associated with the "-o" flag). */
2001 static int have_o_argbuf_index = 0;
2003 /* Were the options -c or -S passed. */
2004 static int have_c = 0;
2006 /* Was the option -o passed. */
2007 static int have_o = 0;
2009 /* This is the list of suffixes and codes (%g/%u/%U/%j) and the associated
2010 temp file. If the HOST_BIT_BUCKET is used for %j, no entry is made for
2013 static struct temp_name {
2014 const char *suffix; /* suffix associated with the code. */
2015 int length; /* strlen (suffix). */
2016 int unique; /* Indicates whether %g or %u/%U was used. */
2017 const char *filename; /* associated filename. */
2018 int filename_length; /* strlen (filename). */
2019 struct temp_name *next;
2022 /* Number of commands executed so far. */
2024 static int execution_count;
2026 /* Number of commands that exited with a signal. */
2028 static int signal_count;
2030 /* Name with which this program was invoked. */
2032 static const char *programname;
2034 /* Allocate the argument vector. */
2040 argbuf = XNEWVEC (const char *, argbuf_length);
2043 /* Clear out the vector of arguments (after a command is executed). */
2051 /* Add one argument to the vector at the end.
2052 This is done when a space is seen or at the end of the line.
2053 If DELETE_ALWAYS is nonzero, the arg is a filename
2054 and the file should be deleted eventually.
2055 If DELETE_FAILURE is nonzero, the arg is a filename
2056 and the file should be deleted if this compilation fails. */
2059 store_arg (const char *arg, int delete_always, int delete_failure)
2061 if (argbuf_index + 1 == argbuf_length)
2062 argbuf = XRESIZEVEC (const char *, argbuf, (argbuf_length *= 2));
2064 argbuf[argbuf_index++] = arg;
2065 argbuf[argbuf_index] = 0;
2067 if (strcmp (arg, "-o") == 0)
2068 have_o_argbuf_index = argbuf_index;
2069 if (delete_always || delete_failure)
2070 record_temp_file (arg, delete_always, delete_failure);
2073 /* Load specs from a file name named FILENAME, replacing occurrences of
2074 various different types of line-endings, \r\n, \n\r and just \r, with
2078 load_specs (const char *filename)
2082 struct stat statbuf;
2089 notice ("Reading specs from %s\n", filename);
2091 /* Open and stat the file. */
2092 desc = open (filename, O_RDONLY, 0);
2094 pfatal_with_name (filename);
2095 if (stat (filename, &statbuf) < 0)
2096 pfatal_with_name (filename);
2098 /* Read contents of file into BUFFER. */
2099 buffer = XNEWVEC (char, statbuf.st_size + 1);
2100 readlen = read (desc, buffer, (unsigned) statbuf.st_size);
2102 pfatal_with_name (filename);
2103 buffer[readlen] = 0;
2106 specs = XNEWVEC (char, readlen + 1);
2108 for (buffer_p = buffer; buffer_p && *buffer_p; buffer_p++)
2114 if (buffer_p > buffer && *(buffer_p - 1) == '\n') /* \n\r */
2116 else if (*(buffer_p + 1) == '\n') /* \r\n */
2130 /* Read compilation specs from a file named FILENAME,
2131 replacing the default ones.
2133 A suffix which starts with `*' is a definition for
2134 one of the machine-specific sub-specs. The "suffix" should be
2135 *asm, *cc1, *cpp, *link, *startfile, etc.
2136 The corresponding spec is stored in asm_spec, etc.,
2137 rather than in the `compilers' vector.
2139 Anything invalid in the file is a fatal error. */
2142 read_specs (const char *filename, int main_p)
2147 buffer = load_specs (filename);
2149 /* Scan BUFFER for specs, putting them in the vector. */
2155 char *in, *out, *p1, *p2, *p3;
2157 /* Advance P in BUFFER to the next nonblank nocomment line. */
2158 p = skip_whitespace (p);
2162 /* Is this a special command that starts with '%'? */
2163 /* Don't allow this for the main specs file, since it would
2164 encourage people to overwrite it. */
2165 if (*p == '%' && !main_p)
2168 while (*p && *p != '\n')
2174 if (!strncmp (p1, "%include", sizeof ("%include") - 1)
2175 && (p1[sizeof "%include" - 1] == ' '
2176 || p1[sizeof "%include" - 1] == '\t'))
2180 p1 += sizeof ("%include");
2181 while (*p1 == ' ' || *p1 == '\t')
2184 if (*p1++ != '<' || p[-2] != '>')
2185 fatal ("specs %%include syntax malformed after %ld characters",
2186 (long) (p1 - buffer + 1));
2189 new_filename = find_a_file (&startfile_prefixes, p1, R_OK, true);
2190 read_specs (new_filename ? new_filename : p1, FALSE);
2193 else if (!strncmp (p1, "%include_noerr", sizeof "%include_noerr" - 1)
2194 && (p1[sizeof "%include_noerr" - 1] == ' '
2195 || p1[sizeof "%include_noerr" - 1] == '\t'))
2199 p1 += sizeof "%include_noerr";
2200 while (*p1 == ' ' || *p1 == '\t')
2203 if (*p1++ != '<' || p[-2] != '>')
2204 fatal ("specs %%include syntax malformed after %ld characters",
2205 (long) (p1 - buffer + 1));
2208 new_filename = find_a_file (&startfile_prefixes, p1, R_OK, true);
2210 read_specs (new_filename, FALSE);
2211 else if (verbose_flag)
2212 notice ("could not find specs file %s\n", p1);
2215 else if (!strncmp (p1, "%rename", sizeof "%rename" - 1)
2216 && (p1[sizeof "%rename" - 1] == ' '
2217 || p1[sizeof "%rename" - 1] == '\t'))
2220 struct spec_list *sl;
2221 struct spec_list *newsl;
2223 /* Get original name. */
2224 p1 += sizeof "%rename";
2225 while (*p1 == ' ' || *p1 == '\t')
2228 if (! ISALPHA ((unsigned char) *p1))
2229 fatal ("specs %%rename syntax malformed after %ld characters",
2230 (long) (p1 - buffer));
2233 while (*p2 && !ISSPACE ((unsigned char) *p2))
2236 if (*p2 != ' ' && *p2 != '\t')
2237 fatal ("specs %%rename syntax malformed after %ld characters",
2238 (long) (p2 - buffer));
2242 while (*p2 == ' ' || *p2 == '\t')
2245 if (! ISALPHA ((unsigned char) *p2))
2246 fatal ("specs %%rename syntax malformed after %ld characters",
2247 (long) (p2 - buffer));
2249 /* Get new spec name. */
2251 while (*p3 && !ISSPACE ((unsigned char) *p3))
2255 fatal ("specs %%rename syntax malformed after %ld characters",
2256 (long) (p3 - buffer));
2259 for (sl = specs; sl; sl = sl->next)
2260 if (name_len == sl->name_len && !strcmp (sl->name, p1))
2264 fatal ("specs %s spec was not found to be renamed", p1);
2266 if (strcmp (p1, p2) == 0)
2269 for (newsl = specs; newsl; newsl = newsl->next)
2270 if (strcmp (newsl->name, p2) == 0)
2271 fatal ("%s: attempt to rename spec '%s' to already defined spec '%s'",
2276 notice ("rename spec %s to %s\n", p1, p2);
2278 notice ("spec is '%s'\n\n", *(sl->ptr_spec));
2282 set_spec (p2, *(sl->ptr_spec));
2284 free (CONST_CAST (char *, *(sl->ptr_spec)));
2286 *(sl->ptr_spec) = "";
2291 fatal ("specs unknown %% command after %ld characters",
2292 (long) (p1 - buffer));
2295 /* Find the colon that should end the suffix. */
2297 while (*p1 && *p1 != ':' && *p1 != '\n')
2300 /* The colon shouldn't be missing. */
2302 fatal ("specs file malformed after %ld characters",
2303 (long) (p1 - buffer));
2305 /* Skip back over trailing whitespace. */
2307 while (p2 > buffer && (p2[-1] == ' ' || p2[-1] == '\t'))
2310 /* Copy the suffix to a string. */
2311 suffix = save_string (p, p2 - p);
2312 /* Find the next line. */
2313 p = skip_whitespace (p1 + 1);
2315 fatal ("specs file malformed after %ld characters",
2316 (long) (p - buffer));
2319 /* Find next blank line or end of string. */
2320 while (*p1 && !(*p1 == '\n' && (p1[1] == '\n' || p1[1] == '\0')))
2323 /* Specs end at the blank line and do not include the newline. */
2324 spec = save_string (p, p1 - p);
2327 /* Delete backslash-newline sequences from the spec. */
2332 if (in[0] == '\\' && in[1] == '\n')
2334 else if (in[0] == '#')
2335 while (*in && *in != '\n')
2343 if (suffix[0] == '*')
2345 if (! strcmp (suffix, "*link_command"))
2346 link_command_spec = spec;
2348 set_spec (suffix + 1, spec);
2352 /* Add this pair to the vector. */
2354 = XRESIZEVEC (struct compiler, compilers, n_compilers + 2);
2356 compilers[n_compilers].suffix = suffix;
2357 compilers[n_compilers].spec = spec;
2359 memset (&compilers[n_compilers], 0, sizeof compilers[n_compilers]);
2363 link_command_spec = spec;
2366 if (link_command_spec == 0)
2367 fatal ("spec file has no spec for linking");
2370 /* Record the names of temporary files we tell compilers to write,
2371 and delete them at the end of the run. */
2373 /* This is the common prefix we use to make temp file names.
2374 It is chosen once for each run of this program.
2375 It is substituted into a spec by %g or %j.
2376 Thus, all temp file names contain this prefix.
2377 In practice, all temp file names start with this prefix.
2379 This prefix comes from the envvar TMPDIR if it is defined;
2380 otherwise, from the P_tmpdir macro if that is defined;
2381 otherwise, in /usr/tmp or /tmp;
2382 or finally the current directory if all else fails. */
2384 static const char *temp_filename;
2386 /* Length of the prefix. */
2388 static int temp_filename_length;
2390 /* Define the list of temporary files to delete. */
2395 struct temp_file *next;
2398 /* Queue of files to delete on success or failure of compilation. */
2399 static struct temp_file *always_delete_queue;
2400 /* Queue of files to delete on failure of compilation. */
2401 static struct temp_file *failure_delete_queue;
2403 /* Record FILENAME as a file to be deleted automatically.
2404 ALWAYS_DELETE nonzero means delete it if all compilation succeeds;
2405 otherwise delete it in any case.
2406 FAIL_DELETE nonzero means delete it if a compilation step fails;
2407 otherwise delete it in any case. */
2410 record_temp_file (const char *filename, int always_delete, int fail_delete)
2412 char *const name = xstrdup (filename);
2416 struct temp_file *temp;
2417 for (temp = always_delete_queue; temp; temp = temp->next)
2418 if (! strcmp (name, temp->name))
2421 temp = XNEW (struct temp_file);
2422 temp->next = always_delete_queue;
2424 always_delete_queue = temp;
2431 struct temp_file *temp;
2432 for (temp = failure_delete_queue; temp; temp = temp->next)
2433 if (! strcmp (name, temp->name))
2436 temp = XNEW (struct temp_file);
2437 temp->next = failure_delete_queue;
2439 failure_delete_queue = temp;
2445 /* Delete all the temporary files whose names we previously recorded. */
2447 #ifndef DELETE_IF_ORDINARY
2448 #define DELETE_IF_ORDINARY(NAME,ST,VERBOSE_FLAG) \
2451 if (stat (NAME, &ST) >= 0 && S_ISREG (ST.st_mode)) \
2452 if (unlink (NAME) < 0) \
2454 perror_with_name (NAME); \
2459 delete_if_ordinary (const char *name)
2465 printf ("Delete %s? (y or n) ", name);
2469 while ((c = getchar ()) != '\n' && c != EOF)
2472 if (i == 'y' || i == 'Y')
2474 DELETE_IF_ORDINARY (name, st, verbose_flag);
2478 delete_temp_files (void)
2480 struct temp_file *temp;
2482 for (temp = always_delete_queue; temp; temp = temp->next)
2483 delete_if_ordinary (temp->name);
2484 always_delete_queue = 0;
2487 /* Delete all the files to be deleted on error. */
2490 delete_failure_queue (void)
2492 struct temp_file *temp;
2494 for (temp = failure_delete_queue; temp; temp = temp->next)
2495 delete_if_ordinary (temp->name);
2499 clear_failure_queue (void)
2501 failure_delete_queue = 0;
2504 /* Call CALLBACK for each path in PATHS, breaking out early if CALLBACK
2506 If DO_MULTI is true iterate over the paths twice, first with multilib
2507 suffix then without, otherwise iterate over the paths once without
2508 adding a multilib suffix. When DO_MULTI is true, some attempt is made
2509 to avoid visiting the same path twice, but we could do better. For
2510 instance, /usr/lib/../lib is considered different from /usr/lib.
2511 At least EXTRA_SPACE chars past the end of the path passed to
2512 CALLBACK are available for use by the callback.
2513 CALLBACK_INFO allows extra parameters to be passed to CALLBACK.
2515 Returns the value returned by CALLBACK. */
2518 for_each_path (const struct path_prefix *paths,
2521 void *(*callback) (char *, void *),
2522 void *callback_info)
2524 struct prefix_list *pl;
2525 const char *multi_dir = NULL;
2526 const char *multi_os_dir = NULL;
2527 const char *multi_suffix;
2528 const char *just_multi_suffix;
2531 bool skip_multi_dir = false;
2532 bool skip_multi_os_dir = false;
2534 multi_suffix = machine_suffix;
2535 just_multi_suffix = just_machine_suffix;
2536 if (do_multi && multilib_dir && strcmp (multilib_dir, ".") != 0)
2538 multi_dir = concat (multilib_dir, dir_separator_str, NULL);
2539 multi_suffix = concat (multi_suffix, multi_dir, NULL);
2540 just_multi_suffix = concat (just_multi_suffix, multi_dir, NULL);
2542 if (do_multi && multilib_os_dir && strcmp (multilib_os_dir, ".") != 0)
2543 multi_os_dir = concat (multilib_os_dir, dir_separator_str, NULL);
2547 size_t multi_dir_len = 0;
2548 size_t multi_os_dir_len = 0;
2550 size_t just_suffix_len;
2554 multi_dir_len = strlen (multi_dir);
2556 multi_os_dir_len = strlen (multi_os_dir);
2557 suffix_len = strlen (multi_suffix);
2558 just_suffix_len = strlen (just_multi_suffix);
2562 len = paths->max_len + extra_space + 1;
2563 if (suffix_len > multi_os_dir_len)
2566 len += multi_os_dir_len;
2567 path = XNEWVEC (char, len);
2570 for (pl = paths->plist; pl != 0; pl = pl->next)
2572 len = strlen (pl->prefix);
2573 memcpy (path, pl->prefix, len);
2575 /* Look first in MACHINE/VERSION subdirectory. */
2576 if (!skip_multi_dir)
2578 memcpy (path + len, multi_suffix, suffix_len + 1);
2579 ret = callback (path, callback_info);
2584 /* Some paths are tried with just the machine (ie. target)
2585 subdir. This is used for finding as, ld, etc. */
2587 && pl->require_machine_suffix == 2)
2589 memcpy (path + len, just_multi_suffix, just_suffix_len + 1);
2590 ret = callback (path, callback_info);
2595 /* Now try the base path. */
2596 if (!pl->require_machine_suffix
2597 && !(pl->os_multilib ? skip_multi_os_dir : skip_multi_dir))
2599 const char *this_multi;
2600 size_t this_multi_len;
2602 if (pl->os_multilib)
2604 this_multi = multi_os_dir;
2605 this_multi_len = multi_os_dir_len;
2609 this_multi = multi_dir;
2610 this_multi_len = multi_dir_len;
2614 memcpy (path + len, this_multi, this_multi_len + 1);
2618 ret = callback (path, callback_info);
2626 if (multi_dir == NULL && multi_os_dir == NULL)
2629 /* Run through the paths again, this time without multilibs.
2630 Don't repeat any we have already seen. */
2633 free (CONST_CAST (char *, multi_dir));
2635 free (CONST_CAST (char *, multi_suffix));
2636 multi_suffix = machine_suffix;
2637 free (CONST_CAST (char *, just_multi_suffix));
2638 just_multi_suffix = just_machine_suffix;
2641 skip_multi_dir = true;
2644 free (CONST_CAST (char *, multi_os_dir));
2645 multi_os_dir = NULL;
2648 skip_multi_os_dir = true;
2653 free (CONST_CAST (char *, multi_dir));
2654 free (CONST_CAST (char *, multi_suffix));
2655 free (CONST_CAST (char *, just_multi_suffix));
2658 free (CONST_CAST (char *, multi_os_dir));
2664 /* Callback for build_search_list. Adds path to obstack being built. */
2666 struct add_to_obstack_info {
2673 add_to_obstack (char *path, void *data)
2675 struct add_to_obstack_info *info = (struct add_to_obstack_info *) data;
2677 if (info->check_dir && !is_directory (path, false))
2680 if (!info->first_time)
2681 obstack_1grow (info->ob, PATH_SEPARATOR);
2683 obstack_grow (info->ob, path, strlen (path));
2685 info->first_time = false;
2689 /* Add or change the value of an environment variable, outputting the
2690 change to standard error if in verbose mode. */
2692 xputenv (const char *string)
2695 notice ("%s\n", string);
2696 putenv (CONST_CAST (char *, string));
2699 /* Build a list of search directories from PATHS.
2700 PREFIX is a string to prepend to the list.
2701 If CHECK_DIR_P is true we ensure the directory exists.
2702 If DO_MULTI is true, multilib paths are output first, then
2704 This is used mostly by putenv_from_prefixes so we use `collect_obstack'.
2705 It is also used by the --print-search-dirs flag. */
2708 build_search_list (const struct path_prefix *paths, const char *prefix,
2709 bool check_dir, bool do_multi)
2711 struct add_to_obstack_info info;
2713 info.ob = &collect_obstack;
2714 info.check_dir = check_dir;
2715 info.first_time = true;
2717 obstack_grow (&collect_obstack, prefix, strlen (prefix));
2718 obstack_1grow (&collect_obstack, '=');
2720 for_each_path (paths, do_multi, 0, add_to_obstack, &info);
2722 obstack_1grow (&collect_obstack, '\0');
2723 return XOBFINISH (&collect_obstack, char *);
2726 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
2730 putenv_from_prefixes (const struct path_prefix *paths, const char *env_var,
2733 xputenv (build_search_list (paths, env_var, true, do_multi));
2736 /* Check whether NAME can be accessed in MODE. This is like access,
2737 except that it never considers directories to be executable. */
2740 access_check (const char *name, int mode)
2746 if (stat (name, &st) < 0
2747 || S_ISDIR (st.st_mode))
2751 return access (name, mode);
2754 /* Callback for find_a_file. Appends the file name to the directory
2755 path. If the resulting file exists in the right mode, return the
2756 full pathname to the file. */
2758 struct file_at_path_info {
2767 file_at_path (char *path, void *data)
2769 struct file_at_path_info *info = (struct file_at_path_info *) data;
2770 size_t len = strlen (path);
2772 memcpy (path + len, info->name, info->name_len);
2773 len += info->name_len;
2775 /* Some systems have a suffix for executable files.
2776 So try appending that first. */
2777 if (info->suffix_len)
2779 memcpy (path + len, info->suffix, info->suffix_len + 1);
2780 if (access_check (path, info->mode) == 0)
2785 if (access_check (path, info->mode) == 0)
2791 /* Search for NAME using the prefix list PREFIXES. MODE is passed to
2792 access to check permissions. If DO_MULTI is true, search multilib
2793 paths then non-multilib paths, otherwise do not search multilib paths.
2794 Return 0 if not found, otherwise return its name, allocated with malloc. */
2797 find_a_file (const struct path_prefix *pprefix, const char *name, int mode,
2800 struct file_at_path_info info;
2802 #ifdef DEFAULT_ASSEMBLER
2803 if (! strcmp (name, "as") && access (DEFAULT_ASSEMBLER, mode) == 0)
2804 return xstrdup (DEFAULT_ASSEMBLER);
2807 #ifdef DEFAULT_LINKER
2808 if (! strcmp(name, "ld") && access (DEFAULT_LINKER, mode) == 0)
2809 return xstrdup (DEFAULT_LINKER);
2812 /* Determine the filename to execute (special case for absolute paths). */
2814 if (IS_ABSOLUTE_PATH (name))
2816 if (access (name, mode) == 0)
2817 return xstrdup (name);
2823 info.suffix = (mode & X_OK) != 0 ? HOST_EXECUTABLE_SUFFIX : "";
2824 info.name_len = strlen (info.name);
2825 info.suffix_len = strlen (info.suffix);
2828 return (char*) for_each_path (pprefix, do_multi,
2829 info.name_len + info.suffix_len,
2830 file_at_path, &info);
2833 /* Ranking of prefixes in the sort list. -B prefixes are put before
2836 enum path_prefix_priority
2838 PREFIX_PRIORITY_B_OPT,
2839 PREFIX_PRIORITY_LAST
2842 /* Add an entry for PREFIX in PLIST. The PLIST is kept in ascending
2843 order according to PRIORITY. Within each PRIORITY, new entries are
2846 If WARN is nonzero, we will warn if no file is found
2847 through this prefix. WARN should point to an int
2848 which will be set to 1 if this entry is used.
2850 COMPONENT is the value to be passed to update_path.
2852 REQUIRE_MACHINE_SUFFIX is 1 if this prefix can't be used without
2853 the complete value of machine_suffix.
2854 2 means try both machine_suffix and just_machine_suffix. */
2857 add_prefix (struct path_prefix *pprefix, const char *prefix,
2858 const char *component, /* enum prefix_priority */ int priority,
2859 int require_machine_suffix, int os_multilib)
2861 struct prefix_list *pl, **prev;
2864 for (prev = &pprefix->plist;
2865 (*prev) != NULL && (*prev)->priority <= priority;
2866 prev = &(*prev)->next)
2869 /* Keep track of the longest prefix. */
2871 prefix = update_path (prefix, component);
2872 len = strlen (prefix);
2873 if (len > pprefix->max_len)
2874 pprefix->max_len = len;
2876 pl = XNEW (struct prefix_list);
2877 pl->prefix = prefix;
2878 pl->require_machine_suffix = require_machine_suffix;
2879 pl->priority = priority;
2880 pl->os_multilib = os_multilib;
2882 /* Insert after PREV. */
2887 /* Same as add_prefix, but prepending target_system_root to prefix. */
2888 /* The target_system_root prefix has been relocated by gcc_exec_prefix. */
2890 add_sysrooted_prefix (struct path_prefix *pprefix, const char *prefix,
2891 const char *component,
2892 /* enum prefix_priority */ int priority,
2893 int require_machine_suffix, int os_multilib)
2895 if (!IS_ABSOLUTE_PATH (prefix))
2896 fatal ("system path '%s' is not absolute", prefix);
2898 if (target_system_root)
2900 if (target_sysroot_suffix)
2901 prefix = concat (target_sysroot_suffix, prefix, NULL);
2902 prefix = concat (target_system_root, prefix, NULL);
2904 /* We have to override this because GCC's notion of sysroot
2905 moves along with GCC. */
2909 add_prefix (pprefix, prefix, component, priority,
2910 require_machine_suffix, os_multilib);
2913 /* Execute the command specified by the arguments on the current line of spec.
2914 When using pipes, this includes several piped-together commands
2915 with `|' between them.
2917 Return 0 if successful, -1 if failed. */
2923 int n_commands; /* # of command. */
2925 struct pex_obj *pex;
2928 const char *prog; /* program name. */
2929 const char **argv; /* vector of args. */
2932 struct command *commands; /* each command buffer with above info. */
2934 gcc_assert (!processing_spec_function);
2938 string = find_a_file (&exec_prefixes, argbuf[0], X_OK, false);
2939 argbuf[0] = (string) ? string : argbuf[0];
2940 insert_wrapper (wrapper_string);
2943 /* Count # of piped commands. */
2944 for (n_commands = 1, i = 0; i < argbuf_index; i++)
2945 if (strcmp (argbuf[i], "|") == 0)
2948 /* Get storage for each command. */
2949 commands = (struct command *) alloca (n_commands * sizeof (struct command));
2951 /* Split argbuf into its separate piped processes,
2952 and record info about each one.
2953 Also search for the programs that are to be run. */
2955 commands[0].prog = argbuf[0]; /* first command. */
2956 commands[0].argv = &argbuf[0];
2958 if (!wrapper_string)
2960 string = find_a_file (&exec_prefixes, commands[0].prog, X_OK, false);
2961 commands[0].argv[0] = (string) ? string : commands[0].argv[0];
2964 for (n_commands = 1, i = 0; i < argbuf_index; i++)
2965 if (strcmp (argbuf[i], "|") == 0)
2966 { /* each command. */
2967 #if defined (__MSDOS__) || defined (OS2) || defined (VMS)
2968 fatal ("-pipe not supported");
2970 argbuf[i] = 0; /* termination of command args. */
2971 commands[n_commands].prog = argbuf[i + 1];
2972 commands[n_commands].argv = &argbuf[i + 1];
2973 string = find_a_file (&exec_prefixes, commands[n_commands].prog,
2976 commands[n_commands].argv[0] = string;
2980 argbuf[argbuf_index] = 0;
2982 /* If -v, print what we are about to do, and maybe query. */
2986 /* For help listings, put a blank line between sub-processes. */
2987 if (print_help_list)
2988 fputc ('\n', stderr);
2990 /* Print each piped command as a separate line. */
2991 for (i = 0; i < n_commands; i++)
2993 const char *const *j;
2995 if (verbose_only_flag)
2997 for (j = commands[i].argv; *j; j++)
3000 fprintf (stderr, " \"");
3001 for (p = *j; *p; ++p)
3003 if (*p == '"' || *p == '\\' || *p == '$')
3004 fputc ('\\', stderr);
3007 fputc ('"', stderr);
3011 for (j = commands[i].argv; *j; j++)
3012 fprintf (stderr, " %s", *j);
3014 /* Print a pipe symbol after all but the last command. */
3015 if (i + 1 != n_commands)
3016 fprintf (stderr, " |");
3017 fprintf (stderr, "\n");
3020 if (verbose_only_flag != 0)
3022 /* verbose_only_flag should act as if the spec was
3023 executed, so increment execution_count before
3024 returning. This prevents spurious warnings about
3025 unused linker input files, etc. */
3030 notice ("\nGo ahead? (y or n) ");
3034 while (getchar () != '\n')
3037 if (i != 'y' && i != 'Y')
3042 #ifdef ENABLE_VALGRIND_CHECKING
3043 /* Run the each command through valgrind. To simplify prepending the
3044 path to valgrind and the option "-q" (for quiet operation unless
3045 something triggers), we allocate a separate argv array. */
3047 for (i = 0; i < n_commands; i++)
3053 for (argc = 0; commands[i].argv[argc] != NULL; argc++)
3056 argv = XALLOCAVEC (const char *, argc + 3);
3058 argv[0] = VALGRIND_PATH;
3060 for (j = 2; j < argc + 2; j++)
3061 argv[j] = commands[i].argv[j - 2];
3064 commands[i].argv = argv;
3065 commands[i].prog = argv[0];
3069 /* Run each piped subprocess. */
3071 pex = pex_init (PEX_USE_PIPES | ((report_times || report_times_to_file)
3072 ? PEX_RECORD_TIMES : 0),
3073 programname, temp_filename);
3075 pfatal_with_name (_("pex_init failed"));
3077 for (i = 0; i < n_commands; i++)
3081 const char *string = commands[i].argv[0];
3083 errmsg = pex_run (pex,
3084 ((i + 1 == n_commands ? PEX_LAST : 0)
3085 | (string == commands[i].prog ? PEX_SEARCH : 0)),
3086 string, CONST_CAST (char **, commands[i].argv),
3095 pfatal_with_name (errmsg);
3099 if (string != commands[i].prog)
3100 free (CONST_CAST (char *, string));
3105 /* Wait for all the subprocesses to finish. */
3109 struct pex_time *times = NULL;
3112 statuses = (int *) alloca (n_commands * sizeof (int));
3113 if (!pex_get_status (pex, n_commands, statuses))
3114 pfatal_with_name (_("failed to get exit status"));
3116 if (report_times || report_times_to_file)
3118 times = (struct pex_time *) alloca (n_commands * sizeof (struct pex_time));
3119 if (!pex_get_times (pex, n_commands, times))
3120 pfatal_with_name (_("failed to get process times"));
3125 for (i = 0; i < n_commands; ++i)
3127 int status = statuses[i];
3129 if (WIFSIGNALED (status))
3132 /* SIGPIPE is a special case. It happens in -pipe mode
3133 when the compiler dies before the preprocessor is done,
3134 or the assembler dies before the compiler is done.
3135 There's generally been an error already, and this is
3136 just fallout. So don't generate another error unless
3137 we would otherwise have succeeded. */
3138 if (WTERMSIG (status) == SIGPIPE
3139 && (signal_count || greatest_status >= MIN_FATAL_STATUS))
3147 Internal error: %s (program %s)\n\
3148 Please submit a full bug report.\n\
3149 See %s for instructions.",
3150 strsignal (WTERMSIG (status)), commands[i].prog,
3153 else if (WIFEXITED (status)
3154 && WEXITSTATUS (status) >= MIN_FATAL_STATUS)
3156 if (WEXITSTATUS (status) > greatest_status)
3157 greatest_status = WEXITSTATUS (status);
3161 if (report_times || report_times_to_file)
3163 struct pex_time *pt = ×[i];
3166 ut = ((double) pt->user_seconds
3167 + (double) pt->user_microseconds / 1.0e6);
3168 st = ((double) pt->system_seconds
3169 + (double) pt->system_microseconds / 1.0e6);
3174 notice ("# %s %.2f %.2f\n", commands[i].prog, ut, st);
3176 if (report_times_to_file)
3179 const char *const *j;
3181 fprintf (report_times_to_file, "%g %g", ut, st);
3183 for (j = &commands[i].prog; *j; j = &commands[i].argv[++c])
3186 for (p = *j; *p; ++p)
3187 if (*p == '"' || *p == '\\' || *p == '$'
3193 fprintf (report_times_to_file, " \"");
3194 for (p = *j; *p; ++p)
3196 if (*p == '"' || *p == '\\' || *p == '$')
3197 fputc ('\\', report_times_to_file);
3198 fputc (*p, report_times_to_file);
3200 fputc ('"', report_times_to_file);
3203 fprintf (report_times_to_file, " %s", *j);
3206 fputc ('\n', report_times_to_file);
3216 /* Find all the switches given to us
3217 and make a vector describing them.
3218 The elements of the vector are strings, one per switch given.
3219 If a switch uses following arguments, then the `part1' field
3220 is the switch itself and the `args' field
3221 is a null-terminated vector containing the following arguments.
3222 Bits in the `live_cond' field are:
3223 SWITCH_LIVE to indicate this switch is true in a conditional spec.
3224 SWITCH_FALSE to indicate this switch is overridden by a later switch.
3225 SWITCH_IGNORE to indicate this switch should be ignored (used in %<S).
3226 The `validated' field is nonzero if any spec has looked at this switch;
3227 if it remains zero at the end of the run, it must be meaningless. */
3229 #define SWITCH_LIVE 0x1
3230 #define SWITCH_FALSE 0x2
3231 #define SWITCH_IGNORE 0x4
3237 unsigned int live_cond;
3238 unsigned char validated;
3239 unsigned char ordering;
3242 static struct switchstr *switches;
3244 static int n_switches;
3246 /* Set to zero if -fcompare-debug is disabled, positive if it's
3247 enabled and we're running the first compilation, negative if it's
3248 enabled and we're running the second compilation. For most of the
3249 time, it's in the range -1..1, but it can be temporarily set to 2
3250 or 3 to indicate that the -fcompare-debug flags didn't come from
3251 the command-line, but rather from the GCC_COMPARE_DEBUG environment
3252 variable, until a synthesized -fcompare-debug flag is added to the
3256 /* Set to nonzero if we've seen the -fcompare-debug-second flag. */
3257 int compare_debug_second;
3259 /* Set to the flags that should be passed to the second compilation in
3260 a -fcompare-debug compilation. */
3261 const char *compare_debug_opt;
3263 static struct switchstr *switches_debug_check[2];
3265 static int n_switches_debug_check[2];
3267 static char *debug_check_temp_file[2];
3269 /* Language is one of three things:
3271 1) The name of a real programming language.
3272 2) NULL, indicating that no one has figured out
3274 3) '*', indicating that the file should be passed
3279 const char *language;
3280 struct compiler *incompiler;
3285 /* Also a vector of input files specified. */
3287 static struct infile *infiles;
3291 /* True if multiple input files are being compiled to a single
3294 static bool combine_inputs;
3296 /* This counts the number of libraries added by lang_specific_driver, so that
3297 we can tell if there were any user supplied any files or libraries. */
3299 static int added_libraries;
3301 /* And a vector of corresponding output files is made up later. */
3303 const char **outfiles;
3305 #if defined(HAVE_TARGET_OBJECT_SUFFIX) || defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
3307 /* Convert NAME to a new name if it is the standard suffix. DO_EXE
3308 is true if we should look for an executable suffix. DO_OBJ
3309 is true if we should look for an object suffix. */
3312 convert_filename (const char *name, int do_exe ATTRIBUTE_UNUSED,
3313 int do_obj ATTRIBUTE_UNUSED)
3315 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
3323 len = strlen (name);
3325 #ifdef HAVE_TARGET_OBJECT_SUFFIX
3326 /* Convert x.o to x.obj if TARGET_OBJECT_SUFFIX is ".obj". */
3327 if (do_obj && len > 2
3328 && name[len - 2] == '.'
3329 && name[len - 1] == 'o')
3331 obstack_grow (&obstack, name, len - 2);
3332 obstack_grow0 (&obstack, TARGET_OBJECT_SUFFIX, strlen (TARGET_OBJECT_SUFFIX));
3333 name = XOBFINISH (&obstack, const char *);
3337 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
3338 /* If there is no filetype, make it the executable suffix (which includes
3339 the "."). But don't get confused if we have just "-o". */
3340 if (! do_exe || TARGET_EXECUTABLE_SUFFIX[0] == 0 || (len == 2 && name[0] == '-'))
3343 for (i = len - 1; i >= 0; i--)
3344 if (IS_DIR_SEPARATOR (name[i]))
3347 for (i++; i < len; i++)
3351 obstack_grow (&obstack, name, len);
3352 obstack_grow0 (&obstack, TARGET_EXECUTABLE_SUFFIX,
3353 strlen (TARGET_EXECUTABLE_SUFFIX));
3354 name = XOBFINISH (&obstack, const char *);
3361 /* Display the command line switches accepted by gcc. */
3365 printf (_("Usage: %s [options] file...\n"), programname);
3366 fputs (_("Options:\n"), stdout);
3368 fputs (_(" -pass-exit-codes Exit with highest error code from a phase\n"), stdout);
3369 fputs (_(" --help Display this information\n"), stdout);
3370 fputs (_(" --target-help Display target specific command line options\n"), stdout);
3371 fputs (_(" --help={target|optimizers|warnings|params|[^]{joined|separate|undocumented}}[,...]\n"), stdout);
3372 fputs (_(" Display specific types of command line options\n"), stdout);
3374 fputs (_(" (Use '-v --help' to display command line options of sub-processes)\n"), stdout);
3375 fputs (_(" --version Display compiler version information\n"), stdout);
3376 fputs (_(" -dumpspecs Display all of the built in spec strings\n"), stdout);
3377 fputs (_(" -dumpversion Display the version of the compiler\n"), stdout);
3378 fputs (_(" -dumpmachine Display the compiler's target processor\n"), stdout);
3379 fputs (_(" -print-search-dirs Display the directories in the compiler's search path\n"), stdout);
3380 fputs (_(" -print-libgcc-file-name Display the name of the compiler's companion library\n"), stdout);
3381 fputs (_(" -print-file-name=<lib> Display the full path to library <lib>\n"), stdout);
3382 fputs (_(" -print-prog-name=<prog> Display the full path to compiler component <prog>\n"), stdout);
3383 fputs (_(" -print-multi-directory Display the root directory for versions of libgcc\n"), stdout);
3385 -print-multi-lib Display the mapping between command line options and\n\
3386 multiple library search directories\n"), stdout);
3387 fputs (_(" -print-multi-os-directory Display the relative path to OS libraries\n"), stdout);
3388 fputs (_(" -print-sysroot Display the target libraries directory\n"), stdout);
3389 fputs (_(" -print-sysroot-headers-suffix Display the sysroot suffix used to find headers\n"), stdout);
3390 fputs (_(" -Wa,<options> Pass comma-separated <options> on to the assembler\n"), stdout);
3391 fputs (_(" -Wp,<options> Pass comma-separated <options> on to the preprocessor\n"), stdout);
3392 fputs (_(" -Wl,<options> Pass comma-separated <options> on to the linker\n"), stdout);
3393 fputs (_(" -Xassembler <arg> Pass <arg> on to the assembler\n"), stdout);
3394 fputs (_(" -Xpreprocessor <arg> Pass <arg> on to the preprocessor\n"), stdout);
3395 fputs (_(" -Xlinker <arg> Pass <arg> on to the linker\n"), stdout);
3396 fputs (_(" -combine Pass multiple source files to compiler at once\n"), stdout);
3397 fputs (_(" -save-temps Do not delete intermediate files\n"), stdout);
3398 fputs (_(" -save-temps=<arg> Do not delete intermediate files\n"), stdout);
3400 -no-canonical-prefixes Do not canonicalize paths when building relative\n\
3401 prefixes to other gcc components\n"), stdout);
3402 fputs (_(" -pipe Use pipes rather than intermediate files\n"), stdout);
3403 fputs (_(" -time Time the execution of each subprocess\n"), stdout);
3404 fputs (_(" -specs=<file> Override built-in specs with the contents of <file>\n"), stdout);
3405 fputs (_(" -std=<standard> Assume that the input sources are for <standard>\n"), stdout);
3407 --sysroot=<directory> Use <directory> as the root directory for headers\n\
3408 and libraries\n"), stdout);
3409 fputs (_(" -B <directory> Add <directory> to the compiler's search paths\n"), stdout);
3410 fputs (_(" -b <machine> Run gcc for target <machine>, if installed\n"), stdout);
3411 fputs (_(" -V <version> Run gcc version number <version>, if installed\n"), stdout);
3412 fputs (_(" -v Display the programs invoked by the compiler\n"), stdout);
3413 fputs (_(" -### Like -v but options quoted and commands not executed\n"), stdout);
3414 fputs (_(" -E Preprocess only; do not compile, assemble or link\n"), stdout);
3415 fputs (_(" -S Compile only; do not assemble or link\n"), stdout);
3416 fputs (_(" -c Compile and assemble, but do not link\n"), stdout);
3417 fputs (_(" -o <file> Place the output into <file>\n"), stdout);
3419 -x <language> Specify the language of the following input files\n\
3420 Permissible languages include: c c++ assembler none\n\
3421 'none' means revert to the default behavior of\n\
3422 guessing the language based on the file's extension\n\
3426 \nOptions starting with -g, -f, -m, -O, -W, or --param are automatically\n\
3427 passed on to the various sub-processes invoked by %s. In order to pass\n\
3428 other options on to these processes the -W<letter> options must be used.\n\
3431 /* The rest of the options are displayed by invocations of the various
3436 add_preprocessor_option (const char *option, int len)
3438 n_preprocessor_options++;
3440 if (! preprocessor_options)
3441 preprocessor_options = XNEWVEC (char *, n_preprocessor_options);
3443 preprocessor_options = XRESIZEVEC (char *, preprocessor_options,
3444 n_preprocessor_options);
3446 preprocessor_options [n_preprocessor_options - 1] =
3447 save_string (option, len);
3451 add_assembler_option (const char *option, int len)
3453 n_assembler_options++;
3455 if (! assembler_options)
3456 assembler_options = XNEWVEC (char *, n_assembler_options);
3458 assembler_options = XRESIZEVEC (char *, assembler_options,
3459 n_assembler_options);
3461 assembler_options [n_assembler_options - 1] = save_string (option, len);
3465 add_linker_option (const char *option, int len)
3469 if (! linker_options)
3470 linker_options = XNEWVEC (char *, n_linker_options);
3472 linker_options = XRESIZEVEC (char *, linker_options, n_linker_options);
3474 linker_options [n_linker_options - 1] = save_string (option, len);
3477 /* Create the vector `switches' and its contents.
3478 Store its length in `n_switches'. */
3481 process_command (int argc, const char **argv)
3486 const char *spec_lang = 0;
3487 int last_language_n_infiles;
3488 int lang_n_infiles = 0;
3489 #ifdef MODIFY_TARGET_NAME
3490 int is_modify_target_name;
3493 const char *tooldir_prefix;
3494 char *(*get_relative_prefix) (const char *, const char *,
3495 const char *) = NULL;
3497 GET_ENVIRONMENT (gcc_exec_prefix, "GCC_EXEC_PREFIX");
3501 added_libraries = 0;
3503 /* Figure compiler version from version string. */
3505 compiler_version = temp1 = xstrdup (version_string);
3507 for (; *temp1; ++temp1)
3516 /* If there is a -V or -b option (or both), process it now, before
3517 trying to interpret the rest of the command line.
3518 Use heuristic that all configuration names must have at least
3519 one dash '-'. This allows us to pass options starting with -b. */
3520 if (argc > 1 && argv[1][0] == '-'
3521 && (argv[1][1] == 'V'
3522 || (argv[1][1] == 'b'
3523 && (argv[1][2] == '\0'
3524 || NULL != strchr (argv[1] + 2, '-')))))
3526 const char *new_version = DEFAULT_TARGET_VERSION;
3527 const char *new_machine = DEFAULT_TARGET_MACHINE;
3528 const char *progname = argv[0];
3536 while (argc > 1 && argv[1][0] == '-'
3537 && (argv[1][1] == 'V'
3538 || (argv[1][1] == 'b'
3539 && (argv[1][2] == '\0'
3540 || NULL != strchr (argv[1] + 2, '-')))))
3542 char opt = argv[1][1];
3544 if (argv[1][2] != '\0')
3557 fatal ("'-%c' option must have argument", opt);