2007-05-01 H.J. Lu <hongjiu.lu@intel.com>
[official-gcc.git] / gcc / gcc.c
blob10468026939eb995fbd969cd022d60d62269ed65
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
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 2, or (at your option) any later
11 version.
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
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING. If not, write to the Free
20 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
21 02110-1301, USA.
23 This paragraph is here to try to keep Sun CC from dying.
24 The number of chars here seems crucial!!!! */
26 /* This program is the user interface to the C compiler and possibly to
27 other compilers. It is used because compilation is a complicated procedure
28 which involves running several programs and passing temporary files between
29 them, forwarding the users switches to those programs selectively,
30 and deleting the temporary files at the end.
32 CC recognizes how to compile each input file by suffixes in the file names.
33 Once it knows which kind of compilation to perform, the procedure for
34 compilation is specified by a string called a "spec". */
36 /* A Short Introduction to Adding a Command-Line Option.
38 Before adding a command-line option, consider if it is really
39 necessary. Each additional command-line option adds complexity and
40 is difficult to remove in subsequent versions.
42 In the following, consider adding the command-line argument
43 `--bar'.
45 1. Each command-line option is specified in the specs file. The
46 notation is described below in the comment entitled "The Specs
47 Language". Read it.
49 2. In this file, add an entry to "option_map" equating the long
50 `--' argument version and any shorter, single letter version. Read
51 the comments in the declaration of "struct option_map" for an
52 explanation. Do not omit the first `-'.
54 3. Look in the "specs" file to determine which program or option
55 list should be given the argument, e.g., "cc1_options". Add the
56 appropriate syntax for the shorter option version to the
57 corresponding "const char *" entry in this file. Omit the first
58 `-' from the option. For example, use `-bar', rather than `--bar'.
60 4. If the argument takes an argument, e.g., `--baz argument1',
61 modify either DEFAULT_SWITCH_TAKES_ARG or
62 DEFAULT_WORD_SWITCH_TAKES_ARG in gcc.h. Omit the first `-'
63 from `--baz'.
65 5. Document the option in this file's display_help(). If the
66 option is passed to a subprogram, modify its corresponding
67 function, e.g., cppinit.c:print_help() or toplev.c:display_help(),
68 instead.
70 6. Compile and test. Make sure that your new specs file is being
71 read. For example, use a debugger to investigate the value of
72 "specs_file" in main(). */
74 #include "config.h"
75 #include "system.h"
76 #include "coretypes.h"
77 #include "multilib.h" /* before tm.h */
78 #include "tm.h"
79 #include <signal.h>
80 #if ! defined( SIGCHLD ) && defined( SIGCLD )
81 # define SIGCHLD SIGCLD
82 #endif
83 #include "xregex.h"
84 #include "obstack.h"
85 #include "intl.h"
86 #include "prefix.h"
87 #include "gcc.h"
88 #include "flags.h"
89 #include "opts.h"
91 /* By default there is no special suffix for target executables. */
92 /* FIXME: when autoconf is fixed, remove the host check - dj */
93 #if defined(TARGET_EXECUTABLE_SUFFIX) && defined(HOST_EXECUTABLE_SUFFIX)
94 #define HAVE_TARGET_EXECUTABLE_SUFFIX
95 #endif
97 /* By default there is no special suffix for host executables. */
98 #ifdef HOST_EXECUTABLE_SUFFIX
99 #define HAVE_HOST_EXECUTABLE_SUFFIX
100 #else
101 #define HOST_EXECUTABLE_SUFFIX ""
102 #endif
104 /* By default, the suffix for target object files is ".o". */
105 #ifdef TARGET_OBJECT_SUFFIX
106 #define HAVE_TARGET_OBJECT_SUFFIX
107 #else
108 #define TARGET_OBJECT_SUFFIX ".o"
109 #endif
111 static const char dir_separator_str[] = { DIR_SEPARATOR, 0 };
113 /* Most every one is fine with LIBRARY_PATH. For some, it conflicts. */
114 #ifndef LIBRARY_PATH_ENV
115 #define LIBRARY_PATH_ENV "LIBRARY_PATH"
116 #endif
118 #ifndef HAVE_KILL
119 #define kill(p,s) raise(s)
120 #endif
122 /* If a stage of compilation returns an exit status >= 1,
123 compilation of that file ceases. */
125 #define MIN_FATAL_STATUS 1
127 /* Flag set by cppspec.c to 1. */
128 int is_cpp_driver;
130 /* Flag saying to pass the greatest exit code returned by a sub-process
131 to the calling program. */
132 static int pass_exit_codes;
134 /* Definition of string containing the arguments given to configure. */
135 #include "configargs.h"
137 /* Flag saying to print the directories gcc will search through looking for
138 programs, libraries, etc. */
140 static int print_search_dirs;
142 /* Flag saying to print the full filename of this file
143 as found through our usual search mechanism. */
145 static const char *print_file_name = NULL;
147 /* As print_file_name, but search for executable file. */
149 static const char *print_prog_name = NULL;
151 /* Flag saying to print the relative path we'd use to
152 find libgcc.a given the current compiler flags. */
154 static int print_multi_directory;
156 /* Flag saying to print the relative path we'd use to
157 find OS libraries given the current compiler flags. */
159 static int print_multi_os_directory;
161 /* Flag saying to print the list of subdirectories and
162 compiler flags used to select them in a standard form. */
164 static int print_multi_lib;
166 /* Flag saying to print the command line options understood by gcc and its
167 sub-processes. */
169 static int print_help_list;
171 /* Flag saying to print the sysroot suffix used for searching for
172 headers. */
174 static int print_sysroot_headers_suffix;
176 /* Flag indicating whether we should print the command and arguments */
178 static int verbose_flag;
180 /* Flag indicating whether we should ONLY print the command and
181 arguments (like verbose_flag) without executing the command.
182 Displayed arguments are quoted so that the generated command
183 line is suitable for execution. This is intended for use in
184 shell scripts to capture the driver-generated command line. */
185 static int verbose_only_flag;
187 /* Flag indicating how to print command line options of sub-processes. */
189 static int print_subprocess_help;
191 /* Flag indicating whether we should report subprocess execution times
192 (if this is supported by the system - see pexecute.c). */
194 static int report_times;
196 /* Nonzero means place this string before uses of /, so that include
197 and library files can be found in an alternate location. */
199 #ifdef TARGET_SYSTEM_ROOT
200 static const char *target_system_root = TARGET_SYSTEM_ROOT;
201 #else
202 static const char *target_system_root = 0;
203 #endif
205 /* Nonzero means pass the updated target_system_root to the compiler. */
207 static int target_system_root_changed;
209 /* Nonzero means append this string to target_system_root. */
211 static const char *target_sysroot_suffix = 0;
213 /* Nonzero means append this string to target_system_root for headers. */
215 static const char *target_sysroot_hdrs_suffix = 0;
217 /* Nonzero means write "temp" files in source directory
218 and use the source file's name in them, and don't delete them. */
220 static int save_temps_flag;
222 /* Nonzero means pass multiple source files to the compiler at one time. */
224 static int combine_flag = 0;
226 /* Nonzero means use pipes to communicate between subprocesses.
227 Overridden by either of the above two flags. */
229 static int use_pipes;
231 /* The compiler version. */
233 static const char *compiler_version;
235 /* The target version specified with -V */
237 static const char *const spec_version = DEFAULT_TARGET_VERSION;
239 /* The target machine specified with -b. */
241 static const char *spec_machine = DEFAULT_TARGET_MACHINE;
243 /* Nonzero if cross-compiling.
244 When -b is used, the value comes from the `specs' file. */
246 #ifdef CROSS_DIRECTORY_STRUCTURE
247 static const char *cross_compile = "1";
248 #else
249 static const char *cross_compile = "0";
250 #endif
252 #ifdef MODIFY_TARGET_NAME
254 /* Information on how to alter the target name based on a command-line
255 switch. The only case we support now is simply appending or deleting a
256 string to or from the end of the first part of the configuration name. */
258 static const struct modify_target
260 const char *const sw;
261 const enum add_del {ADD, DELETE} add_del;
262 const char *const str;
264 modify_target[] = MODIFY_TARGET_NAME;
265 #endif
267 /* The number of errors that have occurred; the link phase will not be
268 run if this is nonzero. */
269 static int error_count = 0;
271 /* Greatest exit code of sub-processes that has been encountered up to
272 now. */
273 static int greatest_status = 1;
275 /* This is the obstack which we use to allocate many strings. */
277 static struct obstack obstack;
279 /* This is the obstack to build an environment variable to pass to
280 collect2 that describes all of the relevant switches of what to
281 pass the compiler in building the list of pointers to constructors
282 and destructors. */
284 static struct obstack collect_obstack;
286 /* Forward declaration for prototypes. */
287 struct path_prefix;
288 struct prefix_list;
290 static void init_spec (void);
291 static void store_arg (const char *, int, int);
292 static char *load_specs (const char *);
293 static void read_specs (const char *, int);
294 static void set_spec (const char *, const char *);
295 static struct compiler *lookup_compiler (const char *, size_t, const char *);
296 static char *build_search_list (const struct path_prefix *, const char *,
297 bool, bool);
298 static void putenv_from_prefixes (const struct path_prefix *, const char *,
299 bool);
300 static int access_check (const char *, int);
301 static char *find_a_file (const struct path_prefix *, const char *, int, bool);
302 static void add_prefix (struct path_prefix *, const char *, const char *,
303 int, int, int);
304 static void add_sysrooted_prefix (struct path_prefix *, const char *,
305 const char *, int, int, int);
306 static void translate_options (int *, const char *const **);
307 static char *skip_whitespace (char *);
308 static void delete_if_ordinary (const char *);
309 static void delete_temp_files (void);
310 static void delete_failure_queue (void);
311 static void clear_failure_queue (void);
312 static int check_live_switch (int, int);
313 static const char *handle_braces (const char *);
314 static inline bool input_suffix_matches (const char *, const char *);
315 static inline bool switch_matches (const char *, const char *, int);
316 static inline void mark_matching_switches (const char *, const char *, int);
317 static inline void process_marked_switches (void);
318 static const char *process_brace_body (const char *, const char *, const char *, int, int);
319 static const struct spec_function *lookup_spec_function (const char *);
320 static const char *eval_spec_function (const char *, const char *);
321 static const char *handle_spec_function (const char *);
322 static char *save_string (const char *, int);
323 static void set_collect_gcc_options (void);
324 static int do_spec_1 (const char *, int, const char *);
325 static int do_spec_2 (const char *);
326 static void do_option_spec (const char *, const char *);
327 static void do_self_spec (const char *);
328 static const char *find_file (const char *);
329 static int is_directory (const char *, bool);
330 static const char *validate_switches (const char *);
331 static void validate_all_switches (void);
332 static inline void validate_switches_from_spec (const char *);
333 static void give_switch (int, int);
334 static int used_arg (const char *, int);
335 static int default_arg (const char *, int);
336 static void set_multilib_dir (void);
337 static void print_multilib_info (void);
338 static void perror_with_name (const char *);
339 static void fatal_ice (const char *, ...) ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN;
340 static void notice (const char *, ...) ATTRIBUTE_PRINTF_1;
341 static void display_help (void);
342 static void add_preprocessor_option (const char *, int);
343 static void add_assembler_option (const char *, int);
344 static void add_linker_option (const char *, int);
345 static void process_command (int, const char **);
346 static int execute (void);
347 static void alloc_args (void);
348 static void clear_args (void);
349 static void fatal_error (int);
350 #if defined(ENABLE_SHARED_LIBGCC) && !defined(REAL_LIBGCC_SPEC)
351 static void init_gcc_specs (struct obstack *, const char *, const char *,
352 const char *);
353 #endif
354 #if defined(HAVE_TARGET_OBJECT_SUFFIX) || defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
355 static const char *convert_filename (const char *, int, int);
356 #endif
358 static const char *getenv_spec_function (int, const char **);
359 static const char *if_exists_spec_function (int, const char **);
360 static const char *if_exists_else_spec_function (int, const char **);
361 static const char *replace_outfile_spec_function (int, const char **);
362 static const char *version_compare_spec_function (int, const char **);
363 static const char *include_spec_function (int, const char **);
364 static const char *print_asm_header_spec_function (int, const char **);
366 /* The Specs Language
368 Specs are strings containing lines, each of which (if not blank)
369 is made up of a program name, and arguments separated by spaces.
370 The program name must be exact and start from root, since no path
371 is searched and it is unreliable to depend on the current working directory.
372 Redirection of input or output is not supported; the subprograms must
373 accept filenames saying what files to read and write.
375 In addition, the specs can contain %-sequences to substitute variable text
376 or for conditional text. Here is a table of all defined %-sequences.
377 Note that spaces are not generated automatically around the results of
378 expanding these sequences; therefore, you can concatenate them together
379 or with constant text in a single argument.
381 %% substitute one % into the program name or argument.
382 %i substitute the name of the input file being processed.
383 %b substitute the basename of the input file being processed.
384 This is the substring up to (and not including) the last period
385 and not including the directory.
386 %B same as %b, but include the file suffix (text after the last period).
387 %gSUFFIX
388 substitute a file name that has suffix SUFFIX and is chosen
389 once per compilation, and mark the argument a la %d. To reduce
390 exposure to denial-of-service attacks, the file name is now
391 chosen in a way that is hard to predict even when previously
392 chosen file names are known. For example, `%g.s ... %g.o ... %g.s'
393 might turn into `ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s'. SUFFIX matches
394 the regexp "[.0-9A-Za-z]*%O"; "%O" is treated exactly as if it
395 had been pre-processed. Previously, %g was simply substituted
396 with a file name chosen once per compilation, without regard
397 to any appended suffix (which was therefore treated just like
398 ordinary text), making such attacks more likely to succeed.
399 %|SUFFIX
400 like %g, but if -pipe is in effect, expands simply to "-".
401 %mSUFFIX
402 like %g, but if -pipe is in effect, expands to nothing. (We have both
403 %| and %m to accommodate differences between system assemblers; see
404 the AS_NEEDS_DASH_FOR_PIPED_INPUT target macro.)
405 %uSUFFIX
406 like %g, but generates a new temporary file name even if %uSUFFIX
407 was already seen.
408 %USUFFIX
409 substitutes the last file name generated with %uSUFFIX, generating a
410 new one if there is no such last file name. In the absence of any
411 %uSUFFIX, this is just like %gSUFFIX, except they don't share
412 the same suffix "space", so `%g.s ... %U.s ... %g.s ... %U.s'
413 would involve the generation of two distinct file names, one
414 for each `%g.s' and another for each `%U.s'. Previously, %U was
415 simply substituted with a file name chosen for the previous %u,
416 without regard to any appended suffix.
417 %jSUFFIX
418 substitutes the name of the HOST_BIT_BUCKET, if any, and if it is
419 writable, and if save-temps is off; otherwise, substitute the name
420 of a temporary file, just like %u. This temporary file is not
421 meant for communication between processes, but rather as a junk
422 disposal mechanism.
423 %.SUFFIX
424 substitutes .SUFFIX for the suffixes of a matched switch's args when
425 it is subsequently output with %*. SUFFIX is terminated by the next
426 space or %.
427 %d marks the argument containing or following the %d as a
428 temporary file name, so that that file will be deleted if CC exits
429 successfully. Unlike %g, this contributes no text to the argument.
430 %w marks the argument containing or following the %w as the
431 "output file" of this compilation. This puts the argument
432 into the sequence of arguments that %o will substitute later.
433 %V indicates that this compilation produces no "output file".
434 %W{...}
435 like %{...} but mark last argument supplied within
436 as a file to be deleted on failure.
437 %o substitutes the names of all the output files, with spaces
438 automatically placed around them. You should write spaces
439 around the %o as well or the results are undefined.
440 %o is for use in the specs for running the linker.
441 Input files whose names have no recognized suffix are not compiled
442 at all, but they are included among the output files, so they will
443 be linked.
444 %O substitutes the suffix for object files. Note that this is
445 handled specially when it immediately follows %g, %u, or %U
446 (with or without a suffix argument) because of the need for
447 those to form complete file names. The handling is such that
448 %O is treated exactly as if it had already been substituted,
449 except that %g, %u, and %U do not currently support additional
450 SUFFIX characters following %O as they would following, for
451 example, `.o'.
452 %I Substitute any of -iprefix (made from GCC_EXEC_PREFIX), -isysroot
453 (made from TARGET_SYSTEM_ROOT), -isystem (made from COMPILER_PATH
454 and -B options) and -imultilib as necessary.
455 %s current argument is the name of a library or startup file of some sort.
456 Search for that file in a standard list of directories
457 and substitute the full name found.
458 %eSTR Print STR as an error message. STR is terminated by a newline.
459 Use this when inconsistent options are detected.
460 %nSTR Print STR as a notice. STR is terminated by a newline.
461 %x{OPTION} Accumulate an option for %X.
462 %X Output the accumulated linker options specified by compilations.
463 %Y Output the accumulated assembler options specified by compilations.
464 %Z Output the accumulated preprocessor options specified by compilations.
465 %a process ASM_SPEC as a spec.
466 This allows config.h to specify part of the spec for running as.
467 %A process ASM_FINAL_SPEC as a spec. A capital A is actually
468 used here. This can be used to run a post-processor after the
469 assembler has done its job.
470 %D Dump out a -L option for each directory in startfile_prefixes.
471 If multilib_dir is set, extra entries are generated with it affixed.
472 %l process LINK_SPEC as a spec.
473 %L process LIB_SPEC as a spec.
474 %G process LIBGCC_SPEC as a spec.
475 %R Output the concatenation of target_system_root and
476 target_sysroot_suffix.
477 %S process STARTFILE_SPEC as a spec. A capital S is actually used here.
478 %E process ENDFILE_SPEC as a spec. A capital E is actually used here.
479 %C process CPP_SPEC as a spec.
480 %1 process CC1_SPEC as a spec.
481 %2 process CC1PLUS_SPEC as a spec.
482 %* substitute the variable part of a matched option. (See below.)
483 Note that each comma in the substituted string is replaced by
484 a single space.
485 %<S remove all occurrences of -S from the command line.
486 Note - this command is position dependent. % commands in the
487 spec string before this one will see -S, % commands in the
488 spec string after this one will not.
489 %<S* remove all occurrences of all switches beginning with -S from the
490 command line.
491 %:function(args)
492 Call the named function FUNCTION, passing it ARGS. ARGS is
493 first processed as a nested spec string, then split into an
494 argument vector in the usual fashion. The function returns
495 a string which is processed as if it had appeared literally
496 as part of the current spec.
497 %{S} substitutes the -S switch, if that switch was given to CC.
498 If that switch was not specified, this substitutes nothing.
499 Here S is a metasyntactic variable.
500 %{S*} substitutes all the switches specified to CC whose names start
501 with -S. This is used for -o, -I, etc; switches that take
502 arguments. CC considers `-o foo' as being one switch whose
503 name starts with `o'. %{o*} would substitute this text,
504 including the space; thus, two arguments would be generated.
505 %{S*&T*} likewise, but preserve order of S and T options (the order
506 of S and T in the spec is not significant). Can be any number
507 of ampersand-separated variables; for each the wild card is
508 optional. Useful for CPP as %{D*&U*&A*}.
510 %{S:X} substitutes X, if the -S switch was given to CC.
511 %{!S:X} substitutes X, if the -S switch was NOT given to CC.
512 %{S*:X} substitutes X if one or more switches whose names start
513 with -S was given to CC. Normally X is substituted only
514 once, no matter how many such switches appeared. However,
515 if %* appears somewhere in X, then X will be substituted
516 once for each matching switch, with the %* replaced by the
517 part of that switch that matched the '*'.
518 %{.S:X} substitutes X, if processing a file with suffix S.
519 %{!.S:X} substitutes X, if NOT processing a file with suffix S.
520 %{,S:X} substitutes X, if processing a file which will use spec S.
521 %{!,S:X} substitutes X, if NOT processing a file which will use spec S.
523 %{S|T:X} substitutes X if either -S or -T was given to CC. This may be
524 combined with '!', '.', ',', and '*' as above binding stronger
525 than the OR.
526 If %* appears in X, all of the alternatives must be starred, and
527 only the first matching alternative is substituted.
528 %{S:X; if S was given to CC, substitutes X;
529 T:Y; else if T was given to CC, substitutes Y;
530 :D} else substitutes D. There can be as many clauses as you need.
531 This may be combined with '.', '!', ',', '|', and '*' as above.
533 %(Spec) processes a specification defined in a specs file as *Spec:
534 %[Spec] as above, but put __ around -D arguments
536 The conditional text X in a %{S:X} or similar construct may contain
537 other nested % constructs or spaces, or even newlines. They are
538 processed as usual, as described above. Trailing white space in X is
539 ignored. White space may also appear anywhere on the left side of the
540 colon in these constructs, except between . or * and the corresponding
541 word.
543 The -O, -f, -m, and -W switches are handled specifically in these
544 constructs. If another value of -O or the negated form of a -f, -m, or
545 -W switch is found later in the command line, the earlier switch
546 value is ignored, except with {S*} where S is just one letter; this
547 passes all matching options.
549 The character | at the beginning of the predicate text is used to indicate
550 that a command should be piped to the following command, but only if -pipe
551 is specified.
553 Note that it is built into CC which switches take arguments and which
554 do not. You might think it would be useful to generalize this to
555 allow each compiler's spec to say which switches take arguments. But
556 this cannot be done in a consistent fashion. CC cannot even decide
557 which input files have been specified without knowing which switches
558 take arguments, and it must know which input files to compile in order
559 to tell which compilers to run.
561 CC also knows implicitly that arguments starting in `-l' are to be
562 treated as compiler output files, and passed to the linker in their
563 proper position among the other output files. */
565 /* Define the macros used for specs %a, %l, %L, %S, %C, %1. */
567 /* config.h can define ASM_SPEC to provide extra args to the assembler
568 or extra switch-translations. */
569 #ifndef ASM_SPEC
570 #define ASM_SPEC ""
571 #endif
573 /* config.h can define ASM_FINAL_SPEC to run a post processor after
574 the assembler has run. */
575 #ifndef ASM_FINAL_SPEC
576 #define ASM_FINAL_SPEC ""
577 #endif
579 /* config.h can define CPP_SPEC to provide extra args to the C preprocessor
580 or extra switch-translations. */
581 #ifndef CPP_SPEC
582 #define CPP_SPEC ""
583 #endif
585 /* config.h can define CC1_SPEC to provide extra args to cc1 and cc1plus
586 or extra switch-translations. */
587 #ifndef CC1_SPEC
588 #define CC1_SPEC ""
589 #endif
591 /* config.h can define CC1PLUS_SPEC to provide extra args to cc1plus
592 or extra switch-translations. */
593 #ifndef CC1PLUS_SPEC
594 #define CC1PLUS_SPEC ""
595 #endif
597 /* config.h can define LINK_SPEC to provide extra args to the linker
598 or extra switch-translations. */
599 #ifndef LINK_SPEC
600 #define LINK_SPEC ""
601 #endif
603 /* config.h can define LIB_SPEC to override the default libraries. */
604 #ifndef LIB_SPEC
605 #define LIB_SPEC "%{!shared:%{g*:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}}"
606 #endif
608 /* mudflap specs */
609 #ifndef MFWRAP_SPEC
610 /* XXX: valid only for GNU ld */
611 /* XXX: should exactly match hooks provided by libmudflap.a */
612 #define MFWRAP_SPEC " %{static: %{fmudflap|fmudflapth: \
613 --wrap=malloc --wrap=free --wrap=calloc --wrap=realloc\
614 --wrap=mmap --wrap=munmap --wrap=alloca\
615 } %{fmudflapth: --wrap=pthread_create\
616 }} %{fmudflap|fmudflapth: --wrap=main}"
617 #endif
618 #ifndef MFLIB_SPEC
619 #define MFLIB_SPEC "%{fmudflap|fmudflapth: -export-dynamic}"
620 #endif
622 /* config.h can define LIBGCC_SPEC to override how and when libgcc.a is
623 included. */
624 #ifndef LIBGCC_SPEC
625 #if defined(REAL_LIBGCC_SPEC)
626 #define LIBGCC_SPEC REAL_LIBGCC_SPEC
627 #elif defined(LINK_LIBGCC_SPECIAL_1)
628 /* Have gcc do the search for libgcc.a. */
629 #define LIBGCC_SPEC "libgcc.a%s"
630 #else
631 #define LIBGCC_SPEC "-lgcc"
632 #endif
633 #endif
635 /* config.h can define STARTFILE_SPEC to override the default crt0 files. */
636 #ifndef STARTFILE_SPEC
637 #define STARTFILE_SPEC \
638 "%{!shared:%{pg:gcrt0%O%s}%{!pg:%{p:mcrt0%O%s}%{!p:crt0%O%s}}}"
639 #endif
641 /* config.h can define SWITCHES_NEED_SPACES to control which options
642 require spaces between the option and the argument. */
643 #ifndef SWITCHES_NEED_SPACES
644 #define SWITCHES_NEED_SPACES ""
645 #endif
647 /* config.h can define ENDFILE_SPEC to override the default crtn files. */
648 #ifndef ENDFILE_SPEC
649 #define ENDFILE_SPEC ""
650 #endif
652 #ifndef LINKER_NAME
653 #define LINKER_NAME "collect2"
654 #endif
656 /* Define ASM_DEBUG_SPEC to be a spec suitable for translating '-g'
657 to the assembler. */
658 #ifndef ASM_DEBUG_SPEC
659 # if defined(DBX_DEBUGGING_INFO) && defined(DWARF2_DEBUGGING_INFO) \
660 && defined(HAVE_AS_GDWARF2_DEBUG_FLAG) && defined(HAVE_AS_GSTABS_DEBUG_FLAG)
661 # define ASM_DEBUG_SPEC \
662 (PREFERRED_DEBUGGING_TYPE == DBX_DEBUG \
663 ? "%{gdwarf-2*:--gdwarf2}%{!gdwarf-2*:%{g*:--gstabs}}" \
664 : "%{gstabs*:--gstabs}%{!gstabs*:%{g*:--gdwarf2}}")
665 # else
666 # if defined(DBX_DEBUGGING_INFO) && defined(HAVE_AS_GSTABS_DEBUG_FLAG)
667 # define ASM_DEBUG_SPEC "%{g*:--gstabs}"
668 # endif
669 # if defined(DWARF2_DEBUGGING_INFO) && defined(HAVE_AS_GDWARF2_DEBUG_FLAG)
670 # define ASM_DEBUG_SPEC "%{g*:--gdwarf2}"
671 # endif
672 # endif
673 #endif
674 #ifndef ASM_DEBUG_SPEC
675 # define ASM_DEBUG_SPEC ""
676 #endif
678 /* Here is the spec for running the linker, after compiling all files. */
680 /* This is overridable by the target in case they need to specify the
681 -lgcc and -lc order specially, yet not require them to override all
682 of LINK_COMMAND_SPEC. */
683 #ifndef LINK_GCC_C_SEQUENCE_SPEC
684 #define LINK_GCC_C_SEQUENCE_SPEC "%G %L %G"
685 #endif
687 #ifndef LINK_SSP_SPEC
688 #ifdef TARGET_LIBC_PROVIDES_SSP
689 #define LINK_SSP_SPEC "%{fstack-protector:}"
690 #else
691 #define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all:-lssp_nonshared -lssp}"
692 #endif
693 #endif
695 #ifndef LINK_PIE_SPEC
696 #ifdef HAVE_LD_PIE
697 #define LINK_PIE_SPEC "%{pie:-pie} "
698 #else
699 #define LINK_PIE_SPEC "%{pie:} "
700 #endif
701 #endif
703 /* -u* was put back because both BSD and SysV seem to support it. */
704 /* %{static:} simply prevents an error message if the target machine
705 doesn't handle -static. */
706 /* We want %{T*} after %{L*} and %D so that it can be used to specify linker
707 scripts which exist in user specified directories, or in standard
708 directories. */
709 #ifndef LINK_COMMAND_SPEC
710 #define LINK_COMMAND_SPEC "\
711 %{!fsyntax-only:%{!c:%{!M:%{!MM:%{!E:%{!S:\
712 %(linker) %l " LINK_PIE_SPEC "%X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} %{r}\
713 %{s} %{t} %{u*} %{x} %{z} %{Z} %{!A:%{!nostdlib:%{!nostartfiles:%S}}}\
714 %{static:} %{L*} %(mfwrap) %(link_libgcc) %o\
715 %{fopenmp:%:include(libgomp.spec)%(link_gomp)} %(mflib)\
716 %{fprofile-arcs|fprofile-generate|coverage:-lgcov}\
717 %{!nostdlib:%{!nodefaultlibs:%(link_ssp) %(link_gcc_c_sequence)}}\
718 %{!A:%{!nostdlib:%{!nostartfiles:%E}}} %{T*} }}}}}}"
719 #endif
721 #ifndef LINK_LIBGCC_SPEC
722 /* Generate -L options for startfile prefix list. */
723 # define LINK_LIBGCC_SPEC "%D"
724 #endif
726 #ifndef STARTFILE_PREFIX_SPEC
727 # define STARTFILE_PREFIX_SPEC ""
728 #endif
730 #ifndef SYSROOT_SPEC
731 # define SYSROOT_SPEC "--sysroot=%R"
732 #endif
734 #ifndef SYSROOT_SUFFIX_SPEC
735 # define SYSROOT_SUFFIX_SPEC ""
736 #endif
738 #ifndef SYSROOT_HEADERS_SUFFIX_SPEC
739 # define SYSROOT_HEADERS_SUFFIX_SPEC ""
740 #endif
742 static const char *asm_debug;
743 static const char *cpp_spec = CPP_SPEC;
744 static const char *cc1_spec = CC1_SPEC;
745 static const char *cc1plus_spec = CC1PLUS_SPEC;
746 static const char *link_gcc_c_sequence_spec = LINK_GCC_C_SEQUENCE_SPEC;
747 static const char *link_ssp_spec = LINK_SSP_SPEC;
748 static const char *asm_spec = ASM_SPEC;
749 static const char *asm_final_spec = ASM_FINAL_SPEC;
750 static const char *link_spec = LINK_SPEC;
751 static const char *lib_spec = LIB_SPEC;
752 static const char *mfwrap_spec = MFWRAP_SPEC;
753 static const char *mflib_spec = MFLIB_SPEC;
754 static const char *link_gomp_spec = "";
755 static const char *libgcc_spec = LIBGCC_SPEC;
756 static const char *endfile_spec = ENDFILE_SPEC;
757 static const char *startfile_spec = STARTFILE_SPEC;
758 static const char *switches_need_spaces = SWITCHES_NEED_SPACES;
759 static const char *linker_name_spec = LINKER_NAME;
760 static const char *link_command_spec = LINK_COMMAND_SPEC;
761 static const char *link_libgcc_spec = LINK_LIBGCC_SPEC;
762 static const char *startfile_prefix_spec = STARTFILE_PREFIX_SPEC;
763 static const char *sysroot_spec = SYSROOT_SPEC;
764 static const char *sysroot_suffix_spec = SYSROOT_SUFFIX_SPEC;
765 static const char *sysroot_hdrs_suffix_spec = SYSROOT_HEADERS_SUFFIX_SPEC;
767 /* Standard options to cpp, cc1, and as, to reduce duplication in specs.
768 There should be no need to override these in target dependent files,
769 but we need to copy them to the specs file so that newer versions
770 of the GCC driver can correctly drive older tool chains with the
771 appropriate -B options. */
773 /* When cpplib handles traditional preprocessing, get rid of this, and
774 call cc1 (or cc1obj in objc/lang-specs.h) from the main specs so
775 that we default the front end language better. */
776 static const char *trad_capable_cpp =
777 "cc1 -E %{traditional|ftraditional|traditional-cpp:-traditional-cpp}";
779 /* We don't wrap .d files in %W{} since a missing .d file, and
780 therefore no dependency entry, confuses make into thinking a .o
781 file that happens to exist is up-to-date. */
782 static const char *cpp_unique_options =
783 "%{C|CC:%{!E:%eGCC does not support -C or -CC without -E}}\
784 %{!Q:-quiet} %{nostdinc*} %{C} %{CC} %{v} %{I*&F*} %{P} %I\
785 %{MD:-MD %{!o:%b.d}%{o*:%.d%*}}\
786 %{MMD:-MMD %{!o:%b.d}%{o*:%.d%*}}\
787 %{M} %{MM} %{MF*} %{MG} %{MP} %{MQ*} %{MT*}\
788 %{!E:%{!M:%{!MM:%{!MT:%{!MQ:%{MD|MMD:%{o*:-MQ %*}}}}}}}\
789 %{remap} %{g3|ggdb3|gstabs3|gcoff3|gxcoff3|gvms3:-dD}\
790 %{H} %C %{D*&U*&A*} %{i*} %Z %i\
791 %{fmudflap:-D_MUDFLAP -include mf-runtime.h}\
792 %{fmudflapth:-D_MUDFLAP -D_MUDFLAPTH -include mf-runtime.h}\
793 %{E|M|MM:%W{o*}}";
795 /* This contains cpp options which are common with cc1_options and are passed
796 only when preprocessing only to avoid duplication. We pass the cc1 spec
797 options to the preprocessor so that it the cc1 spec may manipulate
798 options used to set target flags. Those special target flags settings may
799 in turn cause preprocessor symbols to be defined specially. */
800 static const char *cpp_options =
801 "%(cpp_unique_options) %1 %{m*} %{std*&ansi&trigraphs} %{W*&pedantic*} %{w}\
802 %{f*} %{g*:%{!g0:%{!fno-working-directory:-fworking-directory}}} %{O*}\
803 %{undef} %{save-temps:-fpch-preprocess}";
805 /* This contains cpp options which are not passed when the preprocessor
806 output will be used by another program. */
807 static const char *cpp_debug_options = "%{d*}";
809 /* NB: This is shared amongst all front-ends. */
810 static const char *cc1_options =
811 "%{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
812 %1 %{!Q:-quiet} -dumpbase %B %{d*} %{m*} %{a*}\
813 %{c|S:%{o*:-auxbase-strip %*}%{!o*:-auxbase %b}}%{!c:%{!S:-auxbase %b}}\
814 %{g*} %{O*} %{W*&pedantic*} %{w} %{std*&ansi&trigraphs}\
815 %{v:-version} %{pg:-p} %{p} %{f*} %{undef}\
816 %{Qn:-fno-ident} %{--help:--help}\
817 %{--target-help:--target-help}\
818 %{--help=*:--help=%(VALUE)}\
819 %{!fsyntax-only:%{S:%W{o*}%{!o*:-o %b.s}}}\
820 %{fsyntax-only:-o %j} %{-param*}\
821 %{fmudflap|fmudflapth:-fno-builtin -fno-merge-constants}\
822 %{coverage:-fprofile-arcs -ftest-coverage}";
824 static const char *asm_options =
825 "%{ftarget-help:%:print-asm-header()} \
826 %a %Y %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}";
828 static const char *invoke_as =
829 #ifdef AS_NEEDS_DASH_FOR_PIPED_INPUT
830 "%{!S:-o %|.s |\n as %(asm_options) %|.s %A }";
831 #else
832 "%{!S:-o %|.s |\n as %(asm_options) %m.s %A }";
833 #endif
835 /* Some compilers have limits on line lengths, and the multilib_select
836 and/or multilib_matches strings can be very long, so we build them at
837 run time. */
838 static struct obstack multilib_obstack;
839 static const char *multilib_select;
840 static const char *multilib_matches;
841 static const char *multilib_defaults;
842 static const char *multilib_exclusions;
844 /* Check whether a particular argument is a default argument. */
846 #ifndef MULTILIB_DEFAULTS
847 #define MULTILIB_DEFAULTS { "" }
848 #endif
850 static const char *const multilib_defaults_raw[] = MULTILIB_DEFAULTS;
852 #ifndef DRIVER_SELF_SPECS
853 #define DRIVER_SELF_SPECS ""
854 #endif
856 /* Adding -fopenmp should imply pthreads. This is particularly important
857 for targets that use different start files and suchlike. */
858 #ifndef GOMP_SELF_SPECS
859 #define GOMP_SELF_SPECS "%{fopenmp: -pthread}"
860 #endif
862 static const char *const driver_self_specs[] = {
863 DRIVER_SELF_SPECS, GOMP_SELF_SPECS
866 #ifndef OPTION_DEFAULT_SPECS
867 #define OPTION_DEFAULT_SPECS { "", "" }
868 #endif
870 struct default_spec
872 const char *name;
873 const char *spec;
876 static const struct default_spec
877 option_default_specs[] = { OPTION_DEFAULT_SPECS };
879 struct user_specs
881 struct user_specs *next;
882 const char *filename;
885 static struct user_specs *user_specs_head, *user_specs_tail;
887 #ifndef SWITCH_TAKES_ARG
888 #define SWITCH_TAKES_ARG(CHAR) DEFAULT_SWITCH_TAKES_ARG(CHAR)
889 #endif
891 #ifndef WORD_SWITCH_TAKES_ARG
892 #define WORD_SWITCH_TAKES_ARG(STR) DEFAULT_WORD_SWITCH_TAKES_ARG (STR)
893 #endif
895 #ifdef HAVE_TARGET_EXECUTABLE_SUFFIX
896 /* This defines which switches stop a full compilation. */
897 #define DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR) \
898 ((CHAR) == 'c' || (CHAR) == 'S')
900 #ifndef SWITCH_CURTAILS_COMPILATION
901 #define SWITCH_CURTAILS_COMPILATION(CHAR) \
902 DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR)
903 #endif
904 #endif
906 /* Record the mapping from file suffixes for compilation specs. */
908 struct compiler
910 const char *suffix; /* Use this compiler for input files
911 whose names end in this suffix. */
913 const char *spec; /* To use this compiler, run this spec. */
915 const char *cpp_spec; /* If non-NULL, substitute this spec
916 for `%C', rather than the usual
917 cpp_spec. */
918 const int combinable; /* If nonzero, compiler can deal with
919 multiple source files at once (IMA). */
920 const int needs_preprocessing; /* If nonzero, source files need to
921 be run through a preprocessor. */
924 /* Pointer to a vector of `struct compiler' that gives the spec for
925 compiling a file, based on its suffix.
926 A file that does not end in any of these suffixes will be passed
927 unchanged to the loader and nothing else will be done to it.
929 An entry containing two 0s is used to terminate the vector.
931 If multiple entries match a file, the last matching one is used. */
933 static struct compiler *compilers;
935 /* Number of entries in `compilers', not counting the null terminator. */
937 static int n_compilers;
939 /* The default list of file name suffixes and their compilation specs. */
941 static const struct compiler default_compilers[] =
943 /* Add lists of suffixes of known languages here. If those languages
944 were not present when we built the driver, we will hit these copies
945 and be given a more meaningful error than "file not used since
946 linking is not done". */
947 {".m", "#Objective-C", 0, 0, 0}, {".mi", "#Objective-C", 0, 0, 0},
948 {".mm", "#Objective-C++", 0, 0, 0}, {".M", "#Objective-C++", 0, 0, 0},
949 {".mii", "#Objective-C++", 0, 0, 0},
950 {".cc", "#C++", 0, 0, 0}, {".cxx", "#C++", 0, 0, 0},
951 {".cpp", "#C++", 0, 0, 0}, {".cp", "#C++", 0, 0, 0},
952 {".c++", "#C++", 0, 0, 0}, {".C", "#C++", 0, 0, 0},
953 {".CPP", "#C++", 0, 0, 0}, {".ii", "#C++", 0, 0, 0},
954 {".ads", "#Ada", 0, 0, 0}, {".adb", "#Ada", 0, 0, 0},
955 {".f", "#Fortran", 0, 0, 0}, {".for", "#Fortran", 0, 0, 0},
956 {".fpp", "#Fortran", 0, 0, 0}, {".F", "#Fortran", 0, 0, 0},
957 {".FOR", "#Fortran", 0, 0, 0}, {".FPP", "#Fortran", 0, 0, 0},
958 {".f90", "#Fortran", 0, 0, 0}, {".f95", "#Fortran", 0, 0, 0},
959 {".F90", "#Fortran", 0, 0, 0}, {".F95", "#Fortran", 0, 0, 0},
960 {".r", "#Ratfor", 0, 0, 0},
961 {".p", "#Pascal", 0, 0, 0}, {".pas", "#Pascal", 0, 0, 0},
962 {".java", "#Java", 0, 0, 0}, {".class", "#Java", 0, 0, 0},
963 {".zip", "#Java", 0, 0, 0}, {".jar", "#Java", 0, 0, 0},
964 /* Next come the entries for C. */
965 {".c", "@c", 0, 1, 1},
966 {"@c",
967 /* cc1 has an integrated ISO C preprocessor. We should invoke the
968 external preprocessor if -save-temps is given. */
969 "%{E|M|MM:%(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)}\
970 %{!E:%{!M:%{!MM:\
971 %{traditional|ftraditional:\
972 %eGNU C no longer supports -traditional without -E}\
973 %{!combine:\
974 %{save-temps|traditional-cpp|no-integrated-cpp:%(trad_capable_cpp) \
975 %(cpp_options) -o %{save-temps:%b.i} %{!save-temps:%g.i} \n\
976 cc1 -fpreprocessed %{save-temps:%b.i} %{!save-temps:%g.i} \
977 %(cc1_options)}\
978 %{!save-temps:%{!traditional-cpp:%{!no-integrated-cpp:\
979 cc1 %(cpp_unique_options) %(cc1_options)}}}\
980 %{!fsyntax-only:%(invoke_as)}} \
981 %{combine:\
982 %{save-temps|traditional-cpp|no-integrated-cpp:%(trad_capable_cpp) \
983 %(cpp_options) -o %{save-temps:%b.i} %{!save-temps:%g.i}}\
984 %{!save-temps:%{!traditional-cpp:%{!no-integrated-cpp:\
985 cc1 %(cpp_unique_options) %(cc1_options)}}\
986 %{!fsyntax-only:%(invoke_as)}}}}}}", 0, 1, 1},
987 {"-",
988 "%{!E:%e-E or -x required when input is from standard input}\
989 %(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)", 0, 0, 0},
990 {".h", "@c-header", 0, 0, 0},
991 {"@c-header",
992 /* cc1 has an integrated ISO C preprocessor. We should invoke the
993 external preprocessor if -save-temps is given. */
994 "%{E|M|MM:%(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)}\
995 %{!E:%{!M:%{!MM:\
996 %{save-temps|traditional-cpp|no-integrated-cpp:%(trad_capable_cpp) \
997 %(cpp_options) -o %{save-temps:%b.i} %{!save-temps:%g.i} \n\
998 cc1 -fpreprocessed %{save-temps:%b.i} %{!save-temps:%g.i} \
999 %(cc1_options)\
1000 -o %g.s %{!o*:--output-pch=%i.gch}\
1001 %W{o*:--output-pch=%*}%V}\
1002 %{!save-temps:%{!traditional-cpp:%{!no-integrated-cpp:\
1003 cc1 %(cpp_unique_options) %(cc1_options)\
1004 -o %g.s %{!o*:--output-pch=%i.gch}\
1005 %W{o*:--output-pch=%*}%V}}}}}}", 0, 0, 0},
1006 {".i", "@cpp-output", 0, 1, 0},
1007 {"@cpp-output",
1008 "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0, 1, 0},
1009 {".s", "@assembler", 0, 1, 0},
1010 {"@assembler",
1011 "%{!M:%{!MM:%{!E:%{!S:as %(asm_debug) %(asm_options) %i %A }}}}", 0, 1, 0},
1012 {".S", "@assembler-with-cpp", 0, 1, 0},
1013 {"@assembler-with-cpp",
1014 #ifdef AS_NEEDS_DASH_FOR_PIPED_INPUT
1015 "%(trad_capable_cpp) -lang-asm %(cpp_options)\
1016 %{E|M|MM:%(cpp_debug_options)}\
1017 %{!M:%{!MM:%{!E:%{!S:-o %|.s |\n\
1018 as %(asm_debug) %(asm_options) %|.s %A }}}}"
1019 #else
1020 "%(trad_capable_cpp) -lang-asm %(cpp_options)\
1021 %{E|M|MM:%(cpp_debug_options)}\
1022 %{!M:%{!MM:%{!E:%{!S:-o %|.s |\n\
1023 as %(asm_debug) %(asm_options) %m.s %A }}}}"
1024 #endif
1025 , 0, 1, 0},
1027 #include "specs.h"
1028 /* Mark end of table. */
1029 {0, 0, 0, 0, 0}
1032 /* Number of elements in default_compilers, not counting the terminator. */
1034 static const int n_default_compilers = ARRAY_SIZE (default_compilers) - 1;
1036 /* A vector of options to give to the linker.
1037 These options are accumulated by %x,
1038 and substituted into the linker command with %X. */
1039 static int n_linker_options;
1040 static char **linker_options;
1042 /* A vector of options to give to the assembler.
1043 These options are accumulated by -Wa,
1044 and substituted into the assembler command with %Y. */
1045 static int n_assembler_options;
1046 static char **assembler_options;
1048 /* A vector of options to give to the preprocessor.
1049 These options are accumulated by -Wp,
1050 and substituted into the preprocessor command with %Z. */
1051 static int n_preprocessor_options;
1052 static char **preprocessor_options;
1054 /* Define how to map long options into short ones. */
1056 /* This structure describes one mapping. */
1057 struct option_map
1059 /* The long option's name. */
1060 const char *const name;
1061 /* The equivalent short option. */
1062 const char *const equivalent;
1063 /* Argument info. A string of flag chars; NULL equals no options.
1064 a => argument required.
1065 o => argument optional.
1066 j => join argument to equivalent, making one word.
1067 * => require other text after NAME as an argument. */
1068 const char *const arg_info;
1071 /* This is the table of mappings. Mappings are tried sequentially
1072 for each option encountered; the first one that matches, wins. */
1074 static const struct option_map option_map[] =
1076 {"--all-warnings", "-Wall", 0},
1077 {"--ansi", "-ansi", 0},
1078 {"--assemble", "-S", 0},
1079 {"--assert", "-A", "a"},
1080 {"--classpath", "-fclasspath=", "aj"},
1081 {"--bootclasspath", "-fbootclasspath=", "aj"},
1082 {"--CLASSPATH", "-fclasspath=", "aj"},
1083 {"--combine", "-combine", 0},
1084 {"--comments", "-C", 0},
1085 {"--comments-in-macros", "-CC", 0},
1086 {"--compile", "-c", 0},
1087 {"--debug", "-g", "oj"},
1088 {"--define-macro", "-D", "aj"},
1089 {"--dependencies", "-M", 0},
1090 {"--dump", "-d", "a"},
1091 {"--dumpbase", "-dumpbase", "a"},
1092 {"--encoding", "-fencoding=", "aj"},
1093 {"--entry", "-e", 0},
1094 {"--extra-warnings", "-W", 0},
1095 {"--extdirs", "-fextdirs=", "aj"},
1096 {"--for-assembler", "-Wa", "a"},
1097 {"--for-linker", "-Xlinker", "a"},
1098 {"--force-link", "-u", "a"},
1099 {"--coverage", "-coverage", 0},
1100 {"--imacros", "-imacros", "a"},
1101 {"--include", "-include", "a"},
1102 {"--include-barrier", "-I-", 0},
1103 {"--include-directory", "-I", "aj"},
1104 {"--include-directory-after", "-idirafter", "a"},
1105 {"--include-prefix", "-iprefix", "a"},
1106 {"--include-with-prefix", "-iwithprefix", "a"},
1107 {"--include-with-prefix-before", "-iwithprefixbefore", "a"},
1108 {"--include-with-prefix-after", "-iwithprefix", "a"},
1109 {"--language", "-x", "a"},
1110 {"--library-directory", "-L", "a"},
1111 {"--machine", "-m", "aj"},
1112 {"--machine-", "-m", "*j"},
1113 {"--no-integrated-cpp", "-no-integrated-cpp", 0},
1114 {"--no-line-commands", "-P", 0},
1115 {"--no-precompiled-includes", "-noprecomp", 0},
1116 {"--no-standard-includes", "-nostdinc", 0},
1117 {"--no-standard-libraries", "-nostdlib", 0},
1118 {"--no-warnings", "-w", 0},
1119 {"--optimize", "-O", "oj"},
1120 {"--output", "-o", "a"},
1121 {"--output-class-directory", "-foutput-class-dir=", "ja"},
1122 {"--param", "--param", "a"},
1123 {"--pass-exit-codes", "-pass-exit-codes", 0},
1124 {"--pedantic", "-pedantic", 0},
1125 {"--pedantic-errors", "-pedantic-errors", 0},
1126 {"--pie", "-pie", 0},
1127 {"--pipe", "-pipe", 0},
1128 {"--prefix", "-B", "a"},
1129 {"--preprocess", "-E", 0},
1130 {"--print-search-dirs", "-print-search-dirs", 0},
1131 {"--print-file-name", "-print-file-name=", "aj"},
1132 {"--print-libgcc-file-name", "-print-libgcc-file-name", 0},
1133 {"--print-missing-file-dependencies", "-MG", 0},
1134 {"--print-multi-lib", "-print-multi-lib", 0},
1135 {"--print-multi-directory", "-print-multi-directory", 0},
1136 {"--print-multi-os-directory", "-print-multi-os-directory", 0},
1137 {"--print-prog-name", "-print-prog-name=", "aj"},
1138 {"--print-sysroot-headers-suffix", "-print-sysroot-headers-suffix", 0},
1139 {"--profile", "-p", 0},
1140 {"--profile-blocks", "-a", 0},
1141 {"--quiet", "-q", 0},
1142 {"--resource", "-fcompile-resource=", "aj"},
1143 {"--save-temps", "-save-temps", 0},
1144 {"--shared", "-shared", 0},
1145 {"--silent", "-q", 0},
1146 {"--specs", "-specs=", "aj"},
1147 {"--static", "-static", 0},
1148 {"--std", "-std=", "aj"},
1149 {"--symbolic", "-symbolic", 0},
1150 {"--sysroot", "--sysroot=", "aj"},
1151 {"--time", "-time", 0},
1152 {"--trace-includes", "-H", 0},
1153 {"--traditional", "-traditional", 0},
1154 {"--traditional-cpp", "-traditional-cpp", 0},
1155 {"--trigraphs", "-trigraphs", 0},
1156 {"--undefine-macro", "-U", "aj"},
1157 {"--user-dependencies", "-MM", 0},
1158 {"--verbose", "-v", 0},
1159 {"--warn-", "-W", "*j"},
1160 {"--write-dependencies", "-MD", 0},
1161 {"--write-user-dependencies", "-MMD", 0},
1162 {"--", "-f", "*j"}
1166 #ifdef TARGET_OPTION_TRANSLATE_TABLE
1167 static const struct {
1168 const char *const option_found;
1169 const char *const replacements;
1170 } target_option_translations[] =
1172 TARGET_OPTION_TRANSLATE_TABLE,
1173 { 0, 0 }
1175 #endif
1177 /* Translate the options described by *ARGCP and *ARGVP.
1178 Make a new vector and store it back in *ARGVP,
1179 and store its length in *ARGVC. */
1181 static void
1182 translate_options (int *argcp, const char *const **argvp)
1184 int i;
1185 int argc = *argcp;
1186 const char *const *argv = *argvp;
1187 int newvsize = (argc + 2) * 2 * sizeof (const char *);
1188 const char **newv = xmalloc (newvsize);
1189 int newindex = 0;
1191 i = 0;
1192 newv[newindex++] = argv[i++];
1194 while (i < argc)
1196 #ifdef TARGET_OPTION_TRANSLATE_TABLE
1197 int tott_idx;
1199 for (tott_idx = 0;
1200 target_option_translations[tott_idx].option_found;
1201 tott_idx++)
1203 if (strcmp (target_option_translations[tott_idx].option_found,
1204 argv[i]) == 0)
1206 int spaces = 1;
1207 const char *sp;
1208 char *np;
1210 for (sp = target_option_translations[tott_idx].replacements;
1211 *sp; sp++)
1213 if (*sp == ' ')
1214 spaces ++;
1217 newvsize += spaces * sizeof (const char *);
1218 newv = xrealloc (newv, newvsize);
1220 sp = target_option_translations[tott_idx].replacements;
1221 np = xstrdup (sp);
1223 while (1)
1225 while (*np == ' ')
1226 np++;
1227 if (*np == 0)
1228 break;
1229 newv[newindex++] = np;
1230 while (*np != ' ' && *np)
1231 np++;
1232 if (*np == 0)
1233 break;
1234 *np++ = 0;
1237 i ++;
1238 break;
1241 if (target_option_translations[tott_idx].option_found)
1242 continue;
1243 #endif
1245 /* Translate -- options. */
1246 if (argv[i][0] == '-' && argv[i][1] == '-')
1248 size_t j;
1249 /* Find a mapping that applies to this option. */
1250 for (j = 0; j < ARRAY_SIZE (option_map); j++)
1252 size_t optlen = strlen (option_map[j].name);
1253 size_t arglen = strlen (argv[i]);
1254 size_t complen = arglen > optlen ? optlen : arglen;
1255 const char *arginfo = option_map[j].arg_info;
1257 if (arginfo == 0)
1258 arginfo = "";
1260 if (!strncmp (argv[i], option_map[j].name, complen))
1262 const char *arg = 0;
1264 if (arglen < optlen)
1266 size_t k;
1267 for (k = j + 1; k < ARRAY_SIZE (option_map); k++)
1268 if (strlen (option_map[k].name) >= arglen
1269 && !strncmp (argv[i], option_map[k].name, arglen))
1271 error ("ambiguous abbreviation %s", argv[i]);
1272 break;
1275 if (k != ARRAY_SIZE (option_map))
1276 break;
1279 if (arglen > optlen)
1281 /* If the option has an argument, accept that. */
1282 if (argv[i][optlen] == '=')
1283 arg = argv[i] + optlen + 1;
1285 /* If this mapping requires extra text at end of name,
1286 accept that as "argument". */
1287 else if (strchr (arginfo, '*') != 0)
1288 arg = argv[i] + optlen;
1290 /* Otherwise, extra text at end means mismatch.
1291 Try other mappings. */
1292 else
1293 continue;
1296 else if (strchr (arginfo, '*') != 0)
1298 error ("incomplete '%s' option", option_map[j].name);
1299 break;
1302 /* Handle arguments. */
1303 if (strchr (arginfo, 'a') != 0)
1305 if (arg == 0)
1307 if (i + 1 == argc)
1309 error ("missing argument to '%s' option",
1310 option_map[j].name);
1311 break;
1314 arg = argv[++i];
1317 else if (strchr (arginfo, '*') != 0)
1319 else if (strchr (arginfo, 'o') == 0)
1321 if (arg != 0)
1322 error ("extraneous argument to '%s' option",
1323 option_map[j].name);
1324 arg = 0;
1327 /* Store the translation as one argv elt or as two. */
1328 if (arg != 0 && strchr (arginfo, 'j') != 0)
1329 newv[newindex++] = concat (option_map[j].equivalent, arg,
1330 NULL);
1331 else if (arg != 0)
1333 newv[newindex++] = option_map[j].equivalent;
1334 newv[newindex++] = arg;
1336 else
1337 newv[newindex++] = option_map[j].equivalent;
1339 break;
1342 i++;
1345 /* Handle old-fashioned options--just copy them through,
1346 with their arguments. */
1347 else if (argv[i][0] == '-')
1349 const char *p = argv[i] + 1;
1350 int c = *p;
1351 int nskip = 1;
1353 if (SWITCH_TAKES_ARG (c) > (p[1] != 0))
1354 nskip += SWITCH_TAKES_ARG (c) - (p[1] != 0);
1355 else if (WORD_SWITCH_TAKES_ARG (p))
1356 nskip += WORD_SWITCH_TAKES_ARG (p);
1357 else if ((c == 'B' || c == 'b' || c == 'x')
1358 && p[1] == 0)
1359 nskip += 1;
1360 else if (! strcmp (p, "Xlinker"))
1361 nskip += 1;
1362 else if (! strcmp (p, "Xpreprocessor"))
1363 nskip += 1;
1364 else if (! strcmp (p, "Xassembler"))
1365 nskip += 1;
1367 /* Watch out for an option at the end of the command line that
1368 is missing arguments, and avoid skipping past the end of the
1369 command line. */
1370 if (nskip + i > argc)
1371 nskip = argc - i;
1373 while (nskip > 0)
1375 newv[newindex++] = argv[i++];
1376 nskip--;
1379 else
1380 /* Ordinary operands, or +e options. */
1381 newv[newindex++] = argv[i++];
1384 newv[newindex] = 0;
1386 *argvp = newv;
1387 *argcp = newindex;
1390 static char *
1391 skip_whitespace (char *p)
1393 while (1)
1395 /* A fully-blank line is a delimiter in the SPEC file and shouldn't
1396 be considered whitespace. */
1397 if (p[0] == '\n' && p[1] == '\n' && p[2] == '\n')
1398 return p + 1;
1399 else if (*p == '\n' || *p == ' ' || *p == '\t')
1400 p++;
1401 else if (*p == '#')
1403 while (*p != '\n')
1404 p++;
1405 p++;
1407 else
1408 break;
1411 return p;
1413 /* Structures to keep track of prefixes to try when looking for files. */
1415 struct prefix_list
1417 const char *prefix; /* String to prepend to the path. */
1418 struct prefix_list *next; /* Next in linked list. */
1419 int require_machine_suffix; /* Don't use without machine_suffix. */
1420 /* 2 means try both machine_suffix and just_machine_suffix. */
1421 int priority; /* Sort key - priority within list. */
1422 int os_multilib; /* 1 if OS multilib scheme should be used,
1423 0 for GCC multilib scheme. */
1426 struct path_prefix
1428 struct prefix_list *plist; /* List of prefixes to try */
1429 int max_len; /* Max length of a prefix in PLIST */
1430 const char *name; /* Name of this list (used in config stuff) */
1433 /* List of prefixes to try when looking for executables. */
1435 static struct path_prefix exec_prefixes = { 0, 0, "exec" };
1437 /* List of prefixes to try when looking for startup (crt0) files. */
1439 static struct path_prefix startfile_prefixes = { 0, 0, "startfile" };
1441 /* List of prefixes to try when looking for include files. */
1443 static struct path_prefix include_prefixes = { 0, 0, "include" };
1445 /* Suffix to attach to directories searched for commands.
1446 This looks like `MACHINE/VERSION/'. */
1448 static const char *machine_suffix = 0;
1450 /* Suffix to attach to directories searched for commands.
1451 This is just `MACHINE/'. */
1453 static const char *just_machine_suffix = 0;
1455 /* Adjusted value of GCC_EXEC_PREFIX envvar. */
1457 static const char *gcc_exec_prefix;
1459 /* Adjusted value of standard_libexec_prefix. */
1461 static const char *gcc_libexec_prefix;
1463 /* Default prefixes to attach to command names. */
1465 #ifndef STANDARD_STARTFILE_PREFIX_1
1466 #define STANDARD_STARTFILE_PREFIX_1 "/lib/"
1467 #endif
1468 #ifndef STANDARD_STARTFILE_PREFIX_2
1469 #define STANDARD_STARTFILE_PREFIX_2 "/usr/lib/"
1470 #endif
1472 #ifdef CROSS_DIRECTORY_STRUCTURE /* Don't use these prefixes for a cross compiler. */
1473 #undef MD_EXEC_PREFIX
1474 #undef MD_STARTFILE_PREFIX
1475 #undef MD_STARTFILE_PREFIX_1
1476 #endif
1478 /* If no prefixes defined, use the null string, which will disable them. */
1479 #ifndef MD_EXEC_PREFIX
1480 #define MD_EXEC_PREFIX ""
1481 #endif
1482 #ifndef MD_STARTFILE_PREFIX
1483 #define MD_STARTFILE_PREFIX ""
1484 #endif
1485 #ifndef MD_STARTFILE_PREFIX_1
1486 #define MD_STARTFILE_PREFIX_1 ""
1487 #endif
1489 /* These directories are locations set at configure-time based on the
1490 --prefix option provided to configure. Their initializers are
1491 defined in Makefile.in. These paths are not *directly* used when
1492 gcc_exec_prefix is set because, in that case, we know where the
1493 compiler has been installed, and use paths relative to that
1494 location instead. */
1495 static const char *const standard_exec_prefix = STANDARD_EXEC_PREFIX;
1496 static const char *const standard_libexec_prefix = STANDARD_LIBEXEC_PREFIX;
1497 static const char *const standard_bindir_prefix = STANDARD_BINDIR_PREFIX;
1498 static const char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
1500 /* For native compilers, these are well-known paths containing
1501 components that may be provided by the system. For cross
1502 compilers, these paths are not used. */
1503 static const char *const standard_exec_prefix_1 = "/usr/libexec/gcc/";
1504 static const char *const standard_exec_prefix_2 = "/usr/lib/gcc/";
1505 static const char *md_exec_prefix = MD_EXEC_PREFIX;
1506 static const char *md_startfile_prefix = MD_STARTFILE_PREFIX;
1507 static const char *md_startfile_prefix_1 = MD_STARTFILE_PREFIX_1;
1508 static const char *const standard_startfile_prefix_1
1509 = STANDARD_STARTFILE_PREFIX_1;
1510 static const char *const standard_startfile_prefix_2
1511 = STANDARD_STARTFILE_PREFIX_2;
1513 /* A relative path to be used in finding the location of tools
1514 relative to the driver. */
1515 static const char *const tooldir_base_prefix = TOOLDIR_BASE_PREFIX;
1517 /* Subdirectory to use for locating libraries. Set by
1518 set_multilib_dir based on the compilation options. */
1520 static const char *multilib_dir;
1522 /* Subdirectory to use for locating libraries in OS conventions. Set by
1523 set_multilib_dir based on the compilation options. */
1525 static const char *multilib_os_dir;
1527 /* Structure to keep track of the specs that have been defined so far.
1528 These are accessed using %(specname) or %[specname] in a compiler
1529 or link spec. */
1531 struct spec_list
1533 /* The following 2 fields must be first */
1534 /* to allow EXTRA_SPECS to be initialized */
1535 const char *name; /* name of the spec. */
1536 const char *ptr; /* available ptr if no static pointer */
1538 /* The following fields are not initialized */
1539 /* by EXTRA_SPECS */
1540 const char **ptr_spec; /* pointer to the spec itself. */
1541 struct spec_list *next; /* Next spec in linked list. */
1542 int name_len; /* length of the name */
1543 int alloc_p; /* whether string was allocated */
1546 #define INIT_STATIC_SPEC(NAME,PTR) \
1547 { NAME, NULL, PTR, (struct spec_list *) 0, sizeof (NAME) - 1, 0 }
1549 /* List of statically defined specs. */
1550 static struct spec_list static_specs[] =
1552 INIT_STATIC_SPEC ("asm", &asm_spec),
1553 INIT_STATIC_SPEC ("asm_debug", &asm_debug),
1554 INIT_STATIC_SPEC ("asm_final", &asm_final_spec),
1555 INIT_STATIC_SPEC ("asm_options", &asm_options),
1556 INIT_STATIC_SPEC ("invoke_as", &invoke_as),
1557 INIT_STATIC_SPEC ("cpp", &cpp_spec),
1558 INIT_STATIC_SPEC ("cpp_options", &cpp_options),
1559 INIT_STATIC_SPEC ("cpp_debug_options", &cpp_debug_options),
1560 INIT_STATIC_SPEC ("cpp_unique_options", &cpp_unique_options),
1561 INIT_STATIC_SPEC ("trad_capable_cpp", &trad_capable_cpp),
1562 INIT_STATIC_SPEC ("cc1", &cc1_spec),
1563 INIT_STATIC_SPEC ("cc1_options", &cc1_options),
1564 INIT_STATIC_SPEC ("cc1plus", &cc1plus_spec),
1565 INIT_STATIC_SPEC ("link_gcc_c_sequence", &link_gcc_c_sequence_spec),
1566 INIT_STATIC_SPEC ("link_ssp", &link_ssp_spec),
1567 INIT_STATIC_SPEC ("endfile", &endfile_spec),
1568 INIT_STATIC_SPEC ("link", &link_spec),
1569 INIT_STATIC_SPEC ("lib", &lib_spec),
1570 INIT_STATIC_SPEC ("mfwrap", &mfwrap_spec),
1571 INIT_STATIC_SPEC ("mflib", &mflib_spec),
1572 INIT_STATIC_SPEC ("link_gomp", &link_gomp_spec),
1573 INIT_STATIC_SPEC ("libgcc", &libgcc_spec),
1574 INIT_STATIC_SPEC ("startfile", &startfile_spec),
1575 INIT_STATIC_SPEC ("switches_need_spaces", &switches_need_spaces),
1576 INIT_STATIC_SPEC ("cross_compile", &cross_compile),
1577 INIT_STATIC_SPEC ("version", &compiler_version),
1578 INIT_STATIC_SPEC ("multilib", &multilib_select),
1579 INIT_STATIC_SPEC ("multilib_defaults", &multilib_defaults),
1580 INIT_STATIC_SPEC ("multilib_extra", &multilib_extra),
1581 INIT_STATIC_SPEC ("multilib_matches", &multilib_matches),
1582 INIT_STATIC_SPEC ("multilib_exclusions", &multilib_exclusions),
1583 INIT_STATIC_SPEC ("multilib_options", &multilib_options),
1584 INIT_STATIC_SPEC ("linker", &linker_name_spec),
1585 INIT_STATIC_SPEC ("link_libgcc", &link_libgcc_spec),
1586 INIT_STATIC_SPEC ("md_exec_prefix", &md_exec_prefix),
1587 INIT_STATIC_SPEC ("md_startfile_prefix", &md_startfile_prefix),
1588 INIT_STATIC_SPEC ("md_startfile_prefix_1", &md_startfile_prefix_1),
1589 INIT_STATIC_SPEC ("startfile_prefix_spec", &startfile_prefix_spec),
1590 INIT_STATIC_SPEC ("sysroot_spec", &sysroot_spec),
1591 INIT_STATIC_SPEC ("sysroot_suffix_spec", &sysroot_suffix_spec),
1592 INIT_STATIC_SPEC ("sysroot_hdrs_suffix_spec", &sysroot_hdrs_suffix_spec),
1595 #ifdef EXTRA_SPECS /* additional specs needed */
1596 /* Structure to keep track of just the first two args of a spec_list.
1597 That is all that the EXTRA_SPECS macro gives us. */
1598 struct spec_list_1
1600 const char *const name;
1601 const char *const ptr;
1604 static const struct spec_list_1 extra_specs_1[] = { EXTRA_SPECS };
1605 static struct spec_list *extra_specs = (struct spec_list *) 0;
1606 #endif
1608 /* List of dynamically allocates specs that have been defined so far. */
1610 static struct spec_list *specs = (struct spec_list *) 0;
1612 /* List of static spec functions. */
1614 static const struct spec_function static_spec_functions[] =
1616 { "getenv", getenv_spec_function },
1617 { "if-exists", if_exists_spec_function },
1618 { "if-exists-else", if_exists_else_spec_function },
1619 { "replace-outfile", replace_outfile_spec_function },
1620 { "version-compare", version_compare_spec_function },
1621 { "include", include_spec_function },
1622 { "print-asm-header", print_asm_header_spec_function },
1623 #ifdef EXTRA_SPEC_FUNCTIONS
1624 EXTRA_SPEC_FUNCTIONS
1625 #endif
1626 { 0, 0 }
1629 static int processing_spec_function;
1631 /* Add appropriate libgcc specs to OBSTACK, taking into account
1632 various permutations of -shared-libgcc, -shared, and such. */
1634 #if defined(ENABLE_SHARED_LIBGCC) && !defined(REAL_LIBGCC_SPEC)
1636 #ifndef USE_LD_AS_NEEDED
1637 #define USE_LD_AS_NEEDED 0
1638 #endif
1640 static void
1641 init_gcc_specs (struct obstack *obstack, const char *shared_name,
1642 const char *static_name, const char *eh_name)
1644 char *buf;
1646 buf = concat ("%{static|static-libgcc:", static_name, " ", eh_name, "}"
1647 "%{!static:%{!static-libgcc:"
1648 #if USE_LD_AS_NEEDED
1649 "%{!shared-libgcc:",
1650 static_name, " --as-needed ", shared_name, " --no-as-needed"
1652 "%{shared-libgcc:",
1653 shared_name, "%{!shared: ", static_name, "}"
1655 #else
1656 "%{!shared:"
1657 "%{!shared-libgcc:", static_name, " ", eh_name, "}"
1658 "%{shared-libgcc:", shared_name, " ", static_name, "}"
1660 #ifdef LINK_EH_SPEC
1661 "%{shared:"
1662 "%{shared-libgcc:", shared_name, "}"
1663 "%{!shared-libgcc:", static_name, "}"
1665 #else
1666 "%{shared:", shared_name, "}"
1667 #endif
1668 #endif
1669 "}}", NULL);
1671 obstack_grow (obstack, buf, strlen (buf));
1672 free (buf);
1674 #endif /* ENABLE_SHARED_LIBGCC */
1676 /* Initialize the specs lookup routines. */
1678 static void
1679 init_spec (void)
1681 struct spec_list *next = (struct spec_list *) 0;
1682 struct spec_list *sl = (struct spec_list *) 0;
1683 int i;
1685 if (specs)
1686 return; /* Already initialized. */
1688 if (verbose_flag)
1689 notice ("Using built-in specs.\n");
1691 #ifdef EXTRA_SPECS
1692 extra_specs = xcalloc (sizeof (struct spec_list),
1693 ARRAY_SIZE (extra_specs_1));
1695 for (i = ARRAY_SIZE (extra_specs_1) - 1; i >= 0; i--)
1697 sl = &extra_specs[i];
1698 sl->name = extra_specs_1[i].name;
1699 sl->ptr = extra_specs_1[i].ptr;
1700 sl->next = next;
1701 sl->name_len = strlen (sl->name);
1702 sl->ptr_spec = &sl->ptr;
1703 next = sl;
1705 #endif
1707 /* Initialize here, not in definition. The IRIX 6 O32 cc sometimes chokes
1708 on ?: in file-scope variable initializations. */
1709 asm_debug = ASM_DEBUG_SPEC;
1711 for (i = ARRAY_SIZE (static_specs) - 1; i >= 0; i--)
1713 sl = &static_specs[i];
1714 sl->next = next;
1715 next = sl;
1718 #if defined(ENABLE_SHARED_LIBGCC) && !defined(REAL_LIBGCC_SPEC)
1719 /* ??? If neither -shared-libgcc nor --static-libgcc was
1720 seen, then we should be making an educated guess. Some proposed
1721 heuristics for ELF include:
1723 (1) If "-Wl,--export-dynamic", then it's a fair bet that the
1724 program will be doing dynamic loading, which will likely
1725 need the shared libgcc.
1727 (2) If "-ldl", then it's also a fair bet that we're doing
1728 dynamic loading.
1730 (3) For each ET_DYN we're linking against (either through -lfoo
1731 or /some/path/foo.so), check to see whether it or one of
1732 its dependencies depends on a shared libgcc.
1734 (4) If "-shared"
1736 If the runtime is fixed to look for program headers instead
1737 of calling __register_frame_info at all, for each object,
1738 use the shared libgcc if any EH symbol referenced.
1740 If crtstuff is fixed to not invoke __register_frame_info
1741 automatically, for each object, use the shared libgcc if
1742 any non-empty unwind section found.
1744 Doing any of this probably requires invoking an external program to
1745 do the actual object file scanning. */
1747 const char *p = libgcc_spec;
1748 int in_sep = 1;
1750 /* Transform the extant libgcc_spec into one that uses the shared libgcc
1751 when given the proper command line arguments. */
1752 while (*p)
1754 if (in_sep && *p == '-' && strncmp (p, "-lgcc", 5) == 0)
1756 init_gcc_specs (&obstack,
1757 "-lgcc_s"
1758 #ifdef USE_LIBUNWIND_EXCEPTIONS
1759 " -lunwind"
1760 #endif
1762 "-lgcc",
1763 "-lgcc_eh"
1764 #ifdef USE_LIBUNWIND_EXCEPTIONS
1765 # ifdef HAVE_LD_STATIC_DYNAMIC
1766 " %{!static:-Bstatic} -lunwind %{!static:-Bdynamic}"
1767 # else
1768 " -lunwind"
1769 # endif
1770 #endif
1773 p += 5;
1774 in_sep = 0;
1776 else if (in_sep && *p == 'l' && strncmp (p, "libgcc.a%s", 10) == 0)
1778 /* Ug. We don't know shared library extensions. Hope that
1779 systems that use this form don't do shared libraries. */
1780 init_gcc_specs (&obstack,
1781 "-lgcc_s",
1782 "libgcc.a%s",
1783 "libgcc_eh.a%s"
1784 #ifdef USE_LIBUNWIND_EXCEPTIONS
1785 " -lunwind"
1786 #endif
1788 p += 10;
1789 in_sep = 0;
1791 else
1793 obstack_1grow (&obstack, *p);
1794 in_sep = (*p == ' ');
1795 p += 1;
1799 obstack_1grow (&obstack, '\0');
1800 libgcc_spec = XOBFINISH (&obstack, const char *);
1802 #endif
1803 #ifdef USE_AS_TRADITIONAL_FORMAT
1804 /* Prepend "--traditional-format" to whatever asm_spec we had before. */
1806 static const char tf[] = "--traditional-format ";
1807 obstack_grow (&obstack, tf, sizeof(tf) - 1);
1808 obstack_grow0 (&obstack, asm_spec, strlen (asm_spec));
1809 asm_spec = XOBFINISH (&obstack, const char *);
1811 #endif
1812 #ifdef LINK_EH_SPEC
1813 /* Prepend LINK_EH_SPEC to whatever link_spec we had before. */
1814 obstack_grow (&obstack, LINK_EH_SPEC, sizeof(LINK_EH_SPEC) - 1);
1815 obstack_grow0 (&obstack, link_spec, strlen (link_spec));
1816 link_spec = XOBFINISH (&obstack, const char *);
1817 #endif
1819 specs = sl;
1822 /* Change the value of spec NAME to SPEC. If SPEC is empty, then the spec is
1823 removed; If the spec starts with a + then SPEC is added to the end of the
1824 current spec. */
1826 static void
1827 set_spec (const char *name, const char *spec)
1829 struct spec_list *sl;
1830 const char *old_spec;
1831 int name_len = strlen (name);
1832 int i;
1834 /* If this is the first call, initialize the statically allocated specs. */
1835 if (!specs)
1837 struct spec_list *next = (struct spec_list *) 0;
1838 for (i = ARRAY_SIZE (static_specs) - 1; i >= 0; i--)
1840 sl = &static_specs[i];
1841 sl->next = next;
1842 next = sl;
1844 specs = sl;
1847 /* See if the spec already exists. */
1848 for (sl = specs; sl; sl = sl->next)
1849 if (name_len == sl->name_len && !strcmp (sl->name, name))
1850 break;
1852 if (!sl)
1854 /* Not found - make it. */
1855 sl = XNEW (struct spec_list);
1856 sl->name = xstrdup (name);
1857 sl->name_len = name_len;
1858 sl->ptr_spec = &sl->ptr;
1859 sl->alloc_p = 0;
1860 *(sl->ptr_spec) = "";
1861 sl->next = specs;
1862 specs = sl;
1865 old_spec = *(sl->ptr_spec);
1866 *(sl->ptr_spec) = ((spec[0] == '+' && ISSPACE ((unsigned char)spec[1]))
1867 ? concat (old_spec, spec + 1, NULL)
1868 : xstrdup (spec));
1870 #ifdef DEBUG_SPECS
1871 if (verbose_flag)
1872 notice ("Setting spec %s to '%s'\n\n", name, *(sl->ptr_spec));
1873 #endif
1875 /* Free the old spec. */
1876 if (old_spec && sl->alloc_p)
1877 free ((void *) old_spec);
1879 sl->alloc_p = 1;
1882 /* Accumulate a command (program name and args), and run it. */
1884 /* Vector of pointers to arguments in the current line of specifications. */
1886 static const char **argbuf;
1888 /* Number of elements allocated in argbuf. */
1890 static int argbuf_length;
1892 /* Number of elements in argbuf currently in use (containing args). */
1894 static int argbuf_index;
1896 /* Position in the argbuf array containing the name of the output file
1897 (the value associated with the "-o" flag). */
1899 static int have_o_argbuf_index = 0;
1901 /* Were the options -c or -S passed. */
1902 static int have_c = 0;
1904 /* Was the option -o passed. */
1905 static int have_o = 0;
1907 /* This is the list of suffixes and codes (%g/%u/%U/%j) and the associated
1908 temp file. If the HOST_BIT_BUCKET is used for %j, no entry is made for
1909 it here. */
1911 static struct temp_name {
1912 const char *suffix; /* suffix associated with the code. */
1913 int length; /* strlen (suffix). */
1914 int unique; /* Indicates whether %g or %u/%U was used. */
1915 const char *filename; /* associated filename. */
1916 int filename_length; /* strlen (filename). */
1917 struct temp_name *next;
1918 } *temp_names;
1920 /* Number of commands executed so far. */
1922 static int execution_count;
1924 /* Number of commands that exited with a signal. */
1926 static int signal_count;
1928 /* Name with which this program was invoked. */
1930 static const char *programname;
1932 /* Allocate the argument vector. */
1934 static void
1935 alloc_args (void)
1937 argbuf_length = 10;
1938 argbuf = XNEWVEC (const char *, argbuf_length);
1941 /* Clear out the vector of arguments (after a command is executed). */
1943 static void
1944 clear_args (void)
1946 argbuf_index = 0;
1949 /* Add one argument to the vector at the end.
1950 This is done when a space is seen or at the end of the line.
1951 If DELETE_ALWAYS is nonzero, the arg is a filename
1952 and the file should be deleted eventually.
1953 If DELETE_FAILURE is nonzero, the arg is a filename
1954 and the file should be deleted if this compilation fails. */
1956 static void
1957 store_arg (const char *arg, int delete_always, int delete_failure)
1959 if (argbuf_index + 1 == argbuf_length)
1960 argbuf = xrealloc (argbuf, (argbuf_length *= 2) * sizeof (const char *));
1962 argbuf[argbuf_index++] = arg;
1963 argbuf[argbuf_index] = 0;
1965 if (strcmp (arg, "-o") == 0)
1966 have_o_argbuf_index = argbuf_index;
1967 if (delete_always || delete_failure)
1968 record_temp_file (arg, delete_always, delete_failure);
1971 /* Load specs from a file name named FILENAME, replacing occurrences of
1972 various different types of line-endings, \r\n, \n\r and just \r, with
1973 a single \n. */
1975 static char *
1976 load_specs (const char *filename)
1978 int desc;
1979 int readlen;
1980 struct stat statbuf;
1981 char *buffer;
1982 char *buffer_p;
1983 char *specs;
1984 char *specs_p;
1986 if (verbose_flag)
1987 notice ("Reading specs from %s\n", filename);
1989 /* Open and stat the file. */
1990 desc = open (filename, O_RDONLY, 0);
1991 if (desc < 0)
1992 pfatal_with_name (filename);
1993 if (stat (filename, &statbuf) < 0)
1994 pfatal_with_name (filename);
1996 /* Read contents of file into BUFFER. */
1997 buffer = XNEWVEC (char, statbuf.st_size + 1);
1998 readlen = read (desc, buffer, (unsigned) statbuf.st_size);
1999 if (readlen < 0)
2000 pfatal_with_name (filename);
2001 buffer[readlen] = 0;
2002 close (desc);
2004 specs = XNEWVEC (char, readlen + 1);
2005 specs_p = specs;
2006 for (buffer_p = buffer; buffer_p && *buffer_p; buffer_p++)
2008 int skip = 0;
2009 char c = *buffer_p;
2010 if (c == '\r')
2012 if (buffer_p > buffer && *(buffer_p - 1) == '\n') /* \n\r */
2013 skip = 1;
2014 else if (*(buffer_p + 1) == '\n') /* \r\n */
2015 skip = 1;
2016 else /* \r */
2017 c = '\n';
2019 if (! skip)
2020 *specs_p++ = c;
2022 *specs_p = '\0';
2024 free (buffer);
2025 return (specs);
2028 /* Read compilation specs from a file named FILENAME,
2029 replacing the default ones.
2031 A suffix which starts with `*' is a definition for
2032 one of the machine-specific sub-specs. The "suffix" should be
2033 *asm, *cc1, *cpp, *link, *startfile, etc.
2034 The corresponding spec is stored in asm_spec, etc.,
2035 rather than in the `compilers' vector.
2037 Anything invalid in the file is a fatal error. */
2039 static void
2040 read_specs (const char *filename, int main_p)
2042 char *buffer;
2043 char *p;
2045 buffer = load_specs (filename);
2047 /* Scan BUFFER for specs, putting them in the vector. */
2048 p = buffer;
2049 while (1)
2051 char *suffix;
2052 char *spec;
2053 char *in, *out, *p1, *p2, *p3;
2055 /* Advance P in BUFFER to the next nonblank nocomment line. */
2056 p = skip_whitespace (p);
2057 if (*p == 0)
2058 break;
2060 /* Is this a special command that starts with '%'? */
2061 /* Don't allow this for the main specs file, since it would
2062 encourage people to overwrite it. */
2063 if (*p == '%' && !main_p)
2065 p1 = p;
2066 while (*p && *p != '\n')
2067 p++;
2069 /* Skip '\n'. */
2070 p++;
2072 if (!strncmp (p1, "%include", sizeof ("%include") - 1)
2073 && (p1[sizeof "%include" - 1] == ' '
2074 || p1[sizeof "%include" - 1] == '\t'))
2076 char *new_filename;
2078 p1 += sizeof ("%include");
2079 while (*p1 == ' ' || *p1 == '\t')
2080 p1++;
2082 if (*p1++ != '<' || p[-2] != '>')
2083 fatal ("specs %%include syntax malformed after %ld characters",
2084 (long) (p1 - buffer + 1));
2086 p[-2] = '\0';
2087 new_filename = find_a_file (&startfile_prefixes, p1, R_OK, true);
2088 read_specs (new_filename ? new_filename : p1, FALSE);
2089 continue;
2091 else if (!strncmp (p1, "%include_noerr", sizeof "%include_noerr" - 1)
2092 && (p1[sizeof "%include_noerr" - 1] == ' '
2093 || p1[sizeof "%include_noerr" - 1] == '\t'))
2095 char *new_filename;
2097 p1 += sizeof "%include_noerr";
2098 while (*p1 == ' ' || *p1 == '\t')
2099 p1++;
2101 if (*p1++ != '<' || p[-2] != '>')
2102 fatal ("specs %%include syntax malformed after %ld characters",
2103 (long) (p1 - buffer + 1));
2105 p[-2] = '\0';
2106 new_filename = find_a_file (&startfile_prefixes, p1, R_OK, true);
2107 if (new_filename)
2108 read_specs (new_filename, FALSE);
2109 else if (verbose_flag)
2110 notice ("could not find specs file %s\n", p1);
2111 continue;
2113 else if (!strncmp (p1, "%rename", sizeof "%rename" - 1)
2114 && (p1[sizeof "%rename" - 1] == ' '
2115 || p1[sizeof "%rename" - 1] == '\t'))
2117 int name_len;
2118 struct spec_list *sl;
2119 struct spec_list *newsl;
2121 /* Get original name. */
2122 p1 += sizeof "%rename";
2123 while (*p1 == ' ' || *p1 == '\t')
2124 p1++;
2126 if (! ISALPHA ((unsigned char) *p1))
2127 fatal ("specs %%rename syntax malformed after %ld characters",
2128 (long) (p1 - buffer));
2130 p2 = p1;
2131 while (*p2 && !ISSPACE ((unsigned char) *p2))
2132 p2++;
2134 if (*p2 != ' ' && *p2 != '\t')
2135 fatal ("specs %%rename syntax malformed after %ld characters",
2136 (long) (p2 - buffer));
2138 name_len = p2 - p1;
2139 *p2++ = '\0';
2140 while (*p2 == ' ' || *p2 == '\t')
2141 p2++;
2143 if (! ISALPHA ((unsigned char) *p2))
2144 fatal ("specs %%rename syntax malformed after %ld characters",
2145 (long) (p2 - buffer));
2147 /* Get new spec name. */
2148 p3 = p2;
2149 while (*p3 && !ISSPACE ((unsigned char) *p3))
2150 p3++;
2152 if (p3 != p - 1)
2153 fatal ("specs %%rename syntax malformed after %ld characters",
2154 (long) (p3 - buffer));
2155 *p3 = '\0';
2157 for (sl = specs; sl; sl = sl->next)
2158 if (name_len == sl->name_len && !strcmp (sl->name, p1))
2159 break;
2161 if (!sl)
2162 fatal ("specs %s spec was not found to be renamed", p1);
2164 if (strcmp (p1, p2) == 0)
2165 continue;
2167 for (newsl = specs; newsl; newsl = newsl->next)
2168 if (strcmp (newsl->name, p2) == 0)
2169 fatal ("%s: attempt to rename spec '%s' to already defined spec '%s'",
2170 filename, p1, p2);
2172 if (verbose_flag)
2174 notice ("rename spec %s to %s\n", p1, p2);
2175 #ifdef DEBUG_SPECS
2176 notice ("spec is '%s'\n\n", *(sl->ptr_spec));
2177 #endif
2180 set_spec (p2, *(sl->ptr_spec));
2181 if (sl->alloc_p)
2182 free ((void *) *(sl->ptr_spec));
2184 *(sl->ptr_spec) = "";
2185 sl->alloc_p = 0;
2186 continue;
2188 else
2189 fatal ("specs unknown %% command after %ld characters",
2190 (long) (p1 - buffer));
2193 /* Find the colon that should end the suffix. */
2194 p1 = p;
2195 while (*p1 && *p1 != ':' && *p1 != '\n')
2196 p1++;
2198 /* The colon shouldn't be missing. */
2199 if (*p1 != ':')
2200 fatal ("specs file malformed after %ld characters",
2201 (long) (p1 - buffer));
2203 /* Skip back over trailing whitespace. */
2204 p2 = p1;
2205 while (p2 > buffer && (p2[-1] == ' ' || p2[-1] == '\t'))
2206 p2--;
2208 /* Copy the suffix to a string. */
2209 suffix = save_string (p, p2 - p);
2210 /* Find the next line. */
2211 p = skip_whitespace (p1 + 1);
2212 if (p[1] == 0)
2213 fatal ("specs file malformed after %ld characters",
2214 (long) (p - buffer));
2216 p1 = p;
2217 /* Find next blank line or end of string. */
2218 while (*p1 && !(*p1 == '\n' && (p1[1] == '\n' || p1[1] == '\0')))
2219 p1++;
2221 /* Specs end at the blank line and do not include the newline. */
2222 spec = save_string (p, p1 - p);
2223 p = p1;
2225 /* Delete backslash-newline sequences from the spec. */
2226 in = spec;
2227 out = spec;
2228 while (*in != 0)
2230 if (in[0] == '\\' && in[1] == '\n')
2231 in += 2;
2232 else if (in[0] == '#')
2233 while (*in && *in != '\n')
2234 in++;
2236 else
2237 *out++ = *in++;
2239 *out = 0;
2241 if (suffix[0] == '*')
2243 if (! strcmp (suffix, "*link_command"))
2244 link_command_spec = spec;
2245 else
2246 set_spec (suffix + 1, spec);
2248 else
2250 /* Add this pair to the vector. */
2251 compilers
2252 = xrealloc (compilers,
2253 (n_compilers + 2) * sizeof (struct compiler));
2255 compilers[n_compilers].suffix = suffix;
2256 compilers[n_compilers].spec = spec;
2257 n_compilers++;
2258 memset (&compilers[n_compilers], 0, sizeof compilers[n_compilers]);
2261 if (*suffix == 0)
2262 link_command_spec = spec;
2265 if (link_command_spec == 0)
2266 fatal ("spec file has no spec for linking");
2269 /* Record the names of temporary files we tell compilers to write,
2270 and delete them at the end of the run. */
2272 /* This is the common prefix we use to make temp file names.
2273 It is chosen once for each run of this program.
2274 It is substituted into a spec by %g or %j.
2275 Thus, all temp file names contain this prefix.
2276 In practice, all temp file names start with this prefix.
2278 This prefix comes from the envvar TMPDIR if it is defined;
2279 otherwise, from the P_tmpdir macro if that is defined;
2280 otherwise, in /usr/tmp or /tmp;
2281 or finally the current directory if all else fails. */
2283 static const char *temp_filename;
2285 /* Length of the prefix. */
2287 static int temp_filename_length;
2289 /* Define the list of temporary files to delete. */
2291 struct temp_file
2293 const char *name;
2294 struct temp_file *next;
2297 /* Queue of files to delete on success or failure of compilation. */
2298 static struct temp_file *always_delete_queue;
2299 /* Queue of files to delete on failure of compilation. */
2300 static struct temp_file *failure_delete_queue;
2302 /* Record FILENAME as a file to be deleted automatically.
2303 ALWAYS_DELETE nonzero means delete it if all compilation succeeds;
2304 otherwise delete it in any case.
2305 FAIL_DELETE nonzero means delete it if a compilation step fails;
2306 otherwise delete it in any case. */
2308 void
2309 record_temp_file (const char *filename, int always_delete, int fail_delete)
2311 char *const name = xstrdup (filename);
2313 if (always_delete)
2315 struct temp_file *temp;
2316 for (temp = always_delete_queue; temp; temp = temp->next)
2317 if (! strcmp (name, temp->name))
2318 goto already1;
2320 temp = XNEW (struct temp_file);
2321 temp->next = always_delete_queue;
2322 temp->name = name;
2323 always_delete_queue = temp;
2325 already1:;
2328 if (fail_delete)
2330 struct temp_file *temp;
2331 for (temp = failure_delete_queue; temp; temp = temp->next)
2332 if (! strcmp (name, temp->name))
2333 goto already2;
2335 temp = XNEW (struct temp_file);
2336 temp->next = failure_delete_queue;
2337 temp->name = name;
2338 failure_delete_queue = temp;
2340 already2:;
2344 /* Delete all the temporary files whose names we previously recorded. */
2346 #ifndef DELETE_IF_ORDINARY
2347 #define DELETE_IF_ORDINARY(NAME,ST,VERBOSE_FLAG) \
2348 do \
2350 if (stat (NAME, &ST) >= 0 && S_ISREG (ST.st_mode)) \
2351 if (unlink (NAME) < 0) \
2352 if (VERBOSE_FLAG) \
2353 perror_with_name (NAME); \
2354 } while (0)
2355 #endif
2357 static void
2358 delete_if_ordinary (const char *name)
2360 struct stat st;
2361 #ifdef DEBUG
2362 int i, c;
2364 printf ("Delete %s? (y or n) ", name);
2365 fflush (stdout);
2366 i = getchar ();
2367 if (i != '\n')
2368 while ((c = getchar ()) != '\n' && c != EOF)
2371 if (i == 'y' || i == 'Y')
2372 #endif /* DEBUG */
2373 DELETE_IF_ORDINARY (name, st, verbose_flag);
2376 static void
2377 delete_temp_files (void)
2379 struct temp_file *temp;
2381 for (temp = always_delete_queue; temp; temp = temp->next)
2382 delete_if_ordinary (temp->name);
2383 always_delete_queue = 0;
2386 /* Delete all the files to be deleted on error. */
2388 static void
2389 delete_failure_queue (void)
2391 struct temp_file *temp;
2393 for (temp = failure_delete_queue; temp; temp = temp->next)
2394 delete_if_ordinary (temp->name);
2397 static void
2398 clear_failure_queue (void)
2400 failure_delete_queue = 0;
2403 /* Call CALLBACK for each path in PATHS, breaking out early if CALLBACK
2404 returns non-NULL.
2405 If DO_MULTI is true iterate over the paths twice, first with multilib
2406 suffix then without, otherwise iterate over the paths once without
2407 adding a multilib suffix. When DO_MULTI is true, some attempt is made
2408 to avoid visiting the same path twice, but we could do better. For
2409 instance, /usr/lib/../lib is considered different from /usr/lib.
2410 At least EXTRA_SPACE chars past the end of the path passed to
2411 CALLBACK are available for use by the callback.
2412 CALLBACK_INFO allows extra parameters to be passed to CALLBACK.
2414 Returns the value returned by CALLBACK. */
2416 static void *
2417 for_each_path (const struct path_prefix *paths,
2418 bool do_multi,
2419 size_t extra_space,
2420 void *(*callback) (char *, void *),
2421 void *callback_info)
2423 struct prefix_list *pl;
2424 const char *multi_dir = NULL;
2425 const char *multi_os_dir = NULL;
2426 const char *multi_suffix;
2427 const char *just_multi_suffix;
2428 char *path = NULL;
2429 void *ret = NULL;
2430 bool skip_multi_dir = false;
2431 bool skip_multi_os_dir = false;
2433 multi_suffix = machine_suffix;
2434 just_multi_suffix = just_machine_suffix;
2435 if (do_multi && multilib_dir && strcmp (multilib_dir, ".") != 0)
2437 multi_dir = concat (multilib_dir, dir_separator_str, NULL);
2438 multi_suffix = concat (multi_suffix, multi_dir, NULL);
2439 just_multi_suffix = concat (just_multi_suffix, multi_dir, NULL);
2441 if (do_multi && multilib_os_dir && strcmp (multilib_os_dir, ".") != 0)
2442 multi_os_dir = concat (multilib_os_dir, dir_separator_str, NULL);
2444 while (1)
2446 size_t multi_dir_len = 0;
2447 size_t multi_os_dir_len = 0;
2448 size_t suffix_len;
2449 size_t just_suffix_len;
2450 size_t len;
2452 if (multi_dir)
2453 multi_dir_len = strlen (multi_dir);
2454 if (multi_os_dir)
2455 multi_os_dir_len = strlen (multi_os_dir);
2456 suffix_len = strlen (multi_suffix);
2457 just_suffix_len = strlen (just_multi_suffix);
2459 if (path == NULL)
2461 len = paths->max_len + extra_space + 1;
2462 if (suffix_len > multi_os_dir_len)
2463 len += suffix_len;
2464 else
2465 len += multi_os_dir_len;
2466 path = XNEWVEC (char, len);
2469 for (pl = paths->plist; pl != 0; pl = pl->next)
2471 len = strlen (pl->prefix);
2472 memcpy (path, pl->prefix, len);
2474 /* Look first in MACHINE/VERSION subdirectory. */
2475 if (!skip_multi_dir)
2477 memcpy (path + len, multi_suffix, suffix_len + 1);
2478 ret = callback (path, callback_info);
2479 if (ret)
2480 break;
2483 /* Some paths are tried with just the machine (ie. target)
2484 subdir. This is used for finding as, ld, etc. */
2485 if (!skip_multi_dir
2486 && pl->require_machine_suffix == 2)
2488 memcpy (path + len, just_multi_suffix, just_suffix_len + 1);
2489 ret = callback (path, callback_info);
2490 if (ret)
2491 break;
2494 /* Now try the base path. */
2495 if (!pl->require_machine_suffix
2496 && !(pl->os_multilib ? skip_multi_os_dir : skip_multi_dir))
2498 const char *this_multi;
2499 size_t this_multi_len;
2501 if (pl->os_multilib)
2503 this_multi = multi_os_dir;
2504 this_multi_len = multi_os_dir_len;
2506 else
2508 this_multi = multi_dir;
2509 this_multi_len = multi_dir_len;
2512 if (this_multi_len)
2513 memcpy (path + len, this_multi, this_multi_len + 1);
2514 else
2515 path[len] = '\0';
2517 ret = callback (path, callback_info);
2518 if (ret)
2519 break;
2522 if (pl)
2523 break;
2525 if (multi_dir == NULL && multi_os_dir == NULL)
2526 break;
2528 /* Run through the paths again, this time without multilibs.
2529 Don't repeat any we have already seen. */
2530 if (multi_dir)
2532 free ((char *) multi_dir);
2533 multi_dir = NULL;
2534 free ((char *) multi_suffix);
2535 multi_suffix = machine_suffix;
2536 free ((char *) just_multi_suffix);
2537 just_multi_suffix = just_machine_suffix;
2539 else
2540 skip_multi_dir = true;
2541 if (multi_os_dir)
2543 free ((char *) multi_os_dir);
2544 multi_os_dir = NULL;
2546 else
2547 skip_multi_os_dir = true;
2550 if (multi_dir)
2552 free ((char *) multi_dir);
2553 free ((char *) multi_suffix);
2554 free ((char *) just_multi_suffix);
2556 if (multi_os_dir)
2557 free ((char *) multi_os_dir);
2558 if (ret != path)
2559 free (path);
2560 return ret;
2563 /* Callback for build_search_list. Adds path to obstack being built. */
2565 struct add_to_obstack_info {
2566 struct obstack *ob;
2567 bool check_dir;
2568 bool first_time;
2571 static void *
2572 add_to_obstack (char *path, void *data)
2574 struct add_to_obstack_info *info = data;
2576 if (info->check_dir && !is_directory (path, false))
2577 return NULL;
2579 if (!info->first_time)
2580 obstack_1grow (info->ob, PATH_SEPARATOR);
2582 obstack_grow (info->ob, path, strlen (path));
2584 info->first_time = false;
2585 return NULL;
2588 /* Build a list of search directories from PATHS.
2589 PREFIX is a string to prepend to the list.
2590 If CHECK_DIR_P is true we ensure the directory exists.
2591 If DO_MULTI is true, multilib paths are output first, then
2592 non-multilib paths.
2593 This is used mostly by putenv_from_prefixes so we use `collect_obstack'.
2594 It is also used by the --print-search-dirs flag. */
2596 static char *
2597 build_search_list (const struct path_prefix *paths, const char *prefix,
2598 bool check_dir, bool do_multi)
2600 struct add_to_obstack_info info;
2602 info.ob = &collect_obstack;
2603 info.check_dir = check_dir;
2604 info.first_time = true;
2606 obstack_grow (&collect_obstack, prefix, strlen (prefix));
2607 obstack_1grow (&collect_obstack, '=');
2609 for_each_path (paths, do_multi, 0, add_to_obstack, &info);
2611 obstack_1grow (&collect_obstack, '\0');
2612 return XOBFINISH (&collect_obstack, char *);
2615 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
2616 for collect. */
2618 static void
2619 putenv_from_prefixes (const struct path_prefix *paths, const char *env_var,
2620 bool do_multi)
2622 putenv (build_search_list (paths, env_var, true, do_multi));
2625 /* Check whether NAME can be accessed in MODE. This is like access,
2626 except that it never considers directories to be executable. */
2628 static int
2629 access_check (const char *name, int mode)
2631 if (mode == X_OK)
2633 struct stat st;
2635 if (stat (name, &st) < 0
2636 || S_ISDIR (st.st_mode))
2637 return -1;
2640 return access (name, mode);
2643 /* Callback for find_a_file. Appends the file name to the directory
2644 path. If the resulting file exists in the right mode, return the
2645 full pathname to the file. */
2647 struct file_at_path_info {
2648 const char *name;
2649 const char *suffix;
2650 int name_len;
2651 int suffix_len;
2652 int mode;
2655 static void *
2656 file_at_path (char *path, void *data)
2658 struct file_at_path_info *info = data;
2659 size_t len = strlen (path);
2661 memcpy (path + len, info->name, info->name_len);
2662 len += info->name_len;
2664 /* Some systems have a suffix for executable files.
2665 So try appending that first. */
2666 if (info->suffix_len)
2668 memcpy (path + len, info->suffix, info->suffix_len + 1);
2669 if (access_check (path, info->mode) == 0)
2670 return path;
2673 path[len] = '\0';
2674 if (access_check (path, info->mode) == 0)
2675 return path;
2677 return NULL;
2680 /* Search for NAME using the prefix list PREFIXES. MODE is passed to
2681 access to check permissions. If DO_MULTI is true, search multilib
2682 paths then non-multilib paths, otherwise do not search multilib paths.
2683 Return 0 if not found, otherwise return its name, allocated with malloc. */
2685 static char *
2686 find_a_file (const struct path_prefix *pprefix, const char *name, int mode,
2687 bool do_multi)
2689 struct file_at_path_info info;
2691 #ifdef DEFAULT_ASSEMBLER
2692 if (! strcmp (name, "as") && access (DEFAULT_ASSEMBLER, mode) == 0)
2693 return xstrdup (DEFAULT_ASSEMBLER);
2694 #endif
2696 #ifdef DEFAULT_LINKER
2697 if (! strcmp(name, "ld") && access (DEFAULT_LINKER, mode) == 0)
2698 return xstrdup (DEFAULT_LINKER);
2699 #endif
2701 /* Determine the filename to execute (special case for absolute paths). */
2703 if (IS_ABSOLUTE_PATH (name))
2705 if (access (name, mode) == 0)
2706 return xstrdup (name);
2708 return NULL;
2711 info.name = name;
2712 info.suffix = (mode & X_OK) != 0 ? HOST_EXECUTABLE_SUFFIX : "";
2713 info.name_len = strlen (info.name);
2714 info.suffix_len = strlen (info.suffix);
2715 info.mode = mode;
2717 return for_each_path (pprefix, do_multi, info.name_len + info.suffix_len,
2718 file_at_path, &info);
2721 /* Ranking of prefixes in the sort list. -B prefixes are put before
2722 all others. */
2724 enum path_prefix_priority
2726 PREFIX_PRIORITY_B_OPT,
2727 PREFIX_PRIORITY_LAST
2730 /* Add an entry for PREFIX in PLIST. The PLIST is kept in ascending
2731 order according to PRIORITY. Within each PRIORITY, new entries are
2732 appended.
2734 If WARN is nonzero, we will warn if no file is found
2735 through this prefix. WARN should point to an int
2736 which will be set to 1 if this entry is used.
2738 COMPONENT is the value to be passed to update_path.
2740 REQUIRE_MACHINE_SUFFIX is 1 if this prefix can't be used without
2741 the complete value of machine_suffix.
2742 2 means try both machine_suffix and just_machine_suffix. */
2744 static void
2745 add_prefix (struct path_prefix *pprefix, const char *prefix,
2746 const char *component, /* enum prefix_priority */ int priority,
2747 int require_machine_suffix, int os_multilib)
2749 struct prefix_list *pl, **prev;
2750 int len;
2752 for (prev = &pprefix->plist;
2753 (*prev) != NULL && (*prev)->priority <= priority;
2754 prev = &(*prev)->next)
2757 /* Keep track of the longest prefix. */
2759 prefix = update_path (prefix, component);
2760 len = strlen (prefix);
2761 if (len > pprefix->max_len)
2762 pprefix->max_len = len;
2764 pl = XNEW (struct prefix_list);
2765 pl->prefix = prefix;
2766 pl->require_machine_suffix = require_machine_suffix;
2767 pl->priority = priority;
2768 pl->os_multilib = os_multilib;
2770 /* Insert after PREV. */
2771 pl->next = (*prev);
2772 (*prev) = pl;
2775 /* Same as add_prefix, but prepending target_system_root to prefix. */
2776 /* The target_system_root prefix has been relocated by gcc_exec_prefix. */
2777 static void
2778 add_sysrooted_prefix (struct path_prefix *pprefix, const char *prefix,
2779 const char *component,
2780 /* enum prefix_priority */ int priority,
2781 int require_machine_suffix, int os_multilib)
2783 if (!IS_ABSOLUTE_PATH (prefix))
2784 fatal ("system path '%s' is not absolute", prefix);
2786 if (target_system_root)
2788 if (target_sysroot_suffix)
2789 prefix = concat (target_sysroot_suffix, prefix, NULL);
2790 prefix = concat (target_system_root, prefix, NULL);
2792 /* We have to override this because GCC's notion of sysroot
2793 moves along with GCC. */
2794 component = "GCC";
2797 add_prefix (pprefix, prefix, component, priority,
2798 require_machine_suffix, os_multilib);
2801 /* Execute the command specified by the arguments on the current line of spec.
2802 When using pipes, this includes several piped-together commands
2803 with `|' between them.
2805 Return 0 if successful, -1 if failed. */
2807 static int
2808 execute (void)
2810 int i;
2811 int n_commands; /* # of command. */
2812 char *string;
2813 struct pex_obj *pex;
2814 struct command
2816 const char *prog; /* program name. */
2817 const char **argv; /* vector of args. */
2820 struct command *commands; /* each command buffer with above info. */
2822 gcc_assert (!processing_spec_function);
2824 /* Count # of piped commands. */
2825 for (n_commands = 1, i = 0; i < argbuf_index; i++)
2826 if (strcmp (argbuf[i], "|") == 0)
2827 n_commands++;
2829 /* Get storage for each command. */
2830 commands = alloca (n_commands * sizeof (struct command));
2832 /* Split argbuf into its separate piped processes,
2833 and record info about each one.
2834 Also search for the programs that are to be run. */
2836 commands[0].prog = argbuf[0]; /* first command. */
2837 commands[0].argv = &argbuf[0];
2838 string = find_a_file (&exec_prefixes, commands[0].prog, X_OK, false);
2840 if (string)
2841 commands[0].argv[0] = string;
2843 for (n_commands = 1, i = 0; i < argbuf_index; i++)
2844 if (strcmp (argbuf[i], "|") == 0)
2845 { /* each command. */
2846 #if defined (__MSDOS__) || defined (OS2) || defined (VMS)
2847 fatal ("-pipe not supported");
2848 #endif
2849 argbuf[i] = 0; /* termination of command args. */
2850 commands[n_commands].prog = argbuf[i + 1];
2851 commands[n_commands].argv = &argbuf[i + 1];
2852 string = find_a_file (&exec_prefixes, commands[n_commands].prog,
2853 X_OK, false);
2854 if (string)
2855 commands[n_commands].argv[0] = string;
2856 n_commands++;
2859 argbuf[argbuf_index] = 0;
2861 /* If -v, print what we are about to do, and maybe query. */
2863 if (verbose_flag)
2865 /* For help listings, put a blank line between sub-processes. */
2866 if (print_help_list)
2867 fputc ('\n', stderr);
2869 /* Print each piped command as a separate line. */
2870 for (i = 0; i < n_commands; i++)
2872 const char *const *j;
2874 if (verbose_only_flag)
2876 for (j = commands[i].argv; *j; j++)
2878 const char *p;
2879 fprintf (stderr, " \"");
2880 for (p = *j; *p; ++p)
2882 if (*p == '"' || *p == '\\' || *p == '$')
2883 fputc ('\\', stderr);
2884 fputc (*p, stderr);
2886 fputc ('"', stderr);
2889 else
2890 for (j = commands[i].argv; *j; j++)
2891 fprintf (stderr, " %s", *j);
2893 /* Print a pipe symbol after all but the last command. */
2894 if (i + 1 != n_commands)
2895 fprintf (stderr, " |");
2896 fprintf (stderr, "\n");
2898 fflush (stderr);
2899 if (verbose_only_flag != 0)
2901 /* verbose_only_flag should act as if the spec was
2902 executed, so increment execution_count before
2903 returning. This prevents spurious warnings about
2904 unused linker input files, etc. */
2905 execution_count++;
2906 return 0;
2908 #ifdef DEBUG
2909 notice ("\nGo ahead? (y or n) ");
2910 fflush (stderr);
2911 i = getchar ();
2912 if (i != '\n')
2913 while (getchar () != '\n')
2916 if (i != 'y' && i != 'Y')
2917 return 0;
2918 #endif /* DEBUG */
2921 #ifdef ENABLE_VALGRIND_CHECKING
2922 /* Run the each command through valgrind. To simplify prepending the
2923 path to valgrind and the option "-q" (for quiet operation unless
2924 something triggers), we allocate a separate argv array. */
2926 for (i = 0; i < n_commands; i++)
2928 const char **argv;
2929 int argc;
2930 int j;
2932 for (argc = 0; commands[i].argv[argc] != NULL; argc++)
2935 argv = alloca ((argc + 3) * sizeof (char *));
2937 argv[0] = VALGRIND_PATH;
2938 argv[1] = "-q";
2939 for (j = 2; j < argc + 2; j++)
2940 argv[j] = commands[i].argv[j - 2];
2941 argv[j] = NULL;
2943 commands[i].argv = argv;
2944 commands[i].prog = argv[0];
2946 #endif
2948 /* Run each piped subprocess. */
2950 pex = pex_init (PEX_USE_PIPES | (report_times ? PEX_RECORD_TIMES : 0),
2951 programname, temp_filename);
2952 if (pex == NULL)
2953 pfatal_with_name (_("pex_init failed"));
2955 for (i = 0; i < n_commands; i++)
2957 const char *errmsg;
2958 int err;
2959 const char *string = commands[i].argv[0];
2961 errmsg = pex_run (pex,
2962 ((i + 1 == n_commands ? PEX_LAST : 0)
2963 | (string == commands[i].prog ? PEX_SEARCH : 0)),
2964 string, (char * const *) commands[i].argv,
2965 NULL, NULL, &err);
2966 if (errmsg != NULL)
2968 if (err == 0)
2969 fatal (errmsg);
2970 else
2972 errno = err;
2973 pfatal_with_name (errmsg);
2977 if (string != commands[i].prog)
2978 free ((void *) string);
2981 execution_count++;
2983 /* Wait for all the subprocesses to finish. */
2986 int *statuses;
2987 struct pex_time *times = NULL;
2988 int ret_code = 0;
2990 statuses = alloca (n_commands * sizeof (int));
2991 if (!pex_get_status (pex, n_commands, statuses))
2992 pfatal_with_name (_("failed to get exit status"));
2994 if (report_times)
2996 times = alloca (n_commands * sizeof (struct pex_time));
2997 if (!pex_get_times (pex, n_commands, times))
2998 pfatal_with_name (_("failed to get process times"));
3001 pex_free (pex);
3003 for (i = 0; i < n_commands; ++i)
3005 int status = statuses[i];
3007 if (WIFSIGNALED (status))
3009 #ifdef SIGPIPE
3010 /* SIGPIPE is a special case. It happens in -pipe mode
3011 when the compiler dies before the preprocessor is done,
3012 or the assembler dies before the compiler is done.
3013 There's generally been an error already, and this is
3014 just fallout. So don't generate another error unless
3015 we would otherwise have succeeded. */
3016 if (WTERMSIG (status) == SIGPIPE
3017 && (signal_count || greatest_status >= MIN_FATAL_STATUS))
3019 signal_count++;
3020 ret_code = -1;
3022 else
3023 #endif
3024 fatal_ice ("\
3025 Internal error: %s (program %s)\n\
3026 Please submit a full bug report.\n\
3027 See %s for instructions.",
3028 strsignal (WTERMSIG (status)), commands[i].prog,
3029 bug_report_url);
3031 else if (WIFEXITED (status)
3032 && WEXITSTATUS (status) >= MIN_FATAL_STATUS)
3034 if (WEXITSTATUS (status) > greatest_status)
3035 greatest_status = WEXITSTATUS (status);
3036 ret_code = -1;
3039 if (report_times)
3041 struct pex_time *pt = &times[i];
3042 double ut, st;
3044 ut = ((double) pt->user_seconds
3045 + (double) pt->user_microseconds / 1.0e6);
3046 st = ((double) pt->system_seconds
3047 + (double) pt->system_microseconds / 1.0e6);
3049 if (ut + st != 0)
3050 notice ("# %s %.2f %.2f\n", commands[i].prog, ut, st);
3054 return ret_code;
3058 /* Find all the switches given to us
3059 and make a vector describing them.
3060 The elements of the vector are strings, one per switch given.
3061 If a switch uses following arguments, then the `part1' field
3062 is the switch itself and the `args' field
3063 is a null-terminated vector containing the following arguments.
3064 The `live_cond' field is:
3065 0 when initialized
3066 1 if the switch is true in a conditional spec,
3067 -1 if false (overridden by a later switch)
3068 -2 if this switch should be ignored (used in %<S)
3069 The `validated' field is nonzero if any spec has looked at this switch;
3070 if it remains zero at the end of the run, it must be meaningless. */
3072 #define SWITCH_OK 0
3073 #define SWITCH_FALSE -1
3074 #define SWITCH_IGNORE -2
3075 #define SWITCH_LIVE 1
3077 struct switchstr
3079 const char *part1;
3080 const char **args;
3081 int live_cond;
3082 unsigned char validated;
3083 unsigned char ordering;
3086 static struct switchstr *switches;
3088 static int n_switches;
3090 /* Language is one of three things:
3092 1) The name of a real programming language.
3093 2) NULL, indicating that no one has figured out
3094 what it is yet.
3095 3) '*', indicating that the file should be passed
3096 to the linker. */
3097 struct infile
3099 const char *name;
3100 const char *language;
3101 struct compiler *incompiler;
3102 bool compiled;
3103 bool preprocessed;
3106 /* Also a vector of input files specified. */
3108 static struct infile *infiles;
3110 int n_infiles;
3112 /* True if multiple input files are being compiled to a single
3113 assembly file. */
3115 static bool combine_inputs;
3117 /* This counts the number of libraries added by lang_specific_driver, so that
3118 we can tell if there were any user supplied any files or libraries. */
3120 static int added_libraries;
3122 /* And a vector of corresponding output files is made up later. */
3124 const char **outfiles;
3126 #if defined(HAVE_TARGET_OBJECT_SUFFIX) || defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
3128 /* Convert NAME to a new name if it is the standard suffix. DO_EXE
3129 is true if we should look for an executable suffix. DO_OBJ
3130 is true if we should look for an object suffix. */
3132 static const char *
3133 convert_filename (const char *name, int do_exe ATTRIBUTE_UNUSED,
3134 int do_obj ATTRIBUTE_UNUSED)
3136 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
3137 int i;
3138 #endif
3139 int len;
3141 if (name == NULL)
3142 return NULL;
3144 len = strlen (name);
3146 #ifdef HAVE_TARGET_OBJECT_SUFFIX
3147 /* Convert x.o to x.obj if TARGET_OBJECT_SUFFIX is ".obj". */
3148 if (do_obj && len > 2
3149 && name[len - 2] == '.'
3150 && name[len - 1] == 'o')
3152 obstack_grow (&obstack, name, len - 2);
3153 obstack_grow0 (&obstack, TARGET_OBJECT_SUFFIX, strlen (TARGET_OBJECT_SUFFIX));
3154 name = XOBFINISH (&obstack, const char *);
3156 #endif
3158 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
3159 /* If there is no filetype, make it the executable suffix (which includes
3160 the "."). But don't get confused if we have just "-o". */
3161 if (! do_exe || TARGET_EXECUTABLE_SUFFIX[0] == 0 || (len == 2 && name[0] == '-'))
3162 return name;
3164 for (i = len - 1; i >= 0; i--)
3165 if (IS_DIR_SEPARATOR (name[i]))
3166 break;
3168 for (i++; i < len; i++)
3169 if (name[i] == '.')
3170 return name;
3172 obstack_grow (&obstack, name, len);
3173 obstack_grow0 (&obstack, TARGET_EXECUTABLE_SUFFIX,
3174 strlen (TARGET_EXECUTABLE_SUFFIX));
3175 name = XOBFINISH (&obstack, const char *);
3176 #endif
3178 return name;
3180 #endif
3182 /* Display the command line switches accepted by gcc. */
3183 static void
3184 display_help (void)
3186 printf (_("Usage: %s [options] file...\n"), programname);
3187 fputs (_("Options:\n"), stdout);
3189 fputs (_(" -pass-exit-codes Exit with highest error code from a phase\n"), stdout);
3190 fputs (_(" --help Display this information\n"), stdout);
3191 fputs (_(" --target-help Display target specific command line options\n"), stdout);
3192 fputs (_(" --help={target|optimizers|warnings|undocumented|params}[,{[^]joined|[^]separate}]\n"), stdout);
3193 fputs (_(" Display specific types of command line options\n"), stdout);
3194 if (! verbose_flag)
3195 fputs (_(" (Use '-v --help' to display command line options of sub-processes)\n"), stdout);
3196 fputs (_(" -dumpspecs Display all of the built in spec strings\n"), stdout);
3197 fputs (_(" -dumpversion Display the version of the compiler\n"), stdout);
3198 fputs (_(" -dumpmachine Display the compiler's target processor\n"), stdout);
3199 fputs (_(" -print-search-dirs Display the directories in the compiler's search path\n"), stdout);
3200 fputs (_(" -print-libgcc-file-name Display the name of the compiler's companion library\n"), stdout);
3201 fputs (_(" -print-file-name=<lib> Display the full path to library <lib>\n"), stdout);
3202 fputs (_(" -print-prog-name=<prog> Display the full path to compiler component <prog>\n"), stdout);
3203 fputs (_(" -print-multi-directory Display the root directory for versions of libgcc\n"), stdout);
3204 fputs (_("\
3205 -print-multi-lib Display the mapping between command line options and\n\
3206 multiple library search directories\n"), stdout);
3207 fputs (_(" -print-multi-os-directory Display the relative path to OS libraries\n"), stdout);
3208 fputs (_(" -print-sysroot-headers-suffix Display the sysroot suffix used to find headers\n"), stdout);
3209 fputs (_(" -Wa,<options> Pass comma-separated <options> on to the assembler\n"), stdout);
3210 fputs (_(" -Wp,<options> Pass comma-separated <options> on to the preprocessor\n"), stdout);
3211 fputs (_(" -Wl,<options> Pass comma-separated <options> on to the linker\n"), stdout);
3212 fputs (_(" -Xassembler <arg> Pass <arg> on to the assembler\n"), stdout);
3213 fputs (_(" -Xpreprocessor <arg> Pass <arg> on to the preprocessor\n"), stdout);
3214 fputs (_(" -Xlinker <arg> Pass <arg> on to the linker\n"), stdout);
3215 fputs (_(" -combine Pass multiple source files to compiler at once\n"), stdout);
3216 fputs (_(" -save-temps Do not delete intermediate files\n"), stdout);
3217 fputs (_(" -pipe Use pipes rather than intermediate files\n"), stdout);
3218 fputs (_(" -time Time the execution of each subprocess\n"), stdout);
3219 fputs (_(" -specs=<file> Override built-in specs with the contents of <file>\n"), stdout);
3220 fputs (_(" -std=<standard> Assume that the input sources are for <standard>\n"), stdout);
3221 fputs (_("\
3222 --sysroot=<directory> Use <directory> as the root directory for headers\n\
3223 and libraries\n"), stdout);
3224 fputs (_(" -B <directory> Add <directory> to the compiler's search paths\n"), stdout);
3225 fputs (_(" -b <machine> Run gcc for target <machine>, if installed\n"), stdout);
3226 fputs (_(" -V <version> Run gcc version number <version>, if installed\n"), stdout);
3227 fputs (_(" -v Display the programs invoked by the compiler\n"), stdout);
3228 fputs (_(" -### Like -v but options quoted and commands not executed\n"), stdout);
3229 fputs (_(" -E Preprocess only; do not compile, assemble or link\n"), stdout);
3230 fputs (_(" -S Compile only; do not assemble or link\n"), stdout);
3231 fputs (_(" -c Compile and assemble, but do not link\n"), stdout);
3232 fputs (_(" -o <file> Place the output into <file>\n"), stdout);
3233 fputs (_("\
3234 -x <language> Specify the language of the following input files\n\
3235 Permissible languages include: c c++ assembler none\n\
3236 'none' means revert to the default behavior of\n\
3237 guessing the language based on the file's extension\n\
3238 "), stdout);
3240 printf (_("\
3241 \nOptions starting with -g, -f, -m, -O, -W, or --param are automatically\n\
3242 passed on to the various sub-processes invoked by %s. In order to pass\n\
3243 other options on to these processes the -W<letter> options must be used.\n\
3244 "), programname);
3246 /* The rest of the options are displayed by invocations of the various
3247 sub-processes. */
3250 static void
3251 add_preprocessor_option (const char *option, int len)
3253 n_preprocessor_options++;
3255 if (! preprocessor_options)
3256 preprocessor_options = XNEWVEC (char *, n_preprocessor_options);
3257 else
3258 preprocessor_options = xrealloc (preprocessor_options,
3259 n_preprocessor_options * sizeof (char *));
3261 preprocessor_options [n_preprocessor_options - 1] =
3262 save_string (option, len);
3265 static void
3266 add_assembler_option (const char *option, int len)
3268 n_assembler_options++;
3270 if (! assembler_options)
3271 assembler_options = XNEWVEC (char *, n_assembler_options);
3272 else
3273 assembler_options = xrealloc (assembler_options,
3274 n_assembler_options * sizeof (char *));
3276 assembler_options [n_assembler_options - 1] = save_string (option, len);
3279 static void
3280 add_linker_option (const char *option, int len)
3282 n_linker_options++;
3284 if (! linker_options)
3285 linker_options = XNEWVEC (char *, n_linker_options);
3286 else
3287 linker_options = xrealloc (linker_options,
3288 n_linker_options * sizeof (char *));
3290 linker_options [n_linker_options - 1] = save_string (option, len);
3293 /* Create the vector `switches' and its contents.
3294 Store its length in `n_switches'. */
3296 static void
3297 process_command (int argc, const char **argv)
3299 int i;
3300 const char *temp;
3301 char *temp1;
3302 const char *spec_lang = 0;
3303 int last_language_n_infiles;
3304 int lang_n_infiles = 0;
3305 #ifdef MODIFY_TARGET_NAME
3306 int is_modify_target_name;
3307 unsigned int j;
3308 #endif
3309 const char *tooldir_prefix;
3311 GET_ENVIRONMENT (gcc_exec_prefix, "GCC_EXEC_PREFIX");
3313 n_switches = 0;
3314 n_infiles = 0;
3315 added_libraries = 0;
3317 /* Figure compiler version from version string. */
3319 compiler_version = temp1 = xstrdup (version_string);
3321 for (; *temp1; ++temp1)
3323 if (*temp1 == ' ')
3325 *temp1 = '\0';
3326 break;
3330 /* If there is a -V or -b option (or both), process it now, before
3331 trying to interpret the rest of the command line.
3332 Use heuristic that all configuration names must have at least
3333 one dash '-'. This allows us to pass options starting with -b. */
3334 if (argc > 1 && argv[1][0] == '-'
3335 && (argv[1][1] == 'V' ||
3336 ((argv[1][1] == 'b') && (NULL != strchr(argv[1] + 2,'-')))))
3338 const char *new_version = DEFAULT_TARGET_VERSION;
3339 const char *new_machine = DEFAULT_TARGET_MACHINE;
3340 const char *progname = argv[0];
3341 char **new_argv;
3342 char *new_argv0;
3343 int baselen;
3345 while (argc > 1 && argv[1][0] == '-'
3346 && (argv[1][1] == 'V' ||
3347 ((argv[1][1] == 'b') && ( NULL != strchr(argv[1] + 2,'-')))))
3349 char opt = argv[1][1];
3350 const char *arg;
3351 if (argv[1][2] != '\0')
3353 arg = argv[1] + 2;
3354 argc -= 1;
3355 argv += 1;
3357 else if (argc > 2)
3359 arg = argv[2];
3360 argc -= 2;
3361 argv += 2;
3363 else
3364 fatal ("'-%c' option must have argument", opt);
3365 if (opt == 'V')
3366 new_version = arg;
3367 else
3368 new_machine = arg;
3371 for (baselen = strlen (progname); baselen > 0; baselen--)
3372 if (IS_DIR_SEPARATOR (progname[baselen-1]))
3373 break;
3374 new_argv0 = xmemdup (progname, baselen,
3375 baselen + concat_length (new_version, new_machine,
3376 "-gcc-", NULL) + 1);
3377 strcpy (new_argv0 + baselen, new_machine);
3378 strcat (new_argv0, "-gcc-");
3379 strcat (new_argv0, new_version);
3381 new_argv = xmemdup (argv, (argc + 1) * sizeof (argv[0]),
3382 (argc + 1) * sizeof (argv[0]));
3383 new_argv[0] = new_argv0;
3385 execvp (new_argv0, new_argv);
3386 fatal ("couldn't run '%s': %s", new_argv0, xstrerror (errno));
3389 /* Set up the default search paths. If there is no GCC_EXEC_PREFIX,
3390 see if we can create it from the pathname specified in argv[0]. */
3392 gcc_libexec_prefix = standard_libexec_prefix;
3393 #ifndef VMS
3394 /* FIXME: make_relative_prefix doesn't yet work for VMS. */
3395 if (!gcc_exec_prefix)
3397 gcc_exec_prefix = make_relative_prefix (argv[0], standard_bindir_prefix,
3398 standard_exec_prefix);
3399 gcc_libexec_prefix = make_relative_prefix (argv[0],
3400 standard_bindir_prefix,
3401 standard_libexec_prefix);
3402 if (gcc_exec_prefix)
3403 putenv (concat ("GCC_EXEC_PREFIX=", gcc_exec_prefix, NULL));
3405 else
3407 /* make_relative_prefix requires a program name, but
3408 GCC_EXEC_PREFIX is typically a directory name with a trailing
3409 / (which is ignored by make_relative_prefix), so append a
3410 program name. */
3411 char *tmp_prefix = concat (gcc_exec_prefix, "gcc", NULL);
3412 gcc_libexec_prefix = make_relative_prefix (tmp_prefix,
3413 standard_exec_prefix,
3414 standard_libexec_prefix);
3416 /* The path is unrelocated, so fallback to the original setting. */
3417 if (!gcc_libexec_prefix)
3418 gcc_libexec_prefix = standard_libexec_prefix;
3420 free (tmp_prefix);
3422 #else
3423 #endif
3424 /* From this point onward, gcc_exec_prefix is non-null if the toolchain
3425 is relocated. The toolchain was either relocated using GCC_EXEC_PREFIX
3426 or an automatically created GCC_EXEC_PREFIX from argv[0]. */
3428 if (gcc_exec_prefix)
3430 int len = strlen (gcc_exec_prefix);
3432 if (len > (int) sizeof ("/lib/gcc/") - 1
3433 && (IS_DIR_SEPARATOR (gcc_exec_prefix[len-1])))
3435 temp = gcc_exec_prefix + len - sizeof ("/lib/gcc/") + 1;
3436 if (IS_DIR_SEPARATOR (*temp)
3437 && strncmp (temp + 1, "lib", 3) == 0
3438 && IS_DIR_SEPARATOR (temp[4])
3439 && strncmp (temp + 5, "gcc", 3) == 0)
3440 len -= sizeof ("/lib/gcc/") - 1;
3443 set_std_prefix (gcc_exec_prefix, len);
3444 add_prefix (&exec_prefixes, gcc_libexec_prefix, "GCC",
3445 PREFIX_PRIORITY_LAST, 0, 0);
3446 add_prefix (&startfile_prefixes, gcc_exec_prefix, "GCC",
3447 PREFIX_PRIORITY_LAST, 0, 0);
3450 /* COMPILER_PATH and LIBRARY_PATH have values
3451 that are lists of directory names with colons. */
3453 GET_ENVIRONMENT (temp, "COMPILER_PATH");
3454 if (temp)
3456 const char *startp, *endp;
3457 char *nstore = alloca (strlen (temp) + 3);
3459 startp = endp = temp;
3460 while (1)
3462 if (*endp == PATH_SEPARATOR || *endp == 0)
3464 strncpy (nstore, startp, endp - startp);
3465 if (endp == startp)
3466 strcpy (nstore, concat (".", dir_separator_str, NULL));
3467 else if (!IS_DIR_SEPARATOR (endp[-1]))
3469 nstore[endp - startp] = DIR_SEPARATOR;
3470 nstore[endp - startp + 1] = 0;
3472 else
3473 nstore[endp - startp] = 0;
3474 add_prefix (&exec_prefixes, nstore, 0,
3475 PREFIX_PRIORITY_LAST, 0, 0);
3476 add_prefix (&include_prefixes, nstore, 0,
3477 PREFIX_PRIORITY_LAST, 0, 0);
3478 if (*endp == 0)
3479 break;
3480 endp = startp = endp + 1;
3482 else
3483 endp++;
3487 GET_ENVIRONMENT (temp, LIBRARY_PATH_ENV);
3488 if (temp && *cross_compile == '0')
3490 const char *startp, *endp;
3491 char *nstore = alloca (strlen (temp) + 3);
3493 startp = endp = temp;
3494 while (1)
3496 if (*endp == PATH_SEPARATOR || *endp == 0)
3498 strncpy (nstore, startp, endp - startp);
3499 if (endp == startp)
3500 strcpy (nstore, concat (".", dir_separator_str, NULL));
3501 else if (!IS_DIR_SEPARATOR (endp[-1]))
3503 nstore[endp - startp] = DIR_SEPARATOR;
3504 nstore[endp - startp + 1] = 0;
3506 else
3507 nstore[endp - startp] = 0;
3508 add_prefix (&startfile_prefixes, nstore, NULL,
3509 PREFIX_PRIORITY_LAST, 0, 1);
3510 if (*endp == 0)
3511 break;
3512 endp = startp = endp + 1;
3514 else
3515 endp++;
3519 /* Use LPATH like LIBRARY_PATH (for the CMU build program). */
3520 GET_ENVIRONMENT (temp, "LPATH");
3521 if (temp && *cross_compile == '0')
3523 const char *startp, *endp;
3524 char *nstore = alloca (strlen (temp) + 3);
3526 startp = endp = temp;
3527 while (1)
3529 if (*endp == PATH_SEPARATOR || *endp == 0)
3531 strncpy (nstore, startp, endp - startp);
3532 if (endp == startp)
3533 strcpy (nstore, concat (".", dir_separator_str, NULL));
3534 else if (!IS_DIR_SEPARATOR (endp[-1]))
3536 nstore[endp - startp] = DIR_SEPARATOR;
3537 nstore[endp - startp + 1] = 0;
3539 else
3540 nstore[endp - startp] = 0;
3541 add_prefix (&startfile_prefixes, nstore, NULL,
3542 PREFIX_PRIORITY_LAST, 0, 1);
3543 if (*endp == 0)
3544 break;
3545 endp = startp = endp + 1;
3547 else
3548 endp++;
3552 /* Convert new-style -- options to old-style. */
3553 translate_options (&argc, (const char *const **) &argv);
3555 /* Do language-specific adjustment/addition of flags. */
3556 lang_specific_driver (&argc, (const char *const **) &argv, &added_libraries);
3558 /* Scan argv twice. Here, the first time, just count how many switches
3559 there will be in their vector, and how many input files in theirs.
3560 Here we also parse the switches that cc itself uses (e.g. -v). */
3562 for (i = 1; i < argc; i++)
3564 if (! strcmp (argv[i], "-dumpspecs"))
3566 struct spec_list *sl;
3567 init_spec ();
3568 for (sl = specs; sl; sl = sl->next)
3569 printf ("*%s:\n%s\n\n", sl->name, *(sl->ptr_spec));
3570 if (link_command_spec)
3571 printf ("*link_command:\n%s\n\n", link_command_spec);
3572 exit (0);
3574 else if (! strcmp (argv[i], "-dumpversion"))
3576 printf ("%s\n", spec_version);
3577 exit (0);
3579 else if (! strcmp (argv[i], "-dumpmachine"))
3581 printf ("%s\n", spec_machine);
3582 exit (0);
3584 else if (strcmp (argv[i], "-fversion") == 0)
3586 /* translate_options () has turned --version into -fversion. */
3587 printf (_("%s (GCC) %s\n"), programname, version_string);
3588 printf ("Copyright %s 2007 Free Software Foundation, Inc.\n",
3589 _("(C)"));
3590 fputs (_("This is free software; see the source for copying conditions. There is NO\n\
3591 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n"),
3592 stdout);
3593 exit (0);
3595 else if (strcmp (argv[i], "-fhelp") == 0)
3597 /* translate_options () has turned --help into -fhelp. */
3598 print_help_list = 1;
3600 /* We will be passing a dummy file on to the sub-processes. */
3601 n_infiles++;
3602 n_switches++;
3604 /* CPP driver cannot obtain switch from cc1_options. */
3605 if (is_cpp_driver)
3606 add_preprocessor_option ("--help", 6);
3607 add_assembler_option ("--help", 6);
3608 add_linker_option ("--help", 6);
3610 else if (strncmp (argv[i], "-fhelp=", 7) == 0)
3612 /* translate_options () has turned --help into -fhelp. */
3613 print_subprocess_help = 2;
3615 /* We will be passing a dummy file on to the sub-processes. */
3616 n_infiles++;
3617 n_switches++;
3619 else if (strcmp (argv[i], "-ftarget-help") == 0)
3621 /* translate_options() has turned --target-help into -ftarget-help. */
3622 print_subprocess_help = 1;
3624 /* We will be passing a dummy file on to the sub-processes. */
3625 n_infiles++;
3626 n_switches++;
3628 /* CPP driver cannot obtain switch from cc1_options. */
3629 if (is_cpp_driver)
3630 add_preprocessor_option ("--target-help", 13);
3631 add_assembler_option ("--target-help", 13);
3632 add_linker_option ("--target-help", 13);
3634 else if (! strcmp (argv[i], "-pass-exit-codes"))
3636 pass_exit_codes = 1;
3637 n_switches++;
3639 else if (! strcmp (argv[i], "-print-search-dirs"))
3640 print_search_dirs = 1;
3641 else if (! strcmp (argv[i], "-print-libgcc-file-name"))
3642 print_file_name = "libgcc.a";
3643 else if (! strncmp (argv[i], "-print-file-name=", 17))
3644 print_file_name = argv[i] + 17;
3645 else if (! strncmp (argv[i], "-print-prog-name=", 17))
3646 print_prog_name = argv[i] + 17;
3647 else if (! strcmp (argv[i], "-print-multi-lib"))
3648 print_multi_lib = 1;
3649 else if (! strcmp (argv[i], "-print-multi-directory"))
3650 print_multi_directory = 1;
3651 else if (! strcmp (argv[i], "-print-multi-os-directory"))
3652 print_multi_os_directory = 1;
3653 else if (! strcmp (argv[i], "-print-sysroot-headers-suffix"))
3654 print_sysroot_headers_suffix = 1;
3655 else if (! strncmp (argv[i], "-Wa,", 4))
3657 int prev, j;
3658 /* Pass the rest of this option to the assembler. */
3660 /* Split the argument at commas. */
3661 prev = 4;
3662 for (j = 4; argv[i][j]; j++)
3663 if (argv[i][j] == ',')
3665 add_assembler_option (argv[i] + prev, j - prev);
3666 prev = j + 1;
3669 /* Record the part after the last comma. */
3670 add_assembler_option (argv[i] + prev, j - prev);
3672 else if (! strncmp (argv[i], "-Wp,", 4))
3674 int prev, j;
3675 /* Pass the rest of this option to the preprocessor. */
3677 /* Split the argument at commas. */
3678 prev = 4;
3679 for (j = 4; argv[i][j]; j++)
3680 if (argv[i][j] == ',')
3682 add_preprocessor_option (argv[i] + prev, j - prev);
3683 prev = j + 1;
3686 /* Record the part after the last comma. */
3687 add_preprocessor_option (argv[i] + prev, j - prev);
3689 else if (argv[i][0] == '+' && argv[i][1] == 'e')
3690 /* The +e options to the C++ front-end. */
3691 n_switches++;
3692 else if (strncmp (argv[i], "-Wl,", 4) == 0)
3694 int j;
3695 /* Split the argument at commas. */
3696 for (j = 3; argv[i][j]; j++)
3697 n_infiles += (argv[i][j] == ',');
3699 else if (strcmp (argv[i], "-Xlinker") == 0)
3701 if (i + 1 == argc)
3702 fatal ("argument to '-Xlinker' is missing");
3704 n_infiles++;
3705 i++;
3707 else if (strcmp (argv[i], "-Xpreprocessor") == 0)
3709 if (i + 1 == argc)
3710 fatal ("argument to '-Xpreprocessor' is missing");
3712 add_preprocessor_option (argv[i+1], strlen (argv[i+1]));
3714 else if (strcmp (argv[i], "-Xassembler") == 0)
3716 if (i + 1 == argc)
3717 fatal ("argument to '-Xassembler' is missing");
3719 add_assembler_option (argv[i+1], strlen (argv[i+1]));
3721 else if (strcmp (argv[i], "-l") == 0)
3723 if (i + 1 == argc)
3724 fatal ("argument to '-l' is missing");
3726 n_infiles++;
3727 i++;
3729 else if (strncmp (argv[i], "-l", 2) == 0)
3730 n_infiles++;
3731 else if (strcmp (argv[i], "-save-temps") == 0)
3733 save_temps_flag = 1;
3734 n_switches++;
3736 else if (strcmp (argv[i], "-combine") == 0)
3738 combine_flag = 1;
3739 n_switches++;
3741 else if (strcmp (argv[i], "-specs") == 0)
3743 struct user_specs *user = XNEW (struct user_specs);
3744 if (++i >= argc)
3745 fatal ("argument to '-specs' is missing");
3747 user->next = (struct user_specs *) 0;
3748 user->filename = argv[i];
3749 if (user_specs_tail)
3750 user_specs_tail->next = user;
3751 else
3752 user_specs_head = user;
3753 user_specs_tail = user;
3755 else if (strncmp (argv[i], "-specs=", 7) == 0)
3757 struct user_specs *user = XNEW (struct user_specs);
3758 if (strlen (argv[i]) == 7)
3759 fatal ("argument to '-specs=' is missing");
3761 user->next = (struct user_specs *) 0;
3762 user->filename = argv[i] + 7;
3763 if (user_specs_tail)
3764 user_specs_tail->next = user;
3765 else
3766 user_specs_head = user;
3767 user_specs_tail = user;
3769 else if (strcmp (argv[i], "-time") == 0)
3770 report_times = 1;
3771 else if (strcmp (argv[i], "-pipe") == 0)
3773 /* -pipe has to go into the switches array as well as
3774 setting a flag. */
3775 use_pipes = 1;
3776 n_switches++;
3778 else if (strcmp (argv[i], "-###") == 0)
3780 /* This is similar to -v except that there is no execution
3781 of the commands and the echoed arguments are quoted. It
3782 is intended for use in shell scripts to capture the
3783 driver-generated command line. */
3784 verbose_only_flag++;
3785 verbose_flag++;
3787 else if (argv[i][0] == '-' && argv[i][1] != 0)
3789 const char *p = &argv[i][1];
3790 int c = *p;
3792 switch (c)
3794 case 'b':
3795 if (NULL == strchr(argv[i] + 2, '-'))
3796 goto normal_switch;
3798 /* Fall through. */
3799 case 'V':
3800 fatal ("'-%c' must come at the start of the command line", c);
3801 break;
3803 case 'B':
3805 const char *value;
3806 int len;
3808 if (p[1] == 0 && i + 1 == argc)
3809 fatal ("argument to '-B' is missing");
3810 if (p[1] == 0)
3811 value = argv[++i];
3812 else
3813 value = p + 1;
3815 len = strlen (value);
3817 /* Catch the case where the user has forgotten to append a
3818 directory separator to the path. Note, they may be using
3819 -B to add an executable name prefix, eg "i386-elf-", in
3820 order to distinguish between multiple installations of
3821 GCC in the same directory. Hence we must check to see
3822 if appending a directory separator actually makes a
3823 valid directory name. */
3824 if (! IS_DIR_SEPARATOR (value [len - 1])
3825 && is_directory (value, false))
3827 char *tmp = XNEWVEC (char, len + 2);
3828 strcpy (tmp, value);
3829 tmp[len] = DIR_SEPARATOR;
3830 tmp[++ len] = 0;
3831 value = tmp;
3834 add_prefix (&exec_prefixes, value, NULL,
3835 PREFIX_PRIORITY_B_OPT, 0, 0);
3836 add_prefix (&startfile_prefixes, value, NULL,
3837 PREFIX_PRIORITY_B_OPT, 0, 0);
3838 add_prefix (&include_prefixes, value, NULL,
3839 PREFIX_PRIORITY_B_OPT, 0, 0);
3840 n_switches++;
3842 break;
3844 case 'v': /* Print our subcommands and print versions. */
3845 n_switches++;
3846 /* If they do anything other than exactly `-v', don't set
3847 verbose_flag; rather, continue on to give the error. */
3848 if (p[1] != 0)
3849 break;
3850 verbose_flag++;
3851 break;
3853 case 'S':
3854 case 'c':
3855 if (p[1] == 0)
3857 have_c = 1;
3858 n_switches++;
3859 break;
3861 goto normal_switch;
3863 case 'o':
3864 have_o = 1;
3865 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
3866 if (! have_c)
3868 int skip;
3870 /* Forward scan, just in case -S or -c is specified
3871 after -o. */
3872 int j = i + 1;
3873 if (p[1] == 0)
3874 ++j;
3875 while (j < argc)
3877 if (argv[j][0] == '-')
3879 if (SWITCH_CURTAILS_COMPILATION (argv[j][1])
3880 && argv[j][2] == 0)
3882 have_c = 1;
3883 break;
3885 else if ((skip = SWITCH_TAKES_ARG (argv[j][1])))
3886 j += skip - (argv[j][2] != 0);
3887 else if ((skip = WORD_SWITCH_TAKES_ARG (argv[j] + 1)))
3888 j += skip;
3890 j++;
3893 #endif
3894 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX) || defined(HAVE_TARGET_OBJECT_SUFFIX)
3895 if (p[1] == 0)
3896 argv[i + 1] = convert_filename (argv[i + 1], ! have_c, 0);
3897 else
3898 argv[i] = convert_filename (argv[i], ! have_c, 0);
3899 #endif
3900 goto normal_switch;
3902 default:
3903 normal_switch:
3905 #ifdef MODIFY_TARGET_NAME
3906 is_modify_target_name = 0;
3908 for (j = 0; j < ARRAY_SIZE (modify_target); j++)
3909 if (! strcmp (argv[i], modify_target[j].sw))
3911 char *new_name = xmalloc (strlen (modify_target[j].str)
3912 + strlen (spec_machine));
3913 const char *p, *r;
3914 char *q;
3915 int made_addition = 0;
3917 is_modify_target_name = 1;
3918 for (p = spec_machine, q = new_name; *p != 0; )
3920 if (modify_target[j].add_del == DELETE
3921 && (! strncmp (q, modify_target[j].str,
3922 strlen (modify_target[j].str))))
3923 p += strlen (modify_target[j].str);
3924 else if (modify_target[j].add_del == ADD
3925 && ! made_addition && *p == '-')
3927 for (r = modify_target[j].str; *r != 0; )
3928 *q++ = *r++;
3929 made_addition = 1;
3932 *q++ = *p++;
3935 spec_machine = new_name;
3938 if (is_modify_target_name)
3939 break;
3940 #endif
3942 n_switches++;
3944 if (SWITCH_TAKES_ARG (c) > (p[1] != 0))
3945 i += SWITCH_TAKES_ARG (c) - (p[1] != 0);
3946 else if (WORD_SWITCH_TAKES_ARG (p))
3947 i += WORD_SWITCH_TAKES_ARG (p);
3950 else
3952 n_infiles++;
3953 lang_n_infiles++;
3957 if (save_temps_flag && use_pipes)
3959 /* -save-temps overrides -pipe, so that temp files are produced */
3960 if (save_temps_flag)
3961 error ("warning: -pipe ignored because -save-temps specified");
3962 use_pipes = 0;
3965 /* Set up the search paths. We add directories that we expect to
3966 contain GNU Toolchain components before directories specified by
3967 the machine description so that we will find GNU components (like
3968 the GNU assembler) before those of the host system. */
3970 /* If we don't know where the toolchain has been installed, use the
3971 configured-in locations. */
3972 if (!gcc_exec_prefix)
3974 #ifndef OS2
3975 add_prefix (&exec_prefixes, standard_libexec_prefix, "GCC",
3976 PREFIX_PRIORITY_LAST, 1, 0);
3977 add_prefix (&exec_prefixes, standard_libexec_prefix, "BINUTILS",
3978 PREFIX_PRIORITY_LAST, 2, 0);
3979 add_prefix (&exec_prefixes, standard_exec_prefix, "BINUTILS",
3980 PREFIX_PRIORITY_LAST, 2, 0);
3981 #endif
3982 add_prefix (&startfile_prefixes, standard_exec_prefix, "BINUTILS",
3983 PREFIX_PRIORITY_LAST, 1, 0);
3986 /* If not cross-compiling, search well-known system locations. */
3987 if (*cross_compile == '0')
3989 #ifndef OS2
3990 add_prefix (&exec_prefixes, standard_exec_prefix_1, "BINUTILS",
3991 PREFIX_PRIORITY_LAST, 2, 0);
3992 add_prefix (&exec_prefixes, standard_exec_prefix_2, "BINUTILS",
3993 PREFIX_PRIORITY_LAST, 2, 0);
3994 #endif
3995 add_prefix (&startfile_prefixes, standard_exec_prefix_2, "BINUTILS",
3996 PREFIX_PRIORITY_LAST, 1, 0);
3999 gcc_assert (!IS_ABSOLUTE_PATH (tooldir_base_prefix));
4000 tooldir_prefix = concat (tooldir_base_prefix, spec_machine,
4001 dir_separator_str, NULL);
4003 /* Look for tools relative to the location from which the driver is
4004 running, or, if that is not available, the configured prefix. */
4005 tooldir_prefix
4006 = concat (gcc_exec_prefix ? gcc_exec_prefix : standard_exec_prefix,
4007 spec_machine, dir_separator_str,
4008 spec_version, dir_separator_str, tooldir_prefix, NULL);
4010 add_prefix (&exec_prefixes,
4011 concat (tooldir_prefix, "bin", dir_separator_str, NULL),
4012 "BINUTILS", PREFIX_PRIORITY_LAST, 0, 0);
4013 add_prefix (&startfile_prefixes,
4014 concat (tooldir_prefix, "lib", dir_separator_str, NULL),
4015 "BINUTILS", PREFIX_PRIORITY_LAST, 0, 1);
4017 #if defined(TARGET_SYSTEM_ROOT_RELOCATABLE) && !defined(VMS)
4018 /* If the normal TARGET_SYSTEM_ROOT is inside of $exec_prefix,
4019 then consider it to relocate with the rest of the GCC installation
4020 if GCC_EXEC_PREFIX is set.
4021 ``make_relative_prefix'' is not compiled for VMS, so don't call it. */
4022 if (target_system_root && gcc_exec_prefix)
4024 char *tmp_prefix = make_relative_prefix (argv[0],
4025 standard_bindir_prefix,
4026 target_system_root);
4027 if (tmp_prefix && access_check (tmp_prefix, F_OK) == 0)
4029 target_system_root = tmp_prefix;
4030 target_system_root_changed = 1;
4033 #endif
4035 /* More prefixes are enabled in main, after we read the specs file
4036 and determine whether this is cross-compilation or not. */
4038 /* Then create the space for the vectors and scan again. */
4040 switches = XNEWVEC (struct switchstr, n_switches + 1);
4041 infiles = XNEWVEC (struct infile, n_infiles + 1);
4042 n_switches = 0;
4043 n_infiles = 0;
4044 last_language_n_infiles = -1;
4046 /* This, time, copy the text of each switch and store a pointer
4047 to the copy in the vector of switches.
4048 Store all the infiles in their vector. */
4050 for (i = 1; i < argc; i++)
4052 /* Just skip the switches that were handled by the preceding loop. */
4053 #ifdef MODIFY_TARGET_NAME
4054 is_modify_target_name = 0;
4056 for (j = 0; j < ARRAY_SIZE (modify_target); j++)
4057 if (! strcmp (argv[i], modify_target[j].sw))
4058 is_modify_target_name = 1;
4060 if (is_modify_target_name)
4062 else
4063 #endif
4064 if (! strncmp (argv[i], "-Wa,", 4))
4066 else if (! strncmp (argv[i], "-Wp,", 4))
4068 else if (! strcmp (argv[i], "-pass-exit-codes"))
4070 else if (! strcmp (argv[i], "-print-search-dirs"))
4072 else if (! strcmp (argv[i], "-print-libgcc-file-name"))
4074 else if (! strncmp (argv[i], "-print-file-name=", 17))
4076 else if (! strncmp (argv[i], "-print-prog-name=", 17))
4078 else if (! strcmp (argv[i], "-print-multi-lib"))
4080 else if (! strcmp (argv[i], "-print-multi-directory"))
4082 else if (! strcmp (argv[i], "-print-multi-os-directory"))
4084 else if (! strcmp (argv[i], "-print-sysroot-headers-suffix"))
4086 else if (! strncmp (argv[i], "--sysroot=", strlen ("--sysroot=")))
4088 target_system_root = argv[i] + strlen ("--sysroot=");
4089 target_system_root_changed = 1;
4091 else if (argv[i][0] == '+' && argv[i][1] == 'e')
4093 /* Compensate for the +e options to the C++ front-end;
4094 they're there simply for cfront call-compatibility. We do
4095 some magic in default_compilers to pass them down properly.
4096 Note we deliberately start at the `+' here, to avoid passing
4097 -e0 or -e1 down into the linker. */
4098 switches[n_switches].part1 = &argv[i][0];
4099 switches[n_switches].args = 0;
4100 switches[n_switches].live_cond = SWITCH_OK;
4101 switches[n_switches].validated = 0;
4102 n_switches++;
4104 else if (strncmp (argv[i], "-Wl,", 4) == 0)
4106 int prev, j;
4107 /* Split the argument at commas. */
4108 prev = 4;
4109 for (j = 4; argv[i][j]; j++)
4110 if (argv[i][j] == ',')
4112 infiles[n_infiles].language = "*";
4113 infiles[n_infiles++].name
4114 = save_string (argv[i] + prev, j - prev);
4115 prev = j + 1;
4117 /* Record the part after the last comma. */
4118 infiles[n_infiles].language = "*";
4119 infiles[n_infiles++].name = argv[i] + prev;
4121 else if (strcmp (argv[i], "-Xlinker") == 0)
4123 infiles[n_infiles].language = "*";
4124 infiles[n_infiles++].name = argv[++i];
4126 /* Xassembler and Xpreprocessor were already handled in the first argv
4127 scan, so all we need to do here is ignore them and their argument. */
4128 else if (strcmp (argv[i], "-Xassembler") == 0)
4129 i++;
4130 else if (strcmp (argv[i], "-Xpreprocessor") == 0)
4131 i++;
4132 else if (strcmp (argv[i], "-l") == 0)
4133 { /* POSIX allows separation of -l and the lib arg;
4134 canonicalize by concatenating -l with its arg */
4135 infiles[n_infiles].language = "*";
4136 infiles[n_infiles++].name = concat ("-l", argv[++i], NULL);
4138 else if (strncmp (argv[i], "-l", 2) == 0)
4140 infiles[n_infiles].language = "*";
4141 infiles[n_infiles++].name = argv[i];
4143 else if (strcmp (argv[i], "-specs") == 0)
4144 i++;
4145 else if (strncmp (argv[i], "-specs=", 7) == 0)
4147 else if (strcmp (argv[i], "-time") == 0)
4149 else if (strcmp (argv[i], "-###") == 0)
4151 else if (argv[i][0] == '-' && argv[i][1] != 0)
4153 const char *p = &argv[i][1];
4154 int c = *p;
4156 if (c == 'x')
4158 if (p[1] == 0 && i + 1 == argc)
4159 fatal ("argument to '-x' is missing");
4160 if (p[1] == 0)
4161 spec_lang = argv[++i];
4162 else
4163 spec_lang = p + 1;
4164 if (! strcmp (spec_lang, "none"))
4165 /* Suppress the warning if -xnone comes after the last input
4166 file, because alternate command interfaces like g++ might
4167 find it useful to place -xnone after each input file. */
4168 spec_lang = 0;
4169 else
4170 last_language_n_infiles = n_infiles;
4171 continue;
4173 switches[n_switches].part1 = p;
4174 /* Deal with option arguments in separate argv elements. */
4175 if ((SWITCH_TAKES_ARG (c) > (p[1] != 0))
4176 || WORD_SWITCH_TAKES_ARG (p))
4178 int j = 0;
4179 int n_args = WORD_SWITCH_TAKES_ARG (p);
4181 if (n_args == 0)
4183 /* Count only the option arguments in separate argv elements. */
4184 n_args = SWITCH_TAKES_ARG (c) - (p[1] != 0);
4186 if (i + n_args >= argc)
4187 fatal ("argument to '-%s' is missing", p);
4188 switches[n_switches].args
4189 = XNEWVEC (const char *, n_args + 1);
4190 while (j < n_args)
4191 switches[n_switches].args[j++] = argv[++i];
4192 /* Null-terminate the vector. */
4193 switches[n_switches].args[j] = 0;
4195 else if (strchr (switches_need_spaces, c))
4197 /* On some systems, ld cannot handle some options without
4198 a space. So split the option from its argument. */
4199 char *part1 = XNEWVEC (char, 2);
4200 part1[0] = c;
4201 part1[1] = '\0';
4203 switches[n_switches].part1 = part1;
4204 switches[n_switches].args = XNEWVEC (const char *, 2);
4205 switches[n_switches].args[0] = xstrdup (p+1);
4206 switches[n_switches].args[1] = 0;
4208 else
4209 switches[n_switches].args = 0;
4211 switches[n_switches].live_cond = SWITCH_OK;
4212 switches[n_switches].validated = 0;
4213 switches[n_switches].ordering = 0;
4214 /* These are always valid, since gcc.c itself understands them. */
4215 if (!strcmp (p, "save-temps")
4216 || !strcmp (p, "static-libgcc")
4217 || !strcmp (p, "shared-libgcc")
4218 || !strcmp (p, "pipe"))
4219 switches[n_switches].validated = 1;
4220 else
4222 char ch = switches[n_switches].part1[0];
4223 if (ch == 'B')
4224 switches[n_switches].validated = 1;
4226 n_switches++;
4228 else
4230 #ifdef HAVE_TARGET_OBJECT_SUFFIX
4231 argv[i] = convert_filename (argv[i], 0, access (argv[i], F_OK));
4232 #endif
4234 if (strcmp (argv[i], "-") != 0 && access (argv[i], F_OK) < 0)
4236 perror_with_name (argv[i]);
4237 error_count++;
4239 else
4241 infiles[n_infiles].language = spec_lang;
4242 infiles[n_infiles++].name = argv[i];
4247 if (n_infiles == last_language_n_infiles && spec_lang != 0)
4248 error ("warning: '-x %s' after last input file has no effect", spec_lang);
4250 /* Ensure we only invoke each subprocess once. */
4251 if (print_subprocess_help || print_help_list)
4253 n_infiles = 1;
4255 /* Create a dummy input file, so that we can pass
4256 the help option on to the various sub-processes. */
4257 infiles[0].language = "c";
4258 infiles[0].name = "help-dummy";
4261 switches[n_switches].part1 = 0;
4262 infiles[n_infiles].name = 0;
4265 /* Store switches not filtered out by %<S in spec in COLLECT_GCC_OPTIONS
4266 and place that in the environment. */
4268 static void
4269 set_collect_gcc_options (void)
4271 int i;
4272 int first_time;
4274 /* Build COLLECT_GCC_OPTIONS to have all of the options specified to
4275 the compiler. */
4276 obstack_grow (&collect_obstack, "COLLECT_GCC_OPTIONS=",
4277 sizeof ("COLLECT_GCC_OPTIONS=") - 1);
4279 first_time = TRUE;
4280 for (i = 0; (int) i < n_switches; i++)
4282 const char *const *args;
4283 const char *p, *q;
4284 if (!first_time)
4285 obstack_grow (&collect_obstack, " ", 1);
4287 first_time = FALSE;
4289 /* Ignore elided switches. */
4290 if (switches[i].live_cond == SWITCH_IGNORE)
4291 continue;
4293 obstack_grow (&collect_obstack, "'-", 2);
4294 q = switches[i].part1;
4295 while ((p = strchr (q, '\'')))
4297 obstack_grow (&collect_obstack, q, p - q);
4298 obstack_grow (&collect_obstack, "'\\''", 4);
4299 q = ++p;
4301 obstack_grow (&collect_obstack, q, strlen (q));
4302 obstack_grow (&collect_obstack, "'", 1);
4304 for (args = switches[i].args; args && *args; args++)
4306 obstack_grow (&collect_obstack, " '", 2);
4307 q = *args;
4308 while ((p = strchr (q, '\'')))
4310 obstack_grow (&collect_obstack, q, p - q);
4311 obstack_grow (&collect_obstack, "'\\''", 4);
4312 q = ++p;
4314 obstack_grow (&collect_obstack, q, strlen (q));
4315 obstack_grow (&collect_obstack, "'", 1);
4318 obstack_grow (&collect_obstack, "\0", 1);
4319 putenv (XOBFINISH (&collect_obstack, char *));
4322 /* Process a spec string, accumulating and running commands. */
4324 /* These variables describe the input file name.
4325 input_file_number is the index on outfiles of this file,
4326 so that the output file name can be stored for later use by %o.
4327 input_basename is the start of the part of the input file
4328 sans all directory names, and basename_length is the number
4329 of characters starting there excluding the suffix .c or whatever. */
4331 static const char *input_filename;
4332 static int input_file_number;
4333 size_t input_filename_length;
4334 static int basename_length;
4335 static int suffixed_basename_length;
4336 static const char *input_basename;
4337 static const char *input_suffix;
4338 #ifndef HOST_LACKS_INODE_NUMBERS
4339 static struct stat input_stat;
4340 #endif
4341 static int input_stat_set;
4343 /* The compiler used to process the current input file. */
4344 static struct compiler *input_file_compiler;
4346 /* These are variables used within do_spec and do_spec_1. */
4348 /* Nonzero if an arg has been started and not yet terminated
4349 (with space, tab or newline). */
4350 static int arg_going;
4352 /* Nonzero means %d or %g has been seen; the next arg to be terminated
4353 is a temporary file name. */
4354 static int delete_this_arg;
4356 /* Nonzero means %w has been seen; the next arg to be terminated
4357 is the output file name of this compilation. */
4358 static int this_is_output_file;
4360 /* Nonzero means %s has been seen; the next arg to be terminated
4361 is the name of a library file and we should try the standard
4362 search dirs for it. */
4363 static int this_is_library_file;
4365 /* Nonzero means that the input of this command is coming from a pipe. */
4366 static int input_from_pipe;
4368 /* Nonnull means substitute this for any suffix when outputting a switches
4369 arguments. */
4370 static const char *suffix_subst;
4372 /* Process the spec SPEC and run the commands specified therein.
4373 Returns 0 if the spec is successfully processed; -1 if failed. */
4376 do_spec (const char *spec)
4378 int value;
4380 value = do_spec_2 (spec);
4382 /* Force out any unfinished command.
4383 If -pipe, this forces out the last command if it ended in `|'. */
4384 if (value == 0)
4386 if (argbuf_index > 0 && !strcmp (argbuf[argbuf_index - 1], "|"))
4387 argbuf_index--;
4389 set_collect_gcc_options ();
4391 if (argbuf_index > 0)
4392 value = execute ();
4395 return value;
4398 static int
4399 do_spec_2 (const char *spec)
4401 const char *string;
4402 int result;
4404 clear_args ();
4405 arg_going = 0;
4406 delete_this_arg = 0;
4407 this_is_output_file = 0;
4408 this_is_library_file = 0;
4409 input_from_pipe = 0;
4410 suffix_subst = NULL;
4412 result = do_spec_1 (spec, 0, NULL);
4414 /* End any pending argument. */
4415 if (arg_going)
4417 obstack_1grow (&obstack, 0);
4418 string = XOBFINISH (&obstack, const char *);
4419 if (this_is_library_file)
4420 string = find_file (string);
4421 store_arg (string, delete_this_arg, this_is_output_file);
4422 if (this_is_output_file)
4423 outfiles[input_file_number] = string;
4424 arg_going = 0;
4427 return result;
4431 /* Process the given spec string and add any new options to the end
4432 of the switches/n_switches array. */
4434 static void
4435 do_option_spec (const char *name, const char *spec)
4437 unsigned int i, value_count, value_len;
4438 const char *p, *q, *value;
4439 char *tmp_spec, *tmp_spec_p;
4441 if (configure_default_options[0].name == NULL)
4442 return;
4444 for (i = 0; i < ARRAY_SIZE (configure_default_options); i++)
4445 if (strcmp (configure_default_options[i].name, name) == 0)
4446 break;
4447 if (i == ARRAY_SIZE (configure_default_options))
4448 return;
4450 value = configure_default_options[i].value;
4451 value_len = strlen (value);
4453 /* Compute the size of the final spec. */
4454 value_count = 0;
4455 p = spec;
4456 while ((p = strstr (p, "%(VALUE)")) != NULL)
4458 p ++;
4459 value_count ++;
4462 /* Replace each %(VALUE) by the specified value. */
4463 tmp_spec = alloca (strlen (spec) + 1
4464 + value_count * (value_len - strlen ("%(VALUE)")));
4465 tmp_spec_p = tmp_spec;
4466 q = spec;
4467 while ((p = strstr (q, "%(VALUE)")) != NULL)
4469 memcpy (tmp_spec_p, q, p - q);
4470 tmp_spec_p = tmp_spec_p + (p - q);
4471 memcpy (tmp_spec_p, value, value_len);
4472 tmp_spec_p += value_len;
4473 q = p + strlen ("%(VALUE)");
4475 strcpy (tmp_spec_p, q);
4477 do_self_spec (tmp_spec);
4480 /* Process the given spec string and add any new options to the end
4481 of the switches/n_switches array. */
4483 static void
4484 do_self_spec (const char *spec)
4486 do_spec_2 (spec);
4487 do_spec_1 (" ", 0, NULL);
4489 if (argbuf_index > 0)
4491 int i, first;
4493 first = n_switches;
4494 n_switches += argbuf_index;
4495 switches = xrealloc (switches,
4496 sizeof (struct switchstr) * (n_switches + 1));
4498 switches[n_switches] = switches[first];
4499 for (i = 0; i < argbuf_index; i++)
4501 struct switchstr *sw;
4503 /* Each switch should start with '-'. */
4504 if (argbuf[i][0] != '-')
4505 fatal ("switch '%s' does not start with '-'", argbuf[i]);
4507 sw = &switches[i + first];
4508 sw->part1 = &argbuf[i][1];
4509 sw->args = 0;
4510 sw->live_cond = SWITCH_OK;
4511 sw->validated = 0;
4512 sw->ordering = 0;
4517 /* Callback for processing %D and %I specs. */
4519 struct spec_path_info {
4520 const char *option;
4521 const char *append;
4522 size_t append_len;
4523 bool omit_relative;
4524 bool separate_options;
4527 static void *
4528 spec_path (char *path, void *data)
4530 struct spec_path_info *info = data;
4531 size_t len = 0;
4532 char save = 0;
4534 if (info->omit_relative && !IS_ABSOLUTE_PATH (path))
4535 return NULL;
4537 if (info->append_len != 0)
4539 len = strlen (path);
4540 memcpy (path + len, info->append, info->append_len + 1);
4543 if (!is_directory (path, true))
4544 return NULL;
4546 do_spec_1 (info->option, 1, NULL);
4547 if (info->separate_options)
4548 do_spec_1 (" ", 0, NULL);
4550 if (info->append_len == 0)
4552 len = strlen (path);
4553 save = path[len - 1];
4554 if (IS_DIR_SEPARATOR (path[len - 1]))
4555 path[len - 1] = '\0';
4558 do_spec_1 (path, 1, NULL);
4559 do_spec_1 (" ", 0, NULL);
4561 /* Must not damage the original path. */
4562 if (info->append_len == 0)
4563 path[len - 1] = save;
4565 return NULL;
4568 /* Process the sub-spec SPEC as a portion of a larger spec.
4569 This is like processing a whole spec except that we do
4570 not initialize at the beginning and we do not supply a
4571 newline by default at the end.
4572 INSWITCH nonzero means don't process %-sequences in SPEC;
4573 in this case, % is treated as an ordinary character.
4574 This is used while substituting switches.
4575 INSWITCH nonzero also causes SPC not to terminate an argument.
4577 Value is zero unless a line was finished
4578 and the command on that line reported an error. */
4580 static int
4581 do_spec_1 (const char *spec, int inswitch, const char *soft_matched_part)
4583 const char *p = spec;
4584 int c;
4585 int i;
4586 const char *string;
4587 int value;
4589 while ((c = *p++))
4590 /* If substituting a switch, treat all chars like letters.
4591 Otherwise, NL, SPC, TAB and % are special. */
4592 switch (inswitch ? 'a' : c)
4594 case '\n':
4595 /* End of line: finish any pending argument,
4596 then run the pending command if one has been started. */
4597 if (arg_going)
4599 obstack_1grow (&obstack, 0);
4600 string = XOBFINISH (&obstack, const char *);
4601 if (this_is_library_file)
4602 string = find_file (string);
4603 store_arg (string, delete_this_arg, this_is_output_file);
4604 if (this_is_output_file)
4605 outfiles[input_file_number] = string;
4607 arg_going = 0;
4609 if (argbuf_index > 0 && !strcmp (argbuf[argbuf_index - 1], "|"))
4611 /* A `|' before the newline means use a pipe here,
4612 but only if -pipe was specified.
4613 Otherwise, execute now and don't pass the `|' as an arg. */
4614 if (use_pipes)
4616 input_from_pipe = 1;
4617 break;
4619 else
4620 argbuf_index--;
4623 set_collect_gcc_options ();
4625 if (argbuf_index > 0)
4627 value = execute ();
4628 if (value)
4629 return value;
4631 /* Reinitialize for a new command, and for a new argument. */
4632 clear_args ();
4633 arg_going = 0;
4634 delete_this_arg = 0;
4635 this_is_output_file = 0;
4636 this_is_library_file = 0;
4637 input_from_pipe = 0;
4638 break;
4640 case '|':
4641 /* End any pending argument. */
4642 if (arg_going)
4644 obstack_1grow (&obstack, 0);
4645 string = XOBFINISH (&obstack, const char *);
4646 if (this_is_library_file)
4647 string = find_file (string);
4648 store_arg (string, delete_this_arg, this_is_output_file);
4649 if (this_is_output_file)
4650 outfiles[input_file_number] = string;
4653 /* Use pipe */
4654 obstack_1grow (&obstack, c);
4655 arg_going = 1;
4656 break;
4658 case '\t':
4659 case ' ':
4660 /* Space or tab ends an argument if one is pending. */
4661 if (arg_going)
4663 obstack_1grow (&obstack, 0);
4664 string = XOBFINISH (&obstack, const char *);
4665 if (this_is_library_file)
4666 string = find_file (string);
4667 store_arg (string, delete_this_arg, this_is_output_file);
4668 if (this_is_output_file)
4669 outfiles[input_file_number] = string;
4671 /* Reinitialize for a new argument. */
4672 arg_going = 0;
4673 delete_this_arg = 0;
4674 this_is_output_file = 0;
4675 this_is_library_file = 0;
4676 break;
4678 case '%':
4679 switch (c = *p++)
4681 case 0:
4682 fatal ("spec '%s' invalid", spec);
4684 case 'b':
4685 obstack_grow (&obstack, input_basename, basename_length);
4686 arg_going = 1;
4687 break;
4689 case 'B':
4690 obstack_grow (&obstack, input_basename, suffixed_basename_length);
4691 arg_going = 1;
4692 break;
4694 case 'd':
4695 delete_this_arg = 2;
4696 break;
4698 /* Dump out the directories specified with LIBRARY_PATH,
4699 followed by the absolute directories
4700 that we search for startfiles. */
4701 case 'D':
4703 struct spec_path_info info;
4705 info.option = "-L";
4706 info.append_len = 0;
4707 #ifdef RELATIVE_PREFIX_NOT_LINKDIR
4708 /* Used on systems which record the specified -L dirs
4709 and use them to search for dynamic linking.
4710 Relative directories always come from -B,
4711 and it is better not to use them for searching
4712 at run time. In particular, stage1 loses. */
4713 info.omit_relative = true;
4714 #else
4715 info.omit_relative = false;
4716 #endif
4717 info.separate_options = false;
4719 for_each_path (&startfile_prefixes, true, 0, spec_path, &info);
4721 break;
4723 case 'e':
4724 /* %efoo means report an error with `foo' as error message
4725 and don't execute any more commands for this file. */
4727 const char *q = p;
4728 char *buf;
4729 while (*p != 0 && *p != '\n')
4730 p++;
4731 buf = alloca (p - q + 1);
4732 strncpy (buf, q, p - q);
4733 buf[p - q] = 0;
4734 error ("%s", buf);
4735 return -1;
4737 break;
4738 case 'n':
4739 /* %nfoo means report a notice with `foo' on stderr. */
4741 const char *q = p;
4742 char *buf;
4743 while (*p != 0 && *p != '\n')
4744 p++;
4745 buf = alloca (p - q + 1);
4746 strncpy (buf, q, p - q);
4747 buf[p - q] = 0;
4748 notice ("%s\n", buf);
4749 if (*p)
4750 p++;
4752 break;
4754 case 'j':
4756 struct stat st;
4758 /* If save_temps_flag is off, and the HOST_BIT_BUCKET is
4759 defined, and it is not a directory, and it is
4760 writable, use it. Otherwise, treat this like any
4761 other temporary file. */
4763 if ((!save_temps_flag)
4764 && (stat (HOST_BIT_BUCKET, &st) == 0) && (!S_ISDIR (st.st_mode))
4765 && (access (HOST_BIT_BUCKET, W_OK) == 0))
4767 obstack_grow (&obstack, HOST_BIT_BUCKET,
4768 strlen (HOST_BIT_BUCKET));
4769 delete_this_arg = 0;
4770 arg_going = 1;
4771 break;
4774 goto create_temp_file;
4775 case '|':
4776 if (use_pipes)
4778 obstack_1grow (&obstack, '-');
4779 delete_this_arg = 0;
4780 arg_going = 1;
4782 /* consume suffix */
4783 while (*p == '.' || ISALNUM ((unsigned char) *p))
4784 p++;
4785 if (p[0] == '%' && p[1] == 'O')
4786 p += 2;
4788 break;
4790 goto create_temp_file;
4791 case 'm':
4792 if (use_pipes)
4794 /* consume suffix */
4795 while (*p == '.' || ISALNUM ((unsigned char) *p))
4796 p++;
4797 if (p[0] == '%' && p[1] == 'O')
4798 p += 2;
4800 break;
4802 goto create_temp_file;
4803 case 'g':
4804 case 'u':
4805 case 'U':
4806 create_temp_file:
4808 struct temp_name *t;
4809 int suffix_length;
4810 const char *suffix = p;
4811 char *saved_suffix = NULL;
4813 while (*p == '.' || ISALNUM ((unsigned char) *p))
4814 p++;
4815 suffix_length = p - suffix;
4816 if (p[0] == '%' && p[1] == 'O')
4818 p += 2;
4819 /* We don't support extra suffix characters after %O. */
4820 if (*p == '.' || ISALNUM ((unsigned char) *p))
4821 fatal ("spec '%s' has invalid '%%0%c'", spec, *p);
4822 if (suffix_length == 0)
4823 suffix = TARGET_OBJECT_SUFFIX;
4824 else
4826 saved_suffix
4827 = XNEWVEC (char, suffix_length
4828 + strlen (TARGET_OBJECT_SUFFIX));
4829 strncpy (saved_suffix, suffix, suffix_length);
4830 strcpy (saved_suffix + suffix_length,
4831 TARGET_OBJECT_SUFFIX);
4833 suffix_length += strlen (TARGET_OBJECT_SUFFIX);
4836 /* If the input_filename has the same suffix specified
4837 for the %g, %u, or %U, and -save-temps is specified,
4838 we could end up using that file as an intermediate
4839 thus clobbering the user's source file (.e.g.,
4840 gcc -save-temps foo.s would clobber foo.s with the
4841 output of cpp0). So check for this condition and
4842 generate a temp file as the intermediate. */
4844 if (save_temps_flag)
4846 temp_filename_length = basename_length + suffix_length;
4847 temp_filename = alloca (temp_filename_length + 1);
4848 strncpy ((char *) temp_filename, input_basename, basename_length);
4849 strncpy ((char *) temp_filename + basename_length, suffix,
4850 suffix_length);
4851 *((char *) temp_filename + temp_filename_length) = '\0';
4852 if (strcmp (temp_filename, input_filename) != 0)
4854 #ifndef HOST_LACKS_INODE_NUMBERS
4855 struct stat st_temp;
4857 /* Note, set_input() resets input_stat_set to 0. */
4858 if (input_stat_set == 0)
4860 input_stat_set = stat (input_filename, &input_stat);
4861 if (input_stat_set >= 0)
4862 input_stat_set = 1;
4865 /* If we have the stat for the input_filename
4866 and we can do the stat for the temp_filename
4867 then the they could still refer to the same
4868 file if st_dev/st_ino's are the same. */
4869 if (input_stat_set != 1
4870 || stat (temp_filename, &st_temp) < 0
4871 || input_stat.st_dev != st_temp.st_dev
4872 || input_stat.st_ino != st_temp.st_ino)
4873 #else
4874 /* Just compare canonical pathnames. */
4875 char* input_realname = lrealpath (input_filename);
4876 char* temp_realname = lrealpath (temp_filename);
4877 bool files_differ = strcmp (input_realname, temp_realname);
4878 free (input_realname);
4879 free (temp_realname);
4880 if (files_differ)
4881 #endif
4883 temp_filename = save_string (temp_filename,
4884 temp_filename_length + 1);
4885 obstack_grow (&obstack, temp_filename,
4886 temp_filename_length);
4887 arg_going = 1;
4888 delete_this_arg = 0;
4889 break;
4894 /* See if we already have an association of %g/%u/%U and
4895 suffix. */
4896 for (t = temp_names; t; t = t->next)
4897 if (t->length == suffix_length
4898 && strncmp (t->suffix, suffix, suffix_length) == 0
4899 && t->unique == (c == 'u' || c == 'U' || c == 'j'))
4900 break;
4902 /* Make a new association if needed. %u and %j
4903 require one. */
4904 if (t == 0 || c == 'u' || c == 'j')
4906 if (t == 0)
4908 t = xmalloc (sizeof (struct temp_name));
4909 t->next = temp_names;
4910 temp_names = t;
4912 t->length = suffix_length;
4913 if (saved_suffix)
4915 t->suffix = saved_suffix;
4916 saved_suffix = NULL;
4918 else
4919 t->suffix = save_string (suffix, suffix_length);
4920 t->unique = (c == 'u' || c == 'U' || c == 'j');
4921 temp_filename = make_temp_file (t->suffix);
4922 temp_filename_length = strlen (temp_filename);
4923 t->filename = temp_filename;
4924 t->filename_length = temp_filename_length;
4927 if (saved_suffix)
4928 free (saved_suffix);
4930 obstack_grow (&obstack, t->filename, t->filename_length);
4931 delete_this_arg = 1;
4933 arg_going = 1;
4934 break;
4936 case 'i':
4937 if (combine_inputs)
4939 for (i = 0; (int) i < n_infiles; i++)
4940 if ((!infiles[i].language) || (infiles[i].language[0] != '*'))
4941 if (infiles[i].incompiler == input_file_compiler)
4943 store_arg (infiles[i].name, 0, 0);
4944 infiles[i].compiled = true;
4947 else
4949 obstack_grow (&obstack, input_filename, input_filename_length);
4950 arg_going = 1;
4952 break;
4954 case 'I':
4956 struct spec_path_info info;
4958 if (multilib_dir)
4960 do_spec_1 ("-imultilib", 1, NULL);
4961 /* Make this a separate argument. */
4962 do_spec_1 (" ", 0, NULL);
4963 do_spec_1 (multilib_dir, 1, NULL);
4964 do_spec_1 (" ", 0, NULL);
4967 if (gcc_exec_prefix)
4969 do_spec_1 ("-iprefix", 1, NULL);
4970 /* Make this a separate argument. */
4971 do_spec_1 (" ", 0, NULL);
4972 do_spec_1 (gcc_exec_prefix, 1, NULL);
4973 do_spec_1 (" ", 0, NULL);
4976 if (target_system_root_changed ||
4977 (target_system_root && target_sysroot_hdrs_suffix))
4979 do_spec_1 ("-isysroot", 1, NULL);
4980 /* Make this a separate argument. */
4981 do_spec_1 (" ", 0, NULL);
4982 do_spec_1 (target_system_root, 1, NULL);
4983 if (target_sysroot_hdrs_suffix)
4984 do_spec_1 (target_sysroot_hdrs_suffix, 1, NULL);
4985 do_spec_1 (" ", 0, NULL);
4988 info.option = "-isystem";
4989 info.append = "include";
4990 info.append_len = strlen (info.append);
4991 info.omit_relative = false;
4992 info.separate_options = true;
4994 for_each_path (&include_prefixes, false, info.append_len,
4995 spec_path, &info);
4997 info.append = "include-fixed";
4998 if (*sysroot_hdrs_suffix_spec)
4999 info.append = concat (info.append, dir_separator_str,
5000 multilib_dir, NULL);
5001 info.append_len = strlen (info.append);
5002 for_each_path (&include_prefixes, false, info.append_len,
5003 spec_path, &info);
5005 break;
5007 case 'o':
5009 int max = n_infiles;
5010 max += lang_specific_extra_outfiles;
5012 for (i = 0; i < max; i++)
5013 if (outfiles[i])
5014 store_arg (outfiles[i], 0, 0);
5015 break;
5018 case 'O':
5019 obstack_grow (&obstack, TARGET_OBJECT_SUFFIX, strlen (TARGET_OBJECT_SUFFIX));
5020 arg_going = 1;
5021 break;
5023 case 's':
5024 this_is_library_file = 1;
5025 break;
5027 case 'V':
5028 outfiles[input_file_number] = NULL;
5029 break;
5031 case 'w':
5032 this_is_output_file = 1;
5033 break;
5035 case 'W':
5037 int cur_index = argbuf_index;
5038 /* Handle the {...} following the %W. */
5039 if (*p != '{')
5040 fatal ("spec '%s' has invalid '%%W%c", spec, *p);
5041 p = handle_braces (p + 1);
5042 if (p == 0)
5043 return -1;
5044 /* End any pending argument. */
5045 if (arg_going)
5047 obstack_1grow (&obstack, 0);
5048 string = XOBFINISH (&obstack, const char *);
5049 if (this_is_library_file)
5050 string = find_file (string);
5051 store_arg (string, delete_this_arg, this_is_output_file);
5052 if (this_is_output_file)
5053 outfiles[input_file_number] = string;
5054 arg_going = 0;
5056 /* If any args were output, mark the last one for deletion
5057 on failure. */
5058 if (argbuf_index != cur_index)
5059 record_temp_file (argbuf[argbuf_index - 1], 0, 1);
5060 break;
5063 /* %x{OPTION} records OPTION for %X to output. */
5064 case 'x':
5066 const char *p1 = p;
5067 char *string;
5069 /* Skip past the option value and make a copy. */
5070 if (*p != '{')
5071 fatal ("spec '%s' has invalid '%%x%c'", spec, *p);
5072 while (*p++ != '}')
5074 string = save_string (p1 + 1, p - p1 - 2);
5076 /* See if we already recorded this option. */
5077 for (i = 0; i < n_linker_options; i++)
5078 if (! strcmp (string, linker_options[i]))
5080 free (string);
5081 return 0;
5084 /* This option is new; add it. */
5085 add_linker_option (string, strlen (string));
5087 break;
5089 /* Dump out the options accumulated previously using %x. */
5090 case 'X':
5091 for (i = 0; i < n_linker_options; i++)
5093 do_spec_1 (linker_options[i], 1, NULL);
5094 /* Make each accumulated option a separate argument. */
5095 do_spec_1 (" ", 0, NULL);
5097 break;
5099 /* Dump out the options accumulated previously using -Wa,. */
5100 case 'Y':
5101 for (i = 0; i < n_assembler_options; i++)
5103 do_spec_1 (assembler_options[i], 1, NULL);
5104 /* Make each accumulated option a separate argument. */
5105 do_spec_1 (" ", 0, NULL);
5107 break;
5109 /* Dump out the options accumulated previously using -Wp,. */
5110 case 'Z':
5111 for (i = 0; i < n_preprocessor_options; i++)
5113 do_spec_1 (preprocessor_options[i], 1, NULL);
5114 /* Make each accumulated option a separate argument. */
5115 do_spec_1 (" ", 0, NULL);
5117 break;
5119 /* Here are digits and numbers that just process
5120 a certain constant string as a spec. */
5122 case '1':
5123 value = do_spec_1 (cc1_spec, 0, NULL);
5124 if (value != 0)
5125 return value;
5126 break;
5128 case '2':
5129 value = do_spec_1 (cc1plus_spec, 0, NULL);
5130 if (value != 0)
5131 return value;
5132 break;
5134 case 'a':
5135 value = do_spec_1 (asm_spec, 0, NULL);
5136 if (value != 0)
5137 return value;
5138 break;
5140 case 'A':
5141 value = do_spec_1 (asm_final_spec, 0, NULL);
5142 if (value != 0)
5143 return value;
5144 break;
5146 case 'C':
5148 const char *const spec
5149 = (input_file_compiler->cpp_spec
5150 ? input_file_compiler->cpp_spec
5151 : cpp_spec);
5152 value = do_spec_1 (spec, 0, NULL);
5153 if (value != 0)
5154 return value;
5156 break;
5158 case 'E':
5159 value = do_spec_1 (endfile_spec, 0, NULL);
5160 if (value != 0)
5161 return value;
5162 break;
5164 case 'l':
5165 value = do_spec_1 (link_spec, 0, NULL);
5166 if (value != 0)
5167 return value;
5168 break;
5170 case 'L':
5171 value = do_spec_1 (lib_spec, 0, NULL);
5172 if (value != 0)
5173 return value;
5174 break;
5176 case 'G':
5177 value = do_spec_1 (libgcc_spec, 0, NULL);
5178 if (value != 0)
5179 return value;
5180 break;
5182 case 'R':
5183 /* We assume there is a directory
5184 separator at the end of this string. */
5185 if (target_system_root)
5187 obstack_grow (&obstack, target_system_root,
5188 strlen (target_system_root));
5189 if (target_sysroot_suffix)
5190 obstack_grow (&obstack, target_sysroot_suffix,
5191 strlen (target_sysroot_suffix));
5193 break;
5195 case 'S':
5196 value = do_spec_1 (startfile_spec, 0, NULL);
5197 if (value != 0)
5198 return value;
5199 break;
5201 /* Here we define characters other than letters and digits. */
5203 case '{':
5204 p = handle_braces (p);
5205 if (p == 0)
5206 return -1;
5207 break;
5209 case ':':
5210 p = handle_spec_function (p);
5211 if (p == 0)
5212 return -1;
5213 break;
5215 case '%':
5216 obstack_1grow (&obstack, '%');
5217 break;
5219 case '.':
5221 unsigned len = 0;
5223 while (p[len] && p[len] != ' ' && p[len] != '%')
5224 len++;
5225 suffix_subst = save_string (p - 1, len + 1);
5226 p += len;
5228 break;
5230 /* Henceforth ignore the option(s) matching the pattern
5231 after the %<. */
5232 case '<':
5234 unsigned len = 0;
5235 int have_wildcard = 0;
5236 int i;
5238 while (p[len] && p[len] != ' ' && p[len] != '\t')
5239 len++;
5241 if (p[len-1] == '*')
5242 have_wildcard = 1;
5244 for (i = 0; i < n_switches; i++)
5245 if (!strncmp (switches[i].part1, p, len - have_wildcard)
5246 && (have_wildcard || switches[i].part1[len] == '\0'))
5248 switches[i].live_cond = SWITCH_IGNORE;
5249 switches[i].validated = 1;
5252 p += len;
5254 break;
5256 case '*':
5257 if (soft_matched_part)
5259 do_spec_1 (soft_matched_part, 1, NULL);
5260 do_spec_1 (" ", 0, NULL);
5262 else
5263 /* Catch the case where a spec string contains something like
5264 '%{foo:%*}'. i.e. there is no * in the pattern on the left
5265 hand side of the :. */
5266 error ("spec failure: '%%*' has not been initialized by pattern match");
5267 break;
5269 /* Process a string found as the value of a spec given by name.
5270 This feature allows individual machine descriptions
5271 to add and use their own specs.
5272 %[...] modifies -D options the way %P does;
5273 %(...) uses the spec unmodified. */
5274 case '[':
5275 error ("warning: use of obsolete %%[ operator in specs");
5276 case '(':
5278 const char *name = p;
5279 struct spec_list *sl;
5280 int len;
5282 /* The string after the S/P is the name of a spec that is to be
5283 processed. */
5284 while (*p && *p != ')' && *p != ']')
5285 p++;
5287 /* See if it's in the list. */
5288 for (len = p - name, sl = specs; sl; sl = sl->next)
5289 if (sl->name_len == len && !strncmp (sl->name, name, len))
5291 name = *(sl->ptr_spec);
5292 #ifdef DEBUG_SPECS
5293 notice ("Processing spec %c%s%c, which is '%s'\n",
5294 c, sl->name, (c == '(') ? ')' : ']', name);
5295 #endif
5296 break;
5299 if (sl)
5301 if (c == '(')
5303 value = do_spec_1 (name, 0, NULL);
5304 if (value != 0)
5305 return value;
5307 else
5309 char *x = alloca (strlen (name) * 2 + 1);
5310 char *buf = x;
5311 const char *y = name;
5312 int flag = 0;
5314 /* Copy all of NAME into BUF, but put __ after
5315 every -D and at the end of each arg. */
5316 while (1)
5318 if (! strncmp (y, "-D", 2))
5320 *x++ = '-';
5321 *x++ = 'D';
5322 *x++ = '_';
5323 *x++ = '_';
5324 y += 2;
5325 flag = 1;
5326 continue;
5328 else if (flag
5329 && (*y == ' ' || *y == '\t' || *y == '='
5330 || *y == '}' || *y == 0))
5332 *x++ = '_';
5333 *x++ = '_';
5334 flag = 0;
5336 if (*y == 0)
5337 break;
5338 else
5339 *x++ = *y++;
5341 *x = 0;
5343 value = do_spec_1 (buf, 0, NULL);
5344 if (value != 0)
5345 return value;
5349 /* Discard the closing paren or bracket. */
5350 if (*p)
5351 p++;
5353 break;
5355 default:
5356 error ("spec failure: unrecognized spec option '%c'", c);
5357 break;
5359 break;
5361 case '\\':
5362 /* Backslash: treat next character as ordinary. */
5363 c = *p++;
5365 /* Fall through. */
5366 default:
5367 /* Ordinary character: put it into the current argument. */
5368 obstack_1grow (&obstack, c);
5369 arg_going = 1;
5372 /* End of string. If we are processing a spec function, we need to
5373 end any pending argument. */
5374 if (processing_spec_function && arg_going)
5376 obstack_1grow (&obstack, 0);
5377 string = XOBFINISH (&obstack, const char *);
5378 if (this_is_library_file)
5379 string = find_file (string);
5380 store_arg (string, delete_this_arg, this_is_output_file);
5381 if (this_is_output_file)
5382 outfiles[input_file_number] = string;
5383 arg_going = 0;
5386 return 0;
5389 /* Look up a spec function. */
5391 static const struct spec_function *
5392 lookup_spec_function (const char *name)
5394 const struct spec_function *sf;
5396 for (sf = static_spec_functions; sf->name != NULL; sf++)
5397 if (strcmp (sf->name, name) == 0)
5398 return sf;
5400 return NULL;
5403 /* Evaluate a spec function. */
5405 static const char *
5406 eval_spec_function (const char *func, const char *args)
5408 const struct spec_function *sf;
5409 const char *funcval;
5411 /* Saved spec processing context. */
5412 int save_argbuf_index;
5413 int save_argbuf_length;
5414 const char **save_argbuf;
5416 int save_arg_going;
5417 int save_delete_this_arg;
5418 int save_this_is_output_file;
5419 int save_this_is_library_file;
5420 int save_input_from_pipe;
5421 const char *save_suffix_subst;
5424 sf = lookup_spec_function (func);
5425 if (sf == NULL)
5426 fatal ("unknown spec function '%s'", func);
5428 /* Push the spec processing context. */
5429 save_argbuf_index = argbuf_index;
5430 save_argbuf_length = argbuf_length;
5431 save_argbuf = argbuf;
5433 save_arg_going = arg_going;
5434 save_delete_this_arg = delete_this_arg;
5435 save_this_is_output_file = this_is_output_file;
5436 save_this_is_library_file = this_is_library_file;
5437 save_input_from_pipe = input_from_pipe;
5438 save_suffix_subst = suffix_subst;
5440 /* Create a new spec processing context, and build the function
5441 arguments. */
5443 alloc_args ();
5444 if (do_spec_2 (args) < 0)
5445 fatal ("error in args to spec function '%s'", func);
5447 /* argbuf_index is an index for the next argument to be inserted, and
5448 so contains the count of the args already inserted. */
5450 funcval = (*sf->func) (argbuf_index, argbuf);
5452 /* Pop the spec processing context. */
5453 argbuf_index = save_argbuf_index;
5454 argbuf_length = save_argbuf_length;
5455 free (argbuf);
5456 argbuf = save_argbuf;
5458 arg_going = save_arg_going;
5459 delete_this_arg = save_delete_this_arg;
5460 this_is_output_file = save_this_is_output_file;
5461 this_is_library_file = save_this_is_library_file;
5462 input_from_pipe = save_input_from_pipe;
5463 suffix_subst = save_suffix_subst;
5465 return funcval;
5468 /* Handle a spec function call of the form:
5470 %:function(args)
5472 ARGS is processed as a spec in a separate context and split into an
5473 argument vector in the normal fashion. The function returns a string
5474 containing a spec which we then process in the caller's context, or
5475 NULL if no processing is required. */
5477 static const char *
5478 handle_spec_function (const char *p)
5480 char *func, *args;
5481 const char *endp, *funcval;
5482 int count;
5484 processing_spec_function++;
5486 /* Get the function name. */
5487 for (endp = p; *endp != '\0'; endp++)
5489 if (*endp == '(') /* ) */
5490 break;
5491 /* Only allow [A-Za-z0-9], -, and _ in function names. */
5492 if (!ISALNUM (*endp) && !(*endp == '-' || *endp == '_'))
5493 fatal ("malformed spec function name");
5495 if (*endp != '(') /* ) */
5496 fatal ("no arguments for spec function");
5497 func = save_string (p, endp - p);
5498 p = ++endp;
5500 /* Get the arguments. */
5501 for (count = 0; *endp != '\0'; endp++)
5503 /* ( */
5504 if (*endp == ')')
5506 if (count == 0)
5507 break;
5508 count--;
5510 else if (*endp == '(') /* ) */
5511 count++;
5513 /* ( */
5514 if (*endp != ')')
5515 fatal ("malformed spec function arguments");
5516 args = save_string (p, endp - p);
5517 p = ++endp;
5519 /* p now points to just past the end of the spec function expression. */
5521 funcval = eval_spec_function (func, args);
5522 if (funcval != NULL && do_spec_1 (funcval, 0, NULL) < 0)
5523 p = NULL;
5525 free (func);
5526 free (args);
5528 processing_spec_function--;
5530 return p;
5533 /* Inline subroutine of handle_braces. Returns true if the current
5534 input suffix matches the atom bracketed by ATOM and END_ATOM. */
5535 static inline bool
5536 input_suffix_matches (const char *atom, const char *end_atom)
5538 return (input_suffix
5539 && !strncmp (input_suffix, atom, end_atom - atom)
5540 && input_suffix[end_atom - atom] == '\0');
5543 /* Subroutine of handle_braces. Returns true if the current
5544 input file's spec name matches the atom bracketed by ATOM and END_ATOM. */
5545 static bool
5546 input_spec_matches (const char *atom, const char *end_atom)
5548 return (input_file_compiler
5549 && input_file_compiler->suffix
5550 && input_file_compiler->suffix[0] != '\0'
5551 && !strncmp (input_file_compiler->suffix + 1, atom,
5552 end_atom - atom)
5553 && input_file_compiler->suffix[end_atom - atom + 1] == '\0');
5556 /* Subroutine of handle_braces. Returns true if a switch
5557 matching the atom bracketed by ATOM and END_ATOM appeared on the
5558 command line. */
5559 static bool
5560 switch_matches (const char *atom, const char *end_atom, int starred)
5562 int i;
5563 int len = end_atom - atom;
5564 int plen = starred ? len : -1;
5566 for (i = 0; i < n_switches; i++)
5567 if (!strncmp (switches[i].part1, atom, len)
5568 && (starred || switches[i].part1[len] == '\0')
5569 && check_live_switch (i, plen))
5570 return true;
5572 return false;
5575 /* Inline subroutine of handle_braces. Mark all of the switches which
5576 match ATOM (extends to END_ATOM; STARRED indicates whether there
5577 was a star after the atom) for later processing. */
5578 static inline void
5579 mark_matching_switches (const char *atom, const char *end_atom, int starred)
5581 int i;
5582 int len = end_atom - atom;
5583 int plen = starred ? len : -1;
5585 for (i = 0; i < n_switches; i++)
5586 if (!strncmp (switches[i].part1, atom, len)
5587 && (starred || switches[i].part1[len] == '\0')
5588 && check_live_switch (i, plen))
5589 switches[i].ordering = 1;
5592 /* Inline subroutine of handle_braces. Process all the currently
5593 marked switches through give_switch, and clear the marks. */
5594 static inline void
5595 process_marked_switches (void)
5597 int i;
5599 for (i = 0; i < n_switches; i++)
5600 if (switches[i].ordering == 1)
5602 switches[i].ordering = 0;
5603 give_switch (i, 0);
5607 /* Handle a %{ ... } construct. P points just inside the leading {.
5608 Returns a pointer one past the end of the brace block, or 0
5609 if we call do_spec_1 and that returns -1. */
5611 static const char *
5612 handle_braces (const char *p)
5614 const char *atom, *end_atom;
5615 const char *d_atom = NULL, *d_end_atom = NULL;
5616 const char *orig = p;
5618 bool a_is_suffix;
5619 bool a_is_spectype;
5620 bool a_is_starred;
5621 bool a_is_negated;
5622 bool a_matched;
5624 bool a_must_be_last = false;
5625 bool ordered_set = false;
5626 bool disjunct_set = false;
5627 bool disj_matched = false;
5628 bool disj_starred = true;
5629 bool n_way_choice = false;
5630 bool n_way_matched = false;
5632 #define SKIP_WHITE() do { while (*p == ' ' || *p == '\t') p++; } while (0)
5636 if (a_must_be_last)
5637 goto invalid;
5639 /* Scan one "atom" (S in the description above of %{}, possibly
5640 with '!', '.', '@', ',', or '*' modifiers). */
5641 a_matched = false;
5642 a_is_suffix = false;
5643 a_is_starred = false;
5644 a_is_negated = false;
5645 a_is_spectype = false;
5647 SKIP_WHITE();
5648 if (*p == '!')
5649 p++, a_is_negated = true;
5651 SKIP_WHITE();
5652 if (*p == '.')
5653 p++, a_is_suffix = true;
5654 else if (*p == ',')
5655 p++, a_is_spectype = true;
5657 atom = p;
5658 while (ISIDNUM(*p) || *p == '-' || *p == '+' || *p == '='
5659 || *p == ',' || *p == '.' || *p == '@')
5660 p++;
5661 end_atom = p;
5663 if (*p == '*')
5664 p++, a_is_starred = 1;
5666 SKIP_WHITE();
5667 switch (*p)
5669 case '&': case '}':
5670 /* Substitute the switch(es) indicated by the current atom. */
5671 ordered_set = true;
5672 if (disjunct_set || n_way_choice || a_is_negated || a_is_suffix
5673 || a_is_spectype || atom == end_atom)
5674 goto invalid;
5676 mark_matching_switches (atom, end_atom, a_is_starred);
5678 if (*p == '}')
5679 process_marked_switches ();
5680 break;
5682 case '|': case ':':
5683 /* Substitute some text if the current atom appears as a switch
5684 or suffix. */
5685 disjunct_set = true;
5686 if (ordered_set)
5687 goto invalid;
5689 if (atom == end_atom)
5691 if (!n_way_choice || disj_matched || *p == '|'
5692 || a_is_negated || a_is_suffix || a_is_spectype
5693 || a_is_starred)
5694 goto invalid;
5696 /* An empty term may appear as the last choice of an
5697 N-way choice set; it means "otherwise". */
5698 a_must_be_last = true;
5699 disj_matched = !n_way_matched;
5700 disj_starred = false;
5702 else
5704 if ((a_is_suffix || a_is_spectype) && a_is_starred)
5705 goto invalid;
5707 if (!a_is_starred)
5708 disj_starred = false;
5710 /* Don't bother testing this atom if we already have a
5711 match. */
5712 if (!disj_matched && !n_way_matched)
5714 if (a_is_suffix)
5715 a_matched = input_suffix_matches (atom, end_atom);
5716 else if (a_is_spectype)
5717 a_matched = input_spec_matches (atom, end_atom);
5718 else
5719 a_matched = switch_matches (atom, end_atom, a_is_starred);
5721 if (a_matched != a_is_negated)
5723 disj_matched = true;
5724 d_atom = atom;
5725 d_end_atom = end_atom;
5730 if (*p == ':')
5732 /* Found the body, that is, the text to substitute if the
5733 current disjunction matches. */
5734 p = process_brace_body (p + 1, d_atom, d_end_atom, disj_starred,
5735 disj_matched && !n_way_matched);
5736 if (p == 0)
5737 return 0;
5739 /* If we have an N-way choice, reset state for the next
5740 disjunction. */
5741 if (*p == ';')
5743 n_way_choice = true;
5744 n_way_matched |= disj_matched;
5745 disj_matched = false;
5746 disj_starred = true;
5747 d_atom = d_end_atom = NULL;
5750 break;
5752 default:
5753 goto invalid;
5756 while (*p++ != '}');
5758 return p;
5760 invalid:
5761 fatal ("braced spec '%s' is invalid at '%c'", orig, *p);
5763 #undef SKIP_WHITE
5766 /* Subroutine of handle_braces. Scan and process a brace substitution body
5767 (X in the description of %{} syntax). P points one past the colon;
5768 ATOM and END_ATOM bracket the first atom which was found to be true
5769 (present) in the current disjunction; STARRED indicates whether all
5770 the atoms in the current disjunction were starred (for syntax validation);
5771 MATCHED indicates whether the disjunction matched or not, and therefore
5772 whether or not the body is to be processed through do_spec_1 or just
5773 skipped. Returns a pointer to the closing } or ;, or 0 if do_spec_1
5774 returns -1. */
5776 static const char *
5777 process_brace_body (const char *p, const char *atom, const char *end_atom,
5778 int starred, int matched)
5780 const char *body, *end_body;
5781 unsigned int nesting_level;
5782 bool have_subst = false;
5784 /* Locate the closing } or ;, honoring nested braces.
5785 Trim trailing whitespace. */
5786 body = p;
5787 nesting_level = 1;
5788 for (;;)
5790 if (*p == '{')
5791 nesting_level++;
5792 else if (*p == '}')
5794 if (!--nesting_level)
5795 break;
5797 else if (*p == ';' && nesting_level == 1)
5798 break;
5799 else if (*p == '%' && p[1] == '*' && nesting_level == 1)
5800 have_subst = true;
5801 else if (*p == '\0')
5802 goto invalid;
5803 p++;
5806 end_body = p;
5807 while (end_body[-1] == ' ' || end_body[-1] == '\t')
5808 end_body--;
5810 if (have_subst && !starred)
5811 goto invalid;
5813 if (matched)
5815 /* Copy the substitution body to permanent storage and execute it.
5816 If have_subst is false, this is a simple matter of running the
5817 body through do_spec_1... */
5818 char *string = save_string (body, end_body - body);
5819 if (!have_subst)
5821 if (do_spec_1 (string, 0, NULL) < 0)
5822 return 0;
5824 else
5826 /* ... but if have_subst is true, we have to process the
5827 body once for each matching switch, with %* set to the
5828 variant part of the switch. */
5829 unsigned int hard_match_len = end_atom - atom;
5830 int i;
5832 for (i = 0; i < n_switches; i++)
5833 if (!strncmp (switches[i].part1, atom, hard_match_len)
5834 && check_live_switch (i, hard_match_len))
5836 if (do_spec_1 (string, 0,
5837 &switches[i].part1[hard_match_len]) < 0)
5838 return 0;
5839 /* Pass any arguments this switch has. */
5840 give_switch (i, 1);
5841 suffix_subst = NULL;
5846 return p;
5848 invalid:
5849 fatal ("braced spec body '%s' is invalid", body);
5852 /* Return 0 iff switch number SWITCHNUM is obsoleted by a later switch
5853 on the command line. PREFIX_LENGTH is the length of XXX in an {XXX*}
5854 spec, or -1 if either exact match or %* is used.
5856 A -O switch is obsoleted by a later -O switch. A -f, -m, or -W switch
5857 whose value does not begin with "no-" is obsoleted by the same value
5858 with the "no-", similarly for a switch with the "no-" prefix. */
5860 static int
5861 check_live_switch (int switchnum, int prefix_length)
5863 const char *name = switches[switchnum].part1;
5864 int i;
5866 /* In the common case of {<at-most-one-letter>*}, a negating
5867 switch would always match, so ignore that case. We will just
5868 send the conflicting switches to the compiler phase. */
5869 if (prefix_length >= 0 && prefix_length <= 1)
5870 return 1;
5872 /* If we already processed this switch and determined if it was
5873 live or not, return our past determination. */
5874 if (switches[switchnum].live_cond != 0)
5875 return switches[switchnum].live_cond > 0;
5877 /* Now search for duplicate in a manner that depends on the name. */
5878 switch (*name)
5880 case 'O':
5881 for (i = switchnum + 1; i < n_switches; i++)
5882 if (switches[i].part1[0] == 'O')
5884 switches[switchnum].validated = 1;
5885 switches[switchnum].live_cond = SWITCH_FALSE;
5886 return 0;
5888 break;
5890 case 'W': case 'f': case 'm':
5891 if (! strncmp (name + 1, "no-", 3))
5893 /* We have Xno-YYY, search for XYYY. */
5894 for (i = switchnum + 1; i < n_switches; i++)
5895 if (switches[i].part1[0] == name[0]
5896 && ! strcmp (&switches[i].part1[1], &name[4]))
5898 switches[switchnum].validated = 1;
5899 switches[switchnum].live_cond = SWITCH_FALSE;
5900 return 0;
5903 else
5905 /* We have XYYY, search for Xno-YYY. */
5906 for (i = switchnum + 1; i < n_switches; i++)
5907 if (switches[i].part1[0] == name[0]
5908 && switches[i].part1[1] == 'n'
5909 && switches[i].part1[2] == 'o'
5910 && switches[i].part1[3] == '-'
5911 && !strcmp (&switches[i].part1[4], &name[1]))
5913 switches[switchnum].validated = 1;
5914 switches[switchnum].live_cond = SWITCH_FALSE;
5915 return 0;
5918 break;
5921 /* Otherwise the switch is live. */
5922 switches[switchnum].live_cond = SWITCH_LIVE;
5923 return 1;
5926 /* Pass a switch to the current accumulating command
5927 in the same form that we received it.
5928 SWITCHNUM identifies the switch; it is an index into
5929 the vector of switches gcc received, which is `switches'.
5930 This cannot fail since it never finishes a command line.
5932 If OMIT_FIRST_WORD is nonzero, then we omit .part1 of the argument. */
5934 static void
5935 give_switch (int switchnum, int omit_first_word)
5937 if (switches[switchnum].live_cond == SWITCH_IGNORE)
5938 return;
5940 if (!omit_first_word)
5942 do_spec_1 ("-", 0, NULL);
5943 do_spec_1 (switches[switchnum].part1, 1, NULL);
5946 if (switches[switchnum].args != 0)
5948 const char **p;
5949 for (p = switches[switchnum].args; *p; p++)
5951 const char *arg = *p;
5953 do_spec_1 (" ", 0, NULL);
5954 if (suffix_subst)
5956 unsigned length = strlen (arg);
5957 int dot = 0;
5959 while (length-- && !IS_DIR_SEPARATOR (arg[length]))
5960 if (arg[length] == '.')
5962 ((char *)arg)[length] = 0;
5963 dot = 1;
5964 break;
5966 do_spec_1 (arg, 1, NULL);
5967 if (dot)
5968 ((char *)arg)[length] = '.';
5969 do_spec_1 (suffix_subst, 1, NULL);
5971 else
5972 do_spec_1 (arg, 1, NULL);
5976 do_spec_1 (" ", 0, NULL);
5977 switches[switchnum].validated = 1;
5980 /* Search for a file named NAME trying various prefixes including the
5981 user's -B prefix and some standard ones.
5982 Return the absolute file name found. If nothing is found, return NAME. */
5984 static const char *
5985 find_file (const char *name)
5987 char *newname = find_a_file (&startfile_prefixes, name, R_OK, true);
5988 return newname ? newname : name;
5991 /* Determine whether a directory exists. If LINKER, return 0 for
5992 certain fixed names not needed by the linker. */
5994 static int
5995 is_directory (const char *path1, bool linker)
5997 int len1;
5998 char *path;
5999 char *cp;
6000 struct stat st;
6002 /* Ensure the string ends with "/.". The resulting path will be a
6003 directory even if the given path is a symbolic link. */
6004 len1 = strlen (path1);
6005 path = alloca (3 + len1);
6006 memcpy (path, path1, len1);
6007 cp = path + len1;
6008 if (!IS_DIR_SEPARATOR (cp[-1]))
6009 *cp++ = DIR_SEPARATOR;
6010 *cp++ = '.';
6011 *cp = '\0';
6013 /* Exclude directories that the linker is known to search. */
6014 if (linker
6015 && IS_DIR_SEPARATOR (path[0])
6016 && ((cp - path == 6
6017 && strncmp (path + 1, "lib", 3) == 0)
6018 || (cp - path == 10
6019 && strncmp (path + 1, "usr", 3) == 0
6020 && IS_DIR_SEPARATOR (path[4])
6021 && strncmp (path + 5, "lib", 3) == 0)))
6022 return 0;
6024 return (stat (path, &st) >= 0 && S_ISDIR (st.st_mode));
6027 /* Set up the various global variables to indicate that we're processing
6028 the input file named FILENAME. */
6030 void
6031 set_input (const char *filename)
6033 const char *p;
6035 input_filename = filename;
6036 input_filename_length = strlen (input_filename);
6038 input_basename = input_filename;
6039 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
6040 /* Skip drive name so 'x:foo' is handled properly. */
6041 if (input_basename[1] == ':')
6042 input_basename += 2;
6043 #endif
6044 for (p = input_basename; *p; p++)
6045 if (IS_DIR_SEPARATOR (*p))
6046 input_basename = p + 1;
6048 /* Find a suffix starting with the last period,
6049 and set basename_length to exclude that suffix. */
6050 basename_length = strlen (input_basename);
6051 suffixed_basename_length = basename_length;
6052 p = input_basename + basename_length;
6053 while (p != input_basename && *p != '.')
6054 --p;
6055 if (*p == '.' && p != input_basename)
6057 basename_length = p - input_basename;
6058 input_suffix = p + 1;
6060 else
6061 input_suffix = "";
6063 /* If a spec for 'g', 'u', or 'U' is seen with -save-temps then
6064 we will need to do a stat on the input_filename. The
6065 INPUT_STAT_SET signals that the stat is needed. */
6066 input_stat_set = 0;
6069 /* On fatal signals, delete all the temporary files. */
6071 static void
6072 fatal_error (int signum)
6074 signal (signum, SIG_DFL);
6075 delete_failure_queue ();
6076 delete_temp_files ();
6077 /* Get the same signal again, this time not handled,
6078 so its normal effect occurs. */
6079 kill (getpid (), signum);
6082 extern int main (int, char **);
6085 main (int argc, char **argv)
6087 size_t i;
6088 int value;
6089 int linker_was_run = 0;
6090 int lang_n_infiles = 0;
6091 int num_linker_inputs = 0;
6092 char *explicit_link_files;
6093 char *specs_file;
6094 const char *p;
6095 struct user_specs *uptr;
6097 p = argv[0] + strlen (argv[0]);
6098 while (p != argv[0] && !IS_DIR_SEPARATOR (p[-1]))
6099 --p;
6100 programname = p;
6102 xmalloc_set_program_name (programname);
6104 expandargv (&argc, &argv);
6106 prune_options (&argc, &argv);
6108 #ifdef GCC_DRIVER_HOST_INITIALIZATION
6109 /* Perform host dependent initialization when needed. */
6110 GCC_DRIVER_HOST_INITIALIZATION;
6111 #endif
6113 /* Unlock the stdio streams. */
6114 unlock_std_streams ();
6116 gcc_init_libintl ();
6118 if (signal (SIGINT, SIG_IGN) != SIG_IGN)
6119 signal (SIGINT, fatal_error);
6120 #ifdef SIGHUP
6121 if (signal (SIGHUP, SIG_IGN) != SIG_IGN)
6122 signal (SIGHUP, fatal_error);
6123 #endif
6124 if (signal (SIGTERM, SIG_IGN) != SIG_IGN)
6125 signal (SIGTERM, fatal_error);
6126 #ifdef SIGPIPE
6127 if (signal (SIGPIPE, SIG_IGN) != SIG_IGN)
6128 signal (SIGPIPE, fatal_error);
6129 #endif
6130 #ifdef SIGCHLD
6131 /* We *MUST* set SIGCHLD to SIG_DFL so that the wait4() call will
6132 receive the signal. A different setting is inheritable */
6133 signal (SIGCHLD, SIG_DFL);
6134 #endif
6136 /* Allocate the argument vector. */
6137 alloc_args ();
6139 obstack_init (&obstack);
6141 /* Build multilib_select, et. al from the separate lines that make up each
6142 multilib selection. */
6144 const char *const *q = multilib_raw;
6145 int need_space;
6147 obstack_init (&multilib_obstack);
6148 while ((p = *q++) != (char *) 0)
6149 obstack_grow (&multilib_obstack, p, strlen (p));
6151 obstack_1grow (&multilib_obstack, 0);
6152 multilib_select = XOBFINISH (&multilib_obstack, const char *);
6154 q = multilib_matches_raw;
6155 while ((p = *q++) != (char *) 0)
6156 obstack_grow (&multilib_obstack, p, strlen (p));
6158 obstack_1grow (&multilib_obstack, 0);
6159 multilib_matches = XOBFINISH (&multilib_obstack, const char *);
6161 q = multilib_exclusions_raw;
6162 while ((p = *q++) != (char *) 0)
6163 obstack_grow (&multilib_obstack, p, strlen (p));
6165 obstack_1grow (&multilib_obstack, 0);
6166 multilib_exclusions = XOBFINISH (&multilib_obstack, const char *);
6168 need_space = FALSE;
6169 for (i = 0; i < ARRAY_SIZE (multilib_defaults_raw); i++)
6171 if (need_space)
6172 obstack_1grow (&multilib_obstack, ' ');
6173 obstack_grow (&multilib_obstack,
6174 multilib_defaults_raw[i],
6175 strlen (multilib_defaults_raw[i]));
6176 need_space = TRUE;
6179 obstack_1grow (&multilib_obstack, 0);
6180 multilib_defaults = XOBFINISH (&multilib_obstack, const char *);
6183 /* Set up to remember the pathname of gcc and any options
6184 needed for collect. We use argv[0] instead of programname because
6185 we need the complete pathname. */
6186 obstack_init (&collect_obstack);
6187 obstack_grow (&collect_obstack, "COLLECT_GCC=", sizeof ("COLLECT_GCC=") - 1);
6188 obstack_grow (&collect_obstack, argv[0], strlen (argv[0]) + 1);
6189 putenv (XOBFINISH (&collect_obstack, char *));
6191 #ifdef INIT_ENVIRONMENT
6192 /* Set up any other necessary machine specific environment variables. */
6193 putenv (INIT_ENVIRONMENT);
6194 #endif
6196 /* Make a table of what switches there are (switches, n_switches).
6197 Make a table of specified input files (infiles, n_infiles).
6198 Decode switches that are handled locally. */
6200 process_command (argc, (const char **) argv);
6202 /* Initialize the vector of specs to just the default.
6203 This means one element containing 0s, as a terminator. */
6205 compilers = xmalloc (sizeof default_compilers);
6206 memcpy (compilers, default_compilers, sizeof default_compilers);
6207 n_compilers = n_default_compilers;
6209 /* Read specs from a file if there is one. */
6211 machine_suffix = concat (spec_machine, dir_separator_str,
6212 spec_version, dir_separator_str, NULL);
6213 just_machine_suffix = concat (spec_machine, dir_separator_str, NULL);
6215 specs_file = find_a_file (&startfile_prefixes, "specs", R_OK, true);
6216 /* Read the specs file unless it is a default one. */
6217 if (specs_file != 0 && strcmp (specs_file, "specs"))
6218 read_specs (specs_file, TRUE);
6219 else
6220 init_spec ();
6222 /* We need to check standard_exec_prefix/just_machine_suffix/specs
6223 for any override of as, ld and libraries. */
6224 specs_file = alloca (strlen (standard_exec_prefix)
6225 + strlen (just_machine_suffix) + sizeof ("specs"));
6227 strcpy (specs_file, standard_exec_prefix);
6228 strcat (specs_file, just_machine_suffix);
6229 strcat (specs_file, "specs");
6230 if (access (specs_file, R_OK) == 0)
6231 read_specs (specs_file, TRUE);
6233 /* Process any configure-time defaults specified for the command line
6234 options, via OPTION_DEFAULT_SPECS. */
6235 for (i = 0; i < ARRAY_SIZE (option_default_specs); i++)
6236 do_option_spec (option_default_specs[i].name,
6237 option_default_specs[i].spec);
6239 /* Process DRIVER_SELF_SPECS, adding any new options to the end
6240 of the command line. */
6242 for (i = 0; i < ARRAY_SIZE (driver_self_specs); i++)
6243 do_self_spec (driver_self_specs[i]);
6245 /* If not cross-compiling, look for executables in the standard
6246 places. */
6247 if (*cross_compile == '0')
6249 if (*md_exec_prefix)
6251 add_prefix (&exec_prefixes, md_exec_prefix, "GCC",
6252 PREFIX_PRIORITY_LAST, 0, 0);
6256 /* Process sysroot_suffix_spec. */
6257 if (*sysroot_suffix_spec != 0
6258 && do_spec_2 (sysroot_suffix_spec) == 0)
6260 if (argbuf_index > 1)
6261 error ("spec failure: more than one arg to SYSROOT_SUFFIX_SPEC");
6262 else if (argbuf_index == 1)
6263 target_sysroot_suffix = xstrdup (argbuf[argbuf_index -1]);
6266 #ifdef HAVE_LD_SYSROOT
6267 /* Pass the --sysroot option to the linker, if it supports that. If
6268 there is a sysroot_suffix_spec, it has already been processed by
6269 this point, so target_system_root really is the system root we
6270 should be using. */
6271 if (target_system_root)
6273 obstack_grow (&obstack, "%(sysroot_spec) ", strlen ("%(sysroot_spec) "));
6274 obstack_grow0 (&obstack, link_spec, strlen (link_spec));
6275 set_spec ("link", XOBFINISH (&obstack, const char *));
6277 #endif
6279 /* Process sysroot_hdrs_suffix_spec. */
6280 if (*sysroot_hdrs_suffix_spec != 0
6281 && do_spec_2 (sysroot_hdrs_suffix_spec) == 0)
6283 if (argbuf_index > 1)
6284 error ("spec failure: more than one arg to SYSROOT_HEADERS_SUFFIX_SPEC");
6285 else if (argbuf_index == 1)
6286 target_sysroot_hdrs_suffix = xstrdup (argbuf[argbuf_index -1]);
6289 /* Look for startfiles in the standard places. */
6290 if (*startfile_prefix_spec != 0
6291 && do_spec_2 (startfile_prefix_spec) == 0
6292 && do_spec_1 (" ", 0, NULL) == 0)
6294 int ndx;
6295 for (ndx = 0; ndx < argbuf_index; ndx++)
6296 add_sysrooted_prefix (&startfile_prefixes, argbuf[ndx], "BINUTILS",
6297 PREFIX_PRIORITY_LAST, 0, 1);
6299 /* We should eventually get rid of all these and stick to
6300 startfile_prefix_spec exclusively. */
6301 else if (*cross_compile == '0' || target_system_root)
6303 if (*md_startfile_prefix)
6304 add_sysrooted_prefix (&startfile_prefixes, md_startfile_prefix,
6305 "GCC", PREFIX_PRIORITY_LAST, 0, 1);
6307 if (*md_startfile_prefix_1)
6308 add_sysrooted_prefix (&startfile_prefixes, md_startfile_prefix_1,
6309 "GCC", PREFIX_PRIORITY_LAST, 0, 1);
6311 /* If standard_startfile_prefix is relative, base it on
6312 standard_exec_prefix. This lets us move the installed tree
6313 as a unit. If GCC_EXEC_PREFIX is defined, base
6314 standard_startfile_prefix on that as well.
6316 If the prefix is relative, only search it for native compilers;
6317 otherwise we will search a directory containing host libraries. */
6318 if (IS_ABSOLUTE_PATH (standard_startfile_prefix))
6319 add_sysrooted_prefix (&startfile_prefixes,
6320 standard_startfile_prefix, "BINUTILS",
6321 PREFIX_PRIORITY_LAST, 0, 1);
6322 else if (*cross_compile == '0')
6324 add_prefix (&startfile_prefixes,
6325 concat (gcc_exec_prefix
6326 ? gcc_exec_prefix : standard_exec_prefix,
6327 machine_suffix,
6328 standard_startfile_prefix, NULL),
6329 NULL, PREFIX_PRIORITY_LAST, 0, 1);
6332 /* Sysrooted prefixes are relocated because target_system_root is
6333 also relocated by gcc_exec_prefix. */
6334 if (*standard_startfile_prefix_1)
6335 add_sysrooted_prefix (&startfile_prefixes,
6336 standard_startfile_prefix_1, "BINUTILS",
6337 PREFIX_PRIORITY_LAST, 0, 1);
6338 if (*standard_startfile_prefix_2)
6339 add_sysrooted_prefix (&startfile_prefixes,
6340 standard_startfile_prefix_2, "BINUTILS",
6341 PREFIX_PRIORITY_LAST, 0, 1);
6344 /* Process any user specified specs in the order given on the command
6345 line. */
6346 for (uptr = user_specs_head; uptr; uptr = uptr->next)
6348 char *filename = find_a_file (&startfile_prefixes, uptr->filename,
6349 R_OK, true);
6350 read_specs (filename ? filename : uptr->filename, FALSE);
6353 /* If we have a GCC_EXEC_PREFIX envvar, modify it for cpp's sake. */
6354 if (gcc_exec_prefix)
6355 gcc_exec_prefix = concat (gcc_exec_prefix, spec_machine, dir_separator_str,
6356 spec_version, dir_separator_str, NULL);
6358 /* Now we have the specs.
6359 Set the `valid' bits for switches that match anything in any spec. */
6361 validate_all_switches ();
6363 /* Now that we have the switches and the specs, set
6364 the subdirectory based on the options. */
6365 set_multilib_dir ();
6367 /* Warn about any switches that no pass was interested in. */
6369 for (i = 0; (int) i < n_switches; i++)
6370 if (! switches[i].validated)
6371 error ("unrecognized option '-%s'", switches[i].part1);
6373 /* Obey some of the options. */
6375 if (print_search_dirs)
6377 printf (_("install: %s%s\n"),
6378 gcc_exec_prefix ? gcc_exec_prefix : standard_exec_prefix,
6379 gcc_exec_prefix ? "" : machine_suffix);
6380 printf (_("programs: %s\n"),
6381 build_search_list (&exec_prefixes, "", false, false));
6382 printf (_("libraries: %s\n"),
6383 build_search_list (&startfile_prefixes, "", false, true));
6384 return (0);
6387 if (print_file_name)
6389 printf ("%s\n", find_file (print_file_name));
6390 return (0);
6393 if (print_prog_name)
6395 char *newname = find_a_file (&exec_prefixes, print_prog_name, X_OK, 0);
6396 printf ("%s\n", (newname ? newname : print_prog_name));
6397 return (0);
6400 if (print_multi_lib)
6402 print_multilib_info ();
6403 return (0);
6406 if (print_multi_directory)
6408 if (multilib_dir == NULL)
6409 printf (".\n");
6410 else
6411 printf ("%s\n", multilib_dir);
6412 return (0);
6415 if (print_multi_os_directory)
6417 if (multilib_os_dir == NULL)
6418 printf (".\n");
6419 else
6420 printf ("%s\n", multilib_os_dir);
6421 return (0);
6424 if (print_sysroot_headers_suffix)
6426 if (*sysroot_hdrs_suffix_spec)
6428 printf("%s\n", (target_sysroot_hdrs_suffix
6429 ? target_sysroot_hdrs_suffix
6430 : ""));
6431 return (0);
6433 else
6434 /* The error status indicates that only one set of fixed
6435 headers should be built. */
6436 fatal ("not configured with sysroot headers suffix");
6439 if (print_help_list)
6441 display_help ();
6443 if (! verbose_flag)
6445 printf (_("\nFor bug reporting instructions, please see:\n"));
6446 printf ("%s.\n", bug_report_url);
6448 return (0);
6451 /* We do not exit here. Instead we have created a fake input file
6452 called 'help-dummy' which needs to be compiled, and we pass this
6453 on the various sub-processes, along with the --help switch. */
6456 if (verbose_flag)
6458 int n;
6459 const char *thrmod;
6461 notice ("Target: %s\n", spec_machine);
6462 notice ("Configured with: %s\n", configuration_arguments);
6464 #ifdef THREAD_MODEL_SPEC
6465 /* We could have defined THREAD_MODEL_SPEC to "%*" by default,
6466 but there's no point in doing all this processing just to get
6467 thread_model back. */
6468 obstack_init (&obstack);
6469 do_spec_1 (THREAD_MODEL_SPEC, 0, thread_model);
6470 obstack_1grow (&obstack, '\0');
6471 thrmod = XOBFINISH (&obstack, const char *);
6472 #else
6473 thrmod = thread_model;
6474 #endif
6476 notice ("Thread model: %s\n", thrmod);
6478 /* compiler_version is truncated at the first space when initialized
6479 from version string, so truncate version_string at the first space
6480 before comparing. */
6481 for (n = 0; version_string[n]; n++)
6482 if (version_string[n] == ' ')
6483 break;
6485 if (! strncmp (version_string, compiler_version, n)
6486 && compiler_version[n] == 0)
6487 notice ("gcc version %s\n", version_string);
6488 else
6489 notice ("gcc driver version %s executing gcc version %s\n",
6490 version_string, compiler_version);
6492 if (n_infiles == 0)
6493 return (0);
6496 if (n_infiles == added_libraries)
6497 fatal ("no input files");
6499 /* Make a place to record the compiler output file names
6500 that correspond to the input files. */
6502 i = n_infiles;
6503 i += lang_specific_extra_outfiles;
6504 outfiles = XCNEWVEC (const char *, i);
6506 /* Record which files were specified explicitly as link input. */
6508 explicit_link_files = XCNEWVEC (char, n_infiles);
6510 if (combine_flag)
6511 combine_inputs = true;
6512 else
6513 combine_inputs = false;
6515 for (i = 0; (int) i < n_infiles; i++)
6517 const char *name = infiles[i].name;
6518 struct compiler *compiler = lookup_compiler (name,
6519 strlen (name),
6520 infiles[i].language);
6522 if (compiler && !(compiler->combinable))
6523 combine_inputs = false;
6525 if (lang_n_infiles > 0 && compiler != input_file_compiler
6526 && infiles[i].language && infiles[i].language[0] != '*')
6527 infiles[i].incompiler = compiler;
6528 else if (compiler)
6530 lang_n_infiles++;
6531 input_file_compiler = compiler;
6532 infiles[i].incompiler = compiler;
6534 else
6536 /* Since there is no compiler for this input file, assume it is a
6537 linker file. */
6538 explicit_link_files[i] = 1;
6539 infiles[i].incompiler = NULL;
6541 infiles[i].compiled = false;
6542 infiles[i].preprocessed = false;
6545 if (!combine_inputs && have_c && have_o && lang_n_infiles > 1)
6546 fatal ("cannot specify -o with -c or -S with multiple files");
6548 if (combine_flag && save_temps_flag)
6550 bool save_combine_inputs = combine_inputs;
6551 /* Must do a separate pre-processing pass for C & Objective-C files, to
6552 obtain individual .i files. */
6554 combine_inputs = false;
6555 for (i = 0; (int) i < n_infiles; i++)
6557 int this_file_error = 0;
6559 input_file_number = i;
6560 set_input (infiles[i].name);
6561 if (infiles[i].incompiler
6562 && (infiles[i].incompiler)->needs_preprocessing)
6563 input_file_compiler = infiles[i].incompiler;
6564 else
6565 continue;
6567 if (input_file_compiler)
6569 if (input_file_compiler->spec[0] == '#')
6571 error ("%s: %s compiler not installed on this system",
6572 input_filename, &input_file_compiler->spec[1]);
6573 this_file_error = 1;
6575 else
6577 value = do_spec (input_file_compiler->spec);
6578 infiles[i].preprocessed = true;
6579 if (!have_o_argbuf_index)
6580 fatal ("spec '%s' is invalid", input_file_compiler->spec);
6581 infiles[i].name = argbuf[have_o_argbuf_index];
6582 infiles[i].incompiler
6583 = lookup_compiler (infiles[i].name,
6584 strlen (infiles[i].name),
6585 infiles[i].language);
6587 if (value < 0)
6588 this_file_error = 1;
6592 if (this_file_error)
6594 delete_failure_queue ();
6595 error_count++;
6596 break;
6598 clear_failure_queue ();
6600 combine_inputs = save_combine_inputs;
6603 for (i = 0; (int) i < n_infiles; i++)
6605 int this_file_error = 0;
6607 /* Tell do_spec what to substitute for %i. */
6609 input_file_number = i;
6610 set_input (infiles[i].name);
6612 if (infiles[i].compiled)
6613 continue;
6615 /* Use the same thing in %o, unless cp->spec says otherwise. */
6617 outfiles[i] = input_filename;
6619 /* Figure out which compiler from the file's suffix. */
6621 if (! combine_inputs)
6622 input_file_compiler
6623 = lookup_compiler (infiles[i].name, input_filename_length,
6624 infiles[i].language);
6625 else
6626 input_file_compiler = infiles[i].incompiler;
6628 if (input_file_compiler)
6630 /* Ok, we found an applicable compiler. Run its spec. */
6632 if (input_file_compiler->spec[0] == '#')
6634 error ("%s: %s compiler not installed on this system",
6635 input_filename, &input_file_compiler->spec[1]);
6636 this_file_error = 1;
6638 else
6640 value = do_spec (input_file_compiler->spec);
6641 infiles[i].compiled = true;
6642 if (value < 0)
6643 this_file_error = 1;
6647 /* If this file's name does not contain a recognized suffix,
6648 record it as explicit linker input. */
6650 else
6651 explicit_link_files[i] = 1;
6653 /* Clear the delete-on-failure queue, deleting the files in it
6654 if this compilation failed. */
6656 if (this_file_error)
6658 delete_failure_queue ();
6659 error_count++;
6661 /* If this compilation succeeded, don't delete those files later. */
6662 clear_failure_queue ();
6665 /* Reset the input file name to the first compile/object file name, for use
6666 with %b in LINK_SPEC. We use the first input file that we can find
6667 a compiler to compile it instead of using infiles.language since for
6668 languages other than C we use aliases that we then lookup later. */
6669 if (n_infiles > 0)
6671 int i;
6673 for (i = 0; i < n_infiles ; i++)
6674 if (infiles[i].language && infiles[i].language[0] != '*')
6676 set_input (infiles[i].name);
6677 break;
6681 if (error_count == 0)
6683 /* Make sure INPUT_FILE_NUMBER points to first available open
6684 slot. */
6685 input_file_number = n_infiles;
6686 if (lang_specific_pre_link ())
6687 error_count++;
6690 /* Determine if there are any linker input files. */
6691 num_linker_inputs = 0;
6692 for (i = 0; (int) i < n_infiles; i++)
6693 if (explicit_link_files[i] || outfiles[i] != NULL)
6694 num_linker_inputs++;
6696 /* Run ld to link all the compiler output files. */
6698 if (num_linker_inputs > 0 && error_count == 0 && print_subprocess_help < 2)
6700 int tmp = execution_count;
6702 /* We'll use ld if we can't find collect2. */
6703 if (! strcmp (linker_name_spec, "collect2"))
6705 char *s = find_a_file (&exec_prefixes, "collect2", X_OK, false);
6706 if (s == NULL)
6707 linker_name_spec = "ld";
6709 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
6710 for collect. */
6711 putenv_from_prefixes (&exec_prefixes, "COMPILER_PATH", false);
6712 putenv_from_prefixes (&startfile_prefixes, LIBRARY_PATH_ENV, true);
6714 if (print_subprocess_help == 1)
6716 printf (_("\nLinker options\n==============\n\n"));
6717 printf (_("Use \"-Wl,OPTION\" to pass \"OPTION\""
6718 " to the linker.\n\n"));
6719 fflush (stdout);
6721 value = do_spec (link_command_spec);
6722 if (value < 0)
6723 error_count = 1;
6724 linker_was_run = (tmp != execution_count);
6727 /* If options said don't run linker,
6728 complain about input files to be given to the linker. */
6730 if (! linker_was_run && error_count == 0)
6731 for (i = 0; (int) i < n_infiles; i++)
6732 if (explicit_link_files[i])
6733 error ("%s: linker input file unused because linking not done",
6734 outfiles[i]);
6736 /* Delete some or all of the temporary files we made. */
6738 if (error_count)
6739 delete_failure_queue ();
6740 delete_temp_files ();
6742 if (print_help_list)
6744 printf (("\nFor bug reporting instructions, please see:\n"));
6745 printf ("%s\n", bug_report_url);
6748 return (signal_count != 0 ? 2
6749 : error_count > 0 ? (pass_exit_codes ? greatest_status : 1)
6750 : 0);
6753 /* Find the proper compilation spec for the file name NAME,
6754 whose length is LENGTH. LANGUAGE is the specified language,
6755 or 0 if this file is to be passed to the linker. */
6757 static struct compiler *
6758 lookup_compiler (const char *name, size_t length, const char *language)
6760 struct compiler *cp;
6762 /* If this was specified by the user to be a linker input, indicate that. */
6763 if (language != 0 && language[0] == '*')
6764 return 0;
6766 /* Otherwise, look for the language, if one is spec'd. */
6767 if (language != 0)
6769 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
6770 if (cp->suffix[0] == '@' && !strcmp (cp->suffix + 1, language))
6771 return cp;
6773 error ("language %s not recognized", language);
6774 return 0;
6777 /* Look for a suffix. */
6778 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
6780 if (/* The suffix `-' matches only the file name `-'. */
6781 (!strcmp (cp->suffix, "-") && !strcmp (name, "-"))
6782 || (strlen (cp->suffix) < length
6783 /* See if the suffix matches the end of NAME. */
6784 && !strcmp (cp->suffix,
6785 name + length - strlen (cp->suffix))
6787 break;
6790 #if defined (OS2) ||defined (HAVE_DOS_BASED_FILE_SYSTEM)
6791 /* Look again, but case-insensitively this time. */
6792 if (cp < compilers)
6793 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
6795 if (/* The suffix `-' matches only the file name `-'. */
6796 (!strcmp (cp->suffix, "-") && !strcmp (name, "-"))
6797 || (strlen (cp->suffix) < length
6798 /* See if the suffix matches the end of NAME. */
6799 && ((!strcmp (cp->suffix,
6800 name + length - strlen (cp->suffix))
6801 || !strpbrk (cp->suffix, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"))
6802 && !strcasecmp (cp->suffix,
6803 name + length - strlen (cp->suffix)))
6805 break;
6807 #endif
6809 if (cp >= compilers)
6811 if (cp->spec[0] != '@')
6812 /* A non-alias entry: return it. */
6813 return cp;
6815 /* An alias entry maps a suffix to a language.
6816 Search for the language; pass 0 for NAME and LENGTH
6817 to avoid infinite recursion if language not found. */
6818 return lookup_compiler (NULL, 0, cp->spec + 1);
6820 return 0;
6823 static char *
6824 save_string (const char *s, int len)
6826 char *result = XNEWVEC (char, len + 1);
6828 memcpy (result, s, len);
6829 result[len] = 0;
6830 return result;
6833 void
6834 pfatal_with_name (const char *name)
6836 perror_with_name (name);
6837 delete_temp_files ();
6838 exit (1);
6841 static void
6842 perror_with_name (const char *name)
6844 error ("%s: %s", name, xstrerror (errno));
6847 /* Output an error message and exit. */
6849 void
6850 fancy_abort (const char *file, int line, const char *func)
6852 fatal_ice ("internal gcc abort in %s, at %s:%d", func, file, line);
6855 /* Output an error message and exit. */
6857 void
6858 fatal_ice (const char *cmsgid, ...)
6860 va_list ap;
6862 va_start (ap, cmsgid);
6864 fprintf (stderr, "%s: ", programname);
6865 vfprintf (stderr, _(cmsgid), ap);
6866 va_end (ap);
6867 fprintf (stderr, "\n");
6868 delete_temp_files ();
6869 exit (pass_exit_codes ? ICE_EXIT_CODE : 1);
6872 void
6873 fatal (const char *cmsgid, ...)
6875 va_list ap;
6877 va_start (ap, cmsgid);
6879 fprintf (stderr, "%s: ", programname);
6880 vfprintf (stderr, _(cmsgid), ap);
6881 va_end (ap);
6882 fprintf (stderr, "\n");
6883 delete_temp_files ();
6884 exit (1);
6887 /* The argument is actually c-format, not gcc-internal-format,
6888 but because functions with identical names are used through
6889 the rest of the compiler with gcc-internal-format, we just
6890 need to hope all users of these functions use the common
6891 subset between c-format and gcc-internal-format. */
6893 void
6894 error (const char *gmsgid, ...)
6896 va_list ap;
6898 va_start (ap, gmsgid);
6899 fprintf (stderr, "%s: ", programname);
6900 vfprintf (stderr, _(gmsgid), ap);
6901 va_end (ap);
6903 fprintf (stderr, "\n");
6906 static void
6907 notice (const char *cmsgid, ...)
6909 va_list ap;
6911 va_start (ap, cmsgid);
6912 vfprintf (stderr, _(cmsgid), ap);
6913 va_end (ap);
6916 static inline void
6917 validate_switches_from_spec (const char *spec)
6919 const char *p = spec;
6920 char c;
6921 while ((c = *p++))
6922 if (c == '%' && (*p == '{' || *p == '<' || (*p == 'W' && *++p == '{')))
6923 /* We have a switch spec. */
6924 p = validate_switches (p + 1);
6927 static void
6928 validate_all_switches (void)
6930 struct compiler *comp;
6931 struct spec_list *spec;
6933 for (comp = compilers; comp->spec; comp++)
6934 validate_switches_from_spec (comp->spec);
6936 /* Look through the linked list of specs read from the specs file. */
6937 for (spec = specs; spec; spec = spec->next)
6938 validate_switches_from_spec (*spec->ptr_spec);
6940 validate_switches_from_spec (link_command_spec);
6943 /* Look at the switch-name that comes after START
6944 and mark as valid all supplied switches that match it. */
6946 static const char *
6947 validate_switches (const char *start)
6949 const char *p = start;
6950 const char *atom;
6951 size_t len;
6952 int i;
6953 bool suffix = false;
6954 bool starred = false;
6956 #define SKIP_WHITE() do { while (*p == ' ' || *p == '\t') p++; } while (0)
6958 next_member:
6959 SKIP_WHITE ();
6961 if (*p == '!')
6962 p++;
6964 SKIP_WHITE ();
6965 if (*p == '.' || *p == ',')
6966 suffix = true, p++;
6968 atom = p;
6969 while (ISIDNUM (*p) || *p == '-' || *p == '+' || *p == '='
6970 || *p == ',' || *p == '.' || *p == '@')
6971 p++;
6972 len = p - atom;
6974 if (*p == '*')
6975 starred = true, p++;
6977 SKIP_WHITE ();
6979 if (!suffix)
6981 /* Mark all matching switches as valid. */
6982 for (i = 0; i < n_switches; i++)
6983 if (!strncmp (switches[i].part1, atom, len)
6984 && (starred || switches[i].part1[len] == 0))
6985 switches[i].validated = 1;
6988 if (*p) p++;
6989 if (*p && (p[-1] == '|' || p[-1] == '&'))
6990 goto next_member;
6992 if (*p && p[-1] == ':')
6994 while (*p && *p != ';' && *p != '}')
6996 if (*p == '%')
6998 p++;
6999 if (*p == '{' || *p == '<')
7000 p = validate_switches (p+1);
7001 else if (p[0] == 'W' && p[1] == '{')
7002 p = validate_switches (p+2);
7004 else
7005 p++;
7008 if (*p) p++;
7009 if (*p && p[-1] == ';')
7010 goto next_member;
7013 return p;
7014 #undef SKIP_WHITE
7017 struct mdswitchstr
7019 const char *str;
7020 int len;
7023 static struct mdswitchstr *mdswitches;
7024 static int n_mdswitches;
7026 /* Check whether a particular argument was used. The first time we
7027 canonicalize the switches to keep only the ones we care about. */
7029 static int
7030 used_arg (const char *p, int len)
7032 struct mswitchstr
7034 const char *str;
7035 const char *replace;
7036 int len;
7037 int rep_len;
7040 static struct mswitchstr *mswitches;
7041 static int n_mswitches;
7042 int i, j;
7044 if (!mswitches)
7046 struct mswitchstr *matches;
7047 const char *q;
7048 int cnt = 0;
7050 /* Break multilib_matches into the component strings of string
7051 and replacement string. */
7052 for (q = multilib_matches; *q != '\0'; q++)
7053 if (*q == ';')
7054 cnt++;
7056 matches = alloca ((sizeof (struct mswitchstr)) * cnt);
7057 i = 0;
7058 q = multilib_matches;
7059 while (*q != '\0')
7061 matches[i].str = q;
7062 while (*q != ' ')
7064 if (*q == '\0')
7066 invalid_matches:
7067 fatal ("multilib spec '%s' is invalid", multilib_matches);
7069 q++;
7071 matches[i].len = q - matches[i].str;
7073 matches[i].replace = ++q;
7074 while (*q != ';' && *q != '\0')
7076 if (*q == ' ')
7077 goto invalid_matches;
7078 q++;
7080 matches[i].rep_len = q - matches[i].replace;
7081 i++;
7082 if (*q == ';')
7083 q++;
7086 /* Now build a list of the replacement string for switches that we care
7087 about. Make sure we allocate at least one entry. This prevents
7088 xmalloc from calling fatal, and prevents us from re-executing this
7089 block of code. */
7090 mswitches
7091 = XNEWVEC (struct mswitchstr, n_mdswitches + (n_switches ? n_switches : 1));
7092 for (i = 0; i < n_switches; i++)
7093 if (switches[i].live_cond != SWITCH_IGNORE)
7095 int xlen = strlen (switches[i].part1);
7096 for (j = 0; j < cnt; j++)
7097 if (xlen == matches[j].len
7098 && ! strncmp (switches[i].part1, matches[j].str, xlen))
7100 mswitches[n_mswitches].str = matches[j].replace;
7101 mswitches[n_mswitches].len = matches[j].rep_len;
7102 mswitches[n_mswitches].replace = (char *) 0;
7103 mswitches[n_mswitches].rep_len = 0;
7104 n_mswitches++;
7105 break;
7109 /* Add MULTILIB_DEFAULTS switches too, as long as they were not present
7110 on the command line nor any options mutually incompatible with
7111 them. */
7112 for (i = 0; i < n_mdswitches; i++)
7114 const char *r;
7116 for (q = multilib_options; *q != '\0'; q++)
7118 while (*q == ' ')
7119 q++;
7121 r = q;
7122 while (strncmp (q, mdswitches[i].str, mdswitches[i].len) != 0
7123 || strchr (" /", q[mdswitches[i].len]) == NULL)
7125 while (*q != ' ' && *q != '/' && *q != '\0')
7126 q++;
7127 if (*q != '/')
7128 break;
7129 q++;
7132 if (*q != ' ' && *q != '\0')
7134 while (*r != ' ' && *r != '\0')
7136 q = r;
7137 while (*q != ' ' && *q != '/' && *q != '\0')
7138 q++;
7140 if (used_arg (r, q - r))
7141 break;
7143 if (*q != '/')
7145 mswitches[n_mswitches].str = mdswitches[i].str;
7146 mswitches[n_mswitches].len = mdswitches[i].len;
7147 mswitches[n_mswitches].replace = (char *) 0;
7148 mswitches[n_mswitches].rep_len = 0;
7149 n_mswitches++;
7150 break;
7153 r = q + 1;
7155 break;
7161 for (i = 0; i < n_mswitches; i++)
7162 if (len == mswitches[i].len && ! strncmp (p, mswitches[i].str, len))
7163 return 1;
7165 return 0;
7168 static int
7169 default_arg (const char *p, int len)
7171 int i;
7173 for (i = 0; i < n_mdswitches; i++)
7174 if (len == mdswitches[i].len && ! strncmp (p, mdswitches[i].str, len))
7175 return 1;
7177 return 0;
7180 /* Work out the subdirectory to use based on the options. The format of
7181 multilib_select is a list of elements. Each element is a subdirectory
7182 name followed by a list of options followed by a semicolon. The format
7183 of multilib_exclusions is the same, but without the preceding
7184 directory. First gcc will check the exclusions, if none of the options
7185 beginning with an exclamation point are present, and all of the other
7186 options are present, then we will ignore this completely. Passing
7187 that, gcc will consider each multilib_select in turn using the same
7188 rules for matching the options. If a match is found, that subdirectory
7189 will be used. */
7191 static void
7192 set_multilib_dir (void)
7194 const char *p;
7195 unsigned int this_path_len;
7196 const char *this_path, *this_arg;
7197 const char *start, *end;
7198 int not_arg;
7199 int ok, ndfltok, first;
7201 n_mdswitches = 0;
7202 start = multilib_defaults;
7203 while (*start == ' ' || *start == '\t')
7204 start++;
7205 while (*start != '\0')
7207 n_mdswitches++;
7208 while (*start != ' ' && *start != '\t' && *start != '\0')
7209 start++;
7210 while (*start == ' ' || *start == '\t')
7211 start++;
7214 if (n_mdswitches)
7216 int i = 0;
7218 mdswitches = XNEWVEC (struct mdswitchstr, n_mdswitches);
7219 for (start = multilib_defaults; *start != '\0'; start = end + 1)
7221 while (*start == ' ' || *start == '\t')
7222 start++;
7224 if (*start == '\0')
7225 break;
7227 for (end = start + 1;
7228 *end != ' ' && *end != '\t' && *end != '\0'; end++)
7231 obstack_grow (&multilib_obstack, start, end - start);
7232 obstack_1grow (&multilib_obstack, 0);
7233 mdswitches[i].str = XOBFINISH (&multilib_obstack, const char *);
7234 mdswitches[i++].len = end - start;
7236 if (*end == '\0')
7237 break;
7241 p = multilib_exclusions;
7242 while (*p != '\0')
7244 /* Ignore newlines. */
7245 if (*p == '\n')
7247 ++p;
7248 continue;
7251 /* Check the arguments. */
7252 ok = 1;
7253 while (*p != ';')
7255 if (*p == '\0')
7257 invalid_exclusions:
7258 fatal ("multilib exclusions '%s' is invalid",
7259 multilib_exclusions);
7262 if (! ok)
7264 ++p;
7265 continue;
7268 this_arg = p;
7269 while (*p != ' ' && *p != ';')
7271 if (*p == '\0')
7272 goto invalid_exclusions;
7273 ++p;
7276 if (*this_arg != '!')
7277 not_arg = 0;
7278 else
7280 not_arg = 1;
7281 ++this_arg;
7284 ok = used_arg (this_arg, p - this_arg);
7285 if (not_arg)
7286 ok = ! ok;
7288 if (*p == ' ')
7289 ++p;
7292 if (ok)
7293 return;
7295 ++p;
7298 first = 1;
7299 p = multilib_select;
7300 while (*p != '\0')
7302 /* Ignore newlines. */
7303 if (*p == '\n')
7305 ++p;
7306 continue;
7309 /* Get the initial path. */
7310 this_path = p;
7311 while (*p != ' ')
7313 if (*p == '\0')
7315 invalid_select:
7316 fatal ("multilib select '%s' is invalid",
7317 multilib_select);
7319 ++p;
7321 this_path_len = p - this_path;
7323 /* Check the arguments. */
7324 ok = 1;
7325 ndfltok = 1;
7326 ++p;
7327 while (*p != ';')
7329 if (*p == '\0')
7330 goto invalid_select;
7332 if (! ok)
7334 ++p;
7335 continue;
7338 this_arg = p;
7339 while (*p != ' ' && *p != ';')
7341 if (*p == '\0')
7342 goto invalid_select;
7343 ++p;
7346 if (*this_arg != '!')
7347 not_arg = 0;
7348 else
7350 not_arg = 1;
7351 ++this_arg;
7354 /* If this is a default argument, we can just ignore it.
7355 This is true even if this_arg begins with '!'. Beginning
7356 with '!' does not mean that this argument is necessarily
7357 inappropriate for this library: it merely means that
7358 there is a more specific library which uses this
7359 argument. If this argument is a default, we need not
7360 consider that more specific library. */
7361 ok = used_arg (this_arg, p - this_arg);
7362 if (not_arg)
7363 ok = ! ok;
7365 if (! ok)
7366 ndfltok = 0;
7368 if (default_arg (this_arg, p - this_arg))
7369 ok = 1;
7371 if (*p == ' ')
7372 ++p;
7375 if (ok && first)
7377 if (this_path_len != 1
7378 || this_path[0] != '.')
7380 char *new_multilib_dir = XNEWVEC (char, this_path_len + 1);
7381 char *q;
7383 strncpy (new_multilib_dir, this_path, this_path_len);
7384 new_multilib_dir[this_path_len] = '\0';
7385 q = strchr (new_multilib_dir, ':');
7386 if (q != NULL)
7387 *q = '\0';
7388 multilib_dir = new_multilib_dir;
7390 first = 0;
7393 if (ndfltok)
7395 const char *q = this_path, *end = this_path + this_path_len;
7397 while (q < end && *q != ':')
7398 q++;
7399 if (q < end)
7401 char *new_multilib_os_dir = XNEWVEC (char, end - q);
7402 memcpy (new_multilib_os_dir, q + 1, end - q - 1);
7403 new_multilib_os_dir[end - q - 1] = '\0';
7404 multilib_os_dir = new_multilib_os_dir;
7405 break;
7409 ++p;
7412 if (multilib_dir == NULL && multilib_os_dir != NULL
7413 && strcmp (multilib_os_dir, ".") == 0)
7415 free ((char *) multilib_os_dir);
7416 multilib_os_dir = NULL;
7418 else if (multilib_dir != NULL && multilib_os_dir == NULL)
7419 multilib_os_dir = multilib_dir;
7422 /* Print out the multiple library subdirectory selection
7423 information. This prints out a series of lines. Each line looks
7424 like SUBDIRECTORY;@OPTION@OPTION, with as many options as is
7425 required. Only the desired options are printed out, the negative
7426 matches. The options are print without a leading dash. There are
7427 no spaces to make it easy to use the information in the shell.
7428 Each subdirectory is printed only once. This assumes the ordering
7429 generated by the genmultilib script. Also, we leave out ones that match
7430 the exclusions. */
7432 static void
7433 print_multilib_info (void)
7435 const char *p = multilib_select;
7436 const char *last_path = 0, *this_path;
7437 int skip;
7438 unsigned int last_path_len = 0;
7440 while (*p != '\0')
7442 skip = 0;
7443 /* Ignore newlines. */
7444 if (*p == '\n')
7446 ++p;
7447 continue;
7450 /* Get the initial path. */
7451 this_path = p;
7452 while (*p != ' ')
7454 if (*p == '\0')
7456 invalid_select:
7457 fatal ("multilib select '%s' is invalid", multilib_select);
7460 ++p;
7463 /* When --disable-multilib was used but target defines
7464 MULTILIB_OSDIRNAMES, entries starting with .: are there just
7465 to find multilib_os_dir, so skip them from output. */
7466 if (this_path[0] == '.' && this_path[1] == ':')
7467 skip = 1;
7469 /* Check for matches with the multilib_exclusions. We don't bother
7470 with the '!' in either list. If any of the exclusion rules match
7471 all of its options with the select rule, we skip it. */
7473 const char *e = multilib_exclusions;
7474 const char *this_arg;
7476 while (*e != '\0')
7478 int m = 1;
7479 /* Ignore newlines. */
7480 if (*e == '\n')
7482 ++e;
7483 continue;
7486 /* Check the arguments. */
7487 while (*e != ';')
7489 const char *q;
7490 int mp = 0;
7492 if (*e == '\0')
7494 invalid_exclusion:
7495 fatal ("multilib exclusion '%s' is invalid",
7496 multilib_exclusions);
7499 if (! m)
7501 ++e;
7502 continue;
7505 this_arg = e;
7507 while (*e != ' ' && *e != ';')
7509 if (*e == '\0')
7510 goto invalid_exclusion;
7511 ++e;
7514 q = p + 1;
7515 while (*q != ';')
7517 const char *arg;
7518 int len = e - this_arg;
7520 if (*q == '\0')
7521 goto invalid_select;
7523 arg = q;
7525 while (*q != ' ' && *q != ';')
7527 if (*q == '\0')
7528 goto invalid_select;
7529 ++q;
7532 if (! strncmp (arg, this_arg,
7533 (len < q - arg) ? q - arg : len)
7534 || default_arg (this_arg, e - this_arg))
7536 mp = 1;
7537 break;
7540 if (*q == ' ')
7541 ++q;
7544 if (! mp)
7545 m = 0;
7547 if (*e == ' ')
7548 ++e;
7551 if (m)
7553 skip = 1;
7554 break;
7557 if (*e != '\0')
7558 ++e;
7562 if (! skip)
7564 /* If this is a duplicate, skip it. */
7565 skip = (last_path != 0
7566 && (unsigned int) (p - this_path) == last_path_len
7567 && ! strncmp (last_path, this_path, last_path_len));
7569 last_path = this_path;
7570 last_path_len = p - this_path;
7573 /* If this directory requires any default arguments, we can skip
7574 it. We will already have printed a directory identical to
7575 this one which does not require that default argument. */
7576 if (! skip)
7578 const char *q;
7580 q = p + 1;
7581 while (*q != ';')
7583 const char *arg;
7585 if (*q == '\0')
7586 goto invalid_select;
7588 if (*q == '!')
7589 arg = NULL;
7590 else
7591 arg = q;
7593 while (*q != ' ' && *q != ';')
7595 if (*q == '\0')
7596 goto invalid_select;
7597 ++q;
7600 if (arg != NULL
7601 && default_arg (arg, q - arg))
7603 skip = 1;
7604 break;
7607 if (*q == ' ')
7608 ++q;
7612 if (! skip)
7614 const char *p1;
7616 for (p1 = last_path; p1 < p && *p1 != ':'; p1++)
7617 putchar (*p1);
7618 putchar (';');
7621 ++p;
7622 while (*p != ';')
7624 int use_arg;
7626 if (*p == '\0')
7627 goto invalid_select;
7629 if (skip)
7631 ++p;
7632 continue;
7635 use_arg = *p != '!';
7637 if (use_arg)
7638 putchar ('@');
7640 while (*p != ' ' && *p != ';')
7642 if (*p == '\0')
7643 goto invalid_select;
7644 if (use_arg)
7645 putchar (*p);
7646 ++p;
7649 if (*p == ' ')
7650 ++p;
7653 if (! skip)
7655 /* If there are extra options, print them now. */
7656 if (multilib_extra && *multilib_extra)
7658 int print_at = TRUE;
7659 const char *q;
7661 for (q = multilib_extra; *q != '\0'; q++)
7663 if (*q == ' ')
7664 print_at = TRUE;
7665 else
7667 if (print_at)
7668 putchar ('@');
7669 putchar (*q);
7670 print_at = FALSE;
7675 putchar ('\n');
7678 ++p;
7682 /* getenv built-in spec function.
7684 Returns the value of the environment variable given by its first
7685 argument, concatenated with the second argument. If the
7686 environment variable is not defined, a fatal error is issued. */
7688 static const char *
7689 getenv_spec_function (int argc, const char **argv)
7691 char *value;
7693 if (argc != 2)
7694 return NULL;
7696 value = getenv (argv[0]);
7697 if (!value)
7698 fatal ("environment variable \"%s\" not defined", argv[0]);
7700 return concat (value, argv[1], NULL);
7703 /* if-exists built-in spec function.
7705 Checks to see if the file specified by the absolute pathname in
7706 ARGS exists. Returns that pathname if found.
7708 The usual use for this function is to check for a library file
7709 (whose name has been expanded with %s). */
7711 static const char *
7712 if_exists_spec_function (int argc, const char **argv)
7714 /* Must have only one argument. */
7715 if (argc == 1 && IS_ABSOLUTE_PATH (argv[0]) && ! access (argv[0], R_OK))
7716 return argv[0];
7718 return NULL;
7721 /* if-exists-else built-in spec function.
7723 This is like if-exists, but takes an additional argument which
7724 is returned if the first argument does not exist. */
7726 static const char *
7727 if_exists_else_spec_function (int argc, const char **argv)
7729 /* Must have exactly two arguments. */
7730 if (argc != 2)
7731 return NULL;
7733 if (IS_ABSOLUTE_PATH (argv[0]) && ! access (argv[0], R_OK))
7734 return argv[0];
7736 return argv[1];
7739 /* replace-outfile built-in spec function.
7741 This looks for the first argument in the outfiles array's name and
7742 replaces it with the second argument. */
7744 static const char *
7745 replace_outfile_spec_function (int argc, const char **argv)
7747 int i;
7748 /* Must have exactly two arguments. */
7749 if (argc != 2)
7750 abort ();
7752 for (i = 0; i < n_infiles; i++)
7754 if (outfiles[i] && !strcmp (outfiles[i], argv[0]))
7755 outfiles[i] = xstrdup (argv[1]);
7757 return NULL;
7760 /* Given two version numbers, compares the two numbers.
7761 A version number must match the regular expression
7762 ([1-9][0-9]*|0)(\.([1-9][0-9]*|0))*
7764 static int
7765 compare_version_strings (const char *v1, const char *v2)
7767 int rresult;
7768 regex_t r;
7770 if (regcomp (&r, "^([1-9][0-9]*|0)(\\.([1-9][0-9]*|0))*$",
7771 REG_EXTENDED | REG_NOSUB) != 0)
7772 abort ();
7773 rresult = regexec (&r, v1, 0, NULL, 0);
7774 if (rresult == REG_NOMATCH)
7775 fatal ("invalid version number `%s'", v1);
7776 else if (rresult != 0)
7777 abort ();
7778 rresult = regexec (&r, v2, 0, NULL, 0);
7779 if (rresult == REG_NOMATCH)
7780 fatal ("invalid version number `%s'", v2);
7781 else if (rresult != 0)
7782 abort ();
7784 return strverscmp (v1, v2);
7788 /* version_compare built-in spec function.
7790 This takes an argument of the following form:
7792 <comparison-op> <arg1> [<arg2>] <switch> <result>
7794 and produces "result" if the comparison evaluates to true,
7795 and nothing if it doesn't.
7797 The supported <comparison-op> values are:
7799 >= true if switch is a later (or same) version than arg1
7800 !> opposite of >=
7801 < true if switch is an earlier version than arg1
7802 !< opposite of <
7803 >< true if switch is arg1 or later, and earlier than arg2
7804 <> true if switch is earlier than arg1 or is arg2 or later
7806 If the switch is not present, the condition is false unless
7807 the first character of the <comparison-op> is '!'.
7809 For example,
7810 %:version-compare(>= 10.3 mmacosx-version-min= -lmx)
7811 adds -lmx if -mmacosx-version-min=10.3.9 was passed. */
7813 static const char *
7814 version_compare_spec_function (int argc, const char **argv)
7816 int comp1, comp2;
7817 size_t switch_len;
7818 const char *switch_value = NULL;
7819 int nargs = 1, i;
7820 bool result;
7822 if (argc < 3)
7823 fatal ("too few arguments to %%:version-compare");
7824 if (argv[0][0] == '\0')
7825 abort ();
7826 if ((argv[0][1] == '<' || argv[0][1] == '>') && argv[0][0] != '!')
7827 nargs = 2;
7828 if (argc != nargs + 3)
7829 fatal ("too many arguments to %%:version-compare");
7831 switch_len = strlen (argv[nargs + 1]);
7832 for (i = 0; i < n_switches; i++)
7833 if (!strncmp (switches[i].part1, argv[nargs + 1], switch_len)
7834 && check_live_switch (i, switch_len))
7835 switch_value = switches[i].part1 + switch_len;
7837 if (switch_value == NULL)
7838 comp1 = comp2 = -1;
7839 else
7841 comp1 = compare_version_strings (switch_value, argv[1]);
7842 if (nargs == 2)
7843 comp2 = compare_version_strings (switch_value, argv[2]);
7844 else
7845 comp2 = -1; /* This value unused. */
7848 switch (argv[0][0] << 8 | argv[0][1])
7850 case '>' << 8 | '=':
7851 result = comp1 >= 0;
7852 break;
7853 case '!' << 8 | '<':
7854 result = comp1 >= 0 || switch_value == NULL;
7855 break;
7856 case '<' << 8:
7857 result = comp1 < 0;
7858 break;
7859 case '!' << 8 | '>':
7860 result = comp1 < 0 || switch_value == NULL;
7861 break;
7862 case '>' << 8 | '<':
7863 result = comp1 >= 0 && comp2 < 0;
7864 break;
7865 case '<' << 8 | '>':
7866 result = comp1 < 0 || comp2 >= 0;
7867 break;
7869 default:
7870 fatal ("unknown operator '%s' in %%:version-compare", argv[0]);
7872 if (! result)
7873 return NULL;
7875 return argv[nargs + 2];
7878 /* %:include builtin spec function. This differs from %include in that it
7879 can be nested inside a spec, and thus be conditionalized. It takes
7880 one argument, the filename, and looks for it in the startfile path.
7881 The result is always NULL, i.e. an empty expansion. */
7883 static const char *
7884 include_spec_function (int argc, const char **argv)
7886 char *file;
7888 if (argc != 1)
7889 abort ();
7891 file = find_a_file (&startfile_prefixes, argv[0], R_OK, 0);
7892 read_specs (file ? file : argv[0], FALSE);
7894 return NULL;
7897 /* %:print-asm-header spec function. Print a banner to say that the
7898 following output is from the assembler. */
7900 static const char *
7901 print_asm_header_spec_function (int arg ATTRIBUTE_UNUSED,
7902 const char **argv ATTRIBUTE_UNUSED)
7904 printf (_("Assember options\n================\n\n"));
7905 printf (_("Use \"-Wa,OPTION\" to pass \"OPTION\" to the assembler.\n\n"));
7906 fflush (stdout);
7907 return NULL;