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 #ifndef LINK_COMMAND_SPEC
768 #define LINK_COMMAND_SPEC "\
769 %{!fsyntax-only:%{!c:%{!M:%{!MM:%{!E:%{!S:\
770 %(linker) %l " LINK_PIE_SPEC "%X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} %{r}\
771 %{s} %{t} %{u*} %{x} %{z} %{Z} %{!A:%{!nostdlib:%{!nostartfiles:%S}}}\
772 %{static:} %{L*} %(mfwrap) %(link_libgcc) %o\
773 %{fopenmp|ftree-parallelize-loops=*:%:include(libgomp.spec)%(link_gomp)} %(mflib)\
774 %{fprofile-arcs|fprofile-generate*|coverage:-lgcov}\
775 %{!nostdlib:%{!nodefaultlibs:%(link_ssp) %(link_gcc_c_sequence)}}\
776 %{!A:%{!nostdlib:%{!nostartfiles:%E}}} %{T*} }}}}}}"
779 #ifndef LINK_LIBGCC_SPEC
780 /* Generate -L options for startfile prefix list. */
781 # define LINK_LIBGCC_SPEC "%D"
784 #ifndef STARTFILE_PREFIX_SPEC
785 # define STARTFILE_PREFIX_SPEC ""
789 # define SYSROOT_SPEC "--sysroot=%R"
792 #ifndef SYSROOT_SUFFIX_SPEC
793 # define SYSROOT_SUFFIX_SPEC ""
796 #ifndef SYSROOT_HEADERS_SUFFIX_SPEC
797 # define SYSROOT_HEADERS_SUFFIX_SPEC ""
800 static const char *asm_debug
;
801 static const char *cpp_spec
= CPP_SPEC
;
802 static const char *cc1_spec
= CC1_SPEC
;
803 static const char *cc1plus_spec
= CC1PLUS_SPEC
;
804 static const char *link_gcc_c_sequence_spec
= LINK_GCC_C_SEQUENCE_SPEC
;
805 static const char *link_ssp_spec
= LINK_SSP_SPEC
;
806 static const char *asm_spec
= ASM_SPEC
;
807 static const char *asm_final_spec
= ASM_FINAL_SPEC
;
808 static const char *link_spec
= LINK_SPEC
;
809 static const char *lib_spec
= LIB_SPEC
;
810 static const char *mfwrap_spec
= MFWRAP_SPEC
;
811 static const char *mflib_spec
= MFLIB_SPEC
;
812 static const char *link_gomp_spec
= "";
813 static const char *libgcc_spec
= LIBGCC_SPEC
;
814 static const char *endfile_spec
= ENDFILE_SPEC
;
815 static const char *startfile_spec
= STARTFILE_SPEC
;
816 static const char *switches_need_spaces
= SWITCHES_NEED_SPACES
;
817 static const char *linker_name_spec
= LINKER_NAME
;
818 static const char *link_command_spec
= LINK_COMMAND_SPEC
;
819 static const char *link_libgcc_spec
= LINK_LIBGCC_SPEC
;
820 static const char *startfile_prefix_spec
= STARTFILE_PREFIX_SPEC
;
821 static const char *sysroot_spec
= SYSROOT_SPEC
;
822 static const char *sysroot_suffix_spec
= SYSROOT_SUFFIX_SPEC
;
823 static const char *sysroot_hdrs_suffix_spec
= SYSROOT_HEADERS_SUFFIX_SPEC
;
825 /* Standard options to cpp, cc1, and as, to reduce duplication in specs.
826 There should be no need to override these in target dependent files,
827 but we need to copy them to the specs file so that newer versions
828 of the GCC driver can correctly drive older tool chains with the
829 appropriate -B options. */
831 /* When cpplib handles traditional preprocessing, get rid of this, and
832 call cc1 (or cc1obj in objc/lang-specs.h) from the main specs so
833 that we default the front end language better. */
834 static const char *trad_capable_cpp
=
835 "cc1 -E %{traditional|ftraditional|traditional-cpp:-traditional-cpp}";
837 /* We don't wrap .d files in %W{} since a missing .d file, and
838 therefore no dependency entry, confuses make into thinking a .o
839 file that happens to exist is up-to-date. */
840 static const char *cpp_unique_options
=
841 "%{C|CC:%{!E:%eGCC does not support -C or -CC without -E}}\
842 %{!Q:-quiet} %{nostdinc*} %{C} %{CC} %{v} %{I*&F*} %{P} %I\
843 %{MD:-MD %{!o:%b.d}%{o*:%.d%*}}\
844 %{MMD:-MMD %{!o:%b.d}%{o*:%.d%*}}\
845 %{M} %{MM} %{MF*} %{MG} %{MP} %{MQ*} %{MT*}\
846 %{!E:%{!M:%{!MM:%{!MT:%{!MQ:%{MD|MMD:%{o*:-MQ %*}}}}}}}\
847 %{remap} %{g3|ggdb3|gstabs3|gcoff3|gxcoff3|gvms3:-dD}\
848 %{H} %C %{D*&U*&A*} %{i*} %Z %i\
849 %{fmudflap:-D_MUDFLAP -include mf-runtime.h}\
850 %{fmudflapth:-D_MUDFLAP -D_MUDFLAPTH -include mf-runtime.h}\
853 /* This contains cpp options which are common with cc1_options and are passed
854 only when preprocessing only to avoid duplication. We pass the cc1 spec
855 options to the preprocessor so that it the cc1 spec may manipulate
856 options used to set target flags. Those special target flags settings may
857 in turn cause preprocessor symbols to be defined specially. */
858 static const char *cpp_options
=
859 "%(cpp_unique_options) %1 %{m*} %{std*&ansi&trigraphs} %{W*&pedantic*} %{w}\
860 %{f*} %{g*:%{!g0:%{g*} %{!fno-working-directory:-fworking-directory}}} %{O*}\
861 %{undef} %{save-temps*:-fpch-preprocess}";
863 /* This contains cpp options which are not passed when the preprocessor
864 output will be used by another program. */
865 static const char *cpp_debug_options
= "%{d*}";
867 /* NB: This is shared amongst all front-ends, except for Ada. */
868 static const char *cc1_options
=
869 "%{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
870 %1 %{!Q:-quiet} -dumpbase %B %{d*} %{m*} %{a*}\
871 %{fcompare-debug-second:%:compare-debug-auxbase-opt(%b)} \
872 %{!fcompare-debug-second:%{c|S:%{o*:-auxbase-strip %*}%{!o*:-auxbase %b}}}%{!c:%{!S:-auxbase %b}} \
873 %{g*} %{O*} %{W*&pedantic*} %{w} %{std*&ansi&trigraphs}\
874 %{v:-version} %{pg:-p} %{p} %{f*} %{undef}\
875 %{Qn:-fno-ident} %{--help:--help}\
876 %{--target-help:--target-help}\
877 %{--help=*:--help=%(VALUE)}\
878 %{!fsyntax-only:%{S:%W{o*}%{!o*:-o %b.s}}}\
879 %{fsyntax-only:-o %j} %{-param*}\
880 %{fmudflap|fmudflapth:-fno-builtin -fno-merge-constants}\
881 %{coverage:-fprofile-arcs -ftest-coverage}";
883 static const char *asm_options
=
884 "%{--target-help:%:print-asm-header()} "
886 /* If GNU AS is used, then convert -w (no warnings), -I, and -v
887 to the assembler equivalents. */
888 "%{v} %{w:-W} %{I*} "
890 "%a %Y %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}";
892 static const char *invoke_as
=
893 #ifdef AS_NEEDS_DASH_FOR_PIPED_INPUT
894 "%{fcompare-debug=*:%:compare-debug-dump-opt()}\
895 %{!S:-o %|.s |\n as %(asm_options) %|.s %A }";
897 "%{fcompare-debug=*:%:compare-debug-dump-opt()}\
898 %{!S:-o %|.s |\n as %(asm_options) %m.s %A }";
901 /* Some compilers have limits on line lengths, and the multilib_select
902 and/or multilib_matches strings can be very long, so we build them at
904 static struct obstack multilib_obstack
;
905 static const char *multilib_select
;
906 static const char *multilib_matches
;
907 static const char *multilib_defaults
;
908 static const char *multilib_exclusions
;
910 /* Check whether a particular argument is a default argument. */
912 #ifndef MULTILIB_DEFAULTS
913 #define MULTILIB_DEFAULTS { "" }
916 static const char *const multilib_defaults_raw
[] = MULTILIB_DEFAULTS
;
918 #ifndef DRIVER_SELF_SPECS
919 #define DRIVER_SELF_SPECS ""
922 /* Adding -fopenmp should imply pthreads. This is particularly important
923 for targets that use different start files and suchlike. */
924 #ifndef GOMP_SELF_SPECS
925 #define GOMP_SELF_SPECS "%{fopenmp|ftree-parallelize-loops=*: -pthread}"
928 static const char *const driver_self_specs
[] = {
929 DRIVER_SELF_SPECS
, GOMP_SELF_SPECS
932 #ifndef OPTION_DEFAULT_SPECS
933 #define OPTION_DEFAULT_SPECS { "", "" }
942 static const struct default_spec
943 option_default_specs
[] = { OPTION_DEFAULT_SPECS
};
947 struct user_specs
*next
;
948 const char *filename
;
951 static struct user_specs
*user_specs_head
, *user_specs_tail
;
953 #ifndef SWITCH_TAKES_ARG
954 #define SWITCH_TAKES_ARG(CHAR) DEFAULT_SWITCH_TAKES_ARG(CHAR)
957 #ifndef WORD_SWITCH_TAKES_ARG
958 #define WORD_SWITCH_TAKES_ARG(STR) DEFAULT_WORD_SWITCH_TAKES_ARG (STR)
961 #ifdef HAVE_TARGET_EXECUTABLE_SUFFIX
962 /* This defines which switches stop a full compilation. */
963 #define DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR) \
964 ((CHAR) == 'c' || (CHAR) == 'S')
966 #ifndef SWITCH_CURTAILS_COMPILATION
967 #define SWITCH_CURTAILS_COMPILATION(CHAR) \
968 DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR)
972 /* Record the mapping from file suffixes for compilation specs. */
976 const char *suffix
; /* Use this compiler for input files
977 whose names end in this suffix. */
979 const char *spec
; /* To use this compiler, run this spec. */
981 const char *cpp_spec
; /* If non-NULL, substitute this spec
982 for `%C', rather than the usual
984 const int combinable
; /* If nonzero, compiler can deal with
985 multiple source files at once (IMA). */
986 const int needs_preprocessing
; /* If nonzero, source files need to
987 be run through a preprocessor. */
990 /* Pointer to a vector of `struct compiler' that gives the spec for
991 compiling a file, based on its suffix.
992 A file that does not end in any of these suffixes will be passed
993 unchanged to the loader and nothing else will be done to it.
995 An entry containing two 0s is used to terminate the vector.
997 If multiple entries match a file, the last matching one is used. */
999 static struct compiler
*compilers
;
1001 /* Number of entries in `compilers', not counting the null terminator. */
1003 static int n_compilers
;
1005 /* The default list of file name suffixes and their compilation specs. */
1007 static const struct compiler default_compilers
[] =
1009 /* Add lists of suffixes of known languages here. If those languages
1010 were not present when we built the driver, we will hit these copies
1011 and be given a more meaningful error than "file not used since
1012 linking is not done". */
1013 {".m", "#Objective-C", 0, 0, 0}, {".mi", "#Objective-C", 0, 0, 0},
1014 {".mm", "#Objective-C++", 0, 0, 0}, {".M", "#Objective-C++", 0, 0, 0},
1015 {".mii", "#Objective-C++", 0, 0, 0},
1016 {".cc", "#C++", 0, 0, 0}, {".cxx", "#C++", 0, 0, 0},
1017 {".cpp", "#C++", 0, 0, 0}, {".cp", "#C++", 0, 0, 0},
1018 {".c++", "#C++", 0, 0, 0}, {".C", "#C++", 0, 0, 0},
1019 {".CPP", "#C++", 0, 0, 0}, {".ii", "#C++", 0, 0, 0},
1020 {".ads", "#Ada", 0, 0, 0}, {".adb", "#Ada", 0, 0, 0},
1021 {".f", "#Fortran", 0, 0, 0}, {".F", "#Fortran", 0, 0, 0},
1022 {".for", "#Fortran", 0, 0, 0}, {".FOR", "#Fortran", 0, 0, 0},
1023 {".ftn", "#Fortran", 0, 0, 0}, {".FTN", "#Fortran", 0, 0, 0},
1024 {".fpp", "#Fortran", 0, 0, 0}, {".FPP", "#Fortran", 0, 0, 0},
1025 {".f90", "#Fortran", 0, 0, 0}, {".F90", "#Fortran", 0, 0, 0},
1026 {".f95", "#Fortran", 0, 0, 0}, {".F95", "#Fortran", 0, 0, 0},
1027 {".f03", "#Fortran", 0, 0, 0}, {".F03", "#Fortran", 0, 0, 0},
1028 {".f08", "#Fortran", 0, 0, 0}, {".F08", "#Fortran", 0, 0, 0},
1029 {".r", "#Ratfor", 0, 0, 0},
1030 {".p", "#Pascal", 0, 0, 0}, {".pas", "#Pascal", 0, 0, 0},
1031 {".java", "#Java", 0, 0, 0}, {".class", "#Java", 0, 0, 0},
1032 {".zip", "#Java", 0, 0, 0}, {".jar", "#Java", 0, 0, 0},
1033 /* Next come the entries for C. */
1034 {".c", "@c", 0, 1, 1},
1036 /* cc1 has an integrated ISO C preprocessor. We should invoke the
1037 external preprocessor if -save-temps is given. */
1038 "%{E|M|MM:%(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)}\
1040 %{traditional|ftraditional:\
1041 %eGNU C no longer supports -traditional without -E}\
1043 %{save-temps*|traditional-cpp|no-integrated-cpp:%(trad_capable_cpp) \
1044 %(cpp_options) -o %{save-temps*:%b.i} %{!save-temps*:%g.i} \n\
1045 cc1 -fpreprocessed %{save-temps*:%b.i} %{!save-temps*:%g.i} \
1047 %{!save-temps*:%{!traditional-cpp:%{!no-integrated-cpp:\
1048 cc1 %(cpp_unique_options) %(cc1_options)}}}\
1049 %{!fsyntax-only:%(invoke_as)}} \
1051 %{save-temps*|traditional-cpp|no-integrated-cpp:%(trad_capable_cpp) \
1052 %(cpp_options) -o %{save-temps*:%b.i} %{!save-temps*:%g.i}}\
1053 %{!save-temps*:%{!traditional-cpp:%{!no-integrated-cpp:\
1054 cc1 %(cpp_unique_options) %(cc1_options)}}\
1055 %{!fsyntax-only:%(invoke_as)}}}}}}", 0, 1, 1},
1057 "%{!E:%e-E or -x required when input is from standard input}\
1058 %(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)", 0, 0, 0},
1059 {".h", "@c-header", 0, 0, 0},
1061 /* cc1 has an integrated ISO C preprocessor. We should invoke the
1062 external preprocessor if -save-temps is given. */
1063 "%{E|M|MM:%(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)}\
1065 %{save-temps*|traditional-cpp|no-integrated-cpp:%(trad_capable_cpp) \
1066 %(cpp_options) -o %{save-temps*:%b.i} %{!save-temps*:%g.i} \n\
1067 cc1 -fpreprocessed %{save-temps*:%b.i} %{!save-temps*:%g.i} \
1069 -o %g.s %{!o*:--output-pch=%i.gch}\
1070 %W{o*:--output-pch=%*}%V}\
1071 %{!save-temps*:%{!traditional-cpp:%{!no-integrated-cpp:\
1072 cc1 %(cpp_unique_options) %(cc1_options)\
1073 -o %g.s %{!o*:--output-pch=%i.gch}\
1074 %W{o*:--output-pch=%*}%V}}}}}}", 0, 0, 0},
1075 {".i", "@cpp-output", 0, 1, 0},
1077 "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0, 1, 0},
1078 {".s", "@assembler", 0, 1, 0},
1080 "%{!M:%{!MM:%{!E:%{!S:as %(asm_debug) %(asm_options) %i %A }}}}", 0, 1, 0},
1081 {".sx", "@assembler-with-cpp", 0, 1, 0},
1082 {".S", "@assembler-with-cpp", 0, 1, 0},
1083 {"@assembler-with-cpp",
1084 #ifdef AS_NEEDS_DASH_FOR_PIPED_INPUT
1085 "%(trad_capable_cpp) -lang-asm %(cpp_options) -fno-directives-only\
1086 %{E|M|MM:%(cpp_debug_options)}\
1087 %{!M:%{!MM:%{!E:%{!S:-o %|.s |\n\
1088 as %(asm_debug) %(asm_options) %|.s %A }}}}"
1090 "%(trad_capable_cpp) -lang-asm %(cpp_options) -fno-directives-only\
1091 %{E|M|MM:%(cpp_debug_options)}\
1092 %{!M:%{!MM:%{!E:%{!S:-o %|.s |\n\
1093 as %(asm_debug) %(asm_options) %m.s %A }}}}"
1098 /* Mark end of table. */
1102 /* Number of elements in default_compilers, not counting the terminator. */
1104 static const int n_default_compilers
= ARRAY_SIZE (default_compilers
) - 1;
1106 /* A vector of options to give to the linker.
1107 These options are accumulated by %x,
1108 and substituted into the linker command with %X. */
1109 static int n_linker_options
;
1110 static char **linker_options
;
1112 /* A vector of options to give to the assembler.
1113 These options are accumulated by -Wa,
1114 and substituted into the assembler command with %Y. */
1115 static int n_assembler_options
;
1116 static char **assembler_options
;
1118 /* A vector of options to give to the preprocessor.
1119 These options are accumulated by -Wp,
1120 and substituted into the preprocessor command with %Z. */
1121 static int n_preprocessor_options
;
1122 static char **preprocessor_options
;
1124 /* Define how to map long options into short ones. */
1126 /* This structure describes one mapping. */
1129 /* The long option's name. */
1130 const char *const name
;
1131 /* The equivalent short option. */
1132 const char *const equivalent
;
1133 /* Argument info. A string of flag chars; NULL equals no options.
1134 a => argument required.
1135 o => argument optional.
1136 j => join argument to equivalent, making one word.
1137 * => require other text after NAME as an argument. */
1138 const char *const arg_info
;
1141 /* This is the table of mappings. Mappings are tried sequentially
1142 for each option encountered; the first one that matches, wins. */
1144 static const struct option_map option_map
[] =
1146 {"--all-warnings", "-Wall", 0},
1147 {"--ansi", "-ansi", 0},
1148 {"--assemble", "-S", 0},
1149 {"--assert", "-A", "a"},
1150 {"--classpath", "-fclasspath=", "aj"},
1151 {"--bootclasspath", "-fbootclasspath=", "aj"},
1152 {"--CLASSPATH", "-fclasspath=", "aj"},
1153 {"--combine", "-combine", 0},
1154 {"--comments", "-C", 0},
1155 {"--comments-in-macros", "-CC", 0},
1156 {"--compile", "-c", 0},
1157 {"--debug", "-g", "oj"},
1158 {"--define-macro", "-D", "aj"},
1159 {"--dependencies", "-M", 0},
1160 {"--dump", "-d", "a"},
1161 {"--dumpbase", "-dumpbase", "a"},
1162 {"--encoding", "-fencoding=", "aj"},
1163 {"--entry", "-e", 0},
1164 {"--extra-warnings", "-W", 0},
1165 {"--extdirs", "-fextdirs=", "aj"},
1166 {"--for-assembler", "-Wa", "a"},
1167 {"--for-linker", "-Xlinker", "a"},
1168 {"--force-link", "-u", "a"},
1169 {"--coverage", "-coverage", 0},
1170 {"--imacros", "-imacros", "a"},
1171 {"--include", "-include", "a"},
1172 {"--include-barrier", "-I-", 0},
1173 {"--include-directory", "-I", "aj"},
1174 {"--include-directory-after", "-idirafter", "a"},
1175 {"--include-prefix", "-iprefix", "a"},
1176 {"--include-with-prefix", "-iwithprefix", "a"},
1177 {"--include-with-prefix-before", "-iwithprefixbefore", "a"},
1178 {"--include-with-prefix-after", "-iwithprefix", "a"},
1179 {"--language", "-x", "a"},
1180 {"--library-directory", "-L", "a"},
1181 {"--machine", "-m", "aj"},
1182 {"--machine-", "-m", "*j"},
1183 {"--no-canonical-prefixes", "-no-canonical-prefixes", 0},
1184 {"--no-integrated-cpp", "-no-integrated-cpp", 0},
1185 {"--no-line-commands", "-P", 0},
1186 {"--no-precompiled-includes", "-noprecomp", 0},
1187 {"--no-standard-includes", "-nostdinc", 0},
1188 {"--no-standard-libraries", "-nostdlib", 0},
1189 {"--no-warnings", "-w", 0},
1190 {"--optimize", "-O", "oj"},
1191 {"--output", "-o", "a"},
1192 {"--output-class-directory", "-foutput-class-dir=", "ja"},
1193 {"--param", "--param", "a"},
1194 {"--pass-exit-codes", "-pass-exit-codes", 0},
1195 {"--pedantic", "-pedantic", 0},
1196 {"--pedantic-errors", "-pedantic-errors", 0},
1197 {"--pie", "-pie", 0},
1198 {"--pipe", "-pipe", 0},
1199 {"--prefix", "-B", "a"},
1200 {"--preprocess", "-E", 0},
1201 {"--print-search-dirs", "-print-search-dirs", 0},
1202 {"--print-file-name", "-print-file-name=", "aj"},
1203 {"--print-libgcc-file-name", "-print-libgcc-file-name", 0},
1204 {"--print-missing-file-dependencies", "-MG", 0},
1205 {"--print-multi-lib", "-print-multi-lib", 0},
1206 {"--print-multi-directory", "-print-multi-directory", 0},
1207 {"--print-multi-os-directory", "-print-multi-os-directory", 0},
1208 {"--print-prog-name", "-print-prog-name=", "aj"},
1209 {"--print-sysroot", "-print-sysroot", 0},
1210 {"--print-sysroot-headers-suffix", "-print-sysroot-headers-suffix", 0},
1211 {"--profile", "-p", 0},
1212 {"--profile-blocks", "-a", 0},
1213 {"--quiet", "-q", 0},
1214 {"--resource", "-fcompile-resource=", "aj"},
1215 {"--save-temps", "-save-temps", 0},
1216 {"--shared", "-shared", 0},
1217 {"--silent", "-q", 0},
1218 {"--specs", "-specs=", "aj"},
1219 {"--static", "-static", 0},
1220 {"--std", "-std=", "aj"},
1221 {"--symbolic", "-symbolic", 0},
1222 {"--sysroot", "--sysroot=", "aj"},
1223 {"--time", "-time", 0},
1224 {"--trace-includes", "-H", 0},
1225 {"--traditional", "-traditional", 0},
1226 {"--traditional-cpp", "-traditional-cpp", 0},
1227 {"--trigraphs", "-trigraphs", 0},
1228 {"--undefine-macro", "-U", "aj"},
1229 {"--user-dependencies", "-MM", 0},
1230 {"--verbose", "-v", 0},
1231 {"--warn-", "-W", "*j"},
1232 {"--write-dependencies", "-MD", 0},
1233 {"--write-user-dependencies", "-MMD", 0},
1238 #ifdef TARGET_OPTION_TRANSLATE_TABLE
1239 static const struct {
1240 const char *const option_found
;
1241 const char *const replacements
;
1242 } target_option_translations
[] =
1244 TARGET_OPTION_TRANSLATE_TABLE
,
1249 /* Translate the options described by *ARGCP and *ARGVP.
1250 Make a new vector and store it back in *ARGVP,
1251 and store its length in *ARGCP. */
1254 translate_options (int *argcp
, const char *const **argvp
)
1258 const char *const *argv
= *argvp
;
1259 int newvsize
= (argc
+ 2) * 2 * sizeof (const char *);
1260 const char **newv
= XNEWVAR (const char *, newvsize
);
1264 newv
[newindex
++] = argv
[i
++];
1268 #ifdef TARGET_OPTION_TRANSLATE_TABLE
1272 target_option_translations
[tott_idx
].option_found
;
1275 if (strcmp (target_option_translations
[tott_idx
].option_found
,
1282 for (sp
= target_option_translations
[tott_idx
].replacements
;
1289 newvsize
+= spaces
* sizeof (const char *);
1290 newv
= XRESIZEVAR (const char *, newv
, newvsize
);
1292 sp
= target_option_translations
[tott_idx
].replacements
;
1301 newv
[newindex
++] = np
;
1302 while (*np
!= ' ' && *np
)
1313 if (target_option_translations
[tott_idx
].option_found
)
1317 /* Translate -- options. */
1318 if (argv
[i
][0] == '-' && argv
[i
][1] == '-')
1321 /* Find a mapping that applies to this option. */
1322 for (j
= 0; j
< ARRAY_SIZE (option_map
); j
++)
1324 size_t optlen
= strlen (option_map
[j
].name
);
1325 size_t arglen
= strlen (argv
[i
]);
1326 size_t complen
= arglen
> optlen
? optlen
: arglen
;
1327 const char *arginfo
= option_map
[j
].arg_info
;
1332 if (!strncmp (argv
[i
], option_map
[j
].name
, complen
))
1334 const char *arg
= 0;
1336 if (arglen
< optlen
)
1339 for (k
= j
+ 1; k
< ARRAY_SIZE (option_map
); k
++)
1340 if (strlen (option_map
[k
].name
) >= arglen
1341 && !strncmp (argv
[i
], option_map
[k
].name
, arglen
))
1343 error ("ambiguous abbreviation %s", argv
[i
]);
1347 if (k
!= ARRAY_SIZE (option_map
))
1351 if (arglen
> optlen
)
1353 /* If the option has an argument, accept that. */
1354 if (argv
[i
][optlen
] == '=')
1355 arg
= argv
[i
] + optlen
+ 1;
1357 /* If this mapping requires extra text at end of name,
1358 accept that as "argument". */
1359 else if (strchr (arginfo
, '*') != 0)
1360 arg
= argv
[i
] + optlen
;
1362 /* Otherwise, extra text at end means mismatch.
1363 Try other mappings. */
1368 else if (strchr (arginfo
, '*') != 0)
1370 error ("incomplete '%s' option", option_map
[j
].name
);
1374 /* Handle arguments. */
1375 if (strchr (arginfo
, 'a') != 0)
1381 error ("missing argument to '%s' option",
1382 option_map
[j
].name
);
1389 else if (strchr (arginfo
, '*') != 0)
1391 else if (strchr (arginfo
, 'o') == 0)
1394 error ("extraneous argument to '%s' option",
1395 option_map
[j
].name
);
1399 /* Store the translation as one argv elt or as two. */
1400 if (arg
!= 0 && strchr (arginfo
, 'j') != 0)
1401 newv
[newindex
++] = concat (option_map
[j
].equivalent
, arg
,
1405 newv
[newindex
++] = option_map
[j
].equivalent
;
1406 newv
[newindex
++] = arg
;
1409 newv
[newindex
++] = option_map
[j
].equivalent
;
1417 /* Handle old-fashioned options--just copy them through,
1418 with their arguments. */
1419 else if (argv
[i
][0] == '-')
1421 const char *p
= argv
[i
] + 1;
1425 if (SWITCH_TAKES_ARG (c
) > (p
[1] != 0))
1426 nskip
+= SWITCH_TAKES_ARG (c
) - (p
[1] != 0);
1427 else if (WORD_SWITCH_TAKES_ARG (p
))
1428 nskip
+= WORD_SWITCH_TAKES_ARG (p
);
1429 else if ((c
== 'B' || c
== 'b' || c
== 'x')
1432 else if (! strcmp (p
, "Xlinker"))
1434 else if (! strcmp (p
, "Xpreprocessor"))
1436 else if (! strcmp (p
, "Xassembler"))
1439 /* Watch out for an option at the end of the command line that
1440 is missing arguments, and avoid skipping past the end of the
1442 if (nskip
+ i
> argc
)
1447 newv
[newindex
++] = argv
[i
++];
1452 /* Ordinary operands, or +e options. */
1453 newv
[newindex
++] = argv
[i
++];
1463 skip_whitespace (char *p
)
1467 /* A fully-blank line is a delimiter in the SPEC file and shouldn't
1468 be considered whitespace. */
1469 if (p
[0] == '\n' && p
[1] == '\n' && p
[2] == '\n')
1471 else if (*p
== '\n' || *p
== ' ' || *p
== '\t')
1485 /* Structures to keep track of prefixes to try when looking for files. */
1489 const char *prefix
; /* String to prepend to the path. */
1490 struct prefix_list
*next
; /* Next in linked list. */
1491 int require_machine_suffix
; /* Don't use without machine_suffix. */
1492 /* 2 means try both machine_suffix and just_machine_suffix. */
1493 int priority
; /* Sort key - priority within list. */
1494 int os_multilib
; /* 1 if OS multilib scheme should be used,
1495 0 for GCC multilib scheme. */
1500 struct prefix_list
*plist
; /* List of prefixes to try */
1501 int max_len
; /* Max length of a prefix in PLIST */
1502 const char *name
; /* Name of this list (used in config stuff) */
1505 /* List of prefixes to try when looking for executables. */
1507 static struct path_prefix exec_prefixes
= { 0, 0, "exec" };
1509 /* List of prefixes to try when looking for startup (crt0) files. */
1511 static struct path_prefix startfile_prefixes
= { 0, 0, "startfile" };
1513 /* List of prefixes to try when looking for include files. */
1515 static struct path_prefix include_prefixes
= { 0, 0, "include" };
1517 /* Suffix to attach to directories searched for commands.
1518 This looks like `MACHINE/VERSION/'. */
1520 static const char *machine_suffix
= 0;
1522 /* Suffix to attach to directories searched for commands.
1523 This is just `MACHINE/'. */
1525 static const char *just_machine_suffix
= 0;
1527 /* Adjusted value of GCC_EXEC_PREFIX envvar. */
1529 static const char *gcc_exec_prefix
;
1531 /* Adjusted value of standard_libexec_prefix. */
1533 static const char *gcc_libexec_prefix
;
1535 /* Default prefixes to attach to command names. */
1537 #ifndef STANDARD_STARTFILE_PREFIX_1
1538 #define STANDARD_STARTFILE_PREFIX_1 "/lib/"
1540 #ifndef STANDARD_STARTFILE_PREFIX_2
1541 #define STANDARD_STARTFILE_PREFIX_2 "/usr/lib/"
1544 #ifdef CROSS_DIRECTORY_STRUCTURE /* Don't use these prefixes for a cross compiler. */
1545 #undef MD_EXEC_PREFIX
1546 #undef MD_STARTFILE_PREFIX
1547 #undef MD_STARTFILE_PREFIX_1
1550 /* If no prefixes defined, use the null string, which will disable them. */
1551 #ifndef MD_EXEC_PREFIX
1552 #define MD_EXEC_PREFIX ""
1554 #ifndef MD_STARTFILE_PREFIX
1555 #define MD_STARTFILE_PREFIX ""
1557 #ifndef MD_STARTFILE_PREFIX_1
1558 #define MD_STARTFILE_PREFIX_1 ""
1561 /* These directories are locations set at configure-time based on the
1562 --prefix option provided to configure. Their initializers are
1563 defined in Makefile.in. These paths are not *directly* used when
1564 gcc_exec_prefix is set because, in that case, we know where the
1565 compiler has been installed, and use paths relative to that
1566 location instead. */
1567 static const char *const standard_exec_prefix
= STANDARD_EXEC_PREFIX
;
1568 static const char *const standard_libexec_prefix
= STANDARD_LIBEXEC_PREFIX
;
1569 static const char *const standard_bindir_prefix
= STANDARD_BINDIR_PREFIX
;
1570 static const char *const standard_startfile_prefix
= STANDARD_STARTFILE_PREFIX
;
1572 /* For native compilers, these are well-known paths containing
1573 components that may be provided by the system. For cross
1574 compilers, these paths are not used. */
1575 static const char *const standard_exec_prefix_1
= "/usr/libexec/gcc/";
1576 static const char *const standard_exec_prefix_2
= "/usr/lib/gcc/";
1577 static const char *md_exec_prefix
= MD_EXEC_PREFIX
;
1578 static const char *md_startfile_prefix
= MD_STARTFILE_PREFIX
;
1579 static const char *md_startfile_prefix_1
= MD_STARTFILE_PREFIX_1
;
1580 static const char *const standard_startfile_prefix_1
1581 = STANDARD_STARTFILE_PREFIX_1
;
1582 static const char *const standard_startfile_prefix_2
1583 = STANDARD_STARTFILE_PREFIX_2
;
1585 /* A relative path to be used in finding the location of tools
1586 relative to the driver. */
1587 static const char *const tooldir_base_prefix
= TOOLDIR_BASE_PREFIX
;
1589 /* Subdirectory to use for locating libraries. Set by
1590 set_multilib_dir based on the compilation options. */
1592 static const char *multilib_dir
;
1594 /* Subdirectory to use for locating libraries in OS conventions. Set by
1595 set_multilib_dir based on the compilation options. */
1597 static const char *multilib_os_dir
;
1599 /* Structure to keep track of the specs that have been defined so far.
1600 These are accessed using %(specname) or %[specname] in a compiler
1605 /* The following 2 fields must be first */
1606 /* to allow EXTRA_SPECS to be initialized */
1607 const char *name
; /* name of the spec. */
1608 const char *ptr
; /* available ptr if no static pointer */
1610 /* The following fields are not initialized */
1611 /* by EXTRA_SPECS */
1612 const char **ptr_spec
; /* pointer to the spec itself. */
1613 struct spec_list
*next
; /* Next spec in linked list. */
1614 int name_len
; /* length of the name */
1615 int alloc_p
; /* whether string was allocated */
1618 #define INIT_STATIC_SPEC(NAME,PTR) \
1619 { NAME, NULL, PTR, (struct spec_list *) 0, sizeof (NAME) - 1, 0 }
1621 /* List of statically defined specs. */
1622 static struct spec_list static_specs
[] =
1624 INIT_STATIC_SPEC ("asm", &asm_spec
),
1625 INIT_STATIC_SPEC ("asm_debug", &asm_debug
),
1626 INIT_STATIC_SPEC ("asm_final", &asm_final_spec
),
1627 INIT_STATIC_SPEC ("asm_options", &asm_options
),
1628 INIT_STATIC_SPEC ("invoke_as", &invoke_as
),
1629 INIT_STATIC_SPEC ("cpp", &cpp_spec
),
1630 INIT_STATIC_SPEC ("cpp_options", &cpp_options
),
1631 INIT_STATIC_SPEC ("cpp_debug_options", &cpp_debug_options
),
1632 INIT_STATIC_SPEC ("cpp_unique_options", &cpp_unique_options
),
1633 INIT_STATIC_SPEC ("trad_capable_cpp", &trad_capable_cpp
),
1634 INIT_STATIC_SPEC ("cc1", &cc1_spec
),
1635 INIT_STATIC_SPEC ("cc1_options", &cc1_options
),
1636 INIT_STATIC_SPEC ("cc1plus", &cc1plus_spec
),
1637 INIT_STATIC_SPEC ("link_gcc_c_sequence", &link_gcc_c_sequence_spec
),
1638 INIT_STATIC_SPEC ("link_ssp", &link_ssp_spec
),
1639 INIT_STATIC_SPEC ("endfile", &endfile_spec
),
1640 INIT_STATIC_SPEC ("link", &link_spec
),
1641 INIT_STATIC_SPEC ("lib", &lib_spec
),
1642 INIT_STATIC_SPEC ("mfwrap", &mfwrap_spec
),
1643 INIT_STATIC_SPEC ("mflib", &mflib_spec
),
1644 INIT_STATIC_SPEC ("link_gomp", &link_gomp_spec
),
1645 INIT_STATIC_SPEC ("libgcc", &libgcc_spec
),
1646 INIT_STATIC_SPEC ("startfile", &startfile_spec
),
1647 INIT_STATIC_SPEC ("switches_need_spaces", &switches_need_spaces
),
1648 INIT_STATIC_SPEC ("cross_compile", &cross_compile
),
1649 INIT_STATIC_SPEC ("version", &compiler_version
),
1650 INIT_STATIC_SPEC ("multilib", &multilib_select
),
1651 INIT_STATIC_SPEC ("multilib_defaults", &multilib_defaults
),
1652 INIT_STATIC_SPEC ("multilib_extra", &multilib_extra
),
1653 INIT_STATIC_SPEC ("multilib_matches", &multilib_matches
),
1654 INIT_STATIC_SPEC ("multilib_exclusions", &multilib_exclusions
),
1655 INIT_STATIC_SPEC ("multilib_options", &multilib_options
),
1656 INIT_STATIC_SPEC ("linker", &linker_name_spec
),
1657 INIT_STATIC_SPEC ("link_libgcc", &link_libgcc_spec
),
1658 INIT_STATIC_SPEC ("md_exec_prefix", &md_exec_prefix
),
1659 INIT_STATIC_SPEC ("md_startfile_prefix", &md_startfile_prefix
),
1660 INIT_STATIC_SPEC ("md_startfile_prefix_1", &md_startfile_prefix_1
),
1661 INIT_STATIC_SPEC ("startfile_prefix_spec", &startfile_prefix_spec
),
1662 INIT_STATIC_SPEC ("sysroot_spec", &sysroot_spec
),
1663 INIT_STATIC_SPEC ("sysroot_suffix_spec", &sysroot_suffix_spec
),
1664 INIT_STATIC_SPEC ("sysroot_hdrs_suffix_spec", &sysroot_hdrs_suffix_spec
),
1667 #ifdef EXTRA_SPECS /* additional specs needed */
1668 /* Structure to keep track of just the first two args of a spec_list.
1669 That is all that the EXTRA_SPECS macro gives us. */
1672 const char *const name
;
1673 const char *const ptr
;
1676 static const struct spec_list_1 extra_specs_1
[] = { EXTRA_SPECS
};
1677 static struct spec_list
*extra_specs
= (struct spec_list
*) 0;
1680 /* List of dynamically allocates specs that have been defined so far. */
1682 static struct spec_list
*specs
= (struct spec_list
*) 0;
1684 /* List of static spec functions. */
1686 static const struct spec_function static_spec_functions
[] =
1688 { "getenv", getenv_spec_function
},
1689 { "if-exists", if_exists_spec_function
},
1690 { "if-exists-else", if_exists_else_spec_function
},
1691 { "replace-outfile", replace_outfile_spec_function
},
1692 { "version-compare", version_compare_spec_function
},
1693 { "include", include_spec_function
},
1694 { "print-asm-header", print_asm_header_spec_function
},
1695 { "compare-debug-dump-opt", compare_debug_dump_opt_spec_function
},
1696 { "compare-debug-self-opt", compare_debug_self_opt_spec_function
},
1697 { "compare-debug-auxbase-opt", compare_debug_auxbase_opt_spec_function
},
1698 #ifdef EXTRA_SPEC_FUNCTIONS
1699 EXTRA_SPEC_FUNCTIONS
1704 static int processing_spec_function
;
1706 /* Add appropriate libgcc specs to OBSTACK, taking into account
1707 various permutations of -shared-libgcc, -shared, and such. */
1709 #if defined(ENABLE_SHARED_LIBGCC) && !defined(REAL_LIBGCC_SPEC)
1711 #ifndef USE_LD_AS_NEEDED
1712 #define USE_LD_AS_NEEDED 0
1716 init_gcc_specs (struct obstack
*obstack
, const char *shared_name
,
1717 const char *static_name
, const char *eh_name
)
1721 buf
= concat ("%{static|static-libgcc:", static_name
, " ", eh_name
, "}"
1722 "%{!static:%{!static-libgcc:"
1723 #if USE_LD_AS_NEEDED
1724 "%{!shared-libgcc:",
1725 static_name
, " --as-needed ", shared_name
, " --no-as-needed"
1728 shared_name
, "%{!shared: ", static_name
, "}"
1732 "%{!shared-libgcc:", static_name
, " ", eh_name
, "}"
1733 "%{shared-libgcc:", shared_name
, " ", static_name
, "}"
1737 "%{shared-libgcc:", shared_name
, "}"
1738 "%{!shared-libgcc:", static_name
, "}"
1741 "%{shared:", shared_name
, "}"
1746 obstack_grow (obstack
, buf
, strlen (buf
));
1749 #endif /* ENABLE_SHARED_LIBGCC */
1751 /* Initialize the specs lookup routines. */
1756 struct spec_list
*next
= (struct spec_list
*) 0;
1757 struct spec_list
*sl
= (struct spec_list
*) 0;
1761 return; /* Already initialized. */
1764 notice ("Using built-in specs.\n");
1767 extra_specs
= XCNEWVEC (struct spec_list
, ARRAY_SIZE (extra_specs_1
));
1769 for (i
= ARRAY_SIZE (extra_specs_1
) - 1; i
>= 0; i
--)
1771 sl
= &extra_specs
[i
];
1772 sl
->name
= extra_specs_1
[i
].name
;
1773 sl
->ptr
= extra_specs_1
[i
].ptr
;
1775 sl
->name_len
= strlen (sl
->name
);
1776 sl
->ptr_spec
= &sl
->ptr
;
1781 for (i
= ARRAY_SIZE (static_specs
) - 1; i
>= 0; i
--)
1783 sl
= &static_specs
[i
];
1788 #if defined(ENABLE_SHARED_LIBGCC) && !defined(REAL_LIBGCC_SPEC)
1789 /* ??? If neither -shared-libgcc nor --static-libgcc was
1790 seen, then we should be making an educated guess. Some proposed
1791 heuristics for ELF include:
1793 (1) If "-Wl,--export-dynamic", then it's a fair bet that the
1794 program will be doing dynamic loading, which will likely
1795 need the shared libgcc.
1797 (2) If "-ldl", then it's also a fair bet that we're doing
1800 (3) For each ET_DYN we're linking against (either through -lfoo
1801 or /some/path/foo.so), check to see whether it or one of
1802 its dependencies depends on a shared libgcc.
1806 If the runtime is fixed to look for program headers instead
1807 of calling __register_frame_info at all, for each object,
1808 use the shared libgcc if any EH symbol referenced.
1810 If crtstuff is fixed to not invoke __register_frame_info
1811 automatically, for each object, use the shared libgcc if
1812 any non-empty unwind section found.
1814 Doing any of this probably requires invoking an external program to
1815 do the actual object file scanning. */
1817 const char *p
= libgcc_spec
;
1820 /* Transform the extant libgcc_spec into one that uses the shared libgcc
1821 when given the proper command line arguments. */
1824 if (in_sep
&& *p
== '-' && strncmp (p
, "-lgcc", 5) == 0)
1826 init_gcc_specs (&obstack
,
1828 #ifdef USE_LIBUNWIND_EXCEPTIONS
1834 #ifdef USE_LIBUNWIND_EXCEPTIONS
1835 # ifdef HAVE_LD_STATIC_DYNAMIC
1836 " %{!static:-Bstatic} -lunwind %{!static:-Bdynamic}"
1846 else if (in_sep
&& *p
== 'l' && strncmp (p
, "libgcc.a%s", 10) == 0)
1848 /* Ug. We don't know shared library extensions. Hope that
1849 systems that use this form don't do shared libraries. */
1850 init_gcc_specs (&obstack
,
1854 #ifdef USE_LIBUNWIND_EXCEPTIONS
1863 obstack_1grow (&obstack
, *p
);
1864 in_sep
= (*p
== ' ');
1869 obstack_1grow (&obstack
, '\0');
1870 libgcc_spec
= XOBFINISH (&obstack
, const char *);
1873 #ifdef USE_AS_TRADITIONAL_FORMAT
1874 /* Prepend "--traditional-format" to whatever asm_spec we had before. */
1876 static const char tf
[] = "--traditional-format ";
1877 obstack_grow (&obstack
, tf
, sizeof(tf
) - 1);
1878 obstack_grow0 (&obstack
, asm_spec
, strlen (asm_spec
));
1879 asm_spec
= XOBFINISH (&obstack
, const char *);
1883 #if defined LINK_EH_SPEC || defined LINK_BUILDID_SPEC
1884 # ifdef LINK_BUILDID_SPEC
1885 /* Prepend LINK_BUILDID_SPEC to whatever link_spec we had before. */
1886 obstack_grow (&obstack
, LINK_BUILDID_SPEC
, sizeof(LINK_BUILDID_SPEC
) - 1);
1888 # ifdef LINK_EH_SPEC
1889 /* Prepend LINK_EH_SPEC to whatever link_spec we had before. */
1890 obstack_grow (&obstack
, LINK_EH_SPEC
, sizeof(LINK_EH_SPEC
) - 1);
1892 obstack_grow0 (&obstack
, link_spec
, strlen (link_spec
));
1893 link_spec
= XOBFINISH (&obstack
, const char *);
1899 /* Change the value of spec NAME to SPEC. If SPEC is empty, then the spec is
1900 removed; If the spec starts with a + then SPEC is added to the end of the
1904 set_spec (const char *name
, const char *spec
)
1906 struct spec_list
*sl
;
1907 const char *old_spec
;
1908 int name_len
= strlen (name
);
1911 /* If this is the first call, initialize the statically allocated specs. */
1914 struct spec_list
*next
= (struct spec_list
*) 0;
1915 for (i
= ARRAY_SIZE (static_specs
) - 1; i
>= 0; i
--)
1917 sl
= &static_specs
[i
];
1924 /* See if the spec already exists. */
1925 for (sl
= specs
; sl
; sl
= sl
->next
)
1926 if (name_len
== sl
->name_len
&& !strcmp (sl
->name
, name
))
1931 /* Not found - make it. */
1932 sl
= XNEW (struct spec_list
);
1933 sl
->name
= xstrdup (name
);
1934 sl
->name_len
= name_len
;
1935 sl
->ptr_spec
= &sl
->ptr
;
1937 *(sl
->ptr_spec
) = "";
1942 old_spec
= *(sl
->ptr_spec
);
1943 *(sl
->ptr_spec
) = ((spec
[0] == '+' && ISSPACE ((unsigned char)spec
[1]))
1944 ? concat (old_spec
, spec
+ 1, NULL
)
1949 notice ("Setting spec %s to '%s'\n\n", name
, *(sl
->ptr_spec
));
1952 /* Free the old spec. */
1953 if (old_spec
&& sl
->alloc_p
)
1954 free (CONST_CAST(char *, old_spec
));
1959 /* Accumulate a command (program name and args), and run it. */
1961 /* Vector of pointers to arguments in the current line of specifications. */
1963 static const char **argbuf
;
1965 /* Number of elements allocated in argbuf. */
1967 static int argbuf_length
;
1969 /* Number of elements in argbuf currently in use (containing args). */
1971 static int argbuf_index
;
1973 /* Position in the argbuf array containing the name of the output file
1974 (the value associated with the "-o" flag). */
1976 static int have_o_argbuf_index
= 0;
1978 /* Were the options -c or -S passed. */
1979 static int have_c
= 0;
1981 /* Was the option -o passed. */
1982 static int have_o
= 0;
1984 /* This is the list of suffixes and codes (%g/%u/%U/%j) and the associated
1985 temp file. If the HOST_BIT_BUCKET is used for %j, no entry is made for
1988 static struct temp_name
{
1989 const char *suffix
; /* suffix associated with the code. */
1990 int length
; /* strlen (suffix). */
1991 int unique
; /* Indicates whether %g or %u/%U was used. */
1992 const char *filename
; /* associated filename. */
1993 int filename_length
; /* strlen (filename). */
1994 struct temp_name
*next
;
1997 /* Number of commands executed so far. */
1999 static int execution_count
;
2001 /* Number of commands that exited with a signal. */
2003 static int signal_count
;
2005 /* Name with which this program was invoked. */
2007 static const char *programname
;
2009 /* Allocate the argument vector. */
2015 argbuf
= XNEWVEC (const char *, argbuf_length
);
2018 /* Clear out the vector of arguments (after a command is executed). */
2026 /* Add one argument to the vector at the end.
2027 This is done when a space is seen or at the end of the line.
2028 If DELETE_ALWAYS is nonzero, the arg is a filename
2029 and the file should be deleted eventually.
2030 If DELETE_FAILURE is nonzero, the arg is a filename
2031 and the file should be deleted if this compilation fails. */
2034 store_arg (const char *arg
, int delete_always
, int delete_failure
)
2036 if (argbuf_index
+ 1 == argbuf_length
)
2037 argbuf
= XRESIZEVEC (const char *, argbuf
, (argbuf_length
*= 2));
2039 argbuf
[argbuf_index
++] = arg
;
2040 argbuf
[argbuf_index
] = 0;
2042 if (strcmp (arg
, "-o") == 0)
2043 have_o_argbuf_index
= argbuf_index
;
2044 if (delete_always
|| delete_failure
)
2045 record_temp_file (arg
, delete_always
, delete_failure
);
2048 /* Load specs from a file name named FILENAME, replacing occurrences of
2049 various different types of line-endings, \r\n, \n\r and just \r, with
2053 load_specs (const char *filename
)
2057 struct stat statbuf
;
2064 notice ("Reading specs from %s\n", filename
);
2066 /* Open and stat the file. */
2067 desc
= open (filename
, O_RDONLY
, 0);
2069 pfatal_with_name (filename
);
2070 if (stat (filename
, &statbuf
) < 0)
2071 pfatal_with_name (filename
);
2073 /* Read contents of file into BUFFER. */
2074 buffer
= XNEWVEC (char, statbuf
.st_size
+ 1);
2075 readlen
= read (desc
, buffer
, (unsigned) statbuf
.st_size
);
2077 pfatal_with_name (filename
);
2078 buffer
[readlen
] = 0;
2081 specs
= XNEWVEC (char, readlen
+ 1);
2083 for (buffer_p
= buffer
; buffer_p
&& *buffer_p
; buffer_p
++)
2089 if (buffer_p
> buffer
&& *(buffer_p
- 1) == '\n') /* \n\r */
2091 else if (*(buffer_p
+ 1) == '\n') /* \r\n */
2105 /* Read compilation specs from a file named FILENAME,
2106 replacing the default ones.
2108 A suffix which starts with `*' is a definition for
2109 one of the machine-specific sub-specs. The "suffix" should be
2110 *asm, *cc1, *cpp, *link, *startfile, etc.
2111 The corresponding spec is stored in asm_spec, etc.,
2112 rather than in the `compilers' vector.
2114 Anything invalid in the file is a fatal error. */
2117 read_specs (const char *filename
, int main_p
)
2122 buffer
= load_specs (filename
);
2124 /* Scan BUFFER for specs, putting them in the vector. */
2130 char *in
, *out
, *p1
, *p2
, *p3
;
2132 /* Advance P in BUFFER to the next nonblank nocomment line. */
2133 p
= skip_whitespace (p
);
2137 /* Is this a special command that starts with '%'? */
2138 /* Don't allow this for the main specs file, since it would
2139 encourage people to overwrite it. */
2140 if (*p
== '%' && !main_p
)
2143 while (*p
&& *p
!= '\n')
2149 if (!strncmp (p1
, "%include", sizeof ("%include") - 1)
2150 && (p1
[sizeof "%include" - 1] == ' '
2151 || p1
[sizeof "%include" - 1] == '\t'))
2155 p1
+= sizeof ("%include");
2156 while (*p1
== ' ' || *p1
== '\t')
2159 if (*p1
++ != '<' || p
[-2] != '>')
2160 fatal ("specs %%include syntax malformed after %ld characters",
2161 (long) (p1
- buffer
+ 1));
2164 new_filename
= find_a_file (&startfile_prefixes
, p1
, R_OK
, true);
2165 read_specs (new_filename
? new_filename
: p1
, FALSE
);
2168 else if (!strncmp (p1
, "%include_noerr", sizeof "%include_noerr" - 1)
2169 && (p1
[sizeof "%include_noerr" - 1] == ' '
2170 || p1
[sizeof "%include_noerr" - 1] == '\t'))
2174 p1
+= sizeof "%include_noerr";
2175 while (*p1
== ' ' || *p1
== '\t')
2178 if (*p1
++ != '<' || p
[-2] != '>')
2179 fatal ("specs %%include syntax malformed after %ld characters",
2180 (long) (p1
- buffer
+ 1));
2183 new_filename
= find_a_file (&startfile_prefixes
, p1
, R_OK
, true);
2185 read_specs (new_filename
, FALSE
);
2186 else if (verbose_flag
)
2187 notice ("could not find specs file %s\n", p1
);
2190 else if (!strncmp (p1
, "%rename", sizeof "%rename" - 1)
2191 && (p1
[sizeof "%rename" - 1] == ' '
2192 || p1
[sizeof "%rename" - 1] == '\t'))
2195 struct spec_list
*sl
;
2196 struct spec_list
*newsl
;
2198 /* Get original name. */
2199 p1
+= sizeof "%rename";
2200 while (*p1
== ' ' || *p1
== '\t')
2203 if (! ISALPHA ((unsigned char) *p1
))
2204 fatal ("specs %%rename syntax malformed after %ld characters",
2205 (long) (p1
- buffer
));
2208 while (*p2
&& !ISSPACE ((unsigned char) *p2
))
2211 if (*p2
!= ' ' && *p2
!= '\t')
2212 fatal ("specs %%rename syntax malformed after %ld characters",
2213 (long) (p2
- buffer
));
2217 while (*p2
== ' ' || *p2
== '\t')
2220 if (! ISALPHA ((unsigned char) *p2
))
2221 fatal ("specs %%rename syntax malformed after %ld characters",
2222 (long) (p2
- buffer
));
2224 /* Get new spec name. */
2226 while (*p3
&& !ISSPACE ((unsigned char) *p3
))
2230 fatal ("specs %%rename syntax malformed after %ld characters",
2231 (long) (p3
- buffer
));
2234 for (sl
= specs
; sl
; sl
= sl
->next
)
2235 if (name_len
== sl
->name_len
&& !strcmp (sl
->name
, p1
))
2239 fatal ("specs %s spec was not found to be renamed", p1
);
2241 if (strcmp (p1
, p2
) == 0)
2244 for (newsl
= specs
; newsl
; newsl
= newsl
->next
)
2245 if (strcmp (newsl
->name
, p2
) == 0)
2246 fatal ("%s: attempt to rename spec '%s' to already defined spec '%s'",
2251 notice ("rename spec %s to %s\n", p1
, p2
);
2253 notice ("spec is '%s'\n\n", *(sl
->ptr_spec
));
2257 set_spec (p2
, *(sl
->ptr_spec
));
2259 free (CONST_CAST (char *, *(sl
->ptr_spec
)));
2261 *(sl
->ptr_spec
) = "";
2266 fatal ("specs unknown %% command after %ld characters",
2267 (long) (p1
- buffer
));
2270 /* Find the colon that should end the suffix. */
2272 while (*p1
&& *p1
!= ':' && *p1
!= '\n')
2275 /* The colon shouldn't be missing. */
2277 fatal ("specs file malformed after %ld characters",
2278 (long) (p1
- buffer
));
2280 /* Skip back over trailing whitespace. */
2282 while (p2
> buffer
&& (p2
[-1] == ' ' || p2
[-1] == '\t'))
2285 /* Copy the suffix to a string. */
2286 suffix
= save_string (p
, p2
- p
);
2287 /* Find the next line. */
2288 p
= skip_whitespace (p1
+ 1);
2290 fatal ("specs file malformed after %ld characters",
2291 (long) (p
- buffer
));
2294 /* Find next blank line or end of string. */
2295 while (*p1
&& !(*p1
== '\n' && (p1
[1] == '\n' || p1
[1] == '\0')))
2298 /* Specs end at the blank line and do not include the newline. */
2299 spec
= save_string (p
, p1
- p
);
2302 /* Delete backslash-newline sequences from the spec. */
2307 if (in
[0] == '\\' && in
[1] == '\n')
2309 else if (in
[0] == '#')
2310 while (*in
&& *in
!= '\n')
2318 if (suffix
[0] == '*')
2320 if (! strcmp (suffix
, "*link_command"))
2321 link_command_spec
= spec
;
2323 set_spec (suffix
+ 1, spec
);
2327 /* Add this pair to the vector. */
2329 = XRESIZEVEC (struct compiler
, compilers
, n_compilers
+ 2);
2331 compilers
[n_compilers
].suffix
= suffix
;
2332 compilers
[n_compilers
].spec
= spec
;
2334 memset (&compilers
[n_compilers
], 0, sizeof compilers
[n_compilers
]);
2338 link_command_spec
= spec
;
2341 if (link_command_spec
== 0)
2342 fatal ("spec file has no spec for linking");
2345 /* Record the names of temporary files we tell compilers to write,
2346 and delete them at the end of the run. */
2348 /* This is the common prefix we use to make temp file names.
2349 It is chosen once for each run of this program.
2350 It is substituted into a spec by %g or %j.
2351 Thus, all temp file names contain this prefix.
2352 In practice, all temp file names start with this prefix.
2354 This prefix comes from the envvar TMPDIR if it is defined;
2355 otherwise, from the P_tmpdir macro if that is defined;
2356 otherwise, in /usr/tmp or /tmp;
2357 or finally the current directory if all else fails. */
2359 static const char *temp_filename
;
2361 /* Length of the prefix. */
2363 static int temp_filename_length
;
2365 /* Define the list of temporary files to delete. */
2370 struct temp_file
*next
;
2373 /* Queue of files to delete on success or failure of compilation. */
2374 static struct temp_file
*always_delete_queue
;
2375 /* Queue of files to delete on failure of compilation. */
2376 static struct temp_file
*failure_delete_queue
;
2378 /* Record FILENAME as a file to be deleted automatically.
2379 ALWAYS_DELETE nonzero means delete it if all compilation succeeds;
2380 otherwise delete it in any case.
2381 FAIL_DELETE nonzero means delete it if a compilation step fails;
2382 otherwise delete it in any case. */
2385 record_temp_file (const char *filename
, int always_delete
, int fail_delete
)
2387 char *const name
= xstrdup (filename
);
2391 struct temp_file
*temp
;
2392 for (temp
= always_delete_queue
; temp
; temp
= temp
->next
)
2393 if (! strcmp (name
, temp
->name
))
2396 temp
= XNEW (struct temp_file
);
2397 temp
->next
= always_delete_queue
;
2399 always_delete_queue
= temp
;
2406 struct temp_file
*temp
;
2407 for (temp
= failure_delete_queue
; temp
; temp
= temp
->next
)
2408 if (! strcmp (name
, temp
->name
))
2411 temp
= XNEW (struct temp_file
);
2412 temp
->next
= failure_delete_queue
;
2414 failure_delete_queue
= temp
;
2420 /* Delete all the temporary files whose names we previously recorded. */
2422 #ifndef DELETE_IF_ORDINARY
2423 #define DELETE_IF_ORDINARY(NAME,ST,VERBOSE_FLAG) \
2426 if (stat (NAME, &ST) >= 0 && S_ISREG (ST.st_mode)) \
2427 if (unlink (NAME) < 0) \
2429 perror_with_name (NAME); \
2434 delete_if_ordinary (const char *name
)
2440 printf ("Delete %s? (y or n) ", name
);
2444 while ((c
= getchar ()) != '\n' && c
!= EOF
)
2447 if (i
== 'y' || i
== 'Y')
2449 DELETE_IF_ORDINARY (name
, st
, verbose_flag
);
2453 delete_temp_files (void)
2455 struct temp_file
*temp
;
2457 for (temp
= always_delete_queue
; temp
; temp
= temp
->next
)
2458 delete_if_ordinary (temp
->name
);
2459 always_delete_queue
= 0;
2462 /* Delete all the files to be deleted on error. */
2465 delete_failure_queue (void)
2467 struct temp_file
*temp
;
2469 for (temp
= failure_delete_queue
; temp
; temp
= temp
->next
)
2470 delete_if_ordinary (temp
->name
);
2474 clear_failure_queue (void)
2476 failure_delete_queue
= 0;
2479 /* Call CALLBACK for each path in PATHS, breaking out early if CALLBACK
2481 If DO_MULTI is true iterate over the paths twice, first with multilib
2482 suffix then without, otherwise iterate over the paths once without
2483 adding a multilib suffix. When DO_MULTI is true, some attempt is made
2484 to avoid visiting the same path twice, but we could do better. For
2485 instance, /usr/lib/../lib is considered different from /usr/lib.
2486 At least EXTRA_SPACE chars past the end of the path passed to
2487 CALLBACK are available for use by the callback.
2488 CALLBACK_INFO allows extra parameters to be passed to CALLBACK.
2490 Returns the value returned by CALLBACK. */
2493 for_each_path (const struct path_prefix
*paths
,
2496 void *(*callback
) (char *, void *),
2497 void *callback_info
)
2499 struct prefix_list
*pl
;
2500 const char *multi_dir
= NULL
;
2501 const char *multi_os_dir
= NULL
;
2502 const char *multi_suffix
;
2503 const char *just_multi_suffix
;
2506 bool skip_multi_dir
= false;
2507 bool skip_multi_os_dir
= false;
2509 multi_suffix
= machine_suffix
;
2510 just_multi_suffix
= just_machine_suffix
;
2511 if (do_multi
&& multilib_dir
&& strcmp (multilib_dir
, ".") != 0)
2513 multi_dir
= concat (multilib_dir
, dir_separator_str
, NULL
);
2514 multi_suffix
= concat (multi_suffix
, multi_dir
, NULL
);
2515 just_multi_suffix
= concat (just_multi_suffix
, multi_dir
, NULL
);
2517 if (do_multi
&& multilib_os_dir
&& strcmp (multilib_os_dir
, ".") != 0)
2518 multi_os_dir
= concat (multilib_os_dir
, dir_separator_str
, NULL
);
2522 size_t multi_dir_len
= 0;
2523 size_t multi_os_dir_len
= 0;
2525 size_t just_suffix_len
;
2529 multi_dir_len
= strlen (multi_dir
);
2531 multi_os_dir_len
= strlen (multi_os_dir
);
2532 suffix_len
= strlen (multi_suffix
);
2533 just_suffix_len
= strlen (just_multi_suffix
);
2537 len
= paths
->max_len
+ extra_space
+ 1;
2538 if (suffix_len
> multi_os_dir_len
)
2541 len
+= multi_os_dir_len
;
2542 path
= XNEWVEC (char, len
);
2545 for (pl
= paths
->plist
; pl
!= 0; pl
= pl
->next
)
2547 len
= strlen (pl
->prefix
);
2548 memcpy (path
, pl
->prefix
, len
);
2550 /* Look first in MACHINE/VERSION subdirectory. */
2551 if (!skip_multi_dir
)
2553 memcpy (path
+ len
, multi_suffix
, suffix_len
+ 1);
2554 ret
= callback (path
, callback_info
);
2559 /* Some paths are tried with just the machine (ie. target)
2560 subdir. This is used for finding as, ld, etc. */
2562 && pl
->require_machine_suffix
== 2)
2564 memcpy (path
+ len
, just_multi_suffix
, just_suffix_len
+ 1);
2565 ret
= callback (path
, callback_info
);
2570 /* Now try the base path. */
2571 if (!pl
->require_machine_suffix
2572 && !(pl
->os_multilib
? skip_multi_os_dir
: skip_multi_dir
))
2574 const char *this_multi
;
2575 size_t this_multi_len
;
2577 if (pl
->os_multilib
)
2579 this_multi
= multi_os_dir
;
2580 this_multi_len
= multi_os_dir_len
;
2584 this_multi
= multi_dir
;
2585 this_multi_len
= multi_dir_len
;
2589 memcpy (path
+ len
, this_multi
, this_multi_len
+ 1);
2593 ret
= callback (path
, callback_info
);
2601 if (multi_dir
== NULL
&& multi_os_dir
== NULL
)
2604 /* Run through the paths again, this time without multilibs.
2605 Don't repeat any we have already seen. */
2608 free (CONST_CAST (char *, multi_dir
));
2610 free (CONST_CAST (char *, multi_suffix
));
2611 multi_suffix
= machine_suffix
;
2612 free (CONST_CAST (char *, just_multi_suffix
));
2613 just_multi_suffix
= just_machine_suffix
;
2616 skip_multi_dir
= true;
2619 free (CONST_CAST (char *, multi_os_dir
));
2620 multi_os_dir
= NULL
;
2623 skip_multi_os_dir
= true;
2628 free (CONST_CAST (char *, multi_dir
));
2629 free (CONST_CAST (char *, multi_suffix
));
2630 free (CONST_CAST (char *, just_multi_suffix
));
2633 free (CONST_CAST (char *, multi_os_dir
));
2639 /* Callback for build_search_list. Adds path to obstack being built. */
2641 struct add_to_obstack_info
{
2648 add_to_obstack (char *path
, void *data
)
2650 struct add_to_obstack_info
*info
= (struct add_to_obstack_info
*) data
;
2652 if (info
->check_dir
&& !is_directory (path
, false))
2655 if (!info
->first_time
)
2656 obstack_1grow (info
->ob
, PATH_SEPARATOR
);
2658 obstack_grow (info
->ob
, path
, strlen (path
));
2660 info
->first_time
= false;
2664 /* Add or change the value of an environment variable, outputting the
2665 change to standard error if in verbose mode. */
2667 xputenv (const char *string
)
2670 notice ("%s\n", string
);
2671 putenv (CONST_CAST (char *, string
));
2674 /* Build a list of search directories from PATHS.
2675 PREFIX is a string to prepend to the list.
2676 If CHECK_DIR_P is true we ensure the directory exists.
2677 If DO_MULTI is true, multilib paths are output first, then
2679 This is used mostly by putenv_from_prefixes so we use `collect_obstack'.
2680 It is also used by the --print-search-dirs flag. */
2683 build_search_list (const struct path_prefix
*paths
, const char *prefix
,
2684 bool check_dir
, bool do_multi
)
2686 struct add_to_obstack_info info
;
2688 info
.ob
= &collect_obstack
;
2689 info
.check_dir
= check_dir
;
2690 info
.first_time
= true;
2692 obstack_grow (&collect_obstack
, prefix
, strlen (prefix
));
2693 obstack_1grow (&collect_obstack
, '=');
2695 for_each_path (paths
, do_multi
, 0, add_to_obstack
, &info
);
2697 obstack_1grow (&collect_obstack
, '\0');
2698 return XOBFINISH (&collect_obstack
, char *);
2701 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
2705 putenv_from_prefixes (const struct path_prefix
*paths
, const char *env_var
,
2708 xputenv (build_search_list (paths
, env_var
, true, do_multi
));
2711 /* Check whether NAME can be accessed in MODE. This is like access,
2712 except that it never considers directories to be executable. */
2715 access_check (const char *name
, int mode
)
2721 if (stat (name
, &st
) < 0
2722 || S_ISDIR (st
.st_mode
))
2726 return access (name
, mode
);
2729 /* Callback for find_a_file. Appends the file name to the directory
2730 path. If the resulting file exists in the right mode, return the
2731 full pathname to the file. */
2733 struct file_at_path_info
{
2742 file_at_path (char *path
, void *data
)
2744 struct file_at_path_info
*info
= (struct file_at_path_info
*) data
;
2745 size_t len
= strlen (path
);
2747 memcpy (path
+ len
, info
->name
, info
->name_len
);
2748 len
+= info
->name_len
;
2750 /* Some systems have a suffix for executable files.
2751 So try appending that first. */
2752 if (info
->suffix_len
)
2754 memcpy (path
+ len
, info
->suffix
, info
->suffix_len
+ 1);
2755 if (access_check (path
, info
->mode
) == 0)
2760 if (access_check (path
, info
->mode
) == 0)
2766 /* Search for NAME using the prefix list PREFIXES. MODE is passed to
2767 access to check permissions. If DO_MULTI is true, search multilib
2768 paths then non-multilib paths, otherwise do not search multilib paths.
2769 Return 0 if not found, otherwise return its name, allocated with malloc. */
2772 find_a_file (const struct path_prefix
*pprefix
, const char *name
, int mode
,
2775 struct file_at_path_info info
;
2777 #ifdef DEFAULT_ASSEMBLER
2778 if (! strcmp (name
, "as") && access (DEFAULT_ASSEMBLER
, mode
) == 0)
2779 return xstrdup (DEFAULT_ASSEMBLER
);
2782 #ifdef DEFAULT_LINKER
2783 if (! strcmp(name
, "ld") && access (DEFAULT_LINKER
, mode
) == 0)
2784 return xstrdup (DEFAULT_LINKER
);
2787 /* Determine the filename to execute (special case for absolute paths). */
2789 if (IS_ABSOLUTE_PATH (name
))
2791 if (access (name
, mode
) == 0)
2792 return xstrdup (name
);
2798 info
.suffix
= (mode
& X_OK
) != 0 ? HOST_EXECUTABLE_SUFFIX
: "";
2799 info
.name_len
= strlen (info
.name
);
2800 info
.suffix_len
= strlen (info
.suffix
);
2803 return (char*) for_each_path (pprefix
, do_multi
,
2804 info
.name_len
+ info
.suffix_len
,
2805 file_at_path
, &info
);
2808 /* Ranking of prefixes in the sort list. -B prefixes are put before
2811 enum path_prefix_priority
2813 PREFIX_PRIORITY_B_OPT
,
2814 PREFIX_PRIORITY_LAST
2817 /* Add an entry for PREFIX in PLIST. The PLIST is kept in ascending
2818 order according to PRIORITY. Within each PRIORITY, new entries are
2821 If WARN is nonzero, we will warn if no file is found
2822 through this prefix. WARN should point to an int
2823 which will be set to 1 if this entry is used.
2825 COMPONENT is the value to be passed to update_path.
2827 REQUIRE_MACHINE_SUFFIX is 1 if this prefix can't be used without
2828 the complete value of machine_suffix.
2829 2 means try both machine_suffix and just_machine_suffix. */
2832 add_prefix (struct path_prefix
*pprefix
, const char *prefix
,
2833 const char *component
, /* enum prefix_priority */ int priority
,
2834 int require_machine_suffix
, int os_multilib
)
2836 struct prefix_list
*pl
, **prev
;
2839 for (prev
= &pprefix
->plist
;
2840 (*prev
) != NULL
&& (*prev
)->priority
<= priority
;
2841 prev
= &(*prev
)->next
)
2844 /* Keep track of the longest prefix. */
2846 prefix
= update_path (prefix
, component
);
2847 len
= strlen (prefix
);
2848 if (len
> pprefix
->max_len
)
2849 pprefix
->max_len
= len
;
2851 pl
= XNEW (struct prefix_list
);
2852 pl
->prefix
= prefix
;
2853 pl
->require_machine_suffix
= require_machine_suffix
;
2854 pl
->priority
= priority
;
2855 pl
->os_multilib
= os_multilib
;
2857 /* Insert after PREV. */
2862 /* Same as add_prefix, but prepending target_system_root to prefix. */
2863 /* The target_system_root prefix has been relocated by gcc_exec_prefix. */
2865 add_sysrooted_prefix (struct path_prefix
*pprefix
, const char *prefix
,
2866 const char *component
,
2867 /* enum prefix_priority */ int priority
,
2868 int require_machine_suffix
, int os_multilib
)
2870 if (!IS_ABSOLUTE_PATH (prefix
))
2871 fatal ("system path '%s' is not absolute", prefix
);
2873 if (target_system_root
)
2875 if (target_sysroot_suffix
)
2876 prefix
= concat (target_sysroot_suffix
, prefix
, NULL
);
2877 prefix
= concat (target_system_root
, prefix
, NULL
);
2879 /* We have to override this because GCC's notion of sysroot
2880 moves along with GCC. */
2884 add_prefix (pprefix
, prefix
, component
, priority
,
2885 require_machine_suffix
, os_multilib
);
2888 /* Execute the command specified by the arguments on the current line of spec.
2889 When using pipes, this includes several piped-together commands
2890 with `|' between them.
2892 Return 0 if successful, -1 if failed. */
2898 int n_commands
; /* # of command. */
2900 struct pex_obj
*pex
;
2903 const char *prog
; /* program name. */
2904 const char **argv
; /* vector of args. */
2907 struct command
*commands
; /* each command buffer with above info. */
2909 gcc_assert (!processing_spec_function
);
2913 string
= find_a_file (&exec_prefixes
, argbuf
[0], X_OK
, false);
2914 argbuf
[0] = (string
) ? string
: argbuf
[0];
2915 insert_wrapper (wrapper_string
);
2918 /* Count # of piped commands. */
2919 for (n_commands
= 1, i
= 0; i
< argbuf_index
; i
++)
2920 if (strcmp (argbuf
[i
], "|") == 0)
2923 /* Get storage for each command. */
2924 commands
= (struct command
*) alloca (n_commands
* sizeof (struct command
));
2926 /* Split argbuf into its separate piped processes,
2927 and record info about each one.
2928 Also search for the programs that are to be run. */
2930 commands
[0].prog
= argbuf
[0]; /* first command. */
2931 commands
[0].argv
= &argbuf
[0];
2933 if (!wrapper_string
)
2935 string
= find_a_file (&exec_prefixes
, commands
[0].prog
, X_OK
, false);
2936 commands
[0].argv
[0] = (string
) ? string
: commands
[0].argv
[0];
2939 for (n_commands
= 1, i
= 0; i
< argbuf_index
; i
++)
2940 if (strcmp (argbuf
[i
], "|") == 0)
2941 { /* each command. */
2942 #if defined (__MSDOS__) || defined (OS2) || defined (VMS)
2943 fatal ("-pipe not supported");
2945 argbuf
[i
] = 0; /* termination of command args. */
2946 commands
[n_commands
].prog
= argbuf
[i
+ 1];
2947 commands
[n_commands
].argv
= &argbuf
[i
+ 1];
2948 string
= find_a_file (&exec_prefixes
, commands
[n_commands
].prog
,
2951 commands
[n_commands
].argv
[0] = string
;
2955 argbuf
[argbuf_index
] = 0;
2957 /* If -v, print what we are about to do, and maybe query. */
2961 /* For help listings, put a blank line between sub-processes. */
2962 if (print_help_list
)
2963 fputc ('\n', stderr
);
2965 /* Print each piped command as a separate line. */
2966 for (i
= 0; i
< n_commands
; i
++)
2968 const char *const *j
;
2970 if (verbose_only_flag
)
2972 for (j
= commands
[i
].argv
; *j
; j
++)
2975 fprintf (stderr
, " \"");
2976 for (p
= *j
; *p
; ++p
)
2978 if (*p
== '"' || *p
== '\\' || *p
== '$')
2979 fputc ('\\', stderr
);
2982 fputc ('"', stderr
);
2986 for (j
= commands
[i
].argv
; *j
; j
++)
2987 fprintf (stderr
, " %s", *j
);
2989 /* Print a pipe symbol after all but the last command. */
2990 if (i
+ 1 != n_commands
)
2991 fprintf (stderr
, " |");
2992 fprintf (stderr
, "\n");
2995 if (verbose_only_flag
!= 0)
2997 /* verbose_only_flag should act as if the spec was
2998 executed, so increment execution_count before
2999 returning. This prevents spurious warnings about
3000 unused linker input files, etc. */
3005 notice ("\nGo ahead? (y or n) ");
3009 while (getchar () != '\n')
3012 if (i
!= 'y' && i
!= 'Y')
3017 #ifdef ENABLE_VALGRIND_CHECKING
3018 /* Run the each command through valgrind. To simplify prepending the
3019 path to valgrind and the option "-q" (for quiet operation unless
3020 something triggers), we allocate a separate argv array. */
3022 for (i
= 0; i
< n_commands
; i
++)
3028 for (argc
= 0; commands
[i
].argv
[argc
] != NULL
; argc
++)
3031 argv
= XALLOCAVEC (const char *, argc
+ 3);
3033 argv
[0] = VALGRIND_PATH
;
3035 for (j
= 2; j
< argc
+ 2; j
++)
3036 argv
[j
] = commands
[i
].argv
[j
- 2];
3039 commands
[i
].argv
= argv
;
3040 commands
[i
].prog
= argv
[0];
3044 /* Run each piped subprocess. */
3046 pex
= pex_init (PEX_USE_PIPES
| ((report_times
|| report_times_to_file
)
3047 ? PEX_RECORD_TIMES
: 0),
3048 programname
, temp_filename
);
3050 pfatal_with_name (_("pex_init failed"));
3052 for (i
= 0; i
< n_commands
; i
++)
3056 const char *string
= commands
[i
].argv
[0];
3058 errmsg
= pex_run (pex
,
3059 ((i
+ 1 == n_commands
? PEX_LAST
: 0)
3060 | (string
== commands
[i
].prog
? PEX_SEARCH
: 0)),
3061 string
, CONST_CAST (char **, commands
[i
].argv
),
3070 pfatal_with_name (errmsg
);
3074 if (string
!= commands
[i
].prog
)
3075 free (CONST_CAST (char *, string
));
3080 /* Wait for all the subprocesses to finish. */
3084 struct pex_time
*times
= NULL
;
3087 statuses
= (int *) alloca (n_commands
* sizeof (int));
3088 if (!pex_get_status (pex
, n_commands
, statuses
))
3089 pfatal_with_name (_("failed to get exit status"));
3091 if (report_times
|| report_times_to_file
)
3093 times
= (struct pex_time
*) alloca (n_commands
* sizeof (struct pex_time
));
3094 if (!pex_get_times (pex
, n_commands
, times
))
3095 pfatal_with_name (_("failed to get process times"));
3100 for (i
= 0; i
< n_commands
; ++i
)
3102 int status
= statuses
[i
];
3104 if (WIFSIGNALED (status
))
3107 /* SIGPIPE is a special case. It happens in -pipe mode
3108 when the compiler dies before the preprocessor is done,
3109 or the assembler dies before the compiler is done.
3110 There's generally been an error already, and this is
3111 just fallout. So don't generate another error unless
3112 we would otherwise have succeeded. */
3113 if (WTERMSIG (status
) == SIGPIPE
3114 && (signal_count
|| greatest_status
>= MIN_FATAL_STATUS
))
3122 Internal error: %s (program %s)\n\
3123 Please submit a full bug report.\n\
3124 See %s for instructions.",
3125 strsignal (WTERMSIG (status
)), commands
[i
].prog
,
3128 else if (WIFEXITED (status
)
3129 && WEXITSTATUS (status
) >= MIN_FATAL_STATUS
)
3131 if (WEXITSTATUS (status
) > greatest_status
)
3132 greatest_status
= WEXITSTATUS (status
);
3136 if (report_times
|| report_times_to_file
)
3138 struct pex_time
*pt
= ×
[i
];
3141 ut
= ((double) pt
->user_seconds
3142 + (double) pt
->user_microseconds
/ 1.0e6
);
3143 st
= ((double) pt
->system_seconds
3144 + (double) pt
->system_microseconds
/ 1.0e6
);
3149 notice ("# %s %.2f %.2f\n", commands
[i
].prog
, ut
, st
);
3151 if (report_times_to_file
)
3154 const char *const *j
;
3156 fprintf (report_times_to_file
, "%g %g", ut
, st
);
3158 for (j
= &commands
[i
].prog
; *j
; j
= &commands
[i
].argv
[++c
])
3161 for (p
= *j
; *p
; ++p
)
3162 if (*p
== '"' || *p
== '\\' || *p
== '$'
3168 fprintf (report_times_to_file
, " \"");
3169 for (p
= *j
; *p
; ++p
)
3171 if (*p
== '"' || *p
== '\\' || *p
== '$')
3172 fputc ('\\', report_times_to_file
);
3173 fputc (*p
, report_times_to_file
);
3175 fputc ('"', report_times_to_file
);
3178 fprintf (report_times_to_file
, " %s", *j
);
3181 fputc ('\n', report_times_to_file
);
3191 /* Find all the switches given to us
3192 and make a vector describing them.
3193 The elements of the vector are strings, one per switch given.
3194 If a switch uses following arguments, then the `part1' field
3195 is the switch itself and the `args' field
3196 is a null-terminated vector containing the following arguments.
3197 Bits in the `live_cond' field are:
3198 SWITCH_LIVE to indicate this switch is true in a conditional spec.
3199 SWITCH_FALSE to indicate this switch is overridden by a later switch.
3200 SWITCH_IGNORE to indicate this switch should be ignored (used in %<S).
3201 The `validated' field is nonzero if any spec has looked at this switch;
3202 if it remains zero at the end of the run, it must be meaningless. */
3204 #define SWITCH_LIVE 0x1
3205 #define SWITCH_FALSE 0x2
3206 #define SWITCH_IGNORE 0x4
3212 unsigned int live_cond
;
3213 unsigned char validated
;
3214 unsigned char ordering
;
3217 static struct switchstr
*switches
;
3219 static int n_switches
;
3221 /* Set to zero if -fcompare-debug is disabled, positive if it's
3222 enabled and we're running the first compilation, negative if it's
3223 enabled and we're running the second compilation. For most of the
3224 time, it's in the range -1..1, but it can be temporarily set to 2
3225 or 3 to indicate that the -fcompare-debug flags didn't come from
3226 the command-line, but rather from the GCC_COMPARE_DEBUG environment
3227 variable, until a synthesized -fcompare-debug flag is added to the
3231 /* Set to nonzero if we've seen the -fcompare-debug-second flag. */
3232 int compare_debug_second
;
3234 /* Set to the flags that should be passed to the second compilation in
3235 a -fcompare-debug compilation. */
3236 const char *compare_debug_opt
;
3238 static struct switchstr
*switches_debug_check
[2];
3240 static int n_switches_debug_check
[2];
3242 static char *debug_check_temp_file
[2];
3244 /* Language is one of three things:
3246 1) The name of a real programming language.
3247 2) NULL, indicating that no one has figured out
3249 3) '*', indicating that the file should be passed
3254 const char *language
;
3255 struct compiler
*incompiler
;
3260 /* Also a vector of input files specified. */
3262 static struct infile
*infiles
;
3266 /* True if multiple input files are being compiled to a single
3269 static bool combine_inputs
;
3271 /* This counts the number of libraries added by lang_specific_driver, so that
3272 we can tell if there were any user supplied any files or libraries. */
3274 static int added_libraries
;
3276 /* And a vector of corresponding output files is made up later. */
3278 const char **outfiles
;
3280 #if defined(HAVE_TARGET_OBJECT_SUFFIX) || defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
3282 /* Convert NAME to a new name if it is the standard suffix. DO_EXE
3283 is true if we should look for an executable suffix. DO_OBJ
3284 is true if we should look for an object suffix. */
3287 convert_filename (const char *name
, int do_exe ATTRIBUTE_UNUSED
,
3288 int do_obj ATTRIBUTE_UNUSED
)
3290 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
3298 len
= strlen (name
);
3300 #ifdef HAVE_TARGET_OBJECT_SUFFIX
3301 /* Convert x.o to x.obj if TARGET_OBJECT_SUFFIX is ".obj". */
3302 if (do_obj
&& len
> 2
3303 && name
[len
- 2] == '.'
3304 && name
[len
- 1] == 'o')
3306 obstack_grow (&obstack
, name
, len
- 2);
3307 obstack_grow0 (&obstack
, TARGET_OBJECT_SUFFIX
, strlen (TARGET_OBJECT_SUFFIX
));
3308 name
= XOBFINISH (&obstack
, const char *);
3312 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
3313 /* If there is no filetype, make it the executable suffix (which includes
3314 the "."). But don't get confused if we have just "-o". */
3315 if (! do_exe
|| TARGET_EXECUTABLE_SUFFIX
[0] == 0 || (len
== 2 && name
[0] == '-'))
3318 for (i
= len
- 1; i
>= 0; i
--)
3319 if (IS_DIR_SEPARATOR (name
[i
]))
3322 for (i
++; i
< len
; i
++)
3326 obstack_grow (&obstack
, name
, len
);
3327 obstack_grow0 (&obstack
, TARGET_EXECUTABLE_SUFFIX
,
3328 strlen (TARGET_EXECUTABLE_SUFFIX
));
3329 name
= XOBFINISH (&obstack
, const char *);
3336 /* Display the command line switches accepted by gcc. */
3340 printf (_("Usage: %s [options] file...\n"), programname
);
3341 fputs (_("Options:\n"), stdout
);
3343 fputs (_(" -pass-exit-codes Exit with highest error code from a phase\n"), stdout
);
3344 fputs (_(" --help Display this information\n"), stdout
);
3345 fputs (_(" --target-help Display target specific command line options\n"), stdout
);
3346 fputs (_(" --help={target|optimizers|warnings|params|[^]{joined|separate|undocumented}}[,...]\n"), stdout
);
3347 fputs (_(" Display specific types of command line options\n"), stdout
);
3349 fputs (_(" (Use '-v --help' to display command line options of sub-processes)\n"), stdout
);
3350 fputs (_(" --version Display compiler version information\n"), stdout
);
3351 fputs (_(" -dumpspecs Display all of the built in spec strings\n"), stdout
);
3352 fputs (_(" -dumpversion Display the version of the compiler\n"), stdout
);
3353 fputs (_(" -dumpmachine Display the compiler's target processor\n"), stdout
);
3354 fputs (_(" -print-search-dirs Display the directories in the compiler's search path\n"), stdout
);
3355 fputs (_(" -print-libgcc-file-name Display the name of the compiler's companion library\n"), stdout
);
3356 fputs (_(" -print-file-name=<lib> Display the full path to library <lib>\n"), stdout
);
3357 fputs (_(" -print-prog-name=<prog> Display the full path to compiler component <prog>\n"), stdout
);
3358 fputs (_(" -print-multi-directory Display the root directory for versions of libgcc\n"), stdout
);
3360 -print-multi-lib Display the mapping between command line options and\n\
3361 multiple library search directories\n"), stdout
);
3362 fputs (_(" -print-multi-os-directory Display the relative path to OS libraries\n"), stdout
);
3363 fputs (_(" -print-sysroot Display the target libraries directory\n"), stdout
);
3364 fputs (_(" -print-sysroot-headers-suffix Display the sysroot suffix used to find headers\n"), stdout
);
3365 fputs (_(" -Wa,<options> Pass comma-separated <options> on to the assembler\n"), stdout
);
3366 fputs (_(" -Wp,<options> Pass comma-separated <options> on to the preprocessor\n"), stdout
);
3367 fputs (_(" -Wl,<options> Pass comma-separated <options> on to the linker\n"), stdout
);
3368 fputs (_(" -Xassembler <arg> Pass <arg> on to the assembler\n"), stdout
);
3369 fputs (_(" -Xpreprocessor <arg> Pass <arg> on to the preprocessor\n"), stdout
);
3370 fputs (_(" -Xlinker <arg> Pass <arg> on to the linker\n"), stdout
);
3371 fputs (_(" -combine Pass multiple source files to compiler at once\n"), stdout
);
3372 fputs (_(" -save-temps Do not delete intermediate files\n"), stdout
);
3373 fputs (_(" -save-temps=<arg> Do not delete intermediate files\n"), stdout
);
3375 -no-canonical-prefixes Do not canonicalize paths when building relative\n\
3376 prefixes to other gcc components\n"), stdout
);
3377 fputs (_(" -pipe Use pipes rather than intermediate files\n"), stdout
);
3378 fputs (_(" -time Time the execution of each subprocess\n"), stdout
);
3379 fputs (_(" -specs=<file> Override built-in specs with the contents of <file>\n"), stdout
);
3380 fputs (_(" -std=<standard> Assume that the input sources are for <standard>\n"), stdout
);
3382 --sysroot=<directory> Use <directory> as the root directory for headers\n\
3383 and libraries\n"), stdout
);
3384 fputs (_(" -B <directory> Add <directory> to the compiler's search paths\n"), stdout
);
3385 fputs (_(" -b <machine> Run gcc for target <machine>, if installed\n"), stdout
);
3386 fputs (_(" -V <version> Run gcc version number <version>, if installed\n"), stdout
);
3387 fputs (_(" -v Display the programs invoked by the compiler\n"), stdout
);
3388 fputs (_(" -### Like -v but options quoted and commands not executed\n"), stdout
);
3389 fputs (_(" -E Preprocess only; do not compile, assemble or link\n"), stdout
);
3390 fputs (_(" -S Compile only; do not assemble or link\n"), stdout
);
3391 fputs (_(" -c Compile and assemble, but do not link\n"), stdout
);
3392 fputs (_(" -o <file> Place the output into <file>\n"), stdout
);
3394 -x <language> Specify the language of the following input files\n\
3395 Permissible languages include: c c++ assembler none\n\
3396 'none' means revert to the default behavior of\n\
3397 guessing the language based on the file's extension\n\
3401 \nOptions starting with -g, -f, -m, -O, -W, or --param are automatically\n\
3402 passed on to the various sub-processes invoked by %s. In order to pass\n\
3403 other options on to these processes the -W<letter> options must be used.\n\
3406 /* The rest of the options are displayed by invocations of the various
3411 add_preprocessor_option (const char *option
, int len
)
3413 n_preprocessor_options
++;
3415 if (! preprocessor_options
)
3416 preprocessor_options
= XNEWVEC (char *, n_preprocessor_options
);
3418 preprocessor_options
= XRESIZEVEC (char *, preprocessor_options
,
3419 n_preprocessor_options
);
3421 preprocessor_options
[n_preprocessor_options
- 1] =
3422 save_string (option
, len
);
3426 add_assembler_option (const char *option
, int len
)
3428 n_assembler_options
++;
3430 if (! assembler_options
)
3431 assembler_options
= XNEWVEC (char *, n_assembler_options
);
3433 assembler_options
= XRESIZEVEC (char *, assembler_options
,
3434 n_assembler_options
);
3436 assembler_options
[n_assembler_options
- 1] = save_string (option
, len
);
3440 add_linker_option (const char *option
, int len
)
3444 if (! linker_options
)
3445 linker_options
= XNEWVEC (char *, n_linker_options
);
3447 linker_options
= XRESIZEVEC (char *, linker_options
, n_linker_options
);
3449 linker_options
[n_linker_options
- 1] = save_string (option
, len
);
3452 /* Create the vector `switches' and its contents.
3453 Store its length in `n_switches'. */
3456 process_command (int argc
, const char **argv
)
3461 const char *spec_lang
= 0;
3462 int last_language_n_infiles
;
3463 int lang_n_infiles
= 0;
3464 #ifdef MODIFY_TARGET_NAME
3465 int is_modify_target_name
;
3468 const char *tooldir_prefix
;
3469 char *(*get_relative_prefix
) (const char *, const char *,
3470 const char *) = NULL
;
3472 GET_ENVIRONMENT (gcc_exec_prefix
, "GCC_EXEC_PREFIX");
3476 added_libraries
= 0;
3478 /* Figure compiler version from version string. */
3480 compiler_version
= temp1
= xstrdup (version_string
);
3482 for (; *temp1
; ++temp1
)
3491 /* If there is a -V or -b option (or both), process it now, before
3492 trying to interpret the rest of the command line.
3493 Use heuristic that all configuration names must have at least
3494 one dash '-'. This allows us to pass options starting with -b. */
3495 if (argc
> 1 && argv
[1][0] == '-'
3496 && (argv
[1][1] == 'V'
3497 || (argv
[1][1] == 'b'
3498 && (argv
[1][2] == '\0'
3499 || NULL
!= strchr (argv
[1] + 2, '-')))))
3501 const char *new_version
= DEFAULT_TARGET_VERSION
;
3502 const char *new_machine
= DEFAULT_TARGET_MACHINE
;
3503 const char *progname
= argv
[0];
3511 while (argc
> 1 && argv
[1][0] == '-'
3512 && (argv
[1][1] == 'V'
3513 || (argv
[1][1] == 'b'
3514 && (argv
[1][2] == '\0'
3515 || NULL
!= strchr (argv
[1] + 2, '-')))))
3517 char opt
= argv
[1][1];
3519 if (argv
[1][2] != '\0')
3532 fatal ("'-%c' option must have argument", opt
);
3539 for (baselen
= strlen (progname
); baselen
> 0; baselen
--)
3540 if (IS_DIR_SEPARATOR (progname
[baselen
-1]))
3542 new_argv0
= XDUPVAR (char, progname
, baselen
,
3543 baselen
+ concat_length (new_version
, new_machine
,
3544 "-gcc-", NULL
) + 1);
3545 strcpy (new_argv0
+ baselen
, new_machine
);
3546 strcat (new_argv0
, "-gcc-");
3547 strcat (new_argv0
, new_version
);
3549 new_argv
= XDUPVEC (char *, argv
, argc
+ 1);
3550 new_argv
[0] = new_argv0
;
3552 errmsg
= pex_one (PEX_SEARCH
, new_argv0
, new_argv
, progname
, NULL
,
3553 NULL
, &status
, &err
);
3558 fatal ("couldn't run '%s': %s", new_argv0
, errmsg
);
3560 fatal ("couldn't run '%s': %s: %s", new_argv0
, errmsg
,
3566 /* Convert new-style -- options to old-style. */
3567 translate_options (&argc
,
3568 CONST_CAST2 (const char *const **, const char ***,
3571 /* Do language-specific adjustment/addition of flags. */
3572 lang_specific_driver (&argc
,
3573 CONST_CAST2 (const char *const **, const char ***,
3577 /* Handle any -no-canonical-prefixes flag early, to assign the function
3578 that builds relative prefixes. This function creates default search
3579 paths that are needed later in normal option handling. */
3581 for (i
= 1; i
< argc
; i
++)
3583 if (! strcmp (argv
[i
], "-no-canonical-prefixes"))
3585 get_relative_prefix
= make_relative_prefix_ignore_links
;
3589 if (! get_relative_prefix
)
3590 get_relative_prefix
= make_relative_prefix
;
3592 /* Set up the default search paths. If there is no GCC_EXEC_PREFIX,
3593 see if we can create it from the pathname specified in argv[0]. */
3595 gcc_libexec_prefix
= standard_libexec_prefix
;
3597 /* FIXME: make_relative_prefix doesn't yet work for VMS. */
3598 if (!gcc_exec_prefix
)
3600 gcc_exec_prefix
= get_relative_prefix (argv
[0],
3601 standard_bindir_prefix
,
3602 standard_exec_prefix
);
3603 gcc_libexec_prefix
= get_relative_prefix (argv
[0],
3604 standard_bindir_prefix
,
3605 standard_libexec_prefix
);
3606 if (gcc_exec_prefix
)
3607 xputenv (concat ("GCC_EXEC_PREFIX=", gcc_exec_prefix
, NULL
));
3611 /* make_relative_prefix requires a program name, but
3612 GCC_EXEC_PREFIX is typically a directory name with a trailing
3613 / (which is ignored by make_relative_prefix), so append a
3615 char *tmp_prefix
= concat (gcc_exec_prefix
, "gcc", NULL
);
3616 gcc_libexec_prefix
= get_relative_prefix (tmp_prefix
,
3617 standard_exec_prefix
,
3618 standard_libexec_prefix
);
3620 /* The path is unrelocated, so fallback to the original setting. */
3621 if (!gcc_libexec_prefix
)
3622 gcc_libexec_prefix
= standard_libexec_prefix
;
3628 /* From this point onward, gcc_exec_prefix is non-null if the toolchain
3629 is relocated. The toolchain was either relocated using GCC_EXEC_PREFIX
3630 or an automatically created GCC_EXEC_PREFIX from argv[0]. */
3632 if (gcc_exec_prefix
)
3634 int len
= strlen (gcc_exec_prefix
);
3636 if (len
> (int) sizeof ("/lib/gcc/") - 1
3637 && (IS_DIR_SEPARATOR (gcc_exec_prefix
[len
-1])))
3639 temp
= gcc_exec_prefix
+ len
- sizeof ("/lib/gcc/") + 1;
3640 if (IS_DIR_SEPARATOR (*temp
)
3641 && strncmp (temp
+ 1, "lib", 3) == 0
3642 && IS_DIR_SEPARATOR (temp
[4])
3643 && strncmp (temp
+ 5, "gcc", 3) == 0)
3644 len
-= sizeof ("/lib/gcc/") - 1;
3647 set_std_prefix (gcc_exec_prefix
, len
);
3648 add_prefix (&exec_prefixes
, gcc_libexec_prefix
, "GCC",
3649 PREFIX_PRIORITY_LAST
, 0, 0);
3650 add_prefix (&startfile_prefixes
, gcc_exec_prefix
, "GCC",
3651 PREFIX_PRIORITY_LAST
, 0, 0);
3654 /* COMPILER_PATH and LIBRARY_PATH have values
3655 that are lists of directory names with colons. */
3657 GET_ENVIRONMENT (temp
, "COMPILER_PATH");
3660 const char *startp
, *endp
;
3661 char *nstore
= (char *) alloca (strlen (temp
) + 3);
3663 startp
= endp
= temp
;
3666 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
3668 strncpy (nstore
, startp
, endp
- startp
);
3670 strcpy (nstore
, concat (".", dir_separator_str
, NULL
));
3671 else if (!IS_DIR_SEPARATOR (endp
[-1]))
3673 nstore
[endp
- startp
] = DIR_SEPARATOR
;
3674 nstore
[endp
- startp
+ 1] = 0;
3677 nstore
[endp
- startp
] = 0;
3678 add_prefix (&exec_prefixes
, nstore
, 0,
3679 PREFIX_PRIORITY_LAST
, 0, 0);
3680 add_prefix (&include_prefixes
, nstore
, 0,
3681 PREFIX_PRIORITY_LAST
, 0, 0);
3684 endp
= startp
= endp
+ 1;
3691 GET_ENVIRONMENT (temp
, LIBRARY_PATH_ENV
);
3692 if (temp
&& *cross_compile
== '0')
3694 const char *startp
, *endp
;
3695 char *nstore
= (char *) alloca (strlen (temp
) + 3);
3697 startp
= endp
= temp
;
3700 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
3702 strncpy (nstore
, startp
, endp
- startp
);
3704 strcpy (nstore
, concat (".", dir_separator_str
, NULL
));
3705 else if (!IS_DIR_SEPARATOR (endp
[-1]))
3707 nstore
[endp
- startp
] = DIR_SEPARATOR
;
3708 nstore
[endp
- startp
+ 1] = 0;
3711 nstore
[endp
- startp
] = 0;
3712 add_prefix (&startfile_prefixes
, nstore
, NULL
,
3713 PREFIX_PRIORITY_LAST
, 0, 1);
3716 endp
= startp
= endp
+ 1;
3723 /* Use LPATH like LIBRARY_PATH (for the CMU build program). */
3724 GET_ENVIRONMENT (temp
, "LPATH");
3725 if (temp
&& *cross_compile
== '0')
3727 const char *startp
, *endp
;
3728 char *nstore
= (char *) alloca (strlen (temp
) + 3);
3730 startp
= endp
= temp
;
3733 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
3735 strncpy (nstore
, startp
, endp
- startp
);
3737 strcpy (nstore
, concat (".", dir_separator_str
, NULL
));
3738 else if (!IS_DIR_SEPARATOR (endp
[-1]))
3740 nstore
[endp
- startp
] = DIR_SEPARATOR
;
3741 nstore
[endp
- startp
+ 1] = 0;
3744 nstore
[endp
- startp
] = 0;
3745 add_prefix (&startfile_prefixes
, nstore
, NULL
,
3746 PREFIX_PRIORITY_LAST
, 0, 1);
3749 endp
= startp
= endp
+ 1;
3756 /* Scan argv twice. Here, the first time, just count how many switches
3757 there will be in their vector, and how many input files in theirs.
3758 Here we also parse the switches that cc itself uses (e.g. -v). */
3760 for (i
= 1; i
< argc
; i
++)
3762 if (! strcmp (argv
[i
], "-dumpspecs"))
3764 struct spec_list
*sl
;
3766 for (sl
= specs
; sl
; sl
= sl
->next
)
3767 printf ("*%s:\n%s\n\n", sl
->name
, *(sl
->ptr_spec
));
3768 if (link_command_spec
)
3769 printf ("*link_command:\n%s\n\n", link_command_spec
);
3772 else if (! strcmp (argv
[i
], "-dumpversion"))
3774 printf ("%s\n", spec_version
);
3777 else if (! strcmp (argv
[i
], "-dumpmachine"))
3779 printf ("%s\n", spec_machine
);
3782 else if (strcmp (argv
[i
], "-fversion") == 0)
3784 /* translate_options () has turned --version into -fversion. */
3787 /* We will be passing a dummy file on to the sub-processes. */
3791 /* CPP driver cannot obtain switch from cc1_options. */
3793 add_preprocessor_option ("--version", strlen ("--version"));
3794 add_assembler_option ("--version", strlen ("--version"));
3795 add_linker_option ("--version", strlen ("--version"));
3797 else if (strcmp (argv
[i
], "-fhelp") == 0)
3799 /* translate_options () has turned --help into -fhelp. */
3800 print_help_list
= 1;
3802 /* We will be passing a dummy file on to the sub-processes. */
3806 /* CPP driver cannot obtain switch from cc1_options. */
3808 add_preprocessor_option ("--help", 6);
3809 add_assembler_option ("--help", 6);
3810 add_linker_option ("--help", 6);
3812 else if (strncmp (argv
[i
], "-fhelp=", 7) == 0)
3814 /* translate_options () has turned --help into -fhelp. */
3815 print_subprocess_help
= 2;
3817 /* We will be passing a dummy file on to the sub-processes. */
3821 else if (strcmp (argv
[i
], "-ftarget-help") == 0)
3823 /* translate_options() has turned --target-help into -ftarget-help. */
3824 print_subprocess_help
= 1;
3826 /* We will be passing a dummy file on to the sub-processes. */
3830 /* CPP driver cannot obtain switch from cc1_options. */
3832 add_preprocessor_option ("--target-help", 13);
3833 add_assembler_option ("--target-help", 13);
3834 add_linker_option ("--target-help", 13);
3836 else if (! strcmp (argv
[i
], "-pass-exit-codes"))
3838 pass_exit_codes
= 1;
3841 else if (! strcmp (argv
[i
], "-print-search-dirs"))
3842 print_search_dirs
= 1;
3843 else if (! strcmp (argv
[i
], "-print-libgcc-file-name"))
3844 print_file_name
= "libgcc.a";
3845 else if (! strncmp (argv
[i
], "-print-file-name=", 17))
3846 print_file_name
= argv
[i
] + 17;
3847 else if (! strncmp (argv
[i
], "-print-prog-name=", 17))
3848 print_prog_name
= argv
[i
] + 17;
3849 else if (! strcmp (argv
[i
], "-print-multi-lib"))
3850 print_multi_lib
= 1;
3851 else if (! strcmp (argv
[i
], "-print-multi-directory"))
3852 print_multi_directory
= 1;
3853 else if (! strcmp (argv
[i
], "-print-sysroot"))
3855 else if (! strcmp (argv
[i
], "-print-multi-os-directory"))
3856 print_multi_os_directory
= 1;
3857 else if (! strcmp (argv
[i
], "-print-sysroot-headers-suffix"))
3858 print_sysroot_headers_suffix
= 1;
3859 else if (! strcmp (argv
[i
], "-fcompare-debug-second"))
3861 compare_debug_second
= 1;
3864 else if (! strcmp (argv
[i
], "-fno-compare-debug"))
3866 argv
[i
] = "-fcompare-debug=";
3867 goto compare_debug_with_arg
;
3869 else if (! strcmp (argv
[i
], "-fcompare-debug"))
3871 argv
[i
] = "-fcompare-debug=-gtoggle";
3872 goto compare_debug_with_arg
;
3874 #define OPT "-fcompare-debug="
3875 else if (! strncmp (argv
[i
], OPT
, sizeof (OPT
) - 1))
3878 compare_debug_with_arg
:
3879 opt
= argv
[i
] + sizeof (OPT
) - 1;
3885 if (compare_debug
< 0)
3886 compare_debug_opt
= NULL
;
3888 compare_debug_opt
= opt
;
3891 else if (! strncmp (argv
[i
], "-Wa,", 4))
3894 /* Pass the rest of this option to the assembler. */
3896 /* Split the argument at commas. */
3898 for (j
= 4; argv
[i
][j
]; j
++)
3899 if (argv
[i
][j
] == ',')
3901 add_assembler_option (argv
[i
] + prev
, j
- prev
);
3905 /* Record the part after the last comma. */
3906 add_assembler_option (argv
[i
] + prev
, j
- prev
);
3908 else if (! strncmp (argv
[i
], "-Wp,", 4))
3911 /* Pass the rest of this option to the preprocessor. */
3913 /* Split the argument at commas. */
3915 for (j
= 4; argv
[i
][j
]; j
++)
3916 if (argv
[i
][j
] == ',')
3918 add_preprocessor_option (argv
[i
] + prev
, j
- prev
);
3922 /* Record the part after the last comma. */
3923 add_preprocessor_option (argv
[i
] + prev
, j
- prev
);
3925 else if (argv
[i
][0] == '+' && argv
[i
][1] == 'e')
3926 /* The +e options to the C++ front-end. */
3928 else if (strncmp (argv
[i
], "-Wl,", 4) == 0)
3931 /* Split the argument at commas. */
3932 for (j
= 3; argv
[i
][j
]; j
++)
3933 n_infiles
+= (argv
[i
][j
] == ',');
3935 else if (strcmp (argv
[i
], "-Xlinker") == 0)
3938 fatal ("argument to '-Xlinker' is missing");
3943 else if (strcmp (argv
[i
], "-Xpreprocessor") == 0)
3946 fatal ("argument to '-Xpreprocessor' is missing");
3948 add_preprocessor_option (argv
[i
+1], strlen (argv
[i
+1]));
3950 else if (strcmp (argv
[i
], "-Xassembler") == 0)
3953 fatal ("argument to '-Xassembler' is missing");
3955 add_assembler_option (argv
[i
+1], strlen (argv
[i
+1]));
3957 else if (strcmp (argv
[i
], "-l") == 0)
3960 fatal ("argument to '-l' is missing");
3965 else if (strncmp (argv
[i
], "-l", 2) == 0)
3967 else if (strcmp (argv
[i
], "-save-temps") == 0)
3969 save_temps_flag
= SAVE_TEMPS_CWD
;
3972 else if (strncmp (argv
[i
], "-save-temps=", 12) == 0)
3975 if (strcmp (argv
[i
]+12, "cwd") == 0)
3976 save_temps_flag
= SAVE_TEMPS_CWD
;
3977 else if (strcmp (argv
[i
]+12, "obj") == 0
3978 || strcmp (argv
[i
]+12, "object") == 0)
3979 save_temps_flag
= SAVE_TEMPS_OBJ
;
3981 fatal ("'%s' is an unknown -save-temps option", argv
[i
]);
3983 else if (strcmp (argv
[i
], "-no-canonical-prefixes") == 0)
3984 /* Already handled as a special case, so ignored here. */
3986 else if (strcmp (argv
[i
], "-combine") == 0)
3991 else if (strcmp (argv
[i
], "-specs") == 0)
3993 struct user_specs
*user
= XNEW (struct user_specs
);
3995 fatal ("argument to '-specs' is missing");
3997 user
->next
= (struct user_specs
*) 0;
3998 user
->filename
= argv
[i
];
3999 if (user_specs_tail
)
4000 user_specs_tail
->next
= user
;
4002 user_specs_head
= user
;
4003 user_specs_tail
= user
;
4005 else if (strncmp (argv
[i
], "-specs=", 7) == 0)
4007 struct user_specs
*user
= XNEW (struct user_specs
);
4008 if (strlen (argv
[i
]) == 7)
4009 fatal ("argument to '-specs=' is missing");
4011 user
->next
= (struct user_specs
*) 0;
4012 user
->filename
= argv
[i
] + 7;
4013 if (user_specs_tail
)
4014 user_specs_tail
->next
= user
;
4016 user_specs_head
= user
;
4017 user_specs_tail
= user
;
4019 else if (strcmp (argv
[i
], "-time") == 0)
4021 else if (strncmp (argv
[i
], "-time=", sizeof ("-time=") - 1) == 0)
4023 if (report_times_to_file
)
4024 fclose (report_times_to_file
);
4025 report_times_to_file
= fopen (argv
[i
] + sizeof ("-time=") - 1, "a");
4027 else if (strcmp (argv
[i
], "-pipe") == 0)
4029 /* -pipe has to go into the switches array as well as
4034 else if (strcmp (argv
[i
], "-wrapper") == 0)
4037 fatal ("argument to '-wrapper' is missing");
4039 wrapper_string
= argv
[i
];
4043 else if (strcmp (argv
[i
], "-###") == 0)
4045 /* This is similar to -v except that there is no execution
4046 of the commands and the echoed arguments are quoted. It
4047 is intended for use in shell scripts to capture the
4048 driver-generated command line. */
4049 verbose_only_flag
++;
4052 else if (argv
[i
][0] == '-' && argv
[i
][1] != 0)
4054 const char *p
= &argv
[i
][1];
4060 if (p
[1] && NULL
== strchr (argv
[i
] + 2, '-'))
4065 fatal ("'-%c' must come at the start of the command line", c
);
4073 if (p
[1] == 0 && i
+ 1 == argc
)
4074 fatal ("argument to '-B' is missing");
4080 len
= strlen (value
);
4082 /* Catch the case where the user has forgotten to append a
4083 directory separator to the path. Note, they may be using
4084 -B to add an executable name prefix, eg "i386-elf-", in
4085 order to distinguish between multiple installations of
4086 GCC in the same directory. Hence we must check to see
4087 if appending a directory separator actually makes a
4088 valid directory name. */
4089 if (! IS_DIR_SEPARATOR (value
[len
- 1])
4090 && is_directory (value
, false))
4092 char *tmp
= XNEWVEC (char, len
+ 2);
4093 strcpy (tmp
, value
);
4094 tmp
[len
] = DIR_SEPARATOR
;
4099 add_prefix (&exec_prefixes
, value
, NULL
,
4100 PREFIX_PRIORITY_B_OPT
, 0, 0);
4101 add_prefix (&startfile_prefixes
, value
, NULL
,
4102 PREFIX_PRIORITY_B_OPT
, 0, 0);
4103 add_prefix (&include_prefixes
, value
, NULL
,
4104 PREFIX_PRIORITY_B_OPT
, 0, 0);
4109 case 'v': /* Print our subcommands and print versions. */
4111 /* If they do anything other than exactly `-v', don't set
4112 verbose_flag; rather, continue on to give the error. */
4130 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
4135 /* Forward scan, just in case -S or -c is specified
4142 if (argv
[j
][0] == '-')
4144 if (SWITCH_CURTAILS_COMPILATION (argv
[j
][1])
4150 else if ((skip
= SWITCH_TAKES_ARG (argv
[j
][1])))
4151 j
+= skip
- (argv
[j
][2] != 0);
4152 else if ((skip
= WORD_SWITCH_TAKES_ARG (argv
[j
] + 1)))
4159 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX) || defined(HAVE_TARGET_OBJECT_SUFFIX)
4161 argv
[i
+ 1] = convert_filename (argv
[i
+ 1], ! have_c
, 0);
4163 argv
[i
] = convert_filename (argv
[i
], ! have_c
, 0);
4165 /* Save the output name in case -save-temps=obj was used. */
4166 save_temps_prefix
= xstrdup ((p
[1] == 0) ? argv
[i
+ 1] : argv
[i
] + 1);
4172 #ifdef MODIFY_TARGET_NAME
4173 is_modify_target_name
= 0;
4175 for (j
= 0; j
< ARRAY_SIZE (modify_target
); j
++)
4176 if (! strcmp (argv
[i
], modify_target
[j
].sw
))
4178 char *new_name
= XNEWVEC (char, strlen (modify_target
[j
].str
)
4179 + strlen (spec_machine
));
4182 int made_addition
= 0;
4184 is_modify_target_name
= 1;
4185 for (p
= spec_machine
, q
= new_name
; *p
!= 0; )
4187 if (modify_target
[j
].add_del
== DELETE
4188 && (! strncmp (q
, modify_target
[j
].str
,
4189 strlen (modify_target
[j
].str
))))
4190 p
+= strlen (modify_target
[j
].str
);
4191 else if (modify_target
[j
].add_del
== ADD
4192 && ! made_addition
&& *p
== '-')
4194 for (r
= modify_target
[j
].str
; *r
!= 0; )
4202 spec_machine
= new_name
;
4205 if (is_modify_target_name
)
4211 if (SWITCH_TAKES_ARG (c
) > (p
[1] != 0))
4212 i
+= SWITCH_TAKES_ARG (c
) - (p
[1] != 0);
4213 else if (WORD_SWITCH_TAKES_ARG (p
))
4214 i
+= WORD_SWITCH_TAKES_ARG (p
);
4224 /* If -save-temps=obj and -o name, create the prefix to use for %b.
4225 Otherwise just make -save-temps=obj the same as -save-temps=cwd. */
4226 if (save_temps_flag
== SAVE_TEMPS_OBJ
&& save_temps_prefix
!= NULL
)
4228 save_temps_length
= strlen (save_temps_prefix
);
4229 temp
= strrchr (lbasename (save_temps_prefix
), '.');
4232 save_temps_length
-= strlen (temp
);
4233 save_temps_prefix
[save_temps_length
] = '\0';
4237 else if (save_temps_prefix
!= NULL
)
4239 free (save_temps_prefix
);
4240 save_temps_prefix
= NULL
;
4243 if (save_temps_flag
&& use_pipes
)
4245 /* -save-temps overrides -pipe, so that temp files are produced */
4246 if (save_temps_flag
)
4247 error ("warning: -pipe ignored because -save-temps specified");
4253 const char *gcd
= getenv ("GCC_COMPARE_DEBUG");
4255 if (gcd
&& gcd
[0] == '-')
4258 compare_debug_opt
= gcd
;
4261 else if (gcd
&& *gcd
&& strcmp (gcd
, "0"))
4264 compare_debug_opt
= "-gtoggle";
4268 else if (compare_debug
< 0)
4271 gcc_assert (!compare_debug_opt
);
4274 /* Set up the search paths. We add directories that we expect to
4275 contain GNU Toolchain components before directories specified by
4276 the machine description so that we will find GNU components (like
4277 the GNU assembler) before those of the host system. */
4279 /* If we don't know where the toolchain has been installed, use the
4280 configured-in locations. */
4281 if (!gcc_exec_prefix
)
4284 add_prefix (&exec_prefixes
, standard_libexec_prefix
, "GCC",
4285 PREFIX_PRIORITY_LAST
, 1, 0);
4286 add_prefix (&exec_prefixes
, standard_libexec_prefix
, "BINUTILS",
4287 PREFIX_PRIORITY_LAST
, 2, 0);
4288 add_prefix (&exec_prefixes
, standard_exec_prefix
, "BINUTILS",
4289 PREFIX_PRIORITY_LAST
, 2, 0);
4291 add_prefix (&startfile_prefixes
, standard_exec_prefix
, "BINUTILS",
4292 PREFIX_PRIORITY_LAST
, 1, 0);
4295 /* If not cross-compiling, search well-known system locations. */
4296 if (*cross_compile
== '0')
4299 add_prefix (&exec_prefixes
, standard_exec_prefix_1
, "BINUTILS",
4300 PREFIX_PRIORITY_LAST
, 2, 0);
4301 add_prefix (&exec_prefixes
, standard_exec_prefix_2
, "BINUTILS",
4302 PREFIX_PRIORITY_LAST
, 2, 0);
4304 add_prefix (&startfile_prefixes
, standard_exec_prefix_2
, "BINUTILS",
4305 PREFIX_PRIORITY_LAST
, 1, 0);
4308 gcc_assert (!IS_ABSOLUTE_PATH (tooldir_base_prefix
));
4309 tooldir_prefix
= concat (tooldir_base_prefix
, spec_machine
,
4310 dir_separator_str
, NULL
);
4312 /* Look for tools relative to the location from which the driver is
4313 running, or, if that is not available, the configured prefix. */
4315 = concat (gcc_exec_prefix
? gcc_exec_prefix
: standard_exec_prefix
,
4316 spec_machine
, dir_separator_str
,
4317 spec_version
, dir_separator_str
, tooldir_prefix
, NULL
);
4319 add_prefix (&exec_prefixes
,
4320 concat (tooldir_prefix
, "bin", dir_separator_str
, NULL
),
4321 "BINUTILS", PREFIX_PRIORITY_LAST
, 0, 0);
4322 add_prefix (&startfile_prefixes
,
4323 concat (tooldir_prefix
, "lib", dir_separator_str
, NULL
),
4324 "BINUTILS", PREFIX_PRIORITY_LAST
, 0, 1);
4326 #if defined(TARGET_SYSTEM_ROOT_RELOCATABLE) && !defined(VMS)
4327 /* If the normal TARGET_SYSTEM_ROOT is inside of $exec_prefix,
4328 then consider it to relocate with the rest of the GCC installation
4329 if GCC_EXEC_PREFIX is set.
4330 ``make_relative_prefix'' is not compiled for VMS, so don't call it. */
4331 if (target_system_root
&& gcc_exec_prefix
)
4333 char *tmp_prefix
= get_relative_prefix (argv
[0],
4334 standard_bindir_prefix
,
4335 target_system_root
);
4336 if (tmp_prefix
&& access_check (tmp_prefix
, F_OK
) == 0)
4338 target_system_root
= tmp_prefix
;
4339 target_system_root_changed
= 1;
4344 /* More prefixes are enabled in main, after we read the specs file
4345 and determine whether this is cross-compilation or not. */
4347 /* Then create the space for the vectors and scan again. */
4349 switches
= XNEWVEC (struct switchstr
, n_switches
+ 1);
4350 infiles
= XNEWVEC (struct infile
, n_infiles
+ 1);
4353 last_language_n_infiles
= -1;
4355 /* This, time, copy the text of each switch and store a pointer
4356 to the copy in the vector of switches.
4357 Store all the infiles in their vector. */
4359 for (i
= 1; i
< argc
; i
++)
4361 /* Just skip the switches that were handled by the preceding loop. */
4362 #ifdef MODIFY_TARGET_NAME
4363 is_modify_target_name
= 0;
4365 for (j
= 0; j
< ARRAY_SIZE (modify_target
); j
++)
4366 if (! strcmp (argv
[i
], modify_target
[j
].sw
))
4367 is_modify_target_name
= 1;
4369 if (is_modify_target_name
)
4373 if (! strncmp (argv
[i
], "-Wa,", 4))
4375 else if (! strncmp (argv
[i
], "-Wp,", 4))
4377 else if (! strcmp (argv
[i
], "-no-canonical-prefixes"))
4379 else if (! strcmp (argv
[i
], "-pass-exit-codes"))
4381 else if (! strcmp (argv
[i
], "-print-search-dirs"))
4383 else if (! strcmp (argv
[i
], "-print-libgcc-file-name"))
4385 else if (! strncmp (argv
[i
], "-print-file-name=", 17))
4387 else if (! strncmp (argv
[i
], "-print-prog-name=", 17))
4389 else if (! strcmp (argv
[i
], "-print-multi-lib"))
4391 else if (! strcmp (argv
[i
], "-print-multi-directory"))
4393 else if (! strcmp (argv
[i
], "-print-sysroot"))
4395 else if (! strcmp (argv
[i
], "-print-multi-os-directory"))
4397 else if (! strcmp (argv
[i
], "-print-sysroot-headers-suffix"))
4399 else if (! strncmp (argv
[i
], "--sysroot=", strlen ("--sysroot=")))
4401 target_system_root
= argv
[i
] + strlen ("--sysroot=");
4402 target_system_root_changed
= 1;
4404 else if (argv
[i
][0] == '+' && argv
[i
][1] == 'e')
4406 /* Compensate for the +e options to the C++ front-end;
4407 they're there simply for cfront call-compatibility. We do
4408 some magic in default_compilers to pass them down properly.
4409 Note we deliberately start at the `+' here, to avoid passing
4410 -e0 or -e1 down into the linker. */
4411 switches
[n_switches
].part1
= &argv
[i
][0];
4412 switches
[n_switches
].args
= 0;
4413 switches
[n_switches
].live_cond
= 0;
4414 switches
[n_switches
].validated
= 0;
4417 else if (strncmp (argv
[i
], "-Wl,", 4) == 0)
4420 /* Split the argument at commas. */
4422 for (j
= 4; argv
[i
][j
]; j
++)
4423 if (argv
[i
][j
] == ',')
4425 infiles
[n_infiles
].language
= "*";
4426 infiles
[n_infiles
++].name
4427 = save_string (argv
[i
] + prev
, j
- prev
);
4430 /* Record the part after the last comma. */
4431 infiles
[n_infiles
].language
= "*";
4432 infiles
[n_infiles
++].name
= argv
[i
] + prev
;
4434 else if (strcmp (argv
[i
], "-Xlinker") == 0)
4436 infiles
[n_infiles
].language
= "*";
4437 infiles
[n_infiles
++].name
= argv
[++i
];
4439 /* Xassembler and Xpreprocessor were already handled in the first argv
4440 scan, so all we need to do here is ignore them and their argument. */
4441 else if (strcmp (argv
[i
], "-Xassembler") == 0)
4443 else if (strcmp (argv
[i
], "-Xpreprocessor") == 0)
4445 else if (strcmp (argv
[i
], "-l") == 0)
4446 { /* POSIX allows separation of -l and the lib arg;
4447 canonicalize by concatenating -l with its arg */
4448 infiles
[n_infiles
].language
= "*";
4449 infiles
[n_infiles
++].name
= concat ("-l", argv
[++i
], NULL
);
4451 else if (strncmp (argv
[i
], "-l", 2) == 0)
4453 infiles
[n_infiles
].language
= "*";
4454 infiles
[n_infiles
++].name
= argv
[i
];
4456 else if (strcmp (argv
[i
], "-wrapper") == 0)
4458 else if (strcmp (argv
[i
], "-specs") == 0)
4460 else if (strncmp (argv
[i
], "-specs=", 7) == 0)
4462 else if (strcmp (argv
[i
], "-time") == 0)
4464 else if (strncmp (argv
[i
], "-time=", sizeof ("-time=") - 1) == 0)
4466 else if (strcmp (argv
[i
], "-###") == 0)
4468 else if (argv
[i
][0] == '-' && argv
[i
][1] != 0)
4470 const char *p
= &argv
[i
][1];
4475 if (p
[1] == 0 && i
+ 1 == argc
)
4476 fatal ("argument to '-x' is missing");
4478 spec_lang
= argv
[++i
];
4481 if (! strcmp (spec_lang
, "none"))
4482 /* Suppress the warning if -xnone comes after the last input
4483 file, because alternate command interfaces like g++ might
4484 find it useful to place -xnone after each input file. */
4487 last_language_n_infiles
= n_infiles
;
4490 switches
[n_switches
].part1
= p
;
4491 /* Deal with option arguments in separate argv elements. */
4492 if ((SWITCH_TAKES_ARG (c
) > (p
[1] != 0))
4493 || WORD_SWITCH_TAKES_ARG (p
))
4496 int n_args
= WORD_SWITCH_TAKES_ARG (p
);
4500 /* Count only the option arguments in separate argv elements. */
4501 n_args
= SWITCH_TAKES_ARG (c
) - (p
[1] != 0);
4503 if (i
+ n_args
>= argc
)
4504 fatal ("argument to '-%s' is missing", p
);
4505 switches
[n_switches
].args
4506 = XNEWVEC (const char *, n_args
+ 1);
4508 switches
[n_switches
].args
[j
++] = argv
[++i
];
4509 /* Null-terminate the vector. */
4510 switches
[n_switches
].args
[j
] = 0;
4512 else if (strchr (switches_need_spaces
, c
))
4514 /* On some systems, ld cannot handle some options without
4515 a space. So split the option from its argument. */
4516 char *part1
= XNEWVEC (char, 2);
4520 switches
[n_switches
].part1
= part1
;
4521 switches
[n_switches
].args
= XNEWVEC (const char *, 2);
4522 switches
[n_switches
].args
[0] = xstrdup (p
+1);
4523 switches
[n_switches
].args
[1] = 0;
4526 switches
[n_switches
].args
= 0;
4528 switches
[n_switches
].live_cond
= 0;
4529 switches
[n_switches
].validated
= 0;
4530 switches
[n_switches
].ordering
= 0;
4531 /* These are always valid, since gcc.c itself understands the
4532 first four and gfortranspec.c understands -static-libgfortran. */
4533 if (!strcmp (p
, "save-temps")
4534 || !strcmp (p
, "static-libgcc")
4535 || !strcmp (p
, "shared-libgcc")
4536 || !strcmp (p
, "pipe")
4537 || !strcmp (p
, "static-libgfortran"))
4538 switches
[n_switches
].validated
= 1;
4541 char ch
= switches
[n_switches
].part1
[0];
4543 switches
[n_switches
].validated
= 1;
4549 #ifdef HAVE_TARGET_OBJECT_SUFFIX
4550 argv
[i
] = convert_filename (argv
[i
], 0, access (argv
[i
], F_OK
));
4553 if (strcmp (argv
[i
], "-") != 0 && access (argv
[i
], F_OK
) < 0)
4555 perror_with_name (argv
[i
]);
4560 infiles
[n_infiles
].language
= spec_lang
;
4561 infiles
[n_infiles
++].name
= argv
[i
];
4566 if (n_infiles
== last_language_n_infiles
&& spec_lang
!= 0)
4567 error ("warning: '-x %s' after last input file has no effect", spec_lang
);
4569 if (compare_debug
== 2 || compare_debug
== 3)
4571 switches
[n_switches
].part1
= concat ("fcompare-debug=",
4574 switches
[n_switches
].args
= 0;
4575 switches
[n_switches
].live_cond
= 0;
4576 switches
[n_switches
].validated
= 0;
4577 switches
[n_switches
].ordering
= 0;
4582 /* Ensure we only invoke each subprocess once. */
4583 if (print_subprocess_help
|| print_help_list
|| print_version
)
4587 /* Create a dummy input file, so that we can pass
4588 the help option on to the various sub-processes. */
4589 infiles
[0].language
= "c";
4590 infiles
[0].name
= "help-dummy";
4593 switches
[n_switches
].part1
= 0;
4594 infiles
[n_infiles
].name
= 0;
4597 /* Store switches not filtered out by %<S in spec in COLLECT_GCC_OPTIONS
4598 and place that in the environment. */
4601 set_collect_gcc_options (void)
4606 /* Build COLLECT_GCC_OPTIONS to have all of the options specified to
4608 obstack_grow (&collect_obstack
, "COLLECT_GCC_OPTIONS=",
4609 sizeof ("COLLECT_GCC_OPTIONS=") - 1);
4612 for (i
= 0; (int) i
< n_switches
; i
++)
4614 const char *const *args
;
4617 obstack_grow (&collect_obstack
, " ", 1);
4621 /* Ignore elided switches. */
4622 if ((switches
[i
].live_cond
& SWITCH_IGNORE
) != 0)
4625 /* Don't use -fwhole-program when compiling the init and fini routines,
4626 since we'd wrongly assume that the routines aren't needed. */
4627 if (strcmp (switches
[i
].part1
, "fwhole-program") == 0)
4630 obstack_grow (&collect_obstack
, "'-", 2);
4631 q
= switches
[i
].part1
;
4632 while ((p
= strchr (q
, '\'')))
4634 obstack_grow (&collect_obstack
, q
, p
- q
);
4635 obstack_grow (&collect_obstack
, "'\\''", 4);
4638 obstack_grow (&collect_obstack
, q
, strlen (q
));
4639 obstack_grow (&collect_obstack
, "'", 1);
4641 for (args
= switches
[i
].args
; args
&& *args
; args
++)
4643 obstack_grow (&collect_obstack
, " '", 2);
4645 while ((p
= strchr (q
, '\'')))
4647 obstack_grow (&collect_obstack
, q
, p
- q
);
4648 obstack_grow (&collect_obstack
, "'\\''", 4);
4651 obstack_grow (&collect_obstack
, q
, strlen (q
));
4652 obstack_grow (&collect_obstack
, "'", 1);
4655 obstack_grow (&collect_obstack
, "\0", 1);
4656 xputenv (XOBFINISH (&collect_obstack
, char *));
4659 /* Process a spec string, accumulating and running commands. */
4661 /* These variables describe the input file name.
4662 input_file_number is the index on outfiles of this file,
4663 so that the output file name can be stored for later use by %o.
4664 input_basename is the start of the part of the input file
4665 sans all directory names, and basename_length is the number
4666 of characters starting there excluding the suffix .c or whatever. */
4668 static const char *input_filename
;
4669 static int input_file_number
;
4670 size_t input_filename_length
;
4671 static int basename_length
;
4672 static int suffixed_basename_length
;
4673 static const char *input_basename
;
4674 static const char *input_suffix
;
4675 #ifndef HOST_LACKS_INODE_NUMBERS
4676 static struct stat input_stat
;
4678 static int input_stat_set
;
4680 /* The compiler used to process the current input file. */
4681 static struct compiler
*input_file_compiler
;
4683 /* These are variables used within do_spec and do_spec_1. */
4685 /* Nonzero if an arg has been started and not yet terminated
4686 (with space, tab or newline). */
4687 static int arg_going
;
4689 /* Nonzero means %d or %g has been seen; the next arg to be terminated
4690 is a temporary file name. */
4691 static int delete_this_arg
;
4693 /* Nonzero means %w has been seen; the next arg to be terminated
4694 is the output file name of this compilation. */
4695 static int this_is_output_file
;
4697 /* Nonzero means %s has been seen; the next arg to be terminated
4698 is the name of a library file and we should try the standard
4699 search dirs for it. */
4700 static int this_is_library_file
;
4702 /* Nonzero means that the input of this command is coming from a pipe. */
4703 static int input_from_pipe
;
4705 /* Nonnull means substitute this for any suffix when outputting a switches
4707 static const char *suffix_subst
;
4709 /* If there is an argument being accumulated, terminate it and store it. */
4712 end_going_arg (void)
4718 obstack_1grow (&obstack
, 0);
4719 string
= XOBFINISH (&obstack
, const char *);
4720 if (this_is_library_file
)
4721 string
= find_file (string
);
4722 store_arg (string
, delete_this_arg
, this_is_output_file
);
4723 if (this_is_output_file
)
4724 outfiles
[input_file_number
] = string
;
4730 /* Parse the WRAPPER string which is a comma separated list of the command line
4731 and insert them into the beginning of argbuf. */
4734 insert_wrapper (const char *wrapper
)
4738 char *buf
= xstrdup (wrapper
);
4747 while ((p
= strchr (p
, ',')) != NULL
);
4749 if (argbuf_index
+ n
>= argbuf_length
)
4751 argbuf_length
= argbuf_length
* 2;
4752 while (argbuf_length
< argbuf_index
+ n
)
4754 argbuf
= XRESIZEVEC (const char *, argbuf
, argbuf_length
);
4756 for (i
= argbuf_index
- 1; i
>= 0; i
--)
4757 argbuf
[i
+ n
] = argbuf
[i
];
4770 while ((p
= strchr (p
, ',')) != NULL
);
4771 gcc_assert (i
== n
);
4775 /* Process the spec SPEC and run the commands specified therein.
4776 Returns 0 if the spec is successfully processed; -1 if failed. */
4779 do_spec (const char *spec
)
4783 value
= do_spec_2 (spec
);
4785 /* Force out any unfinished command.
4786 If -pipe, this forces out the last command if it ended in `|'. */
4789 if (argbuf_index
> 0 && !strcmp (argbuf
[argbuf_index
- 1], "|"))
4792 set_collect_gcc_options ();
4794 if (argbuf_index
> 0)
4802 do_spec_2 (const char *spec
)
4808 delete_this_arg
= 0;
4809 this_is_output_file
= 0;
4810 this_is_library_file
= 0;
4811 input_from_pipe
= 0;
4812 suffix_subst
= NULL
;
4814 result
= do_spec_1 (spec
, 0, NULL
);
4822 /* Process the given spec string and add any new options to the end
4823 of the switches/n_switches array. */
4826 do_option_spec (const char *name
, const char *spec
)
4828 unsigned int i
, value_count
, value_len
;
4829 const char *p
, *q
, *value
;
4830 char *tmp_spec
, *tmp_spec_p
;
4832 if (configure_default_options
[0].name
== NULL
)
4835 for (i
= 0; i
< ARRAY_SIZE (configure_default_options
); i
++)
4836 if (strcmp (configure_default_options
[i
].name
, name
) == 0)
4838 if (i
== ARRAY_SIZE (configure_default_options
))
4841 value
= configure_default_options
[i
].value
;
4842 value_len
= strlen (value
);
4844 /* Compute the size of the final spec. */
4847 while ((p
= strstr (p
, "%(VALUE)")) != NULL
)
4853 /* Replace each %(VALUE) by the specified value. */
4854 tmp_spec
= (char *) alloca (strlen (spec
) + 1
4855 + value_count
* (value_len
- strlen ("%(VALUE)")));
4856 tmp_spec_p
= tmp_spec
;
4858 while ((p
= strstr (q
, "%(VALUE)")) != NULL
)
4860 memcpy (tmp_spec_p
, q
, p
- q
);
4861 tmp_spec_p
= tmp_spec_p
+ (p
- q
);
4862 memcpy (tmp_spec_p
, value
, value_len
);
4863 tmp_spec_p
+= value_len
;
4864 q
= p
+ strlen ("%(VALUE)");
4866 strcpy (tmp_spec_p
, q
);
4868 do_self_spec (tmp_spec
);
4871 /* Process the given spec string and add any new options to the end
4872 of the switches/n_switches array. */
4875 do_self_spec (const char *spec
)
4878 do_spec_1 (" ", 0, NULL
);
4880 if (argbuf_index
> 0)
4884 switches
= XRESIZEVEC (struct switchstr
, switches
,
4885 n_switches
+ argbuf_index
+ 1);
4887 for (i
= 0; i
< argbuf_index
; i
++)
4889 struct switchstr
*sw
;
4890 const char *p
= argbuf
[i
];
4893 /* Each switch should start with '-'. */
4895 fatal ("switch '%s' does not start with '-'", argbuf
[i
]);
4900 sw
= &switches
[n_switches
++];
4906 /* Deal with option arguments in separate argv elements. */
4907 if ((SWITCH_TAKES_ARG (c
) > (p
[1] != 0))
4908 || WORD_SWITCH_TAKES_ARG (p
))
4911 int n_args
= WORD_SWITCH_TAKES_ARG (p
);
4915 /* Count only the option arguments in separate argv elements. */
4916 n_args
= SWITCH_TAKES_ARG (c
) - (p
[1] != 0);
4918 if (i
+ n_args
>= argbuf_index
)
4919 fatal ("argument to '-%s' is missing", p
);
4921 = XNEWVEC (const char *, n_args
+ 1);
4923 sw
->args
[j
++] = argbuf
[++i
];
4924 /* Null-terminate the vector. */
4927 else if (strchr (switches_need_spaces
, c
))
4929 /* On some systems, ld cannot handle some options without
4930 a space. So split the option from its argument. */
4931 char *part1
= XNEWVEC (char, 2);
4936 sw
->args
= XNEWVEC (const char *, 2);
4937 sw
->args
[0] = xstrdup (p
+1);
4944 switches
[n_switches
].part1
= 0;
4948 /* Callback for processing %D and %I specs. */
4950 struct spec_path_info
{
4955 bool separate_options
;
4959 spec_path (char *path
, void *data
)
4961 struct spec_path_info
*info
= (struct spec_path_info
*) data
;
4965 if (info
->omit_relative
&& !IS_ABSOLUTE_PATH (path
))
4968 if (info
->append_len
!= 0)
4970 len
= strlen (path
);
4971 memcpy (path
+ len
, info
->append
, info
->append_len
+ 1);
4974 if (!is_directory (path
, true))
4977 do_spec_1 (info
->option
, 1, NULL
);
4978 if (info
->separate_options
)
4979 do_spec_1 (" ", 0, NULL
);
4981 if (info
->append_len
== 0)
4983 len
= strlen (path
);
4984 save
= path
[len
- 1];
4985 if (IS_DIR_SEPARATOR (path
[len
- 1]))
4986 path
[len
- 1] = '\0';
4989 do_spec_1 (path
, 1, NULL
);
4990 do_spec_1 (" ", 0, NULL
);
4992 /* Must not damage the original path. */
4993 if (info
->append_len
== 0)
4994 path
[len
- 1] = save
;
4999 /* Create a temporary FILE with the contents of ARGV. Add @FILE to the
5003 create_at_file (char **argv
)
5005 char *temp_file
= make_temp_file ("");
5006 char *at_argument
= concat ("@", temp_file
, NULL
);
5007 FILE *f
= fopen (temp_file
, "w");
5011 fatal ("could not open temporary response file %s",
5014 status
= writeargv (argv
, f
);
5017 fatal ("could not write to temporary response file %s",
5020 status
= fclose (f
);
5023 fatal ("could not close temporary response file %s",
5026 store_arg (at_argument
, 0, 0);
5028 record_temp_file (temp_file
, !save_temps_flag
, !save_temps_flag
);
5031 /* True if we should compile INFILE. */
5034 compile_input_file_p (struct infile
*infile
)
5036 if ((!infile
->language
) || (infile
->language
[0] != '*'))
5037 if (infile
->incompiler
== input_file_compiler
)
5042 /* Process the sub-spec SPEC as a portion of a larger spec.
5043 This is like processing a whole spec except that we do
5044 not initialize at the beginning and we do not supply a
5045 newline by default at the end.
5046 INSWITCH nonzero means don't process %-sequences in SPEC;
5047 in this case, % is treated as an ordinary character.
5048 This is used while substituting switches.
5049 INSWITCH nonzero also causes SPC not to terminate an argument.
5051 Value is zero unless a line was finished
5052 and the command on that line reported an error. */
5055 do_spec_1 (const char *spec
, int inswitch
, const char *soft_matched_part
)
5057 const char *p
= spec
;
5063 /* If substituting a switch, treat all chars like letters.
5064 Otherwise, NL, SPC, TAB and % are special. */
5065 switch (inswitch
? 'a' : c
)
5070 if (argbuf_index
> 0 && !strcmp (argbuf
[argbuf_index
- 1], "|"))
5072 /* A `|' before the newline means use a pipe here,
5073 but only if -pipe was specified.
5074 Otherwise, execute now and don't pass the `|' as an arg. */
5077 input_from_pipe
= 1;
5084 set_collect_gcc_options ();
5086 if (argbuf_index
> 0)
5092 /* Reinitialize for a new command, and for a new argument. */
5095 delete_this_arg
= 0;
5096 this_is_output_file
= 0;
5097 this_is_library_file
= 0;
5098 input_from_pipe
= 0;
5105 obstack_1grow (&obstack
, c
);
5113 /* Reinitialize for a new argument. */
5114 delete_this_arg
= 0;
5115 this_is_output_file
= 0;
5116 this_is_library_file
= 0;
5123 fatal ("spec '%s' invalid", spec
);
5126 if (save_temps_length
)
5127 obstack_grow (&obstack
, save_temps_prefix
, save_temps_length
);
5129 obstack_grow (&obstack
, input_basename
, basename_length
);
5130 if (compare_debug
< 0)
5131 obstack_grow (&obstack
, ".gk", 3);
5136 if (save_temps_length
)
5137 obstack_grow (&obstack
, save_temps_prefix
, save_temps_length
);
5139 obstack_grow (&obstack
, input_basename
, suffixed_basename_length
);
5140 if (compare_debug
< 0)
5141 obstack_grow (&obstack
, ".gk", 3);
5146 delete_this_arg
= 2;
5149 /* Dump out the directories specified with LIBRARY_PATH,
5150 followed by the absolute directories
5151 that we search for startfiles. */
5154 struct spec_path_info info
;
5157 info
.append_len
= 0;
5158 #ifdef RELATIVE_PREFIX_NOT_LINKDIR
5159 /* Used on systems which record the specified -L dirs
5160 and use them to search for dynamic linking.
5161 Relative directories always come from -B,
5162 and it is better not to use them for searching
5163 at run time. In particular, stage1 loses. */
5164 info
.omit_relative
= true;
5166 info
.omit_relative
= false;
5168 info
.separate_options
= false;
5170 for_each_path (&startfile_prefixes
, true, 0, spec_path
, &info
);
5175 /* %efoo means report an error with `foo' as error message
5176 and don't execute any more commands for this file. */
5180 while (*p
!= 0 && *p
!= '\n')
5182 buf
= (char *) alloca (p
- q
+ 1);
5183 strncpy (buf
, q
, p
- q
);
5190 /* %nfoo means report a notice with `foo' on stderr. */
5194 while (*p
!= 0 && *p
!= '\n')
5196 buf
= (char *) alloca (p
- q
+ 1);
5197 strncpy (buf
, q
, p
- q
);
5199 notice ("%s\n", buf
);
5209 /* If save_temps_flag is off, and the HOST_BIT_BUCKET is
5210 defined, and it is not a directory, and it is
5211 writable, use it. Otherwise, treat this like any
5212 other temporary file. */
5214 if ((!save_temps_flag
)
5215 && (stat (HOST_BIT_BUCKET
, &st
) == 0) && (!S_ISDIR (st
.st_mode
))
5216 && (access (HOST_BIT_BUCKET
, W_OK
) == 0))
5218 obstack_grow (&obstack
, HOST_BIT_BUCKET
,
5219 strlen (HOST_BIT_BUCKET
));
5220 delete_this_arg
= 0;
5225 goto create_temp_file
;
5229 obstack_1grow (&obstack
, '-');
5230 delete_this_arg
= 0;
5233 /* consume suffix */
5234 while (*p
== '.' || ISALNUM ((unsigned char) *p
))
5236 if (p
[0] == '%' && p
[1] == 'O')
5241 goto create_temp_file
;
5245 /* consume suffix */
5246 while (*p
== '.' || ISALNUM ((unsigned char) *p
))
5248 if (p
[0] == '%' && p
[1] == 'O')
5253 goto create_temp_file
;
5259 struct temp_name
*t
;
5261 const char *suffix
= p
;
5262 char *saved_suffix
= NULL
;
5264 while (*p
== '.' || ISALNUM ((unsigned char) *p
))
5266 suffix_length
= p
- suffix
;
5267 if (p
[0] == '%' && p
[1] == 'O')
5270 /* We don't support extra suffix characters after %O. */
5271 if (*p
== '.' || ISALNUM ((unsigned char) *p
))
5272 fatal ("spec '%s' has invalid '%%0%c'", spec
, *p
);
5273 if (suffix_length
== 0)
5274 suffix
= TARGET_OBJECT_SUFFIX
;
5278 = XNEWVEC (char, suffix_length
5279 + strlen (TARGET_OBJECT_SUFFIX
));
5280 strncpy (saved_suffix
, suffix
, suffix_length
);
5281 strcpy (saved_suffix
+ suffix_length
,
5282 TARGET_OBJECT_SUFFIX
);
5284 suffix_length
+= strlen (TARGET_OBJECT_SUFFIX
);
5287 if (compare_debug
< 0)
5289 suffix
= concat (".gk", suffix
, NULL
);
5293 /* If -save-temps=obj and -o were specified, use that for the
5295 if (save_temps_length
)
5298 temp_filename_length
5299 = save_temps_length
+ suffix_length
+ 1;
5300 tmp
= (char *) alloca (temp_filename_length
);
5301 memcpy (tmp
, save_temps_prefix
, save_temps_length
);
5302 memcpy (tmp
+ save_temps_length
, suffix
, suffix_length
);
5303 tmp
[save_temps_length
+ suffix_length
] = '\0';
5304 temp_filename
= save_string (tmp
,
5305 temp_filename_length
+ 1);
5306 obstack_grow (&obstack
, temp_filename
,
5307 temp_filename_length
);
5309 delete_this_arg
= 0;
5313 /* If the input_filename has the same suffix specified
5314 for the %g, %u, or %U, and -save-temps is specified,
5315 we could end up using that file as an intermediate
5316 thus clobbering the user's source file (.e.g.,
5317 gcc -save-temps foo.s would clobber foo.s with the
5318 output of cpp0). So check for this condition and
5319 generate a temp file as the intermediate. */
5321 if (save_temps_flag
)
5324 temp_filename_length
= basename_length
+ suffix_length
+ 1;
5325 tmp
= (char *) alloca (temp_filename_length
);
5326 memcpy (tmp
, input_basename
, basename_length
);
5327 memcpy (tmp
+ basename_length
, suffix
, suffix_length
);
5328 tmp
[basename_length
+ suffix_length
] = '\0';
5329 temp_filename
= tmp
;
5331 if (strcmp (temp_filename
, input_filename
) != 0)
5333 #ifndef HOST_LACKS_INODE_NUMBERS
5334 struct stat st_temp
;
5336 /* Note, set_input() resets input_stat_set to 0. */
5337 if (input_stat_set
== 0)
5339 input_stat_set
= stat (input_filename
, &input_stat
);
5340 if (input_stat_set
>= 0)
5344 /* If we have the stat for the input_filename
5345 and we can do the stat for the temp_filename
5346 then the they could still refer to the same
5347 file if st_dev/st_ino's are the same. */
5348 if (input_stat_set
!= 1
5349 || stat (temp_filename
, &st_temp
) < 0
5350 || input_stat
.st_dev
!= st_temp
.st_dev
5351 || input_stat
.st_ino
!= st_temp
.st_ino
)
5353 /* Just compare canonical pathnames. */
5354 char* input_realname
= lrealpath (input_filename
);
5355 char* temp_realname
= lrealpath (temp_filename
);
5356 bool files_differ
= strcmp (input_realname
, temp_realname
);
5357 free (input_realname
);
5358 free (temp_realname
);
5362 temp_filename
= save_string (temp_filename
,
5363 temp_filename_length
+ 1);
5364 obstack_grow (&obstack
, temp_filename
,
5365 temp_filename_length
);
5367 delete_this_arg
= 0;
5373 /* See if we already have an association of %g/%u/%U and
5375 for (t
= temp_names
; t
; t
= t
->next
)
5376 if (t
->length
== suffix_length
5377 && strncmp (t
->suffix
, suffix
, suffix_length
) == 0
5378 && t
->unique
== (c
== 'u' || c
== 'U' || c
== 'j'))
5381 /* Make a new association if needed. %u and %j
5383 if (t
== 0 || c
== 'u' || c
== 'j')
5387 t
= XNEW (struct temp_name
);
5388 t
->next
= temp_names
;
5391 t
->length
= suffix_length
;
5394 t
->suffix
= saved_suffix
;
5395 saved_suffix
= NULL
;
5398 t
->suffix
= save_string (suffix
, suffix_length
);
5399 t
->unique
= (c
== 'u' || c
== 'U' || c
== 'j');
5400 temp_filename
= make_temp_file (t
->suffix
);
5401 temp_filename_length
= strlen (temp_filename
);
5402 t
->filename
= temp_filename
;
5403 t
->filename_length
= temp_filename_length
;
5407 free (saved_suffix
);
5409 obstack_grow (&obstack
, t
->filename
, t
->filename_length
);
5410 delete_this_arg
= 1;
5418 if (at_file_supplied
)
5420 /* We are going to expand `%i' to `@FILE', where FILE
5421 is a newly-created temporary filename. The filenames
5422 that would usually be expanded in place of %o will be
5423 written to the temporary file. */
5428 for (i
= 0; i
< n_infiles
; i
++)
5429 if (compile_input_file_p (&infiles
[i
]))
5432 argv
= (char **) alloca (sizeof (char *) * (n_files
+ 1));
5434 /* Copy the strings over. */
5435 for (i
= 0, j
= 0; i
< n_infiles
; i
++)
5436 if (compile_input_file_p (&infiles
[i
]))
5438 argv
[j
] = CONST_CAST (char *, infiles
[i
].name
);
5439 infiles
[i
].compiled
= true;
5444 create_at_file (argv
);
5447 for (i
= 0; (int) i
< n_infiles
; i
++)
5448 if (compile_input_file_p (&infiles
[i
]))
5450 store_arg (infiles
[i
].name
, 0, 0);
5451 infiles
[i
].compiled
= true;
5456 obstack_grow (&obstack
, input_filename
, input_filename_length
);
5463 struct spec_path_info info
;
5467 do_spec_1 ("-imultilib", 1, NULL
);
5468 /* Make this a separate argument. */
5469 do_spec_1 (" ", 0, NULL
);
5470 do_spec_1 (multilib_dir
, 1, NULL
);
5471 do_spec_1 (" ", 0, NULL
);
5474 if (gcc_exec_prefix
)
5476 do_spec_1 ("-iprefix", 1, NULL
);
5477 /* Make this a separate argument. */
5478 do_spec_1 (" ", 0, NULL
);
5479 do_spec_1 (gcc_exec_prefix
, 1, NULL
);
5480 do_spec_1 (" ", 0, NULL
);
5483 if (target_system_root_changed
||
5484 (target_system_root
&& target_sysroot_hdrs_suffix
))
5486 do_spec_1 ("-isysroot", 1, NULL
);
5487 /* Make this a separate argument. */
5488 do_spec_1 (" ", 0, NULL
);
5489 do_spec_1 (target_system_root
, 1, NULL
);
5490 if (target_sysroot_hdrs_suffix
)
5491 do_spec_1 (target_sysroot_hdrs_suffix
, 1, NULL
);
5492 do_spec_1 (" ", 0, NULL
);
5495 info
.option
= "-isystem";
5496 info
.append
= "include";
5497 info
.append_len
= strlen (info
.append
);
5498 info
.omit_relative
= false;
5499 info
.separate_options
= true;
5501 for_each_path (&include_prefixes
, false, info
.append_len
,
5504 info
.append
= "include-fixed";
5505 if (*sysroot_hdrs_suffix_spec
)
5506 info
.append
= concat (info
.append
, dir_separator_str
,
5507 multilib_dir
, NULL
);
5508 info
.append_len
= strlen (info
.append
);
5509 for_each_path (&include_prefixes
, false, info
.append_len
,
5516 int max
= n_infiles
;
5517 max
+= lang_specific_extra_outfiles
;
5519 if (HAVE_GNU_LD
&& at_file_supplied
)
5521 /* We are going to expand `%o' to `@FILE', where FILE
5522 is a newly-created temporary filename. The filenames
5523 that would usually be expanded in place of %o will be
5524 written to the temporary file. */
5529 /* Convert OUTFILES into a form suitable for writeargv. */
5531 /* Determine how many are non-NULL. */
5532 for (n_files
= 0, i
= 0; i
< max
; i
++)
5533 n_files
+= outfiles
[i
] != NULL
;
5535 argv
= (char **) alloca (sizeof (char *) * (n_files
+ 1));
5537 /* Copy the strings over. */
5538 for (i
= 0, j
= 0; i
< max
; i
++)
5541 argv
[j
] = CONST_CAST (char *, outfiles
[i
]);
5546 create_at_file (argv
);
5549 for (i
= 0; i
< max
; i
++)
5551 store_arg (outfiles
[i
], 0, 0);
5556 obstack_grow (&obstack
, TARGET_OBJECT_SUFFIX
, strlen (TARGET_OBJECT_SUFFIX
));
5561 this_is_library_file
= 1;
5565 outfiles
[input_file_number
] = NULL
;
5569 this_is_output_file
= 1;
5574 int cur_index
= argbuf_index
;
5575 /* Handle the {...} following the %W. */
5577 fatal ("spec '%s' has invalid '%%W%c", spec
, *p
);
5578 p
= handle_braces (p
+ 1);
5582 /* If any args were output, mark the last one for deletion
5584 if (argbuf_index
!= cur_index
)
5585 record_temp_file (argbuf
[argbuf_index
- 1], 0, 1);
5589 /* %x{OPTION} records OPTION for %X to output. */
5595 /* Skip past the option value and make a copy. */
5597 fatal ("spec '%s' has invalid '%%x%c'", spec
, *p
);
5600 string
= save_string (p1
+ 1, p
- p1
- 2);
5602 /* See if we already recorded this option. */
5603 for (i
= 0; i
< n_linker_options
; i
++)
5604 if (! strcmp (string
, linker_options
[i
]))
5610 /* This option is new; add it. */
5611 add_linker_option (string
, strlen (string
));
5615 /* Dump out the options accumulated previously using %x. */
5617 for (i
= 0; i
< n_linker_options
; i
++)
5619 do_spec_1 (linker_options
[i
], 1, NULL
);
5620 /* Make each accumulated option a separate argument. */
5621 do_spec_1 (" ", 0, NULL
);
5625 /* Dump out the options accumulated previously using -Wa,. */
5627 for (i
= 0; i
< n_assembler_options
; i
++)
5629 do_spec_1 (assembler_options
[i
], 1, NULL
);
5630 /* Make each accumulated option a separate argument. */
5631 do_spec_1 (" ", 0, NULL
);
5635 /* Dump out the options accumulated previously using -Wp,. */
5637 for (i
= 0; i
< n_preprocessor_options
; i
++)
5639 do_spec_1 (preprocessor_options
[i
], 1, NULL
);
5640 /* Make each accumulated option a separate argument. */
5641 do_spec_1 (" ", 0, NULL
);
5645 /* Here are digits and numbers that just process
5646 a certain constant string as a spec. */
5649 value
= do_spec_1 (cc1_spec
, 0, NULL
);
5655 value
= do_spec_1 (cc1plus_spec
, 0, NULL
);
5661 value
= do_spec_1 (asm_spec
, 0, NULL
);
5667 value
= do_spec_1 (asm_final_spec
, 0, NULL
);
5674 const char *const spec
5675 = (input_file_compiler
->cpp_spec
5676 ? input_file_compiler
->cpp_spec
5678 value
= do_spec_1 (spec
, 0, NULL
);
5685 value
= do_spec_1 (endfile_spec
, 0, NULL
);
5691 value
= do_spec_1 (link_spec
, 0, NULL
);
5697 value
= do_spec_1 (lib_spec
, 0, NULL
);
5703 value
= do_spec_1 (libgcc_spec
, 0, NULL
);
5709 /* We assume there is a directory
5710 separator at the end of this string. */
5711 if (target_system_root
)
5713 obstack_grow (&obstack
, target_system_root
,
5714 strlen (target_system_root
));
5715 if (target_sysroot_suffix
)
5716 obstack_grow (&obstack
, target_sysroot_suffix
,
5717 strlen (target_sysroot_suffix
));
5722 value
= do_spec_1 (startfile_spec
, 0, NULL
);
5727 /* Here we define characters other than letters and digits. */
5730 p
= handle_braces (p
);
5736 p
= handle_spec_function (p
);
5742 obstack_1grow (&obstack
, '%');
5749 while (p
[len
] && p
[len
] != ' ' && p
[len
] != '%')
5751 suffix_subst
= save_string (p
- 1, len
+ 1);
5756 /* Henceforth ignore the option(s) matching the pattern
5761 int have_wildcard
= 0;
5764 while (p
[len
] && p
[len
] != ' ' && p
[len
] != '\t')
5767 if (p
[len
-1] == '*')
5770 for (i
= 0; i
< n_switches
; i
++)
5771 if (!strncmp (switches
[i
].part1
, p
, len
- have_wildcard
)
5772 && (have_wildcard
|| switches
[i
].part1
[len
] == '\0'))
5774 switches
[i
].live_cond
|= SWITCH_IGNORE
;
5775 switches
[i
].validated
= 1;
5783 if (soft_matched_part
)
5785 do_spec_1 (soft_matched_part
, 1, NULL
);
5786 do_spec_1 (" ", 0, NULL
);
5789 /* Catch the case where a spec string contains something like
5790 '%{foo:%*}'. i.e. there is no * in the pattern on the left
5791 hand side of the :. */
5792 error ("spec failure: '%%*' has not been initialized by pattern match");
5795 /* Process a string found as the value of a spec given by name.
5796 This feature allows individual machine descriptions
5797 to add and use their own specs.
5798 %[...] modifies -D options the way %P does;
5799 %(...) uses the spec unmodified. */
5801 error ("warning: use of obsolete %%[ operator in specs");
5804 const char *name
= p
;
5805 struct spec_list
*sl
;
5808 /* The string after the S/P is the name of a spec that is to be
5810 while (*p
&& *p
!= ')' && *p
!= ']')
5813 /* See if it's in the list. */
5814 for (len
= p
- name
, sl
= specs
; sl
; sl
= sl
->next
)
5815 if (sl
->name_len
== len
&& !strncmp (sl
->name
, name
, len
))
5817 name
= *(sl
->ptr_spec
);
5819 notice ("Processing spec %c%s%c, which is '%s'\n",
5820 c
, sl
->name
, (c
== '(') ? ')' : ']', name
);
5829 value
= do_spec_1 (name
, 0, NULL
);
5835 char *x
= (char *) alloca (strlen (name
) * 2 + 1);
5837 const char *y
= name
;
5840 /* Copy all of NAME into BUF, but put __ after
5841 every -D and at the end of each arg. */
5844 if (! strncmp (y
, "-D", 2))
5855 && (*y
== ' ' || *y
== '\t' || *y
== '='
5856 || *y
== '}' || *y
== 0))
5869 value
= do_spec_1 (buf
, 0, NULL
);
5875 /* Discard the closing paren or bracket. */
5882 error ("spec failure: unrecognized spec option '%c'", c
);
5888 /* Backslash: treat next character as ordinary. */
5893 /* Ordinary character: put it into the current argument. */
5894 obstack_1grow (&obstack
, c
);
5898 /* End of string. If we are processing a spec function, we need to
5899 end any pending argument. */
5900 if (processing_spec_function
)
5906 /* Look up a spec function. */
5908 static const struct spec_function
*
5909 lookup_spec_function (const char *name
)
5911 const struct spec_function
*sf
;
5913 for (sf
= static_spec_functions
; sf
->name
!= NULL
; sf
++)
5914 if (strcmp (sf
->name
, name
) == 0)
5920 /* Evaluate a spec function. */
5923 eval_spec_function (const char *func
, const char *args
)
5925 const struct spec_function
*sf
;
5926 const char *funcval
;
5928 /* Saved spec processing context. */
5929 int save_argbuf_index
;
5930 int save_argbuf_length
;
5931 const char **save_argbuf
;
5934 int save_delete_this_arg
;
5935 int save_this_is_output_file
;
5936 int save_this_is_library_file
;
5937 int save_input_from_pipe
;
5938 const char *save_suffix_subst
;
5941 sf
= lookup_spec_function (func
);
5943 fatal ("unknown spec function '%s'", func
);
5945 /* Push the spec processing context. */
5946 save_argbuf_index
= argbuf_index
;
5947 save_argbuf_length
= argbuf_length
;
5948 save_argbuf
= argbuf
;
5950 save_arg_going
= arg_going
;
5951 save_delete_this_arg
= delete_this_arg
;
5952 save_this_is_output_file
= this_is_output_file
;
5953 save_this_is_library_file
= this_is_library_file
;
5954 save_input_from_pipe
= input_from_pipe
;
5955 save_suffix_subst
= suffix_subst
;
5957 /* Create a new spec processing context, and build the function
5961 if (do_spec_2 (args
) < 0)
5962 fatal ("error in args to spec function '%s'", func
);
5964 /* argbuf_index is an index for the next argument to be inserted, and
5965 so contains the count of the args already inserted. */
5967 funcval
= (*sf
->func
) (argbuf_index
, argbuf
);
5969 /* Pop the spec processing context. */
5970 argbuf_index
= save_argbuf_index
;
5971 argbuf_length
= save_argbuf_length
;
5973 argbuf
= save_argbuf
;
5975 arg_going
= save_arg_going
;
5976 delete_this_arg
= save_delete_this_arg
;
5977 this_is_output_file
= save_this_is_output_file
;
5978 this_is_library_file
= save_this_is_library_file
;
5979 input_from_pipe
= save_input_from_pipe
;
5980 suffix_subst
= save_suffix_subst
;
5985 /* Handle a spec function call of the form:
5989 ARGS is processed as a spec in a separate context and split into an
5990 argument vector in the normal fashion. The function returns a string
5991 containing a spec which we then process in the caller's context, or
5992 NULL if no processing is required. */
5995 handle_spec_function (const char *p
)
5998 const char *endp
, *funcval
;
6001 processing_spec_function
++;
6003 /* Get the function name. */
6004 for (endp
= p
; *endp
!= '\0'; endp
++)
6006 if (*endp
== '(') /* ) */
6008 /* Only allow [A-Za-z0-9], -, and _ in function names. */
6009 if (!ISALNUM (*endp
) && !(*endp
== '-' || *endp
== '_'))
6010 fatal ("malformed spec function name");
6012 if (*endp
!= '(') /* ) */
6013 fatal ("no arguments for spec function");
6014 func
= save_string (p
, endp
- p
);
6017 /* Get the arguments. */
6018 for (count
= 0; *endp
!= '\0'; endp
++)
6027 else if (*endp
== '(') /* ) */
6032 fatal ("malformed spec function arguments");
6033 args
= save_string (p
, endp
- p
);
6036 /* p now points to just past the end of the spec function expression. */
6038 funcval
= eval_spec_function (func
, args
);
6039 if (funcval
!= NULL
&& do_spec_1 (funcval
, 0, NULL
) < 0)
6045 processing_spec_function
--;
6050 /* Inline subroutine of handle_braces. Returns true if the current
6051 input suffix matches the atom bracketed by ATOM and END_ATOM. */
6053 input_suffix_matches (const char *atom
, const char *end_atom
)
6055 return (input_suffix
6056 && !strncmp (input_suffix
, atom
, end_atom
- atom
)
6057 && input_suffix
[end_atom
- atom
] == '\0');
6060 /* Subroutine of handle_braces. Returns true if the current
6061 input file's spec name matches the atom bracketed by ATOM and END_ATOM. */
6063 input_spec_matches (const char *atom
, const char *end_atom
)
6065 return (input_file_compiler
6066 && input_file_compiler
->suffix
6067 && input_file_compiler
->suffix
[0] != '\0'
6068 && !strncmp (input_file_compiler
->suffix
+ 1, atom
,
6070 && input_file_compiler
->suffix
[end_atom
- atom
+ 1] == '\0');
6073 /* Subroutine of handle_braces. Returns true if a switch
6074 matching the atom bracketed by ATOM and END_ATOM appeared on the
6077 switch_matches (const char *atom
, const char *end_atom
, int starred
)
6080 int len
= end_atom
- atom
;
6081 int plen
= starred
? len
: -1;
6083 for (i
= 0; i
< n_switches
; i
++)
6084 if (!strncmp (switches
[i
].part1
, atom
, len
)
6085 && (starred
|| switches
[i
].part1
[len
] == '\0')
6086 && check_live_switch (i
, plen
))
6092 /* Inline subroutine of handle_braces. Mark all of the switches which
6093 match ATOM (extends to END_ATOM; STARRED indicates whether there
6094 was a star after the atom) for later processing. */
6096 mark_matching_switches (const char *atom
, const char *end_atom
, int starred
)
6099 int len
= end_atom
- atom
;
6100 int plen
= starred
? len
: -1;
6102 for (i
= 0; i
< n_switches
; i
++)
6103 if (!strncmp (switches
[i
].part1
, atom
, len
)
6104 && (starred
|| switches
[i
].part1
[len
] == '\0')
6105 && check_live_switch (i
, plen
))
6106 switches
[i
].ordering
= 1;
6109 /* Inline subroutine of handle_braces. Process all the currently
6110 marked switches through give_switch, and clear the marks. */
6112 process_marked_switches (void)
6116 for (i
= 0; i
< n_switches
; i
++)
6117 if (switches
[i
].ordering
== 1)
6119 switches
[i
].ordering
= 0;
6124 /* Handle a %{ ... } construct. P points just inside the leading {.
6125 Returns a pointer one past the end of the brace block, or 0
6126 if we call do_spec_1 and that returns -1. */
6129 handle_braces (const char *p
)
6131 const char *atom
, *end_atom
;
6132 const char *d_atom
= NULL
, *d_end_atom
= NULL
;
6133 const char *orig
= p
;
6141 bool a_must_be_last
= false;
6142 bool ordered_set
= false;
6143 bool disjunct_set
= false;
6144 bool disj_matched
= false;
6145 bool disj_starred
= true;
6146 bool n_way_choice
= false;
6147 bool n_way_matched
= false;
6149 #define SKIP_WHITE() do { while (*p == ' ' || *p == '\t') p++; } while (0)
6156 /* Scan one "atom" (S in the description above of %{}, possibly
6157 with '!', '.', '@', ',', or '*' modifiers). */
6159 a_is_suffix
= false;
6160 a_is_starred
= false;
6161 a_is_negated
= false;
6162 a_is_spectype
= false;
6166 p
++, a_is_negated
= true;
6170 p
++, a_is_suffix
= true;
6172 p
++, a_is_spectype
= true;
6175 while (ISIDNUM(*p
) || *p
== '-' || *p
== '+' || *p
== '='
6176 || *p
== ',' || *p
== '.' || *p
== '@')
6181 p
++, a_is_starred
= 1;
6187 /* Substitute the switch(es) indicated by the current atom. */
6189 if (disjunct_set
|| n_way_choice
|| a_is_negated
|| a_is_suffix
6190 || a_is_spectype
|| atom
== end_atom
)
6193 mark_matching_switches (atom
, end_atom
, a_is_starred
);
6196 process_marked_switches ();
6200 /* Substitute some text if the current atom appears as a switch
6202 disjunct_set
= true;
6206 if (atom
== end_atom
)
6208 if (!n_way_choice
|| disj_matched
|| *p
== '|'
6209 || a_is_negated
|| a_is_suffix
|| a_is_spectype
6213 /* An empty term may appear as the last choice of an
6214 N-way choice set; it means "otherwise". */
6215 a_must_be_last
= true;
6216 disj_matched
= !n_way_matched
;
6217 disj_starred
= false;
6221 if ((a_is_suffix
|| a_is_spectype
) && a_is_starred
)
6225 disj_starred
= false;
6227 /* Don't bother testing this atom if we already have a
6229 if (!disj_matched
&& !n_way_matched
)
6232 a_matched
= input_suffix_matches (atom
, end_atom
);
6233 else if (a_is_spectype
)
6234 a_matched
= input_spec_matches (atom
, end_atom
);
6236 a_matched
= switch_matches (atom
, end_atom
, a_is_starred
);
6238 if (a_matched
!= a_is_negated
)
6240 disj_matched
= true;
6242 d_end_atom
= end_atom
;
6249 /* Found the body, that is, the text to substitute if the
6250 current disjunction matches. */
6251 p
= process_brace_body (p
+ 1, d_atom
, d_end_atom
, disj_starred
,
6252 disj_matched
&& !n_way_matched
);
6256 /* If we have an N-way choice, reset state for the next
6260 n_way_choice
= true;
6261 n_way_matched
|= disj_matched
;
6262 disj_matched
= false;
6263 disj_starred
= true;
6264 d_atom
= d_end_atom
= NULL
;
6273 while (*p
++ != '}');
6278 fatal ("braced spec '%s' is invalid at '%c'", orig
, *p
);
6283 /* Subroutine of handle_braces. Scan and process a brace substitution body
6284 (X in the description of %{} syntax). P points one past the colon;
6285 ATOM and END_ATOM bracket the first atom which was found to be true
6286 (present) in the current disjunction; STARRED indicates whether all
6287 the atoms in the current disjunction were starred (for syntax validation);
6288 MATCHED indicates whether the disjunction matched or not, and therefore
6289 whether or not the body is to be processed through do_spec_1 or just
6290 skipped. Returns a pointer to the closing } or ;, or 0 if do_spec_1
6294 process_brace_body (const char *p
, const char *atom
, const char *end_atom
,
6295 int starred
, int matched
)
6297 const char *body
, *end_body
;
6298 unsigned int nesting_level
;
6299 bool have_subst
= false;
6301 /* Locate the closing } or ;, honoring nested braces.
6302 Trim trailing whitespace. */
6311 if (!--nesting_level
)
6314 else if (*p
== ';' && nesting_level
== 1)
6316 else if (*p
== '%' && p
[1] == '*' && nesting_level
== 1)
6318 else if (*p
== '\0')
6324 while (end_body
[-1] == ' ' || end_body
[-1] == '\t')
6327 if (have_subst
&& !starred
)
6332 /* Copy the substitution body to permanent storage and execute it.
6333 If have_subst is false, this is a simple matter of running the
6334 body through do_spec_1... */
6335 char *string
= save_string (body
, end_body
- body
);
6338 if (do_spec_1 (string
, 0, NULL
) < 0)
6343 /* ... but if have_subst is true, we have to process the
6344 body once for each matching switch, with %* set to the
6345 variant part of the switch. */
6346 unsigned int hard_match_len
= end_atom
- atom
;
6349 for (i
= 0; i
< n_switches
; i
++)
6350 if (!strncmp (switches
[i
].part1
, atom
, hard_match_len
)
6351 && check_live_switch (i
, hard_match_len
))
6353 if (do_spec_1 (string
, 0,
6354 &switches
[i
].part1
[hard_match_len
]) < 0)
6356 /* Pass any arguments this switch has. */
6358 suffix_subst
= NULL
;
6366 fatal ("braced spec body '%s' is invalid", body
);
6369 /* Return 0 iff switch number SWITCHNUM is obsoleted by a later switch
6370 on the command line. PREFIX_LENGTH is the length of XXX in an {XXX*}
6371 spec, or -1 if either exact match or %* is used.
6373 A -O switch is obsoleted by a later -O switch. A -f, -m, or -W switch
6374 whose value does not begin with "no-" is obsoleted by the same value
6375 with the "no-", similarly for a switch with the "no-" prefix. */
6378 check_live_switch (int switchnum
, int prefix_length
)
6380 const char *name
= switches
[switchnum
].part1
;
6383 /* If we already processed this switch and determined if it was
6384 live or not, return our past determination. */
6385 if (switches
[switchnum
].live_cond
!= 0)
6386 return ((switches
[switchnum
].live_cond
& SWITCH_LIVE
) != 0
6387 && (switches
[switchnum
].live_cond
& SWITCH_FALSE
) == 0
6388 && (switches
[switchnum
].live_cond
& SWITCH_IGNORE
) == 0);
6390 /* In the common case of {<at-most-one-letter>*}, a negating
6391 switch would always match, so ignore that case. We will just
6392 send the conflicting switches to the compiler phase. */
6393 if (prefix_length
>= 0 && prefix_length
<= 1)
6396 /* Now search for duplicate in a manner that depends on the name. */
6400 for (i
= switchnum
+ 1; i
< n_switches
; i
++)
6401 if (switches
[i
].part1
[0] == 'O')
6403 switches
[switchnum
].validated
= 1;
6404 switches
[switchnum
].live_cond
= SWITCH_FALSE
;
6409 case 'W': case 'f': case 'm':
6410 if (! strncmp (name
+ 1, "no-", 3))
6412 /* We have Xno-YYY, search for XYYY. */
6413 for (i
= switchnum
+ 1; i
< n_switches
; i
++)
6414 if (switches
[i
].part1
[0] == name
[0]
6415 && ! strcmp (&switches
[i
].part1
[1], &name
[4]))
6417 switches
[switchnum
].validated
= 1;
6418 switches
[switchnum
].live_cond
= SWITCH_FALSE
;
6424 /* We have XYYY, search for Xno-YYY. */
6425 for (i
= switchnum
+ 1; i
< n_switches
; i
++)
6426 if (switches
[i
].part1
[0] == name
[0]
6427 && switches
[i
].part1
[1] == 'n'
6428 && switches
[i
].part1
[2] == 'o'
6429 && switches
[i
].part1
[3] == '-'
6430 && !strcmp (&switches
[i
].part1
[4], &name
[1]))
6432 switches
[switchnum
].validated
= 1;
6433 switches
[switchnum
].live_cond
= SWITCH_FALSE
;
6440 /* Otherwise the switch is live. */
6441 switches
[switchnum
].live_cond
|= SWITCH_LIVE
;
6445 /* Pass a switch to the current accumulating command
6446 in the same form that we received it.
6447 SWITCHNUM identifies the switch; it is an index into
6448 the vector of switches gcc received, which is `switches'.
6449 This cannot fail since it never finishes a command line.
6451 If OMIT_FIRST_WORD is nonzero, then we omit .part1 of the argument. */
6454 give_switch (int switchnum
, int omit_first_word
)
6456 if ((switches
[switchnum
].live_cond
& SWITCH_IGNORE
) != 0)
6459 if (!omit_first_word
)
6461 do_spec_1 ("-", 0, NULL
);
6462 do_spec_1 (switches
[switchnum
].part1
, 1, NULL
);
6465 if (switches
[switchnum
].args
!= 0)
6468 for (p
= switches
[switchnum
].args
; *p
; p
++)
6470 const char *arg
= *p
;
6472 do_spec_1 (" ", 0, NULL
);
6475 unsigned length
= strlen (arg
);
6478 while (length
-- && !IS_DIR_SEPARATOR (arg
[length
]))
6479 if (arg
[length
] == '.')
6481 (CONST_CAST(char *, arg
))[length
] = 0;
6485 do_spec_1 (arg
, 1, NULL
);
6487 (CONST_CAST(char *, arg
))[length
] = '.';
6488 do_spec_1 (suffix_subst
, 1, NULL
);
6491 do_spec_1 (arg
, 1, NULL
);
6495 do_spec_1 (" ", 0, NULL
);
6496 switches
[switchnum
].validated
= 1;
6499 /* Search for a file named NAME trying various prefixes including the
6500 user's -B prefix and some standard ones.
6501 Return the absolute file name found. If nothing is found, return NAME. */
6504 find_file (const char *name
)
6506 char *newname
= find_a_file (&startfile_prefixes
, name
, R_OK
, true);
6507 return newname
? newname
: name
;
6510 /* Determine whether a directory exists. If LINKER, return 0 for
6511 certain fixed names not needed by the linker. */
6514 is_directory (const char *path1
, bool linker
)
6521 /* Ensure the string ends with "/.". The resulting path will be a
6522 directory even if the given path is a symbolic link. */
6523 len1
= strlen (path1
);
6524 path
= (char *) alloca (3 + len1
);
6525 memcpy (path
, path1
, len1
);
6527 if (!IS_DIR_SEPARATOR (cp
[-1]))
6528 *cp
++ = DIR_SEPARATOR
;
6532 /* Exclude directories that the linker is known to search. */
6534 && IS_DIR_SEPARATOR (path
[0])
6536 && strncmp (path
+ 1, "lib", 3) == 0)
6538 && strncmp (path
+ 1, "usr", 3) == 0
6539 && IS_DIR_SEPARATOR (path
[4])
6540 && strncmp (path
+ 5, "lib", 3) == 0)))
6543 return (stat (path
, &st
) >= 0 && S_ISDIR (st
.st_mode
));
6546 /* Set up the various global variables to indicate that we're processing
6547 the input file named FILENAME. */
6550 set_input (const char *filename
)
6554 input_filename
= filename
;
6555 input_filename_length
= strlen (input_filename
);
6556 input_basename
= lbasename (input_filename
);
6558 /* Find a suffix starting with the last period,
6559 and set basename_length to exclude that suffix. */
6560 basename_length
= strlen (input_basename
);
6561 suffixed_basename_length
= basename_length
;
6562 p
= input_basename
+ basename_length
;
6563 while (p
!= input_basename
&& *p
!= '.')
6565 if (*p
== '.' && p
!= input_basename
)
6567 basename_length
= p
- input_basename
;
6568 input_suffix
= p
+ 1;
6573 /* If a spec for 'g', 'u', or 'U' is seen with -save-temps then
6574 we will need to do a stat on the input_filename. The
6575 INPUT_STAT_SET signals that the stat is needed. */
6579 /* On fatal signals, delete all the temporary files. */
6582 fatal_error (int signum
)
6584 signal (signum
, SIG_DFL
);
6585 delete_failure_queue ();
6586 delete_temp_files ();
6587 /* Get the same signal again, this time not handled,
6588 so its normal effect occurs. */
6589 kill (getpid (), signum
);
6592 /* Compare the contents of the two files named CMPFILE[0] and
6593 CMPFILE[1]. Return zero if they're identical, nonzero
6597 compare_files (char *cmpfile
[])
6600 FILE *temp
[2] = { NULL
, NULL
};
6606 void *map
[2] = { NULL
, NULL
};
6608 for (i
= 0; i
< 2; i
++)
6612 if (stat (cmpfile
[i
], &st
) < 0 || !S_ISREG (st
.st_mode
))
6614 error ("%s: could not determine length of compare-debug file %s",
6615 input_filename
, cmpfile
[i
]);
6620 length
[i
] = st
.st_size
;
6623 if (!ret
&& length
[0] != length
[1])
6625 error ("%s: -fcompare-debug failure (length)", input_filename
);
6630 for (i
= 0; i
< 2; i
++)
6632 int fd
= open (cmpfile
[i
], O_RDONLY
);
6635 error ("%s: could not open compare-debug file %s",
6636 input_filename
, cmpfile
[i
]);
6641 map
[i
] = mmap (NULL
, length
[i
], PROT_READ
, MAP_PRIVATE
, fd
, 0);
6644 if (map
[i
] == (void *) MAP_FAILED
)
6653 if (memcmp (map
[0], map
[1], length
[0]) != 0)
6655 error ("%s: -fcompare-debug failure", input_filename
);
6660 for (i
= 0; i
< 2; i
++)
6662 munmap ((caddr_t
) map
[i
], length
[i
]);
6671 for (i
= 0; i
< 2; i
++)
6673 temp
[i
] = fopen (cmpfile
[i
], "r");
6676 error ("%s: could not open compare-debug file %s",
6677 input_filename
, cmpfile
[i
]);
6683 if (!ret
&& temp
[0] && temp
[1])
6687 c0
= fgetc (temp
[0]);
6688 c1
= fgetc (temp
[1]);
6692 error ("%s: -fcompare-debug failure",
6702 for (i
= 1; i
>= 0; i
--)
6711 extern int main (int, char **);
6714 main (int argc
, char **argv
)
6718 int linker_was_run
= 0;
6719 int lang_n_infiles
= 0;
6720 int num_linker_inputs
= 0;
6721 char *explicit_link_files
;
6724 struct user_specs
*uptr
;
6725 char **old_argv
= argv
;
6727 /* Initialize here, not in definition. The IRIX 6 O32 cc sometimes chokes
6728 on ?: in file-scope variable initializations. */
6729 asm_debug
= ASM_DEBUG_SPEC
;
6731 p
= argv
[0] + strlen (argv
[0]);
6732 while (p
!= argv
[0] && !IS_DIR_SEPARATOR (p
[-1]))
6736 xmalloc_set_program_name (programname
);
6738 expandargv (&argc
, &argv
);
6740 /* Determine if any expansions were made. */
6741 if (argv
!= old_argv
)
6742 at_file_supplied
= true;
6744 prune_options (&argc
, &argv
);
6746 #ifdef GCC_DRIVER_HOST_INITIALIZATION
6747 /* Perform host dependent initialization when needed. */
6748 GCC_DRIVER_HOST_INITIALIZATION
;
6751 /* Unlock the stdio streams. */
6752 unlock_std_streams ();
6754 gcc_init_libintl ();
6756 if (signal (SIGINT
, SIG_IGN
) != SIG_IGN
)
6757 signal (SIGINT
, fatal_error
);
6759 if (signal (SIGHUP
, SIG_IGN
) != SIG_IGN
)
6760 signal (SIGHUP
, fatal_error
);
6762 if (signal (SIGTERM
, SIG_IGN
) != SIG_IGN
)
6763 signal (SIGTERM
, fatal_error
);
6765 if (signal (SIGPIPE
, SIG_IGN
) != SIG_IGN
)
6766 signal (SIGPIPE
, fatal_error
);
6769 /* We *MUST* set SIGCHLD to SIG_DFL so that the wait4() call will
6770 receive the signal. A different setting is inheritable */
6771 signal (SIGCHLD
, SIG_DFL
);
6774 /* Allocate the argument vector. */
6777 obstack_init (&obstack
);
6779 /* Build multilib_select, et. al from the separate lines that make up each
6780 multilib selection. */
6782 const char *const *q
= multilib_raw
;
6785 obstack_init (&multilib_obstack
);
6786 while ((p
= *q
++) != (char *) 0)
6787 obstack_grow (&multilib_obstack
, p
, strlen (p
));
6789 obstack_1grow (&multilib_obstack
, 0);
6790 multilib_select
= XOBFINISH (&multilib_obstack
, const char *);
6792 q
= multilib_matches_raw
;
6793 while ((p
= *q
++) != (char *) 0)
6794 obstack_grow (&multilib_obstack
, p
, strlen (p
));
6796 obstack_1grow (&multilib_obstack
, 0);
6797 multilib_matches
= XOBFINISH (&multilib_obstack
, const char *);
6799 q
= multilib_exclusions_raw
;
6800 while ((p
= *q
++) != (char *) 0)
6801 obstack_grow (&multilib_obstack
, p
, strlen (p
));
6803 obstack_1grow (&multilib_obstack
, 0);
6804 multilib_exclusions
= XOBFINISH (&multilib_obstack
, const char *);
6807 for (i
= 0; i
< ARRAY_SIZE (multilib_defaults_raw
); i
++)
6810 obstack_1grow (&multilib_obstack
, ' ');
6811 obstack_grow (&multilib_obstack
,
6812 multilib_defaults_raw
[i
],
6813 strlen (multilib_defaults_raw
[i
]));
6817 obstack_1grow (&multilib_obstack
, 0);
6818 multilib_defaults
= XOBFINISH (&multilib_obstack
, const char *);
6821 /* Set up to remember the pathname of gcc and any options
6822 needed for collect. We use argv[0] instead of programname because
6823 we need the complete pathname. */
6824 obstack_init (&collect_obstack
);
6825 obstack_grow (&collect_obstack
, "COLLECT_GCC=", sizeof ("COLLECT_GCC=") - 1);
6826 obstack_grow (&collect_obstack
, argv
[0], strlen (argv
[0]) + 1);
6827 xputenv (XOBFINISH (&collect_obstack
, char *));
6829 #ifdef INIT_ENVIRONMENT
6830 /* Set up any other necessary machine specific environment variables. */
6831 xputenv (INIT_ENVIRONMENT
);
6834 /* Make a table of what switches there are (switches, n_switches).
6835 Make a table of specified input files (infiles, n_infiles).
6836 Decode switches that are handled locally. */
6838 process_command (argc
, CONST_CAST2 (const char **, char **, argv
));
6840 /* Initialize the vector of specs to just the default.
6841 This means one element containing 0s, as a terminator. */
6843 compilers
= XNEWVAR (struct compiler
, sizeof default_compilers
);
6844 memcpy (compilers
, default_compilers
, sizeof default_compilers
);
6845 n_compilers
= n_default_compilers
;
6847 /* Read specs from a file if there is one. */
6849 machine_suffix
= concat (spec_machine
, dir_separator_str
,
6850 spec_version
, dir_separator_str
, NULL
);
6851 just_machine_suffix
= concat (spec_machine
, dir_separator_str
, NULL
);
6853 specs_file
= find_a_file (&startfile_prefixes
, "specs", R_OK
, true);
6854 /* Read the specs file unless it is a default one. */
6855 if (specs_file
!= 0 && strcmp (specs_file
, "specs"))
6856 read_specs (specs_file
, TRUE
);
6860 /* We need to check standard_exec_prefix/just_machine_suffix/specs
6861 for any override of as, ld and libraries. */
6862 specs_file
= (char *) alloca (strlen (standard_exec_prefix
)
6863 + strlen (just_machine_suffix
) + sizeof ("specs"));
6865 strcpy (specs_file
, standard_exec_prefix
);
6866 strcat (specs_file
, just_machine_suffix
);
6867 strcat (specs_file
, "specs");
6868 if (access (specs_file
, R_OK
) == 0)
6869 read_specs (specs_file
, TRUE
);
6871 /* Process any configure-time defaults specified for the command line
6872 options, via OPTION_DEFAULT_SPECS. */
6873 for (i
= 0; i
< ARRAY_SIZE (option_default_specs
); i
++)
6874 do_option_spec (option_default_specs
[i
].name
,
6875 option_default_specs
[i
].spec
);
6877 /* Process DRIVER_SELF_SPECS, adding any new options to the end
6878 of the command line. */
6880 for (i
= 0; i
< ARRAY_SIZE (driver_self_specs
); i
++)
6881 do_self_spec (driver_self_specs
[i
]);
6885 enum save_temps save
;
6887 if (!compare_debug_second
)
6889 n_switches_debug_check
[1] = n_switches
;
6890 switches_debug_check
[1] = XDUPVEC (struct switchstr
, switches
,
6893 do_self_spec ("%:compare-debug-self-opt()");
6894 n_switches_debug_check
[0] = n_switches
;
6895 switches_debug_check
[0] = switches
;
6897 n_switches
= n_switches_debug_check
[1];
6898 switches
= switches_debug_check
[1];
6901 /* Avoid crash when computing %j in this early. */
6902 save
= save_temps_flag
;
6903 save_temps_flag
= SAVE_TEMPS_NONE
;
6905 compare_debug
= -compare_debug
;
6906 do_self_spec ("%:compare-debug-self-opt()");
6908 save_temps_flag
= save
;
6910 if (!compare_debug_second
)
6912 n_switches_debug_check
[1] = n_switches
;
6913 switches_debug_check
[1] = switches
;
6914 compare_debug
= -compare_debug
;
6915 n_switches
= n_switches_debug_check
[0];
6916 switches
= switches_debug_check
[0];
6920 /* If not cross-compiling, look for executables in the standard
6922 if (*cross_compile
== '0')
6924 if (*md_exec_prefix
)
6926 add_prefix (&exec_prefixes
, md_exec_prefix
, "GCC",
6927 PREFIX_PRIORITY_LAST
, 0, 0);
6931 /* Process sysroot_suffix_spec. */
6932 if (*sysroot_suffix_spec
!= 0
6933 && do_spec_2 (sysroot_suffix_spec
) == 0)
6935 if (argbuf_index
> 1)
6936 error ("spec failure: more than one arg to SYSROOT_SUFFIX_SPEC");
6937 else if (argbuf_index
== 1)
6938 target_sysroot_suffix
= xstrdup (argbuf
[argbuf_index
-1]);
6941 #ifdef HAVE_LD_SYSROOT
6942 /* Pass the --sysroot option to the linker, if it supports that. If
6943 there is a sysroot_suffix_spec, it has already been processed by
6944 this point, so target_system_root really is the system root we
6946 if (target_system_root
)
6948 obstack_grow (&obstack
, "%(sysroot_spec) ", strlen ("%(sysroot_spec) "));
6949 obstack_grow0 (&obstack
, link_spec
, strlen (link_spec
));
6950 set_spec ("link", XOBFINISH (&obstack
, const char *));
6954 /* Process sysroot_hdrs_suffix_spec. */
6955 if (*sysroot_hdrs_suffix_spec
!= 0
6956 && do_spec_2 (sysroot_hdrs_suffix_spec
) == 0)
6958 if (argbuf_index
> 1)
6959 error ("spec failure: more than one arg to SYSROOT_HEADERS_SUFFIX_SPEC");
6960 else if (argbuf_index
== 1)
6961 target_sysroot_hdrs_suffix
= xstrdup (argbuf
[argbuf_index
-1]);
6964 /* Look for startfiles in the standard places. */
6965 if (*startfile_prefix_spec
!= 0
6966 && do_spec_2 (startfile_prefix_spec
) == 0
6967 && do_spec_1 (" ", 0, NULL
) == 0)
6970 for (ndx
= 0; ndx
< argbuf_index
; ndx
++)
6971 add_sysrooted_prefix (&startfile_prefixes
, argbuf
[ndx
], "BINUTILS",
6972 PREFIX_PRIORITY_LAST
, 0, 1);
6974 /* We should eventually get rid of all these and stick to
6975 startfile_prefix_spec exclusively. */
6976 else if (*cross_compile
== '0' || target_system_root
)
6978 if (*md_startfile_prefix
)
6979 add_sysrooted_prefix (&startfile_prefixes
, md_startfile_prefix
,
6980 "GCC", PREFIX_PRIORITY_LAST
, 0, 1);
6982 if (*md_startfile_prefix_1
)
6983 add_sysrooted_prefix (&startfile_prefixes
, md_startfile_prefix_1
,
6984 "GCC", PREFIX_PRIORITY_LAST
, 0, 1);
6986 /* If standard_startfile_prefix is relative, base it on
6987 standard_exec_prefix. This lets us move the installed tree
6988 as a unit. If GCC_EXEC_PREFIX is defined, base
6989 standard_startfile_prefix on that as well.
6991 If the prefix is relative, only search it for native compilers;
6992 otherwise we will search a directory containing host libraries. */
6993 if (IS_ABSOLUTE_PATH (standard_startfile_prefix
))
6994 add_sysrooted_prefix (&startfile_prefixes
,
6995 standard_startfile_prefix
, "BINUTILS",
6996 PREFIX_PRIORITY_LAST
, 0, 1);
6997 else if (*cross_compile
== '0')
6999 add_prefix (&startfile_prefixes
,
7000 concat (gcc_exec_prefix
7001 ? gcc_exec_prefix
: standard_exec_prefix
,
7003 standard_startfile_prefix
, NULL
),
7004 NULL
, PREFIX_PRIORITY_LAST
, 0, 1);
7007 /* Sysrooted prefixes are relocated because target_system_root is
7008 also relocated by gcc_exec_prefix. */
7009 if (*standard_startfile_prefix_1
)
7010 add_sysrooted_prefix (&startfile_prefixes
,
7011 standard_startfile_prefix_1
, "BINUTILS",
7012 PREFIX_PRIORITY_LAST
, 0, 1);
7013 if (*standard_startfile_prefix_2
)
7014 add_sysrooted_prefix (&startfile_prefixes
,
7015 standard_startfile_prefix_2
, "BINUTILS",
7016 PREFIX_PRIORITY_LAST
, 0, 1);
7019 /* Process any user specified specs in the order given on the command
7021 for (uptr
= user_specs_head
; uptr
; uptr
= uptr
->next
)
7023 char *filename
= find_a_file (&startfile_prefixes
, uptr
->filename
,
7025 read_specs (filename
? filename
: uptr
->filename
, FALSE
);
7028 /* If we have a GCC_EXEC_PREFIX envvar, modify it for cpp's sake. */
7029 if (gcc_exec_prefix
)
7030 gcc_exec_prefix
= concat (gcc_exec_prefix
, spec_machine
, dir_separator_str
,
7031 spec_version
, dir_separator_str
, NULL
);
7033 /* Now we have the specs.
7034 Set the `valid' bits for switches that match anything in any spec. */
7036 validate_all_switches ();
7038 /* Now that we have the switches and the specs, set
7039 the subdirectory based on the options. */
7040 set_multilib_dir ();
7042 /* Warn about any switches that no pass was interested in. */
7044 for (i
= 0; (int) i
< n_switches
; i
++)
7045 if (! switches
[i
].validated
)
7046 error ("unrecognized option '-%s'", switches
[i
].part1
);
7048 /* Obey some of the options. */
7050 if (print_search_dirs
)
7052 printf (_("install: %s%s\n"),
7053 gcc_exec_prefix
? gcc_exec_prefix
: standard_exec_prefix
,
7054 gcc_exec_prefix
? "" : machine_suffix
);
7055 printf (_("programs: %s\n"),
7056 build_search_list (&exec_prefixes
, "", false, false));
7057 printf (_("libraries: %s\n"),
7058 build_search_list (&startfile_prefixes
, "", false, true));
7062 if (print_file_name
)
7064 printf ("%s\n", find_file (print_file_name
));
7068 if (print_prog_name
)
7070 char *newname
= find_a_file (&exec_prefixes
, print_prog_name
, X_OK
, 0);
7071 printf ("%s\n", (newname
? newname
: print_prog_name
));
7075 if (print_multi_lib
)
7077 print_multilib_info ();
7081 if (print_multi_directory
)
7083 if (multilib_dir
== NULL
)
7086 printf ("%s\n", multilib_dir
);
7092 if (target_system_root
)
7094 if (target_sysroot_suffix
)
7095 printf ("%s%s\n", target_system_root
, target_sysroot_suffix
);
7097 printf ("%s\n", target_system_root
);
7102 if (print_multi_os_directory
)
7104 if (multilib_os_dir
== NULL
)
7107 printf ("%s\n", multilib_os_dir
);
7111 if (print_sysroot_headers_suffix
)
7113 if (*sysroot_hdrs_suffix_spec
)
7115 printf("%s\n", (target_sysroot_hdrs_suffix
7116 ? target_sysroot_hdrs_suffix
7121 /* The error status indicates that only one set of fixed
7122 headers should be built. */
7123 fatal ("not configured with sysroot headers suffix");
7126 if (print_help_list
)
7132 printf (_("\nFor bug reporting instructions, please see:\n"));
7133 printf ("%s.\n", bug_report_url
);
7138 /* We do not exit here. Instead we have created a fake input file
7139 called 'help-dummy' which needs to be compiled, and we pass this
7140 on the various sub-processes, along with the --help switch.
7141 Ensure their output appears after ours. */
7142 fputc ('\n', stdout
);
7148 printf (_("%s %s%s\n"), programname
, pkgversion_string
,
7150 printf ("Copyright %s 2009 Free Software Foundation, Inc.\n",
7152 fputs (_("This is free software; see the source for copying conditions. There is NO\n\
7153 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n"),
7158 /* We do not exit here. We use the same mechanism of --help to print
7159 the version of the sub-processes. */
7160 fputc ('\n', stdout
);
7169 notice ("Target: %s\n", spec_machine
);
7170 notice ("Configured with: %s\n", configuration_arguments
);
7172 #ifdef THREAD_MODEL_SPEC
7173 /* We could have defined THREAD_MODEL_SPEC to "%*" by default,
7174 but there's no point in doing all this processing just to get
7175 thread_model back. */
7176 obstack_init (&obstack
);
7177 do_spec_1 (THREAD_MODEL_SPEC
, 0, thread_model
);
7178 obstack_1grow (&obstack
, '\0');
7179 thrmod
= XOBFINISH (&obstack
, const char *);
7181 thrmod
= thread_model
;
7184 notice ("Thread model: %s\n", thrmod
);
7186 /* compiler_version is truncated at the first space when initialized
7187 from version string, so truncate version_string at the first space
7188 before comparing. */
7189 for (n
= 0; version_string
[n
]; n
++)
7190 if (version_string
[n
] == ' ')
7193 if (! strncmp (version_string
, compiler_version
, n
)
7194 && compiler_version
[n
] == 0)
7195 notice ("gcc version %s %s\n", version_string
, pkgversion_string
);
7197 notice ("gcc driver version %s %sexecuting gcc version %s\n",
7198 version_string
, pkgversion_string
, compiler_version
);
7204 if (n_infiles
== added_libraries
)
7205 fatal ("no input files");
7207 /* Make a place to record the compiler output file names
7208 that correspond to the input files. */
7211 i
+= lang_specific_extra_outfiles
;
7212 outfiles
= XCNEWVEC (const char *, i
);
7214 /* Record which files were specified explicitly as link input. */
7216 explicit_link_files
= XCNEWVEC (char, n_infiles
);
7219 combine_inputs
= true;
7221 combine_inputs
= false;
7223 for (i
= 0; (int) i
< n_infiles
; i
++)
7225 const char *name
= infiles
[i
].name
;
7226 struct compiler
*compiler
= lookup_compiler (name
,
7228 infiles
[i
].language
);
7230 if (compiler
&& !(compiler
->combinable
))
7231 combine_inputs
= false;
7233 if (lang_n_infiles
> 0 && compiler
!= input_file_compiler
7234 && infiles
[i
].language
&& infiles
[i
].language
[0] != '*')
7235 infiles
[i
].incompiler
= compiler
;
7239 input_file_compiler
= compiler
;
7240 infiles
[i
].incompiler
= compiler
;
7244 /* Since there is no compiler for this input file, assume it is a
7246 explicit_link_files
[i
] = 1;
7247 infiles
[i
].incompiler
= NULL
;
7249 infiles
[i
].compiled
= false;
7250 infiles
[i
].preprocessed
= false;
7253 if (!combine_inputs
&& have_c
&& have_o
&& lang_n_infiles
> 1)
7254 fatal ("cannot specify -o with -c or -S with multiple files");
7256 if (combine_flag
&& save_temps_flag
)
7258 bool save_combine_inputs
= combine_inputs
;
7259 /* Must do a separate pre-processing pass for C & Objective-C files, to
7260 obtain individual .i files. */
7262 combine_inputs
= false;
7263 for (i
= 0; (int) i
< n_infiles
; i
++)
7265 int this_file_error
= 0;
7267 input_file_number
= i
;
7268 set_input (infiles
[i
].name
);
7269 if (infiles
[i
].incompiler
7270 && (infiles
[i
].incompiler
)->needs_preprocessing
)
7271 input_file_compiler
= infiles
[i
].incompiler
;
7275 if (input_file_compiler
)
7277 if (input_file_compiler
->spec
[0] == '#')
7279 error ("%s: %s compiler not installed on this system",
7280 input_filename
, &input_file_compiler
->spec
[1]);
7281 this_file_error
= 1;
7285 value
= do_spec (input_file_compiler
->spec
);
7286 infiles
[i
].preprocessed
= true;
7287 if (!have_o_argbuf_index
)
7288 fatal ("spec '%s' is invalid", input_file_compiler
->spec
);
7289 infiles
[i
].name
= argbuf
[have_o_argbuf_index
];
7290 infiles
[i
].incompiler
7291 = lookup_compiler (infiles
[i
].name
,
7292 strlen (infiles
[i
].name
),
7293 infiles
[i
].language
);
7296 this_file_error
= 1;
7300 if (this_file_error
)
7302 delete_failure_queue ();
7306 clear_failure_queue ();
7308 combine_inputs
= save_combine_inputs
;
7311 for (i
= 0; (int) i
< n_infiles
; i
++)
7313 int this_file_error
= 0;
7315 /* Tell do_spec what to substitute for %i. */
7317 input_file_number
= i
;
7318 set_input (infiles
[i
].name
);
7320 if (infiles
[i
].compiled
)
7323 /* Use the same thing in %o, unless cp->spec says otherwise. */
7325 outfiles
[i
] = input_filename
;
7327 /* Figure out which compiler from the file's suffix. */
7329 if (! combine_inputs
)
7331 = lookup_compiler (infiles
[i
].name
, input_filename_length
,
7332 infiles
[i
].language
);
7334 input_file_compiler
= infiles
[i
].incompiler
;
7336 if (input_file_compiler
)
7338 /* Ok, we found an applicable compiler. Run its spec. */
7340 if (input_file_compiler
->spec
[0] == '#')
7342 error ("%s: %s compiler not installed on this system",
7343 input_filename
, &input_file_compiler
->spec
[1]);
7344 this_file_error
= 1;
7350 if (debug_check_temp_file
[0])
7351 free (debug_check_temp_file
[0]);
7352 debug_check_temp_file
[0] = NULL
;
7354 if (debug_check_temp_file
[1])
7355 free (debug_check_temp_file
[1]);
7356 debug_check_temp_file
[1] = NULL
;
7359 value
= do_spec (input_file_compiler
->spec
);
7360 infiles
[i
].compiled
= true;
7362 this_file_error
= 1;
7363 else if (compare_debug
&& debug_check_temp_file
[0])
7366 error ("Recompiling with -fcompare-debug");
7368 compare_debug
= -compare_debug
;
7369 n_switches
= n_switches_debug_check
[1];
7370 switches
= switches_debug_check
[1];
7372 value
= do_spec (input_file_compiler
->spec
);
7374 compare_debug
= -compare_debug
;
7375 n_switches
= n_switches_debug_check
[0];
7376 switches
= switches_debug_check
[0];
7380 error ("during -fcompare-debug recompilation");
7381 this_file_error
= 1;
7384 gcc_assert (debug_check_temp_file
[1]
7385 && strcmp (debug_check_temp_file
[0],
7386 debug_check_temp_file
[1]));
7389 error ("Comparing final insns dumps");
7391 if (compare_files (debug_check_temp_file
))
7392 this_file_error
= 1;
7397 if (debug_check_temp_file
[0])
7398 free (debug_check_temp_file
[0]);
7399 debug_check_temp_file
[0] = NULL
;
7401 if (debug_check_temp_file
[1])
7402 free (debug_check_temp_file
[1]);
7403 debug_check_temp_file
[1] = NULL
;
7408 /* If this file's name does not contain a recognized suffix,
7409 record it as explicit linker input. */
7412 explicit_link_files
[i
] = 1;
7414 /* Clear the delete-on-failure queue, deleting the files in it
7415 if this compilation failed. */
7417 if (this_file_error
)
7419 delete_failure_queue ();
7422 /* If this compilation succeeded, don't delete those files later. */
7423 clear_failure_queue ();
7426 /* Reset the input file name to the first compile/object file name, for use
7427 with %b in LINK_SPEC. We use the first input file that we can find
7428 a compiler to compile it instead of using infiles.language since for
7429 languages other than C we use aliases that we then lookup later. */
7434 for (i
= 0; i
< n_infiles
; i
++)
7435 if (infiles
[i
].language
&& infiles
[i
].language
[0] != '*')
7437 set_input (infiles
[i
].name
);
7442 if (error_count
== 0)
7444 /* Make sure INPUT_FILE_NUMBER points to first available open
7446 input_file_number
= n_infiles
;
7447 if (lang_specific_pre_link ())
7451 /* Determine if there are any linker input files. */
7452 num_linker_inputs
= 0;
7453 for (i
= 0; (int) i
< n_infiles
; i
++)
7454 if (explicit_link_files
[i
] || outfiles
[i
] != NULL
)
7455 num_linker_inputs
++;
7457 /* Run ld to link all the compiler output files. */
7459 if (num_linker_inputs
> 0 && error_count
== 0 && print_subprocess_help
< 2)
7461 int tmp
= execution_count
;
7463 /* We'll use ld if we can't find collect2. */
7464 if (! strcmp (linker_name_spec
, "collect2"))
7466 char *s
= find_a_file (&exec_prefixes
, "collect2", X_OK
, false);
7468 linker_name_spec
= "ld";
7470 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
7472 putenv_from_prefixes (&exec_prefixes
, "COMPILER_PATH", false);
7473 putenv_from_prefixes (&startfile_prefixes
, LIBRARY_PATH_ENV
, true);
7475 if (print_subprocess_help
== 1)
7477 printf (_("\nLinker options\n==============\n\n"));
7478 printf (_("Use \"-Wl,OPTION\" to pass \"OPTION\""
7479 " to the linker.\n\n"));
7482 value
= do_spec (link_command_spec
);
7485 linker_was_run
= (tmp
!= execution_count
);
7488 /* If options said don't run linker,
7489 complain about input files to be given to the linker. */
7491 if (! linker_was_run
&& error_count
== 0)
7492 for (i
= 0; (int) i
< n_infiles
; i
++)
7493 if (explicit_link_files
[i
]
7494 && !(infiles
[i
].language
&& infiles
[i
].language
[0] == '*'))
7495 error ("%s: linker input file unused because linking not done",
7498 /* Delete some or all of the temporary files we made. */
7501 delete_failure_queue ();
7502 delete_temp_files ();
7504 if (print_help_list
)
7506 printf (("\nFor bug reporting instructions, please see:\n"));
7507 printf ("%s\n", bug_report_url
);
7510 return (signal_count
!= 0 ? 2
7511 : error_count
> 0 ? (pass_exit_codes
? greatest_status
: 1)
7515 /* Find the proper compilation spec for the file name NAME,
7516 whose length is LENGTH. LANGUAGE is the specified language,
7517 or 0 if this file is to be passed to the linker. */
7519 static struct compiler
*
7520 lookup_compiler (const char *name
, size_t length
, const char *language
)
7522 struct compiler
*cp
;
7524 /* If this was specified by the user to be a linker input, indicate that. */
7525 if (language
!= 0 && language
[0] == '*')
7528 /* Otherwise, look for the language, if one is spec'd. */
7531 for (cp
= compilers
+ n_compilers
- 1; cp
>= compilers
; cp
--)
7532 if (cp
->suffix
[0] == '@' && !strcmp (cp
->suffix
+ 1, language
))
7535 error ("language %s not recognized", language
);
7539 /* Look for a suffix. */
7540 for (cp
= compilers
+ n_compilers
- 1; cp
>= compilers
; cp
--)
7542 if (/* The suffix `-' matches only the file name `-'. */
7543 (!strcmp (cp
->suffix
, "-") && !strcmp (name
, "-"))
7544 || (strlen (cp
->suffix
) < length
7545 /* See if the suffix matches the end of NAME. */
7546 && !strcmp (cp
->suffix
,
7547 name
+ length
- strlen (cp
->suffix
))
7552 #if defined (OS2) ||defined (HAVE_DOS_BASED_FILE_SYSTEM)
7553 /* Look again, but case-insensitively this time. */
7555 for (cp
= compilers
+ n_compilers
- 1; cp
>= compilers
; cp
--)
7557 if (/* The suffix `-' matches only the file name `-'. */
7558 (!strcmp (cp
->suffix
, "-") && !strcmp (name
, "-"))
7559 || (strlen (cp
->suffix
) < length
7560 /* See if the suffix matches the end of NAME. */
7561 && ((!strcmp (cp
->suffix
,
7562 name
+ length
- strlen (cp
->suffix
))
7563 || !strpbrk (cp
->suffix
, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"))
7564 && !strcasecmp (cp
->suffix
,
7565 name
+ length
- strlen (cp
->suffix
)))
7571 if (cp
>= compilers
)
7573 if (cp
->spec
[0] != '@')
7574 /* A non-alias entry: return it. */
7577 /* An alias entry maps a suffix to a language.
7578 Search for the language; pass 0 for NAME and LENGTH
7579 to avoid infinite recursion if language not found. */
7580 return lookup_compiler (NULL
, 0, cp
->spec
+ 1);
7586 save_string (const char *s
, int len
)
7588 char *result
= XNEWVEC (char, len
+ 1);
7590 memcpy (result
, s
, len
);
7596 pfatal_with_name (const char *name
)
7598 perror_with_name (name
);
7599 delete_temp_files ();
7604 perror_with_name (const char *name
)
7606 error ("%s: %s", name
, xstrerror (errno
));
7609 /* Output an error message and exit. */
7612 fancy_abort (const char *file
, int line
, const char *func
)
7614 fatal_ice ("internal gcc abort in %s, at %s:%d", func
, file
, line
);
7617 /* Output an error message and exit. */
7620 fatal_ice (const char *cmsgid
, ...)
7624 va_start (ap
, cmsgid
);
7626 fprintf (stderr
, "%s: ", programname
);
7627 vfprintf (stderr
, _(cmsgid
), ap
);
7629 fprintf (stderr
, "\n");
7630 delete_temp_files ();
7631 exit (pass_exit_codes
? ICE_EXIT_CODE
: 1);
7635 fatal (const char *cmsgid
, ...)
7639 va_start (ap
, cmsgid
);
7641 fprintf (stderr
, "%s: ", programname
);
7642 vfprintf (stderr
, _(cmsgid
), ap
);
7644 fprintf (stderr
, "\n");
7645 delete_temp_files ();
7649 /* The argument is actually c-format, not gcc-internal-format,
7650 but because functions with identical names are used through
7651 the rest of the compiler with gcc-internal-format, we just
7652 need to hope all users of these functions use the common
7653 subset between c-format and gcc-internal-format. */
7656 error (const char *gmsgid
, ...)
7660 va_start (ap
, gmsgid
);
7661 fprintf (stderr
, "%s: ", programname
);
7662 vfprintf (stderr
, _(gmsgid
), ap
);
7665 fprintf (stderr
, "\n");
7669 notice (const char *cmsgid
, ...)
7673 va_start (ap
, cmsgid
);
7674 vfprintf (stderr
, _(cmsgid
), ap
);
7679 validate_switches_from_spec (const char *spec
)
7681 const char *p
= spec
;
7684 if (c
== '%' && (*p
== '{' || *p
== '<' || (*p
== 'W' && *++p
== '{')))
7685 /* We have a switch spec. */
7686 p
= validate_switches (p
+ 1);
7690 validate_all_switches (void)
7692 struct compiler
*comp
;
7693 struct spec_list
*spec
;
7695 for (comp
= compilers
; comp
->spec
; comp
++)
7696 validate_switches_from_spec (comp
->spec
);
7698 /* Look through the linked list of specs read from the specs file. */
7699 for (spec
= specs
; spec
; spec
= spec
->next
)
7700 validate_switches_from_spec (*spec
->ptr_spec
);
7702 validate_switches_from_spec (link_command_spec
);
7705 /* Look at the switch-name that comes after START
7706 and mark as valid all supplied switches that match it. */
7709 validate_switches (const char *start
)
7711 const char *p
= start
;
7715 bool suffix
= false;
7716 bool starred
= false;
7718 #define SKIP_WHITE() do { while (*p == ' ' || *p == '\t') p++; } while (0)
7727 if (*p
== '.' || *p
== ',')
7731 while (ISIDNUM (*p
) || *p
== '-' || *p
== '+' || *p
== '='
7732 || *p
== ',' || *p
== '.' || *p
== '@')
7737 starred
= true, p
++;
7743 /* Mark all matching switches as valid. */
7744 for (i
= 0; i
< n_switches
; i
++)
7745 if (!strncmp (switches
[i
].part1
, atom
, len
)
7746 && (starred
|| switches
[i
].part1
[len
] == 0))
7747 switches
[i
].validated
= 1;
7751 if (*p
&& (p
[-1] == '|' || p
[-1] == '&'))
7754 if (*p
&& p
[-1] == ':')
7756 while (*p
&& *p
!= ';' && *p
!= '}')
7761 if (*p
== '{' || *p
== '<')
7762 p
= validate_switches (p
+1);
7763 else if (p
[0] == 'W' && p
[1] == '{')
7764 p
= validate_switches (p
+2);
7771 if (*p
&& p
[-1] == ';')
7785 static struct mdswitchstr
*mdswitches
;
7786 static int n_mdswitches
;
7788 /* Check whether a particular argument was used. The first time we
7789 canonicalize the switches to keep only the ones we care about. */
7792 used_arg (const char *p
, int len
)
7797 const char *replace
;
7802 static struct mswitchstr
*mswitches
;
7803 static int n_mswitches
;
7808 struct mswitchstr
*matches
;
7812 /* Break multilib_matches into the component strings of string
7813 and replacement string. */
7814 for (q
= multilib_matches
; *q
!= '\0'; q
++)
7819 = (struct mswitchstr
*) alloca ((sizeof (struct mswitchstr
)) * cnt
);
7821 q
= multilib_matches
;
7830 fatal ("multilib spec '%s' is invalid", multilib_matches
);
7834 matches
[i
].len
= q
- matches
[i
].str
;
7836 matches
[i
].replace
= ++q
;
7837 while (*q
!= ';' && *q
!= '\0')
7840 goto invalid_matches
;
7843 matches
[i
].rep_len
= q
- matches
[i
].replace
;
7849 /* Now build a list of the replacement string for switches that we care
7850 about. Make sure we allocate at least one entry. This prevents
7851 xmalloc from calling fatal, and prevents us from re-executing this
7854 = XNEWVEC (struct mswitchstr
, n_mdswitches
+ (n_switches
? n_switches
: 1));
7855 for (i
= 0; i
< n_switches
; i
++)
7856 if ((switches
[i
].live_cond
& SWITCH_IGNORE
) == 0)
7858 int xlen
= strlen (switches
[i
].part1
);
7859 for (j
= 0; j
< cnt
; j
++)
7860 if (xlen
== matches
[j
].len
7861 && ! strncmp (switches
[i
].part1
, matches
[j
].str
, xlen
))
7863 mswitches
[n_mswitches
].str
= matches
[j
].replace
;
7864 mswitches
[n_mswitches
].len
= matches
[j
].rep_len
;
7865 mswitches
[n_mswitches
].replace
= (char *) 0;
7866 mswitches
[n_mswitches
].rep_len
= 0;
7872 /* Add MULTILIB_DEFAULTS switches too, as long as they were not present
7873 on the command line nor any options mutually incompatible with
7875 for (i
= 0; i
< n_mdswitches
; i
++)
7879 for (q
= multilib_options
; *q
!= '\0'; q
++)
7885 while (strncmp (q
, mdswitches
[i
].str
, mdswitches
[i
].len
) != 0
7886 || strchr (" /", q
[mdswitches
[i
].len
]) == NULL
)
7888 while (*q
!= ' ' && *q
!= '/' && *q
!= '\0')
7895 if (*q
!= ' ' && *q
!= '\0')
7897 while (*r
!= ' ' && *r
!= '\0')
7900 while (*q
!= ' ' && *q
!= '/' && *q
!= '\0')
7903 if (used_arg (r
, q
- r
))
7908 mswitches
[n_mswitches
].str
= mdswitches
[i
].str
;
7909 mswitches
[n_mswitches
].len
= mdswitches
[i
].len
;
7910 mswitches
[n_mswitches
].replace
= (char *) 0;
7911 mswitches
[n_mswitches
].rep_len
= 0;
7924 for (i
= 0; i
< n_mswitches
; i
++)
7925 if (len
== mswitches
[i
].len
&& ! strncmp (p
, mswitches
[i
].str
, len
))
7932 default_arg (const char *p
, int len
)
7936 for (i
= 0; i
< n_mdswitches
; i
++)
7937 if (len
== mdswitches
[i
].len
&& ! strncmp (p
, mdswitches
[i
].str
, len
))
7943 /* Work out the subdirectory to use based on the options. The format of
7944 multilib_select is a list of elements. Each element is a subdirectory
7945 name followed by a list of options followed by a semicolon. The format
7946 of multilib_exclusions is the same, but without the preceding
7947 directory. First gcc will check the exclusions, if none of the options
7948 beginning with an exclamation point are present, and all of the other
7949 options are present, then we will ignore this completely. Passing
7950 that, gcc will consider each multilib_select in turn using the same
7951 rules for matching the options. If a match is found, that subdirectory
7955 set_multilib_dir (void)
7958 unsigned int this_path_len
;
7959 const char *this_path
, *this_arg
;
7960 const char *start
, *end
;
7962 int ok
, ndfltok
, first
;
7965 start
= multilib_defaults
;
7966 while (*start
== ' ' || *start
== '\t')
7968 while (*start
!= '\0')
7971 while (*start
!= ' ' && *start
!= '\t' && *start
!= '\0')
7973 while (*start
== ' ' || *start
== '\t')
7981 mdswitches
= XNEWVEC (struct mdswitchstr
, n_mdswitches
);
7982 for (start
= multilib_defaults
; *start
!= '\0'; start
= end
+ 1)
7984 while (*start
== ' ' || *start
== '\t')
7990 for (end
= start
+ 1;
7991 *end
!= ' ' && *end
!= '\t' && *end
!= '\0'; end
++)
7994 obstack_grow (&multilib_obstack
, start
, end
- start
);
7995 obstack_1grow (&multilib_obstack
, 0);
7996 mdswitches
[i
].str
= XOBFINISH (&multilib_obstack
, const char *);
7997 mdswitches
[i
++].len
= end
- start
;
8004 p
= multilib_exclusions
;
8007 /* Ignore newlines. */
8014 /* Check the arguments. */
8021 fatal ("multilib exclusions '%s' is invalid",
8022 multilib_exclusions
);
8032 while (*p
!= ' ' && *p
!= ';')
8035 goto invalid_exclusions
;
8039 if (*this_arg
!= '!')
8047 ok
= used_arg (this_arg
, p
- this_arg
);
8062 p
= multilib_select
;
8065 /* Ignore newlines. */
8072 /* Get the initial path. */
8079 fatal ("multilib select '%s' is invalid",
8084 this_path_len
= p
- this_path
;
8086 /* Check the arguments. */
8093 goto invalid_select
;
8102 while (*p
!= ' ' && *p
!= ';')
8105 goto invalid_select
;
8109 if (*this_arg
!= '!')
8117 /* If this is a default argument, we can just ignore it.
8118 This is true even if this_arg begins with '!'. Beginning
8119 with '!' does not mean that this argument is necessarily
8120 inappropriate for this library: it merely means that
8121 there is a more specific library which uses this
8122 argument. If this argument is a default, we need not
8123 consider that more specific library. */
8124 ok
= used_arg (this_arg
, p
- this_arg
);
8131 if (default_arg (this_arg
, p
- this_arg
))
8140 if (this_path_len
!= 1
8141 || this_path
[0] != '.')
8143 char *new_multilib_dir
= XNEWVEC (char, this_path_len
+ 1);
8146 strncpy (new_multilib_dir
, this_path
, this_path_len
);
8147 new_multilib_dir
[this_path_len
] = '\0';
8148 q
= strchr (new_multilib_dir
, ':');
8151 multilib_dir
= new_multilib_dir
;
8158 const char *q
= this_path
, *end
= this_path
+ this_path_len
;
8160 while (q
< end
&& *q
!= ':')
8164 char *new_multilib_os_dir
= XNEWVEC (char, end
- q
);
8165 memcpy (new_multilib_os_dir
, q
+ 1, end
- q
- 1);
8166 new_multilib_os_dir
[end
- q
- 1] = '\0';
8167 multilib_os_dir
= new_multilib_os_dir
;
8175 if (multilib_dir
== NULL
&& multilib_os_dir
!= NULL
8176 && strcmp (multilib_os_dir
, ".") == 0)
8178 free (CONST_CAST (char *, multilib_os_dir
));
8179 multilib_os_dir
= NULL
;
8181 else if (multilib_dir
!= NULL
&& multilib_os_dir
== NULL
)
8182 multilib_os_dir
= multilib_dir
;
8185 /* Print out the multiple library subdirectory selection
8186 information. This prints out a series of lines. Each line looks
8187 like SUBDIRECTORY;@OPTION@OPTION, with as many options as is
8188 required. Only the desired options are printed out, the negative
8189 matches. The options are print without a leading dash. There are
8190 no spaces to make it easy to use the information in the shell.
8191 Each subdirectory is printed only once. This assumes the ordering
8192 generated by the genmultilib script. Also, we leave out ones that match
8196 print_multilib_info (void)
8198 const char *p
= multilib_select
;
8199 const char *last_path
= 0, *this_path
;
8201 unsigned int last_path_len
= 0;
8206 /* Ignore newlines. */
8213 /* Get the initial path. */
8220 fatal ("multilib select '%s' is invalid", multilib_select
);
8226 /* When --disable-multilib was used but target defines
8227 MULTILIB_OSDIRNAMES, entries starting with .: are there just
8228 to find multilib_os_dir, so skip them from output. */
8229 if (this_path
[0] == '.' && this_path
[1] == ':')
8232 /* Check for matches with the multilib_exclusions. We don't bother
8233 with the '!' in either list. If any of the exclusion rules match
8234 all of its options with the select rule, we skip it. */
8236 const char *e
= multilib_exclusions
;
8237 const char *this_arg
;
8242 /* Ignore newlines. */
8249 /* Check the arguments. */
8258 fatal ("multilib exclusion '%s' is invalid",
8259 multilib_exclusions
);
8270 while (*e
!= ' ' && *e
!= ';')
8273 goto invalid_exclusion
;
8281 int len
= e
- this_arg
;
8284 goto invalid_select
;
8288 while (*q
!= ' ' && *q
!= ';')
8291 goto invalid_select
;
8295 if (! strncmp (arg
, this_arg
,
8296 (len
< q
- arg
) ? q
- arg
: len
)
8297 || default_arg (this_arg
, e
- this_arg
))
8327 /* If this is a duplicate, skip it. */
8328 skip
= (last_path
!= 0
8329 && (unsigned int) (p
- this_path
) == last_path_len
8330 && ! strncmp (last_path
, this_path
, last_path_len
));
8332 last_path
= this_path
;
8333 last_path_len
= p
- this_path
;
8336 /* If this directory requires any default arguments, we can skip
8337 it. We will already have printed a directory identical to
8338 this one which does not require that default argument. */
8349 goto invalid_select
;
8356 while (*q
!= ' ' && *q
!= ';')
8359 goto invalid_select
;
8364 && default_arg (arg
, q
- arg
))
8379 for (p1
= last_path
; p1
< p
&& *p1
!= ':'; p1
++)
8390 goto invalid_select
;
8398 use_arg
= *p
!= '!';
8403 while (*p
!= ' ' && *p
!= ';')
8406 goto invalid_select
;
8418 /* If there are extra options, print them now. */
8419 if (multilib_extra
&& *multilib_extra
)
8421 int print_at
= TRUE
;
8424 for (q
= multilib_extra
; *q
!= '\0'; q
++)
8445 /* getenv built-in spec function.
8447 Returns the value of the environment variable given by its first
8448 argument, concatenated with the second argument. If the
8449 environment variable is not defined, a fatal error is issued. */
8452 getenv_spec_function (int argc
, const char **argv
)
8462 value
= getenv (argv
[0]);
8464 fatal ("environment variable \"%s\" not defined", argv
[0]);
8466 /* We have to escape every character of the environment variable so
8467 they are not interpreted as active spec characters. A
8468 particularly painful case is when we are reading a variable
8469 holding a windows path complete with \ separators. */
8470 len
= strlen (value
) * 2 + strlen (argv
[1]) + 1;
8471 result
= XNEWVAR (char, len
);
8472 for (ptr
= result
; *value
; ptr
+= 2)
8478 strcpy (ptr
, argv
[1]);
8483 /* if-exists built-in spec function.
8485 Checks to see if the file specified by the absolute pathname in
8486 ARGS exists. Returns that pathname if found.
8488 The usual use for this function is to check for a library file
8489 (whose name has been expanded with %s). */
8492 if_exists_spec_function (int argc
, const char **argv
)
8494 /* Must have only one argument. */
8495 if (argc
== 1 && IS_ABSOLUTE_PATH (argv
[0]) && ! access (argv
[0], R_OK
))
8501 /* if-exists-else built-in spec function.
8503 This is like if-exists, but takes an additional argument which
8504 is returned if the first argument does not exist. */
8507 if_exists_else_spec_function (int argc
, const char **argv
)
8509 /* Must have exactly two arguments. */
8513 if (IS_ABSOLUTE_PATH (argv
[0]) && ! access (argv
[0], R_OK
))
8519 /* replace-outfile built-in spec function.
8521 This looks for the first argument in the outfiles array's name and
8522 replaces it with the second argument. */
8525 replace_outfile_spec_function (int argc
, const char **argv
)
8528 /* Must have exactly two arguments. */
8532 for (i
= 0; i
< n_infiles
; i
++)
8534 if (outfiles
[i
] && !strcmp (outfiles
[i
], argv
[0]))
8535 outfiles
[i
] = xstrdup (argv
[1]);
8540 /* Given two version numbers, compares the two numbers.
8541 A version number must match the regular expression
8542 ([1-9][0-9]*|0)(\.([1-9][0-9]*|0))*
8545 compare_version_strings (const char *v1
, const char *v2
)
8550 if (regcomp (&r
, "^([1-9][0-9]*|0)(\\.([1-9][0-9]*|0))*$",
8551 REG_EXTENDED
| REG_NOSUB
) != 0)
8553 rresult
= regexec (&r
, v1
, 0, NULL
, 0);
8554 if (rresult
== REG_NOMATCH
)
8555 fatal ("invalid version number `%s'", v1
);
8556 else if (rresult
!= 0)
8558 rresult
= regexec (&r
, v2
, 0, NULL
, 0);
8559 if (rresult
== REG_NOMATCH
)
8560 fatal ("invalid version number `%s'", v2
);
8561 else if (rresult
!= 0)
8564 return strverscmp (v1
, v2
);
8568 /* version_compare built-in spec function.
8570 This takes an argument of the following form:
8572 <comparison-op> <arg1> [<arg2>] <switch> <result>
8574 and produces "result" if the comparison evaluates to true,
8575 and nothing if it doesn't.
8577 The supported <comparison-op> values are:
8579 >= true if switch is a later (or same) version than arg1
8581 < true if switch is an earlier version than arg1
8583 >< true if switch is arg1 or later, and earlier than arg2
8584 <> true if switch is earlier than arg1 or is arg2 or later
8586 If the switch is not present, the condition is false unless
8587 the first character of the <comparison-op> is '!'.
8590 %:version-compare(>= 10.3 mmacosx-version-min= -lmx)
8591 adds -lmx if -mmacosx-version-min=10.3.9 was passed. */
8594 version_compare_spec_function (int argc
, const char **argv
)
8598 const char *switch_value
= NULL
;
8603 fatal ("too few arguments to %%:version-compare");
8604 if (argv
[0][0] == '\0')
8606 if ((argv
[0][1] == '<' || argv
[0][1] == '>') && argv
[0][0] != '!')
8608 if (argc
!= nargs
+ 3)
8609 fatal ("too many arguments to %%:version-compare");
8611 switch_len
= strlen (argv
[nargs
+ 1]);
8612 for (i
= 0; i
< n_switches
; i
++)
8613 if (!strncmp (switches
[i
].part1
, argv
[nargs
+ 1], switch_len
)
8614 && check_live_switch (i
, switch_len
))
8615 switch_value
= switches
[i
].part1
+ switch_len
;
8617 if (switch_value
== NULL
)
8621 comp1
= compare_version_strings (switch_value
, argv
[1]);
8623 comp2
= compare_version_strings (switch_value
, argv
[2]);
8625 comp2
= -1; /* This value unused. */
8628 switch (argv
[0][0] << 8 | argv
[0][1])
8630 case '>' << 8 | '=':
8631 result
= comp1
>= 0;
8633 case '!' << 8 | '<':
8634 result
= comp1
>= 0 || switch_value
== NULL
;
8639 case '!' << 8 | '>':
8640 result
= comp1
< 0 || switch_value
== NULL
;
8642 case '>' << 8 | '<':
8643 result
= comp1
>= 0 && comp2
< 0;
8645 case '<' << 8 | '>':
8646 result
= comp1
< 0 || comp2
>= 0;
8650 fatal ("unknown operator '%s' in %%:version-compare", argv
[0]);
8655 return argv
[nargs
+ 2];
8658 /* %:include builtin spec function. This differs from %include in that it
8659 can be nested inside a spec, and thus be conditionalized. It takes
8660 one argument, the filename, and looks for it in the startfile path.
8661 The result is always NULL, i.e. an empty expansion. */
8664 include_spec_function (int argc
, const char **argv
)
8671 file
= find_a_file (&startfile_prefixes
, argv
[0], R_OK
, true);
8672 read_specs (file
? file
: argv
[0], FALSE
);
8677 /* %:print-asm-header spec function. Print a banner to say that the
8678 following output is from the assembler. */
8681 print_asm_header_spec_function (int arg ATTRIBUTE_UNUSED
,
8682 const char **argv ATTRIBUTE_UNUSED
)
8684 printf (_("Assembler options\n=================\n\n"));
8685 printf (_("Use \"-Wa,OPTION\" to pass \"OPTION\" to the assembler.\n\n"));
8690 /* %:compare-debug-dump-opt spec function. Save the last argument,
8691 expected to be the last -fdump-final-insns option, or generate a
8695 compare_debug_dump_opt_spec_function (int arg
,
8696 const char **argv ATTRIBUTE_UNUSED
)
8703 fatal ("too many arguments to %%:compare-debug-dump-opt");
8708 do_spec_2 ("%{fdump-final-insns=*:%*}");
8709 do_spec_1 (" ", 0, NULL
);
8711 if (argbuf_index
> 0)
8713 name
= xstrdup (argv
[argbuf_index
- 1]);
8718 #define OPT "-fdump-final-insns="
8719 ret
= "-fdump-final-insns=%g.gkd";
8721 do_spec_2 (ret
+ sizeof (OPT
) - 1);
8722 do_spec_1 (" ", 0, NULL
);
8725 gcc_assert (argbuf_index
> 0);
8727 name
= xstrdup (argbuf
[argbuf_index
- 1]);
8730 which
= compare_debug
< 0;
8731 debug_check_temp_file
[which
] = name
;
8734 error ("compare-debug: [%i]=\"%s\", ret %s", which
, name
, ret
);
8740 static const char *debug_auxbase_opt
;
8742 /* %:compare-debug-self-opt spec function. Expands to the options
8743 that are to be passed in the second compilation of
8747 compare_debug_self_opt_spec_function (int arg
,
8748 const char **argv ATTRIBUTE_UNUSED
)
8751 fatal ("too many arguments to %%:compare-debug-self-opt");
8753 if (compare_debug
>= 0)
8756 do_spec_2 ("%{c|S:%{o*:%*}}");
8757 do_spec_1 (" ", 0, NULL
);
8759 if (argbuf_index
> 0)
8760 debug_auxbase_opt
= concat ("-auxbase-strip ",
8761 argbuf
[argbuf_index
- 1],
8764 debug_auxbase_opt
= NULL
;
8767 %<o %<MD %<MMD %<MF* %<MG %<MP %<MQ* %<MT* \
8768 %<fdump-final-insns=* -w -S -o %j \
8769 %{!fcompare-debug-second:-fcompare-debug-second} \
8770 ", compare_debug_opt
, NULL
);
8773 /* %:compare-debug-auxbase-opt spec function. Expands to the auxbase
8774 options that are to be passed in the second compilation of
8775 compare-debug. It expects, as an argument, the basename of the
8776 current input file name, with the .gk suffix appended to it. */
8779 compare_debug_auxbase_opt_spec_function (int arg
,
8786 fatal ("too few arguments to %%:compare-debug-auxbase-opt");
8789 fatal ("too many arguments to %%:compare-debug-auxbase-opt");
8791 if (compare_debug
>= 0)
8794 len
= strlen (argv
[0]);
8795 if (len
< 3 || strcmp (argv
[0] + len
- 3, ".gk") != 0)
8796 fatal ("argument to %%:compare-debug-auxbase-opt does not end in .gk");
8798 if (debug_auxbase_opt
)
8799 return debug_auxbase_opt
;
8801 #define OPT "-auxbase "
8804 name
= (char*) xmalloc (sizeof (OPT
) + len
);
8805 memcpy (name
, OPT
, sizeof (OPT
) - 1);
8806 memcpy (name
+ sizeof (OPT
) - 1, argv
[0], len
);
8807 name
[sizeof (OPT
) - 1 + len
] = '\0';