1 /* Compiler driver program that can handle many languages.
2 Copyright (C) 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 This paragraph is here to try to keep Sun CC from dying.
23 The number of chars here seems crucial!!!! */
25 /* This program is the user interface to the C compiler and possibly to
26 other compilers. It is used because compilation is a complicated procedure
27 which involves running several programs and passing temporary files between
28 them, forwarding the users switches to those programs selectively,
29 and deleting the temporary files at the end.
31 CC recognizes how to compile each input file by suffixes in the file names.
32 Once it knows which kind of compilation to perform, the procedure for
33 compilation is specified by a string called a "spec". */
35 /* A Short Introduction to Adding a Command-Line Option.
37 Before adding a command-line option, consider if it is really
38 necessary. Each additional command-line option adds complexity and
39 is difficult to remove in subsequent versions.
41 In the following, consider adding the command-line argument
44 1. Each command-line option is specified in the specs file. The
45 notation is described below in the comment entitled "The Specs
48 2. In this file, add an entry to "option_map" equating the long
49 `--' argument version and any shorter, single letter version. Read
50 the comments in the declaration of "struct option_map" for an
51 explanation. Do not omit the first `-'.
53 3. Look in the "specs" file to determine which program or option
54 list should be given the argument, e.g., "cc1_options". Add the
55 appropriate syntax for the shorter option version to the
56 corresponding "const char *" entry in this file. Omit the first
57 `-' from the option. For example, use `-bar', rather than `--bar'.
59 4. If the argument takes an argument, e.g., `--baz argument1',
60 modify either DEFAULT_SWITCH_TAKES_ARG or
61 DEFAULT_WORD_SWITCH_TAKES_ARG in this file. Omit the first `-'
64 5. Document the option in this file's display_help(). If the
65 option is passed to a subprogram, modify its corresponding
66 function, e.g., cppinit.c:print_help() or toplev.c:display_help(),
69 6. Compile and test. Make sure that your new specs file is being
70 read. For example, use a debugger to investigate the value of
71 "specs_file" in main(). */
75 #include "coretypes.h"
78 #if ! defined( SIGCHLD ) && defined( SIGCLD )
79 # define SIGCHLD SIGCLD
87 #ifdef HAVE_SYS_RESOURCE_H
88 #include <sys/resource.h>
90 #if defined (HAVE_DECL_GETRUSAGE) && !HAVE_DECL_GETRUSAGE
91 extern int getrusage
PARAMS ((int, struct rusage
*));
94 /* By default there is no special suffix for target executables. */
95 /* FIXME: when autoconf is fixed, remove the host check - dj */
96 #if defined(TARGET_EXECUTABLE_SUFFIX) && defined(HOST_EXECUTABLE_SUFFIX)
97 #define HAVE_TARGET_EXECUTABLE_SUFFIX
100 /* By default there is no special suffix for host executables. */
101 #ifdef HOST_EXECUTABLE_SUFFIX
102 #define HAVE_HOST_EXECUTABLE_SUFFIX
104 #define HOST_EXECUTABLE_SUFFIX ""
107 /* By default, the suffix for target object files is ".o". */
108 #ifdef TARGET_OBJECT_SUFFIX
109 #define HAVE_TARGET_OBJECT_SUFFIX
111 #define TARGET_OBJECT_SUFFIX ".o"
115 /* FIXME: the location independence code for VMS is hairier than this,
116 and hasn't been written. */
122 static const char dir_separator_str
[] = { DIR_SEPARATOR
, 0 };
124 /* Most every one is fine with LIBRARY_PATH. For some, it conflicts. */
125 #ifndef LIBRARY_PATH_ENV
126 #define LIBRARY_PATH_ENV "LIBRARY_PATH"
130 #define kill(p,s) raise(s)
133 /* If a stage of compilation returns an exit status >= 1,
134 compilation of that file ceases. */
136 #define MIN_FATAL_STATUS 1
138 /* Flag set by cppspec.c to 1. */
141 /* Flag saying to pass the greatest exit code returned by a sub-process
142 to the calling program. */
143 static int pass_exit_codes
;
145 /* Definition of string containing the arguments given to configure. */
146 #include "configargs.h"
148 /* Flag saying to print the directories gcc will search through looking for
149 programs, libraries, etc. */
151 static int print_search_dirs
;
153 /* Flag saying to print the full filename of this file
154 as found through our usual search mechanism. */
156 static const char *print_file_name
= NULL
;
158 /* As print_file_name, but search for executable file. */
160 static const char *print_prog_name
= NULL
;
162 /* Flag saying to print the relative path we'd use to
163 find libgcc.a given the current compiler flags. */
165 static int print_multi_directory
;
167 /* Flag saying to print the relative path we'd use to
168 find OS libraries given the current compiler flags. */
170 static int print_multi_os_directory
;
172 /* Flag saying to print the list of subdirectories and
173 compiler flags used to select them in a standard form. */
175 static int print_multi_lib
;
177 /* Flag saying to print the command line options understood by gcc and its
180 static int print_help_list
;
182 /* Flag indicating whether we should print the command and arguments */
184 static int verbose_flag
;
186 /* Flag indicating whether we should ONLY print the command and
187 arguments (like verbose_flag) without executing the command.
188 Displayed arguments are quoted so that the generated command
189 line is suitable for execution. This is intended for use in
190 shell scripts to capture the driver-generated command line. */
191 static int verbose_only_flag
;
193 /* Flag indicating to print target specific command line options. */
195 static int target_help_flag
;
197 /* Flag indicating whether we should report subprocess execution times
198 (if this is supported by the system - see pexecute.c). */
200 static int report_times
;
202 /* Nonzero means place this string before uses of /, so that include
203 and library files can be found in an alternate location. */
205 static const char *target_system_root
= TARGET_SYSTEM_ROOT
;
207 /* Nonzero means write "temp" files in source directory
208 and use the source file's name in them, and don't delete them. */
210 static int save_temps_flag
;
212 /* Nonzero means use pipes to communicate between subprocesses.
213 Overridden by either of the above two flags. */
215 static int use_pipes
;
217 /* The compiler version. */
219 static const char *compiler_version
;
221 /* The target version specified with -V */
223 static const char *const spec_version
= DEFAULT_TARGET_VERSION
;
225 /* The target machine specified with -b. */
227 static const char *spec_machine
= DEFAULT_TARGET_MACHINE
;
229 /* Nonzero if cross-compiling.
230 When -b is used, the value comes from the `specs' file. */
233 static const char *cross_compile
= "1";
235 static const char *cross_compile
= "0";
238 #ifdef MODIFY_TARGET_NAME
240 /* Information on how to alter the target name based on a command-line
241 switch. The only case we support now is simply appending or deleting a
242 string to or from the end of the first part of the configuration name. */
244 static const struct modify_target
246 const char *const sw
;
247 const enum add_del
{ADD
, DELETE
} add_del
;
248 const char *const str
;
250 modify_target
[] = MODIFY_TARGET_NAME
;
253 /* The number of errors that have occurred; the link phase will not be
254 run if this is nonzero. */
255 static int error_count
= 0;
257 /* Greatest exit code of sub-processes that has been encountered up to
259 static int greatest_status
= 1;
261 /* This is the obstack which we use to allocate many strings. */
263 static struct obstack obstack
;
265 /* This is the obstack to build an environment variable to pass to
266 collect2 that describes all of the relevant switches of what to
267 pass the compiler in building the list of pointers to constructors
270 static struct obstack collect_obstack
;
272 /* These structs are used to collect resource usage information for
274 #ifdef HAVE_GETRUSAGE
275 static struct rusage rus
, prus
;
278 /* Forward declaration for prototypes. */
281 static void init_spec
PARAMS ((void));
282 static void store_arg
PARAMS ((const char *, int, int));
283 static char *load_specs
PARAMS ((const char *));
284 static void read_specs
PARAMS ((const char *, int));
285 static void set_spec
PARAMS ((const char *, const char *));
286 static struct compiler
*lookup_compiler
PARAMS ((const char *, size_t, const char *));
287 static char *build_search_list
PARAMS ((struct path_prefix
*, const char *, int));
288 static void putenv_from_prefixes
PARAMS ((struct path_prefix
*, const char *));
289 static int access_check
PARAMS ((const char *, int));
290 static char *find_a_file
PARAMS ((struct path_prefix
*, const char *,
292 static void add_prefix
PARAMS ((struct path_prefix
*, const char *,
293 const char *, int, int, int *, int));
294 static void add_sysrooted_prefix
PARAMS ((struct path_prefix
*, const char *,
295 const char *, int, int, int *, int));
296 static void translate_options
PARAMS ((int *, const char *const **));
297 static char *skip_whitespace
PARAMS ((char *));
298 static void delete_if_ordinary
PARAMS ((const char *));
299 static void delete_temp_files
PARAMS ((void));
300 static void delete_failure_queue
PARAMS ((void));
301 static void clear_failure_queue
PARAMS ((void));
302 static int check_live_switch
PARAMS ((int, int));
303 static const char *handle_braces
PARAMS ((const char *));
304 static inline bool input_suffix_matches
PARAMS ((const char *,
306 static inline bool switch_matches
PARAMS ((const char *,
308 static inline void mark_matching_switches
PARAMS ((const char *,
310 static inline void process_marked_switches
PARAMS ((void));
311 static const char *process_brace_body
PARAMS ((const char *, const char *,
312 const char *, int, int));
313 static const struct spec_function
*lookup_spec_function
PARAMS ((const char *));
314 static const char *eval_spec_function
PARAMS ((const char *, const char *));
315 static const char *handle_spec_function
PARAMS ((const char *));
316 static char *save_string
PARAMS ((const char *, int));
317 static void set_collect_gcc_options
PARAMS ((void));
318 static int do_spec_1
PARAMS ((const char *, int, const char *));
319 static int do_spec_2
PARAMS ((const char *));
320 static void do_self_spec
PARAMS ((const char *));
321 static const char *find_file
PARAMS ((const char *));
322 static int is_directory
PARAMS ((const char *, const char *, int));
323 static const char *validate_switches
PARAMS ((const char *));
324 static void validate_all_switches
PARAMS ((void));
325 static inline void validate_switches_from_spec
PARAMS ((const char *));
326 static void give_switch
PARAMS ((int, int));
327 static int used_arg
PARAMS ((const char *, int));
328 static int default_arg
PARAMS ((const char *, int));
329 static void set_multilib_dir
PARAMS ((void));
330 static void print_multilib_info
PARAMS ((void));
331 static void perror_with_name
PARAMS ((const char *));
332 static void pfatal_pexecute
PARAMS ((const char *, const char *))
334 static void notice
PARAMS ((const char *, ...))
336 static void display_help
PARAMS ((void));
337 static void add_preprocessor_option
PARAMS ((const char *, int));
338 static void add_assembler_option
PARAMS ((const char *, int));
339 static void add_linker_option
PARAMS ((const char *, int));
340 static void process_command
PARAMS ((int, const char *const *));
341 static int execute
PARAMS ((void));
342 static void alloc_args
PARAMS ((void));
343 static void clear_args
PARAMS ((void));
344 static void fatal_error
PARAMS ((int));
345 #ifdef ENABLE_SHARED_LIBGCC
346 static void init_gcc_specs
PARAMS ((struct obstack
*,
347 const char *, const char *,
350 #if defined(HAVE_TARGET_OBJECT_SUFFIX) || defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
351 static const char *convert_filename
PARAMS ((const char *, int, int));
354 static const char *if_exists_spec_function
PARAMS ((int, const char **));
355 static const char *if_exists_else_spec_function
PARAMS ((int, const char **));
357 /* The Specs Language
359 Specs are strings containing lines, each of which (if not blank)
360 is made up of a program name, and arguments separated by spaces.
361 The program name must be exact and start from root, since no path
362 is searched and it is unreliable to depend on the current working directory.
363 Redirection of input or output is not supported; the subprograms must
364 accept filenames saying what files to read and write.
366 In addition, the specs can contain %-sequences to substitute variable text
367 or for conditional text. Here is a table of all defined %-sequences.
368 Note that spaces are not generated automatically around the results of
369 expanding these sequences; therefore, you can concatenate them together
370 or with constant text in a single argument.
372 %% substitute one % into the program name or argument.
373 %i substitute the name of the input file being processed.
374 %b substitute the basename of the input file being processed.
375 This is the substring up to (and not including) the last period
376 and not including the directory.
377 %B same as %b, but include the file suffix (text after the last period).
379 substitute a file name that has suffix SUFFIX and is chosen
380 once per compilation, and mark the argument a la %d. To reduce
381 exposure to denial-of-service attacks, the file name is now
382 chosen in a way that is hard to predict even when previously
383 chosen file names are known. For example, `%g.s ... %g.o ... %g.s'
384 might turn into `ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s'. SUFFIX matches
385 the regexp "[.A-Za-z]*%O"; "%O" is treated exactly as if it
386 had been pre-processed. Previously, %g was simply substituted
387 with a file name chosen once per compilation, without regard
388 to any appended suffix (which was therefore treated just like
389 ordinary text), making such attacks more likely to succeed.
391 like %g, but if -pipe is in effect, expands simply to "-".
393 like %g, but if -pipe is in effect, expands to nothing. (We have both
394 %| and %m to accommodate differences between system assemblers; see
395 the AS_NEEDS_DASH_FOR_PIPED_INPUT target macro.)
397 like %g, but generates a new temporary file name even if %uSUFFIX
400 substitutes the last file name generated with %uSUFFIX, generating a
401 new one if there is no such last file name. In the absence of any
402 %uSUFFIX, this is just like %gSUFFIX, except they don't share
403 the same suffix "space", so `%g.s ... %U.s ... %g.s ... %U.s'
404 would involve the generation of two distinct file names, one
405 for each `%g.s' and another for each `%U.s'. Previously, %U was
406 simply substituted with a file name chosen for the previous %u,
407 without regard to any appended suffix.
409 substitutes the name of the HOST_BIT_BUCKET, if any, and if it is
410 writable, and if save-temps is off; otherwise, substitute the name
411 of a temporary file, just like %u. This temporary file is not
412 meant for communication between processes, but rather as a junk
415 substitutes .SUFFIX for the suffixes of a matched switch's args when
416 it is subsequently output with %*. SUFFIX is terminated by the next
418 %d marks the argument containing or following the %d as a
419 temporary file name, so that that file will be deleted if CC exits
420 successfully. Unlike %g, this contributes no text to the argument.
421 %w marks the argument containing or following the %w as the
422 "output file" of this compilation. This puts the argument
423 into the sequence of arguments that %o will substitute later.
425 like %{...} but mark last argument supplied within
426 as a file to be deleted on failure.
427 %o substitutes the names of all the output files, with spaces
428 automatically placed around them. You should write spaces
429 around the %o as well or the results are undefined.
430 %o is for use in the specs for running the linker.
431 Input files whose names have no recognized suffix are not compiled
432 at all, but they are included among the output files, so they will
434 %O substitutes the suffix for object files. Note that this is
435 handled specially when it immediately follows %g, %u, or %U
436 (with or without a suffix argument) because of the need for
437 those to form complete file names. The handling is such that
438 %O is treated exactly as if it had already been substituted,
439 except that %g, %u, and %U do not currently support additional
440 SUFFIX characters following %O as they would following, for
442 %p substitutes the standard macro predefinitions for the
443 current target machine. Use this when running cpp.
444 %P like %p, but puts `__' before and after the name of each macro.
445 (Except macros that already have __.)
447 %I Substitute a -iprefix option made from GCC_EXEC_PREFIX.
448 %s current argument is the name of a library or startup file of some sort.
449 Search for that file in a standard list of directories
450 and substitute the full name found.
451 %eSTR Print STR as an error message. STR is terminated by a newline.
452 Use this when inconsistent options are detected.
453 %nSTR Print STR as a notice. STR is terminated by a newline.
454 %x{OPTION} Accumulate an option for %X.
455 %X Output the accumulated linker options specified by compilations.
456 %Y Output the accumulated assembler options specified by compilations.
457 %Z Output the accumulated preprocessor options specified by compilations.
458 %v1 Substitute the major version number of GCC.
459 (For version 2.5.3, this is 2.)
460 %v2 Substitute the minor version number of GCC.
461 (For version 2.5.3, this is 5.)
462 %v3 Substitute the patch level number of GCC.
463 (For version 2.5.3, this is 3.)
464 %a process ASM_SPEC as a spec.
465 This allows config.h to specify part of the spec for running as.
466 %A process ASM_FINAL_SPEC as a spec. A capital A is actually
467 used here. This can be used to run a post-processor after the
468 assembler has done its job.
469 %D Dump out a -L option for each directory in startfile_prefixes.
470 If multilib_dir is set, extra entries are generated with it affixed.
471 %l process LINK_SPEC as a spec.
472 %L process LIB_SPEC as a spec.
473 %G process LIBGCC_SPEC as a spec.
474 %M output multilib_dir with directory separators replaced with "_";
475 if multilib_dir is not set or is ".", output "".
476 %S process STARTFILE_SPEC as a spec. A capital S is actually used here.
477 %E process ENDFILE_SPEC as a spec. A capital E is actually used here.
478 %C process CPP_SPEC as a spec.
479 %1 process CC1_SPEC as a spec.
480 %2 process CC1PLUS_SPEC as a spec.
481 %* substitute the variable part of a matched option. (See below.)
482 Note that each comma in the substituted string is replaced by
484 %<S remove all occurrences of -S from the command line.
485 Note - this command is position dependent. % commands in the
486 spec string before this one will see -S, % commands in the
487 spec string after this one will not.
488 %<S* remove all occurrences of all switches beginning with -S from the
491 Call the named function FUNCTION, passing it ARGS. ARGS is
492 first processed as a nested spec string, then split into an
493 argument vector in the usual fashion. The function returns
494 a string which is processed as if it had appeared literally
495 as part of the current spec.
496 %{S} substitutes the -S switch, if that switch was given to CC.
497 If that switch was not specified, this substitutes nothing.
498 Here S is a metasyntactic variable.
499 %{S*} substitutes all the switches specified to CC whose names start
500 with -S. This is used for -o, -I, etc; switches that take
501 arguments. CC considers `-o foo' as being one switch whose
502 name starts with `o'. %{o*} would substitute this text,
503 including the space; thus, two arguments would be generated.
504 %{S*&T*} likewise, but preserve order of S and T options (the order
505 of S and T in the spec is not significant). Can be any number
506 of ampersand-separated variables; for each the wild card is
507 optional. Useful for CPP as %{D*&U*&A*}.
509 %{S:X} substitutes X, if the -S switch was given to CC.
510 %{!S:X} substitutes X, if the -S switch was NOT given to CC.
511 %{S*:X} substitutes X if one or more switches whose names start
512 with -S was given to CC. Normally X is substituted only
513 once, no matter how many such switches appeared. However,
514 if %* appears somewhere in X, then X will be substituted
515 once for each matching switch, with the %* replaced by the
516 part of that switch that matched the '*'.
517 %{.S:X} substitutes X, if processing a file with suffix S.
518 %{!.S:X} substitutes X, if NOT processing a file with suffix S.
520 %{S|T:X} substitutes X if either -S or -T was given to CC. This may be
521 combined with !, ., and * as above binding stronger than the OR.
522 If %* appears in X, all of the alternatives must be starred, and
523 only the first matching alternative is substituted.
524 %{S:X; if S was given to CC, substitutes X;
525 T:Y; else if T was given to CC, substitutes Y;
526 :D} else substitutes D. There can be as many clauses as you need.
527 This may be combined with ., !, |, and * as above.
529 %(Spec) processes a specification defined in a specs file as *Spec:
530 %[Spec] as above, but put __ around -D arguments
532 The conditional text X in a %{S:X} or similar construct may contain
533 other nested % constructs or spaces, or even newlines. They are
534 processed as usual, as described above. Trailing white space in X is
535 ignored. White space may also appear anywhere on the left side of the
536 colon in these constructs, except between . or * and the corresponding
539 The -O, -f, -m, and -W switches are handled specifically in these
540 constructs. If another value of -O or the negated form of a -f, -m, or
541 -W switch is found later in the command line, the earlier switch
542 value is ignored, except with {S*} where S is just one letter; this
543 passes all matching options.
545 The character | at the beginning of the predicate text is used to indicate
546 that a command should be piped to the following command, but only if -pipe
549 Note that it is built into CC which switches take arguments and which
550 do not. You might think it would be useful to generalize this to
551 allow each compiler's spec to say which switches take arguments. But
552 this cannot be done in a consistent fashion. CC cannot even decide
553 which input files have been specified without knowing which switches
554 take arguments, and it must know which input files to compile in order
555 to tell which compilers to run.
557 CC also knows implicitly that arguments starting in `-l' are to be
558 treated as compiler output files, and passed to the linker in their
559 proper position among the other output files. */
561 /* Define the macros used for specs %a, %l, %L, %S, %C, %1. */
563 /* config.h can define ASM_SPEC to provide extra args to the assembler
564 or extra switch-translations. */
569 /* config.h can define ASM_FINAL_SPEC to run a post processor after
570 the assembler has run. */
571 #ifndef ASM_FINAL_SPEC
572 #define ASM_FINAL_SPEC ""
575 /* config.h can define CPP_SPEC to provide extra args to the C preprocessor
576 or extra switch-translations. */
581 /* config.h can define CC1_SPEC to provide extra args to cc1 and cc1plus
582 or extra switch-translations. */
587 /* config.h can define CC1PLUS_SPEC to provide extra args to cc1plus
588 or extra switch-translations. */
590 #define CC1PLUS_SPEC ""
593 /* config.h can define LINK_SPEC to provide extra args to the linker
594 or extra switch-translations. */
599 /* config.h can define LIB_SPEC to override the default libraries. */
601 #define LIB_SPEC "%{!shared:%{g*:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}}"
604 /* config.h can define LIBGCC_SPEC to override how and when libgcc.a is
607 #if defined(LINK_LIBGCC_SPECIAL) || defined(LINK_LIBGCC_SPECIAL_1)
608 /* Have gcc do the search for libgcc.a. */
609 #define LIBGCC_SPEC "libgcc.a%s"
611 #define LIBGCC_SPEC "-lgcc"
615 /* config.h can define STARTFILE_SPEC to override the default crt0 files. */
616 #ifndef STARTFILE_SPEC
617 #define STARTFILE_SPEC \
618 "%{!shared:%{pg:gcrt0%O%s}%{!pg:%{p:mcrt0%O%s}%{!p:crt0%O%s}}}"
621 /* config.h can define SWITCHES_NEED_SPACES to control which options
622 require spaces between the option and the argument. */
623 #ifndef SWITCHES_NEED_SPACES
624 #define SWITCHES_NEED_SPACES ""
627 /* config.h can define ENDFILE_SPEC to override the default crtn files. */
629 #define ENDFILE_SPEC ""
633 #define LINKER_NAME "collect2"
636 /* Define ASM_DEBUG_SPEC to be a spec suitable for translating '-g'
638 #ifndef ASM_DEBUG_SPEC
639 # if defined(DBX_DEBUGGING_INFO) && defined(DWARF2_DEBUGGING_INFO) \
640 && defined(HAVE_AS_GDWARF2_DEBUG_FLAG) && defined(HAVE_AS_GSTABS_DEBUG_FLAG)
641 # define ASM_DEBUG_SPEC \
642 (PREFERRED_DEBUGGING_TYPE == DBX_DEBUG \
643 ? "%{gdwarf-2*:--gdwarf2}%{!gdwarf-2*:%{g*:--gstabs}}" \
644 : "%{gstabs*:--gstabs}%{!gstabs*:%{g*:--gdwarf2}}")
646 # if defined(DBX_DEBUGGING_INFO) && defined(HAVE_AS_GSTABS_DEBUG_FLAG)
647 # define ASM_DEBUG_SPEC "%{g*:--gstabs}"
649 # if defined(DWARF2_DEBUGGING_INFO) && defined(HAVE_AS_GDWARF2_DEBUG_FLAG)
650 # define ASM_DEBUG_SPEC "%{g*:--gdwarf2}"
654 #ifndef ASM_DEBUG_SPEC
655 # define ASM_DEBUG_SPEC ""
658 /* Here is the spec for running the linker, after compiling all files. */
660 /* This is overridable by the target in case they need to specify the
661 -lgcc and -lc order specially, yet not require them to override all
662 of LINK_COMMAND_SPEC. */
663 #ifndef LINK_GCC_C_SEQUENCE_SPEC
664 #define LINK_GCC_C_SEQUENCE_SPEC "%G %L %G"
667 /* -u* was put back because both BSD and SysV seem to support it. */
668 /* %{static:} simply prevents an error message if the target machine
669 doesn't handle -static. */
670 /* We want %{T*} after %{L*} and %D so that it can be used to specify linker
671 scripts which exist in user specified directories, or in standard
673 #ifndef LINK_COMMAND_SPEC
674 #define LINK_COMMAND_SPEC "\
675 %{!fsyntax-only:%{!c:%{!M:%{!MM:%{!E:%{!S:\
676 %(linker) %l %X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} %{r} %{s} %{t}\
677 %{u*} %{x} %{z} %{Z} %{!A:%{!nostdlib:%{!nostartfiles:%S}}}\
678 %{static:} %{L*} %(link_libgcc) %o %{!nostdlib:%{!nodefaultlibs:%(link_gcc_c_sequence)}}\
679 %{!A:%{!nostdlib:%{!nostartfiles:%E}}} %{T*} }}}}}}"
682 #ifndef LINK_LIBGCC_SPEC
683 # ifdef LINK_LIBGCC_SPECIAL
684 /* Don't generate -L options for startfile prefix list. */
685 # define LINK_LIBGCC_SPEC ""
687 /* Do generate them. */
688 # define LINK_LIBGCC_SPEC "%D"
692 #ifndef STARTFILE_PREFIX_SPEC
693 # define STARTFILE_PREFIX_SPEC ""
696 static const char *asm_debug
;
697 static const char *cpp_spec
= CPP_SPEC
;
698 static const char *cpp_predefines
= CPP_PREDEFINES
;
699 static const char *cc1_spec
= CC1_SPEC
;
700 static const char *cc1plus_spec
= CC1PLUS_SPEC
;
701 static const char *link_gcc_c_sequence_spec
= LINK_GCC_C_SEQUENCE_SPEC
;
702 static const char *asm_spec
= ASM_SPEC
;
703 static const char *asm_final_spec
= ASM_FINAL_SPEC
;
704 static const char *link_spec
= LINK_SPEC
;
705 static const char *lib_spec
= LIB_SPEC
;
706 static const char *libgcc_spec
= LIBGCC_SPEC
;
707 static const char *endfile_spec
= ENDFILE_SPEC
;
708 static const char *startfile_spec
= STARTFILE_SPEC
;
709 static const char *switches_need_spaces
= SWITCHES_NEED_SPACES
;
710 static const char *linker_name_spec
= LINKER_NAME
;
711 static const char *link_command_spec
= LINK_COMMAND_SPEC
;
712 static const char *link_libgcc_spec
= LINK_LIBGCC_SPEC
;
713 static const char *startfile_prefix_spec
= STARTFILE_PREFIX_SPEC
;
715 /* Standard options to cpp, cc1, and as, to reduce duplication in specs.
716 There should be no need to override these in target dependent files,
717 but we need to copy them to the specs file so that newer versions
718 of the GCC driver can correctly drive older tool chains with the
719 appropriate -B options. */
721 /* When cpplib handles traditional preprocessing, get rid of this, and
722 call cc1 (or cc1obj in objc/lang-specs.h) from the main specs so
723 that we default the front end language better. */
724 static const char *trad_capable_cpp
=
725 "cc1 -E %{traditional|ftraditional|traditional-cpp:-traditional-cpp}";
727 /* We don't wrap .d files in %W{} since a missing .d file, and
728 therefore no dependency entry, confuses make into thinking a .o
729 file that happens to exist is up-to-date. */
730 static const char *cpp_unique_options
=
731 "%{C:%{!E:%eGNU C does not support -C without using -E}}\
732 %{CC:%{!E:%eGNU C does not support -CC without using -E}}\
733 %{!Q:-quiet} %{nostdinc*} %{C} %{CC} %{v} %{I*} %{P} %I\
734 %{MD:-MD %{!o:%b.d}%{o*:%.d%*}}\
735 %{MMD:-MMD %{!o:%b.d}%{o*:%.d%*}}\
736 %{M} %{MM} %{MF*} %{MG} %{MP} %{MQ*} %{MT*}\
737 %{!E:%{!M:%{!MM:%{MD|MMD:%{o*:-MQ %*}}}}}\
738 %{!no-gcc:-D__GNUC__=%v1 -D__GNUC_MINOR__=%v2 -D__GNUC_PATCHLEVEL__=%v3}\
739 %{!undef:%{!ansi:%{!std=*:%p}%{std=gnu*:%p}} %P} %{trigraphs}\
740 %{remap} %{g3:-dD} %{H} %C %{D*&U*&A*} %{i*} %Z %i\
743 /* This contains cpp options which are common with cc1_options and are passed
744 only when preprocessing only to avoid duplication. We pass the cc1 spec
745 options to the preprocessor so that it the cc1 spec may manipulate
746 options used to set target flags. Those special target flags settings may
747 in turn cause preprocessor symbols to be defined specially. */
748 static const char *cpp_options
=
749 "%(cpp_unique_options) %1 %{m*} %{std*} %{ansi} %{W*&pedantic*} %{w} %{f*}\
752 /* This contains cpp options which are not passed when the preprocessor
753 output will be used by another program. */
754 static const char *cpp_debug_options
= "%{d*}";
756 /* NB: This is shared amongst all front-ends. */
757 static const char *cc1_options
=
758 "%{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
759 %1 %{!Q:-quiet} -dumpbase %B %{d*} %{m*} %{a*}\
760 -auxbase%{c|S:%{o*:-strip %*}%{!o*: %b}}%{!c:%{!S: %b}}\
761 %{g*} %{O*} %{W*&pedantic*} %{w} %{std*} %{ansi}\
762 %{v:-version} %{pg:-p} %{p} %{f*} %{undef}\
763 %{Qn:-fno-ident} %{--help:--help}\
764 %{--target-help:--target-help}\
765 %{!fsyntax-only:%{S:%W{o*}%{!o*:-o %b.s}}}\
766 %{fsyntax-only:-o %j} %{-param*}";
768 static const char *asm_options
=
769 "%a %Y %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}";
771 static const char *invoke_as
=
772 #ifdef AS_NEEDS_DASH_FOR_PIPED_INPUT
773 "%{!S:-o %|.s |\n as %(asm_options) %|.s %A }";
775 "%{!S:-o %|.s |\n as %(asm_options) %m.s %A }";
778 /* Some compilers have limits on line lengths, and the multilib_select
779 and/or multilib_matches strings can be very long, so we build them at
781 static struct obstack multilib_obstack
;
782 static const char *multilib_select
;
783 static const char *multilib_matches
;
784 static const char *multilib_defaults
;
785 static const char *multilib_exclusions
;
786 #include "multilib.h"
788 /* Check whether a particular argument is a default argument. */
790 #ifndef MULTILIB_DEFAULTS
791 #define MULTILIB_DEFAULTS { "" }
794 static const char *const multilib_defaults_raw
[] = MULTILIB_DEFAULTS
;
796 #ifndef DRIVER_SELF_SPECS
797 #define DRIVER_SELF_SPECS ""
800 static const char *const driver_self_specs
[] = { DRIVER_SELF_SPECS
};
804 struct user_specs
*next
;
805 const char *filename
;
808 static struct user_specs
*user_specs_head
, *user_specs_tail
;
810 /* This defines which switch letters take arguments. */
812 #define DEFAULT_SWITCH_TAKES_ARG(CHAR) \
813 ((CHAR) == 'D' || (CHAR) == 'U' || (CHAR) == 'o' \
814 || (CHAR) == 'e' || (CHAR) == 'T' || (CHAR) == 'u' \
815 || (CHAR) == 'I' || (CHAR) == 'm' || (CHAR) == 'x' \
816 || (CHAR) == 'L' || (CHAR) == 'A' || (CHAR) == 'B' || (CHAR) == 'b')
818 #ifndef SWITCH_TAKES_ARG
819 #define SWITCH_TAKES_ARG(CHAR) DEFAULT_SWITCH_TAKES_ARG(CHAR)
822 /* This defines which multi-letter switches take arguments. */
824 #define DEFAULT_WORD_SWITCH_TAKES_ARG(STR) \
825 (!strcmp (STR, "Tdata") || !strcmp (STR, "Ttext") \
826 || !strcmp (STR, "Tbss") || !strcmp (STR, "include") \
827 || !strcmp (STR, "imacros") || !strcmp (STR, "aux-info") \
828 || !strcmp (STR, "idirafter") || !strcmp (STR, "iprefix") \
829 || !strcmp (STR, "iwithprefix") || !strcmp (STR, "iwithprefixbefore") \
830 || !strcmp (STR, "isystem") || !strcmp (STR, "-param") \
831 || !strcmp (STR, "specs") \
832 || !strcmp (STR, "MF") || !strcmp (STR, "MT") || !strcmp (STR, "MQ"))
834 #ifndef WORD_SWITCH_TAKES_ARG
835 #define WORD_SWITCH_TAKES_ARG(STR) DEFAULT_WORD_SWITCH_TAKES_ARG (STR)
838 #ifdef HAVE_TARGET_EXECUTABLE_SUFFIX
839 /* This defines which switches stop a full compilation. */
840 #define DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR) \
841 ((CHAR) == 'c' || (CHAR) == 'S')
843 #ifndef SWITCH_CURTAILS_COMPILATION
844 #define SWITCH_CURTAILS_COMPILATION(CHAR) \
845 DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR)
849 /* Record the mapping from file suffixes for compilation specs. */
853 const char *suffix
; /* Use this compiler for input files
854 whose names end in this suffix. */
856 const char *spec
; /* To use this compiler, run this spec. */
858 const char *cpp_spec
; /* If non-NULL, substitute this spec
859 for `%C', rather than the usual
863 /* Pointer to a vector of `struct compiler' that gives the spec for
864 compiling a file, based on its suffix.
865 A file that does not end in any of these suffixes will be passed
866 unchanged to the loader and nothing else will be done to it.
868 An entry containing two 0s is used to terminate the vector.
870 If multiple entries match a file, the last matching one is used. */
872 static struct compiler
*compilers
;
874 /* Number of entries in `compilers', not counting the null terminator. */
876 static int n_compilers
;
878 /* The default list of file name suffixes and their compilation specs. */
880 static const struct compiler default_compilers
[] =
882 /* Add lists of suffixes of known languages here. If those languages
883 were not present when we built the driver, we will hit these copies
884 and be given a more meaningful error than "file not used since
885 linking is not done". */
886 {".m", "#Objective-C", 0}, {".mi", "#Objective-C", 0},
887 {".cc", "#C++", 0}, {".cxx", "#C++", 0}, {".cpp", "#C++", 0},
888 {".cp", "#C++", 0}, {".c++", "#C++", 0}, {".C", "#C++", 0},
889 {".CPP", "#C++", 0}, {".ii", "#C++", 0},
890 {".ads", "#Ada", 0}, {".adb", "#Ada", 0},
891 {".f", "#Fortran", 0}, {".for", "#Fortran", 0}, {".fpp", "#Fortran", 0},
892 {".F", "#Fortran", 0}, {".FOR", "#Fortran", 0}, {".FPP", "#Fortran", 0},
893 {".r", "#Ratfor", 0},
894 {".p", "#Pascal", 0}, {".pas", "#Pascal", 0},
895 {".java", "#Java", 0}, {".class", "#Java", 0},
896 {".zip", "#Java", 0}, {".jar", "#Java", 0},
897 /* Next come the entries for C. */
900 /* cc1 has an integrated ISO C preprocessor. We should invoke the
901 external preprocessor if -save-temps is given. */
902 "%{E|M|MM:%(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)}\
904 %{traditional|ftraditional:\
905 %eGNU C no longer supports -traditional without -E}\
906 %{save-temps|traditional-cpp:%(trad_capable_cpp) \
907 %(cpp_options) %b.i \n\
908 cc1 -fpreprocessed %b.i %(cc1_options)}\
909 %{!save-temps:%{!traditional-cpp:\
910 cc1 %(cpp_unique_options) %(cc1_options)}}\
911 %{!fsyntax-only:%(invoke_as)}}}}", 0},
913 "%{!E:%e-E required when input is from standard input}\
914 %(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)", 0},
915 {".h", "@c-header", 0},
917 "%{!E:%ecompilation of header file requested} \
918 %(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)",
920 {".i", "@cpp-output", 0},
922 "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0},
923 {".s", "@assembler", 0},
925 "%{!M:%{!MM:%{!E:%{!S:as %(asm_debug) %(asm_options) %i %A }}}}", 0},
926 {".S", "@assembler-with-cpp", 0},
927 {"@assembler-with-cpp",
928 #ifdef AS_NEEDS_DASH_FOR_PIPED_INPUT
929 "%(trad_capable_cpp) -lang-asm %(cpp_options)\
930 %{E|M|MM:%(cpp_debug_options)}\
931 %{!M:%{!MM:%{!E:%{!S:-o %|.s |\n\
932 as %(asm_debug) %(asm_options) %|.s %A }}}}"
934 "%(trad_capable_cpp) -lang-asm %(cpp_options)\
935 %{E|M|MM:%(cpp_debug_options)}\
936 %{!M:%{!MM:%{!E:%{!S:-o %|.s |\n\
937 as %(asm_debug) %(asm_options) %m.s %A }}}}"
942 /* Mark end of table */
946 /* Number of elements in default_compilers, not counting the terminator. */
948 static const int n_default_compilers
= ARRAY_SIZE (default_compilers
) - 1;
950 /* A vector of options to give to the linker.
951 These options are accumulated by %x,
952 and substituted into the linker command with %X. */
953 static int n_linker_options
;
954 static char **linker_options
;
956 /* A vector of options to give to the assembler.
957 These options are accumulated by -Wa,
958 and substituted into the assembler command with %Y. */
959 static int n_assembler_options
;
960 static char **assembler_options
;
962 /* A vector of options to give to the preprocessor.
963 These options are accumulated by -Wp,
964 and substituted into the preprocessor command with %Z. */
965 static int n_preprocessor_options
;
966 static char **preprocessor_options
;
968 /* Define how to map long options into short ones. */
970 /* This structure describes one mapping. */
973 /* The long option's name. */
974 const char *const name
;
975 /* The equivalent short option. */
976 const char *const equivalent
;
977 /* Argument info. A string of flag chars; NULL equals no options.
978 a => argument required.
979 o => argument optional.
980 j => join argument to equivalent, making one word.
981 * => require other text after NAME as an argument. */
982 const char *const arg_info
;
985 /* This is the table of mappings. Mappings are tried sequentially
986 for each option encountered; the first one that matches, wins. */
988 static const struct option_map option_map
[] =
990 {"--all-warnings", "-Wall", 0},
991 {"--ansi", "-ansi", 0},
992 {"--assemble", "-S", 0},
993 {"--assert", "-A", "a"},
994 {"--classpath", "-fclasspath=", "aj"},
995 {"--bootclasspath", "-fbootclasspath=", "aj"},
996 {"--CLASSPATH", "-fclasspath=", "aj"},
997 {"--comments", "-C", 0},
998 {"--comments-in-macros", "-CC", 0},
999 {"--compile", "-c", 0},
1000 {"--debug", "-g", "oj"},
1001 {"--define-macro", "-D", "aj"},
1002 {"--dependencies", "-M", 0},
1003 {"--dump", "-d", "a"},
1004 {"--dumpbase", "-dumpbase", "a"},
1005 {"--entry", "-e", 0},
1006 {"--extra-warnings", "-W", 0},
1007 {"--for-assembler", "-Wa", "a"},
1008 {"--for-linker", "-Xlinker", "a"},
1009 {"--force-link", "-u", "a"},
1010 {"--imacros", "-imacros", "a"},
1011 {"--include", "-include", "a"},
1012 {"--include-barrier", "-I-", 0},
1013 {"--include-directory", "-I", "aj"},
1014 {"--include-directory-after", "-idirafter", "a"},
1015 {"--include-prefix", "-iprefix", "a"},
1016 {"--include-with-prefix", "-iwithprefix", "a"},
1017 {"--include-with-prefix-before", "-iwithprefixbefore", "a"},
1018 {"--include-with-prefix-after", "-iwithprefix", "a"},
1019 {"--language", "-x", "a"},
1020 {"--library-directory", "-L", "a"},
1021 {"--machine", "-m", "aj"},
1022 {"--machine-", "-m", "*j"},
1023 {"--no-line-commands", "-P", 0},
1024 {"--no-precompiled-includes", "-noprecomp", 0},
1025 {"--no-standard-includes", "-nostdinc", 0},
1026 {"--no-standard-libraries", "-nostdlib", 0},
1027 {"--no-warnings", "-w", 0},
1028 {"--optimize", "-O", "oj"},
1029 {"--output", "-o", "a"},
1030 {"--output-class-directory", "-foutput-class-dir=", "ja"},
1031 {"--param", "--param", "a"},
1032 {"--pedantic", "-pedantic", 0},
1033 {"--pedantic-errors", "-pedantic-errors", 0},
1034 {"--pipe", "-pipe", 0},
1035 {"--prefix", "-B", "a"},
1036 {"--preprocess", "-E", 0},
1037 {"--print-search-dirs", "-print-search-dirs", 0},
1038 {"--print-file-name", "-print-file-name=", "aj"},
1039 {"--print-libgcc-file-name", "-print-libgcc-file-name", 0},
1040 {"--print-missing-file-dependencies", "-MG", 0},
1041 {"--print-multi-lib", "-print-multi-lib", 0},
1042 {"--print-multi-directory", "-print-multi-directory", 0},
1043 {"--print-multi-os-directory", "-print-multi-os-directory", 0},
1044 {"--print-prog-name", "-print-prog-name=", "aj"},
1045 {"--profile", "-p", 0},
1046 {"--profile-blocks", "-a", 0},
1047 {"--quiet", "-q", 0},
1048 {"--resource", "-fcompile-resource=", "aj"},
1049 {"--save-temps", "-save-temps", 0},
1050 {"--shared", "-shared", 0},
1051 {"--silent", "-q", 0},
1052 {"--specs", "-specs=", "aj"},
1053 {"--static", "-static", 0},
1054 {"--std", "-std=", "aj"},
1055 {"--symbolic", "-symbolic", 0},
1056 {"--target", "-b", "a"},
1057 {"--time", "-time", 0},
1058 {"--trace-includes", "-H", 0},
1059 {"--traditional", "-traditional", 0},
1060 {"--traditional-cpp", "-traditional-cpp", 0},
1061 {"--trigraphs", "-trigraphs", 0},
1062 {"--undefine-macro", "-U", "aj"},
1063 {"--use-version", "-V", "a"},
1064 {"--user-dependencies", "-MM", 0},
1065 {"--verbose", "-v", 0},
1066 {"--warn-", "-W", "*j"},
1067 {"--write-dependencies", "-MD", 0},
1068 {"--write-user-dependencies", "-MMD", 0},
1073 #ifdef TARGET_OPTION_TRANSLATE_TABLE
1074 static const struct {
1075 const char *const option_found
;
1076 const char *const replacements
;
1077 } target_option_translations
[] =
1079 TARGET_OPTION_TRANSLATE_TABLE
,
1084 /* Translate the options described by *ARGCP and *ARGVP.
1085 Make a new vector and store it back in *ARGVP,
1086 and store its length in *ARGVC. */
1089 translate_options (argcp
, argvp
)
1091 const char *const **argvp
;
1095 const char *const *argv
= *argvp
;
1096 int newvsize
= (argc
+ 2) * 2 * sizeof (const char *);
1098 (const char **) xmalloc (newvsize
);
1102 newv
[newindex
++] = argv
[i
++];
1106 #ifdef TARGET_OPTION_TRANSLATE_TABLE
1110 target_option_translations
[tott_idx
].option_found
;
1113 if (strcmp (target_option_translations
[tott_idx
].option_found
,
1120 for (sp
= target_option_translations
[tott_idx
].replacements
;
1127 newvsize
+= spaces
* sizeof (const char *);
1128 newv
= (const char **) xrealloc (newv
, newvsize
);
1130 sp
= target_option_translations
[tott_idx
].replacements
;
1139 newv
[newindex
++] = np
;
1140 while (*np
!= ' ' && *np
)
1151 if (target_option_translations
[tott_idx
].option_found
)
1155 /* Translate -- options. */
1156 if (argv
[i
][0] == '-' && argv
[i
][1] == '-')
1159 /* Find a mapping that applies to this option. */
1160 for (j
= 0; j
< ARRAY_SIZE (option_map
); j
++)
1162 size_t optlen
= strlen (option_map
[j
].name
);
1163 size_t arglen
= strlen (argv
[i
]);
1164 size_t complen
= arglen
> optlen
? optlen
: arglen
;
1165 const char *arginfo
= option_map
[j
].arg_info
;
1170 if (!strncmp (argv
[i
], option_map
[j
].name
, complen
))
1172 const char *arg
= 0;
1174 if (arglen
< optlen
)
1177 for (k
= j
+ 1; k
< ARRAY_SIZE (option_map
); k
++)
1178 if (strlen (option_map
[k
].name
) >= arglen
1179 && !strncmp (argv
[i
], option_map
[k
].name
, arglen
))
1181 error ("ambiguous abbreviation %s", argv
[i
]);
1185 if (k
!= ARRAY_SIZE (option_map
))
1189 if (arglen
> optlen
)
1191 /* If the option has an argument, accept that. */
1192 if (argv
[i
][optlen
] == '=')
1193 arg
= argv
[i
] + optlen
+ 1;
1195 /* If this mapping requires extra text at end of name,
1196 accept that as "argument". */
1197 else if (strchr (arginfo
, '*') != 0)
1198 arg
= argv
[i
] + optlen
;
1200 /* Otherwise, extra text at end means mismatch.
1201 Try other mappings. */
1206 else if (strchr (arginfo
, '*') != 0)
1208 error ("incomplete `%s' option", option_map
[j
].name
);
1212 /* Handle arguments. */
1213 if (strchr (arginfo
, 'a') != 0)
1219 error ("missing argument to `%s' option",
1220 option_map
[j
].name
);
1227 else if (strchr (arginfo
, '*') != 0)
1229 else if (strchr (arginfo
, 'o') == 0)
1232 error ("extraneous argument to `%s' option",
1233 option_map
[j
].name
);
1237 /* Store the translation as one argv elt or as two. */
1238 if (arg
!= 0 && strchr (arginfo
, 'j') != 0)
1239 newv
[newindex
++] = concat (option_map
[j
].equivalent
, arg
,
1243 newv
[newindex
++] = option_map
[j
].equivalent
;
1244 newv
[newindex
++] = arg
;
1247 newv
[newindex
++] = option_map
[j
].equivalent
;
1255 /* Handle old-fashioned options--just copy them through,
1256 with their arguments. */
1257 else if (argv
[i
][0] == '-')
1259 const char *p
= argv
[i
] + 1;
1263 if (SWITCH_TAKES_ARG (c
) > (p
[1] != 0))
1264 nskip
+= SWITCH_TAKES_ARG (c
) - (p
[1] != 0);
1265 else if (WORD_SWITCH_TAKES_ARG (p
))
1266 nskip
+= WORD_SWITCH_TAKES_ARG (p
);
1267 else if ((c
== 'B' || c
== 'b' || c
== 'x')
1270 else if (! strcmp (p
, "Xlinker"))
1272 else if (! strcmp (p
, "Xpreprocessor"))
1274 else if (! strcmp (p
, "Xassembler"))
1277 /* Watch out for an option at the end of the command line that
1278 is missing arguments, and avoid skipping past the end of the
1280 if (nskip
+ i
> argc
)
1285 newv
[newindex
++] = argv
[i
++];
1290 /* Ordinary operands, or +e options. */
1291 newv
[newindex
++] = argv
[i
++];
1306 /* A fully-blank line is a delimiter in the SPEC file and shouldn't
1307 be considered whitespace. */
1308 if (p
[0] == '\n' && p
[1] == '\n' && p
[2] == '\n')
1310 else if (*p
== '\n' || *p
== ' ' || *p
== '\t')
1324 /* Structures to keep track of prefixes to try when looking for files. */
1328 const char *prefix
; /* String to prepend to the path. */
1329 struct prefix_list
*next
; /* Next in linked list. */
1330 int require_machine_suffix
; /* Don't use without machine_suffix. */
1331 /* 2 means try both machine_suffix and just_machine_suffix. */
1332 int *used_flag_ptr
; /* 1 if a file was found with this prefix. */
1333 int priority
; /* Sort key - priority within list. */
1334 int os_multilib
; /* 1 if OS multilib scheme should be used,
1335 0 for GCC multilib scheme. */
1340 struct prefix_list
*plist
; /* List of prefixes to try */
1341 int max_len
; /* Max length of a prefix in PLIST */
1342 const char *name
; /* Name of this list (used in config stuff) */
1345 /* List of prefixes to try when looking for executables. */
1347 static struct path_prefix exec_prefixes
= { 0, 0, "exec" };
1349 /* List of prefixes to try when looking for startup (crt0) files. */
1351 static struct path_prefix startfile_prefixes
= { 0, 0, "startfile" };
1353 /* List of prefixes to try when looking for include files. */
1355 static struct path_prefix include_prefixes
= { 0, 0, "include" };
1357 /* Suffix to attach to directories searched for commands.
1358 This looks like `MACHINE/VERSION/'. */
1360 static const char *machine_suffix
= 0;
1362 /* Suffix to attach to directories searched for commands.
1363 This is just `MACHINE/'. */
1365 static const char *just_machine_suffix
= 0;
1367 /* Adjusted value of GCC_EXEC_PREFIX envvar. */
1369 static const char *gcc_exec_prefix
;
1371 /* Default prefixes to attach to command names. */
1373 #ifdef CROSS_COMPILE /* Don't use these prefixes for a cross compiler. */
1374 #undef MD_EXEC_PREFIX
1375 #undef MD_STARTFILE_PREFIX
1376 #undef MD_STARTFILE_PREFIX_1
1379 /* If no prefixes defined, use the null string, which will disable them. */
1380 #ifndef MD_EXEC_PREFIX
1381 #define MD_EXEC_PREFIX ""
1383 #ifndef MD_STARTFILE_PREFIX
1384 #define MD_STARTFILE_PREFIX ""
1386 #ifndef MD_STARTFILE_PREFIX_1
1387 #define MD_STARTFILE_PREFIX_1 ""
1390 /* Supply defaults for the standard prefixes. */
1392 #ifndef STANDARD_EXEC_PREFIX
1393 #define STANDARD_EXEC_PREFIX "/usr/local/lib/gcc-lib/"
1395 #ifndef STANDARD_STARTFILE_PREFIX
1396 #define STANDARD_STARTFILE_PREFIX "/usr/local/lib/"
1398 #ifndef TOOLDIR_BASE_PREFIX
1399 #define TOOLDIR_BASE_PREFIX "/usr/local/"
1401 #ifndef STANDARD_BINDIR_PREFIX
1402 #define STANDARD_BINDIR_PREFIX "/usr/local/bin"
1405 static const char *const standard_exec_prefix
= STANDARD_EXEC_PREFIX
;
1406 static const char *const standard_exec_prefix_1
= "/usr/lib/gcc/";
1407 static const char *md_exec_prefix
= MD_EXEC_PREFIX
;
1409 static const char *md_startfile_prefix
= MD_STARTFILE_PREFIX
;
1410 static const char *md_startfile_prefix_1
= MD_STARTFILE_PREFIX_1
;
1411 static const char *const standard_startfile_prefix
= STANDARD_STARTFILE_PREFIX
;
1412 static const char *const standard_startfile_prefix_1
= "/lib/";
1413 static const char *const standard_startfile_prefix_2
= "/usr/lib/";
1415 static const char *const tooldir_base_prefix
= TOOLDIR_BASE_PREFIX
;
1416 static const char *tooldir_prefix
;
1418 static const char *const standard_bindir_prefix
= STANDARD_BINDIR_PREFIX
;
1420 /* Subdirectory to use for locating libraries. Set by
1421 set_multilib_dir based on the compilation options. */
1423 static const char *multilib_dir
;
1425 /* Subdirectory to use for locating libraries in OS conventions. Set by
1426 set_multilib_dir based on the compilation options. */
1428 static const char *multilib_os_dir
;
1430 /* Structure to keep track of the specs that have been defined so far.
1431 These are accessed using %(specname) or %[specname] in a compiler
1436 /* The following 2 fields must be first */
1437 /* to allow EXTRA_SPECS to be initialized */
1438 const char *name
; /* name of the spec. */
1439 const char *ptr
; /* available ptr if no static pointer */
1441 /* The following fields are not initialized */
1442 /* by EXTRA_SPECS */
1443 const char **ptr_spec
; /* pointer to the spec itself. */
1444 struct spec_list
*next
; /* Next spec in linked list. */
1445 int name_len
; /* length of the name */
1446 int alloc_p
; /* whether string was allocated */
1449 #define INIT_STATIC_SPEC(NAME,PTR) \
1450 { NAME, NULL, PTR, (struct spec_list *) 0, sizeof (NAME) - 1, 0 }
1452 /* List of statically defined specs. */
1453 static struct spec_list static_specs
[] =
1455 INIT_STATIC_SPEC ("asm", &asm_spec
),
1456 INIT_STATIC_SPEC ("asm_debug", &asm_debug
),
1457 INIT_STATIC_SPEC ("asm_final", &asm_final_spec
),
1458 INIT_STATIC_SPEC ("asm_options", &asm_options
),
1459 INIT_STATIC_SPEC ("invoke_as", &invoke_as
),
1460 INIT_STATIC_SPEC ("cpp", &cpp_spec
),
1461 INIT_STATIC_SPEC ("cpp_options", &cpp_options
),
1462 INIT_STATIC_SPEC ("cpp_debug_options", &cpp_debug_options
),
1463 INIT_STATIC_SPEC ("cpp_unique_options", &cpp_unique_options
),
1464 INIT_STATIC_SPEC ("trad_capable_cpp", &trad_capable_cpp
),
1465 INIT_STATIC_SPEC ("cc1", &cc1_spec
),
1466 INIT_STATIC_SPEC ("cc1_options", &cc1_options
),
1467 INIT_STATIC_SPEC ("cc1plus", &cc1plus_spec
),
1468 INIT_STATIC_SPEC ("link_gcc_c_sequence", &link_gcc_c_sequence_spec
),
1469 INIT_STATIC_SPEC ("endfile", &endfile_spec
),
1470 INIT_STATIC_SPEC ("link", &link_spec
),
1471 INIT_STATIC_SPEC ("lib", &lib_spec
),
1472 INIT_STATIC_SPEC ("libgcc", &libgcc_spec
),
1473 INIT_STATIC_SPEC ("startfile", &startfile_spec
),
1474 INIT_STATIC_SPEC ("switches_need_spaces", &switches_need_spaces
),
1475 INIT_STATIC_SPEC ("predefines", &cpp_predefines
),
1476 INIT_STATIC_SPEC ("cross_compile", &cross_compile
),
1477 INIT_STATIC_SPEC ("version", &compiler_version
),
1478 INIT_STATIC_SPEC ("multilib", &multilib_select
),
1479 INIT_STATIC_SPEC ("multilib_defaults", &multilib_defaults
),
1480 INIT_STATIC_SPEC ("multilib_extra", &multilib_extra
),
1481 INIT_STATIC_SPEC ("multilib_matches", &multilib_matches
),
1482 INIT_STATIC_SPEC ("multilib_exclusions", &multilib_exclusions
),
1483 INIT_STATIC_SPEC ("multilib_options", &multilib_options
),
1484 INIT_STATIC_SPEC ("linker", &linker_name_spec
),
1485 INIT_STATIC_SPEC ("link_libgcc", &link_libgcc_spec
),
1486 INIT_STATIC_SPEC ("md_exec_prefix", &md_exec_prefix
),
1487 INIT_STATIC_SPEC ("md_startfile_prefix", &md_startfile_prefix
),
1488 INIT_STATIC_SPEC ("md_startfile_prefix_1", &md_startfile_prefix_1
),
1489 INIT_STATIC_SPEC ("startfile_prefix_spec", &startfile_prefix_spec
),
1492 #ifdef EXTRA_SPECS /* additional specs needed */
1493 /* Structure to keep track of just the first two args of a spec_list.
1494 That is all that the EXTRA_SPECS macro gives us. */
1497 const char *const name
;
1498 const char *const ptr
;
1501 static const struct spec_list_1 extra_specs_1
[] = { EXTRA_SPECS
};
1502 static struct spec_list
*extra_specs
= (struct spec_list
*) 0;
1505 /* List of dynamically allocates specs that have been defined so far. */
1507 static struct spec_list
*specs
= (struct spec_list
*) 0;
1509 /* List of static spec functions. */
1511 static const struct spec_function static_spec_functions
[] =
1513 { "if-exists", if_exists_spec_function
},
1514 { "if-exists-else", if_exists_else_spec_function
},
1518 static int processing_spec_function
;
1520 /* Add appropriate libgcc specs to OBSTACK, taking into account
1521 various permutations of -shared-libgcc, -shared, and such. */
1523 #ifdef ENABLE_SHARED_LIBGCC
1525 init_gcc_specs (obstack
, shared_name
, static_name
, eh_name
)
1526 struct obstack
*obstack
;
1527 const char *shared_name
;
1528 const char *static_name
;
1529 const char *eh_name
;
1533 buf
= concat ("%{static|static-libgcc:", static_name
, " ", eh_name
,
1534 "}%{!static:%{!static-libgcc:",
1535 "%{!shared:%{!shared-libgcc:", static_name
, " ",
1536 eh_name
, "}%{shared-libgcc:", shared_name
, " ",
1537 static_name
, "}}%{shared:",
1539 "%{shared-libgcc:", shared_name
,
1540 "}%{!shared-libgcc:", static_name
, "}",
1546 obstack_grow (obstack
, buf
, strlen (buf
));
1549 #endif /* ENABLE_SHARED_LIBGCC */
1551 /* Initialize the specs lookup routines. */
1556 struct spec_list
*next
= (struct spec_list
*) 0;
1557 struct spec_list
*sl
= (struct spec_list
*) 0;
1561 return; /* Already initialized. */
1564 notice ("Using built-in specs.\n");
1567 extra_specs
= (struct spec_list
*)
1568 xcalloc (sizeof (struct spec_list
), ARRAY_SIZE (extra_specs_1
));
1570 for (i
= ARRAY_SIZE (extra_specs_1
) - 1; i
>= 0; i
--)
1572 sl
= &extra_specs
[i
];
1573 sl
->name
= extra_specs_1
[i
].name
;
1574 sl
->ptr
= extra_specs_1
[i
].ptr
;
1576 sl
->name_len
= strlen (sl
->name
);
1577 sl
->ptr_spec
= &sl
->ptr
;
1582 /* Initialize here, not in definition. The IRIX 6 O32 cc sometimes chokes
1583 on ?: in file-scope variable initializations. */
1584 asm_debug
= ASM_DEBUG_SPEC
;
1586 for (i
= ARRAY_SIZE (static_specs
) - 1; i
>= 0; i
--)
1588 sl
= &static_specs
[i
];
1593 #ifdef ENABLE_SHARED_LIBGCC
1594 /* ??? If neither -shared-libgcc nor --static-libgcc was
1595 seen, then we should be making an educated guess. Some proposed
1596 heuristics for ELF include:
1598 (1) If "-Wl,--export-dynamic", then it's a fair bet that the
1599 program will be doing dynamic loading, which will likely
1600 need the shared libgcc.
1602 (2) If "-ldl", then it's also a fair bet that we're doing
1605 (3) For each ET_DYN we're linking against (either through -lfoo
1606 or /some/path/foo.so), check to see whether it or one of
1607 its dependencies depends on a shared libgcc.
1611 If the runtime is fixed to look for program headers instead
1612 of calling __register_frame_info at all, for each object,
1613 use the shared libgcc if any EH symbol referenced.
1615 If crtstuff is fixed to not invoke __register_frame_info
1616 automatically, for each object, use the shared libgcc if
1617 any non-empty unwind section found.
1619 Doing any of this probably requires invoking an external program to
1620 do the actual object file scanning. */
1622 const char *p
= libgcc_spec
;
1625 /* Transform the extant libgcc_spec into one that uses the shared libgcc
1626 when given the proper command line arguments. */
1629 if (in_sep
&& *p
== '-' && strncmp (p
, "-lgcc", 5) == 0)
1631 init_gcc_specs (&obstack
,
1632 #ifdef NO_SHARED_LIBGCC_MULTILIB
1637 #ifdef USE_LIBUNWIND_EXCEPTIONS
1646 else if (in_sep
&& *p
== 'l' && strncmp (p
, "libgcc.a%s", 10) == 0)
1648 /* Ug. We don't know shared library extensions. Hope that
1649 systems that use this form don't do shared libraries. */
1650 init_gcc_specs (&obstack
,
1651 #ifdef NO_SHARED_LIBGCC_MULTILIB
1664 obstack_1grow (&obstack
, *p
);
1665 in_sep
= (*p
== ' ');
1670 obstack_1grow (&obstack
, '\0');
1671 libgcc_spec
= obstack_finish (&obstack
);
1674 #ifdef USE_AS_TRADITIONAL_FORMAT
1675 /* Prepend "--traditional-format" to whatever asm_spec we had before. */
1677 static const char tf
[] = "--traditional-format ";
1678 obstack_grow (&obstack
, tf
, sizeof(tf
) - 1);
1679 obstack_grow0 (&obstack
, asm_spec
, strlen (asm_spec
));
1680 asm_spec
= obstack_finish (&obstack
);
1684 /* Prepend LINK_EH_SPEC to whatever link_spec we had before. */
1685 obstack_grow (&obstack
, LINK_EH_SPEC
, sizeof(LINK_EH_SPEC
) - 1);
1686 obstack_grow0 (&obstack
, link_spec
, strlen (link_spec
));
1687 link_spec
= obstack_finish (&obstack
);
1693 /* Change the value of spec NAME to SPEC. If SPEC is empty, then the spec is
1694 removed; If the spec starts with a + then SPEC is added to the end of the
1698 set_spec (name
, spec
)
1702 struct spec_list
*sl
;
1703 const char *old_spec
;
1704 int name_len
= strlen (name
);
1707 /* If this is the first call, initialize the statically allocated specs. */
1710 struct spec_list
*next
= (struct spec_list
*) 0;
1711 for (i
= ARRAY_SIZE (static_specs
) - 1; i
>= 0; i
--)
1713 sl
= &static_specs
[i
];
1720 /* See if the spec already exists. */
1721 for (sl
= specs
; sl
; sl
= sl
->next
)
1722 if (name_len
== sl
->name_len
&& !strcmp (sl
->name
, name
))
1727 /* Not found - make it. */
1728 sl
= (struct spec_list
*) xmalloc (sizeof (struct spec_list
));
1729 sl
->name
= xstrdup (name
);
1730 sl
->name_len
= name_len
;
1731 sl
->ptr_spec
= &sl
->ptr
;
1733 *(sl
->ptr_spec
) = "";
1738 old_spec
= *(sl
->ptr_spec
);
1739 *(sl
->ptr_spec
) = ((spec
[0] == '+' && ISSPACE ((unsigned char)spec
[1]))
1740 ? concat (old_spec
, spec
+ 1, NULL
)
1745 notice ("Setting spec %s to '%s'\n\n", name
, *(sl
->ptr_spec
));
1748 /* Free the old spec. */
1749 if (old_spec
&& sl
->alloc_p
)
1750 free ((PTR
) old_spec
);
1755 /* Accumulate a command (program name and args), and run it. */
1757 /* Vector of pointers to arguments in the current line of specifications. */
1759 static const char **argbuf
;
1761 /* Number of elements allocated in argbuf. */
1763 static int argbuf_length
;
1765 /* Number of elements in argbuf currently in use (containing args). */
1767 static int argbuf_index
;
1769 /* This is the list of suffixes and codes (%g/%u/%U/%j) and the associated
1770 temp file. If the HOST_BIT_BUCKET is used for %j, no entry is made for
1773 static struct temp_name
{
1774 const char *suffix
; /* suffix associated with the code. */
1775 int length
; /* strlen (suffix). */
1776 int unique
; /* Indicates whether %g or %u/%U was used. */
1777 const char *filename
; /* associated filename. */
1778 int filename_length
; /* strlen (filename). */
1779 struct temp_name
*next
;
1782 /* Number of commands executed so far. */
1784 static int execution_count
;
1786 /* Number of commands that exited with a signal. */
1788 static int signal_count
;
1790 /* Name with which this program was invoked. */
1792 static const char *programname
;
1794 /* Allocate the argument vector. */
1800 argbuf
= (const char **) xmalloc (argbuf_length
* sizeof (const char *));
1803 /* Clear out the vector of arguments (after a command is executed). */
1811 /* Add one argument to the vector at the end.
1812 This is done when a space is seen or at the end of the line.
1813 If DELETE_ALWAYS is nonzero, the arg is a filename
1814 and the file should be deleted eventually.
1815 If DELETE_FAILURE is nonzero, the arg is a filename
1816 and the file should be deleted if this compilation fails. */
1819 store_arg (arg
, delete_always
, delete_failure
)
1821 int delete_always
, delete_failure
;
1823 if (argbuf_index
+ 1 == argbuf_length
)
1825 = (const char **) xrealloc (argbuf
,
1826 (argbuf_length
*= 2) * sizeof (const char *));
1828 argbuf
[argbuf_index
++] = arg
;
1829 argbuf
[argbuf_index
] = 0;
1831 if (delete_always
|| delete_failure
)
1832 record_temp_file (arg
, delete_always
, delete_failure
);
1835 /* Load specs from a file name named FILENAME, replacing occurrences of
1836 various different types of line-endings, \r\n, \n\r and just \r, with
1840 load_specs (filename
)
1841 const char *filename
;
1845 struct stat statbuf
;
1852 notice ("Reading specs from %s\n", filename
);
1854 /* Open and stat the file. */
1855 desc
= open (filename
, O_RDONLY
, 0);
1857 pfatal_with_name (filename
);
1858 if (stat (filename
, &statbuf
) < 0)
1859 pfatal_with_name (filename
);
1861 /* Read contents of file into BUFFER. */
1862 buffer
= xmalloc ((unsigned) statbuf
.st_size
+ 1);
1863 readlen
= read (desc
, buffer
, (unsigned) statbuf
.st_size
);
1865 pfatal_with_name (filename
);
1866 buffer
[readlen
] = 0;
1869 specs
= xmalloc (readlen
+ 1);
1871 for (buffer_p
= buffer
; buffer_p
&& *buffer_p
; buffer_p
++)
1877 if (buffer_p
> buffer
&& *(buffer_p
- 1) == '\n') /* \n\r */
1879 else if (*(buffer_p
+ 1) == '\n') /* \r\n */
1893 /* Read compilation specs from a file named FILENAME,
1894 replacing the default ones.
1896 A suffix which starts with `*' is a definition for
1897 one of the machine-specific sub-specs. The "suffix" should be
1898 *asm, *cc1, *cpp, *link, *startfile, etc.
1899 The corresponding spec is stored in asm_spec, etc.,
1900 rather than in the `compilers' vector.
1902 Anything invalid in the file is a fatal error. */
1905 read_specs (filename
, main_p
)
1906 const char *filename
;
1912 buffer
= load_specs (filename
);
1914 /* Scan BUFFER for specs, putting them in the vector. */
1920 char *in
, *out
, *p1
, *p2
, *p3
;
1922 /* Advance P in BUFFER to the next nonblank nocomment line. */
1923 p
= skip_whitespace (p
);
1927 /* Is this a special command that starts with '%'? */
1928 /* Don't allow this for the main specs file, since it would
1929 encourage people to overwrite it. */
1930 if (*p
== '%' && !main_p
)
1933 while (*p
&& *p
!= '\n')
1939 if (!strncmp (p1
, "%include", sizeof ("%include") - 1)
1940 && (p1
[sizeof "%include" - 1] == ' '
1941 || p1
[sizeof "%include" - 1] == '\t'))
1945 p1
+= sizeof ("%include");
1946 while (*p1
== ' ' || *p1
== '\t')
1949 if (*p1
++ != '<' || p
[-2] != '>')
1950 fatal ("specs %%include syntax malformed after %ld characters",
1951 (long) (p1
- buffer
+ 1));
1954 new_filename
= find_a_file (&startfile_prefixes
, p1
, R_OK
, 0);
1955 read_specs (new_filename
? new_filename
: p1
, FALSE
);
1958 else if (!strncmp (p1
, "%include_noerr", sizeof "%include_noerr" - 1)
1959 && (p1
[sizeof "%include_noerr" - 1] == ' '
1960 || p1
[sizeof "%include_noerr" - 1] == '\t'))
1964 p1
+= sizeof "%include_noerr";
1965 while (*p1
== ' ' || *p1
== '\t')
1968 if (*p1
++ != '<' || p
[-2] != '>')
1969 fatal ("specs %%include syntax malformed after %ld characters",
1970 (long) (p1
- buffer
+ 1));
1973 new_filename
= find_a_file (&startfile_prefixes
, p1
, R_OK
, 0);
1975 read_specs (new_filename
, FALSE
);
1976 else if (verbose_flag
)
1977 notice ("could not find specs file %s\n", p1
);
1980 else if (!strncmp (p1
, "%rename", sizeof "%rename" - 1)
1981 && (p1
[sizeof "%rename" - 1] == ' '
1982 || p1
[sizeof "%rename" - 1] == '\t'))
1985 struct spec_list
*sl
;
1986 struct spec_list
*newsl
;
1988 /* Get original name. */
1989 p1
+= sizeof "%rename";
1990 while (*p1
== ' ' || *p1
== '\t')
1993 if (! ISALPHA ((unsigned char) *p1
))
1994 fatal ("specs %%rename syntax malformed after %ld characters",
1995 (long) (p1
- buffer
));
1998 while (*p2
&& !ISSPACE ((unsigned char) *p2
))
2001 if (*p2
!= ' ' && *p2
!= '\t')
2002 fatal ("specs %%rename syntax malformed after %ld characters",
2003 (long) (p2
- buffer
));
2007 while (*p2
== ' ' || *p2
== '\t')
2010 if (! ISALPHA ((unsigned char) *p2
))
2011 fatal ("specs %%rename syntax malformed after %ld characters",
2012 (long) (p2
- buffer
));
2014 /* Get new spec name. */
2016 while (*p3
&& !ISSPACE ((unsigned char) *p3
))
2020 fatal ("specs %%rename syntax malformed after %ld characters",
2021 (long) (p3
- buffer
));
2024 for (sl
= specs
; sl
; sl
= sl
->next
)
2025 if (name_len
== sl
->name_len
&& !strcmp (sl
->name
, p1
))
2029 fatal ("specs %s spec was not found to be renamed", p1
);
2031 if (strcmp (p1
, p2
) == 0)
2034 for (newsl
= specs
; newsl
; newsl
= newsl
->next
)
2035 if (strcmp (newsl
->name
, p2
) == 0)
2036 fatal ("%s: attempt to rename spec '%s' to already defined spec '%s'",
2041 notice ("rename spec %s to %s\n", p1
, p2
);
2043 notice ("spec is '%s'\n\n", *(sl
->ptr_spec
));
2047 set_spec (p2
, *(sl
->ptr_spec
));
2049 free ((PTR
) *(sl
->ptr_spec
));
2051 *(sl
->ptr_spec
) = "";
2056 fatal ("specs unknown %% command after %ld characters",
2057 (long) (p1
- buffer
));
2060 /* Find the colon that should end the suffix. */
2062 while (*p1
&& *p1
!= ':' && *p1
!= '\n')
2065 /* The colon shouldn't be missing. */
2067 fatal ("specs file malformed after %ld characters",
2068 (long) (p1
- buffer
));
2070 /* Skip back over trailing whitespace. */
2072 while (p2
> buffer
&& (p2
[-1] == ' ' || p2
[-1] == '\t'))
2075 /* Copy the suffix to a string. */
2076 suffix
= save_string (p
, p2
- p
);
2077 /* Find the next line. */
2078 p
= skip_whitespace (p1
+ 1);
2080 fatal ("specs file malformed after %ld characters",
2081 (long) (p
- buffer
));
2084 /* Find next blank line or end of string. */
2085 while (*p1
&& !(*p1
== '\n' && (p1
[1] == '\n' || p1
[1] == '\0')))
2088 /* Specs end at the blank line and do not include the newline. */
2089 spec
= save_string (p
, p1
- p
);
2092 /* Delete backslash-newline sequences from the spec. */
2097 if (in
[0] == '\\' && in
[1] == '\n')
2099 else if (in
[0] == '#')
2100 while (*in
&& *in
!= '\n')
2108 if (suffix
[0] == '*')
2110 if (! strcmp (suffix
, "*link_command"))
2111 link_command_spec
= spec
;
2113 set_spec (suffix
+ 1, spec
);
2117 /* Add this pair to the vector. */
2119 = ((struct compiler
*)
2120 xrealloc (compilers
,
2121 (n_compilers
+ 2) * sizeof (struct compiler
)));
2123 compilers
[n_compilers
].suffix
= suffix
;
2124 compilers
[n_compilers
].spec
= spec
;
2126 memset (&compilers
[n_compilers
], 0, sizeof compilers
[n_compilers
]);
2130 link_command_spec
= spec
;
2133 if (link_command_spec
== 0)
2134 fatal ("spec file has no spec for linking");
2137 /* Record the names of temporary files we tell compilers to write,
2138 and delete them at the end of the run. */
2140 /* This is the common prefix we use to make temp file names.
2141 It is chosen once for each run of this program.
2142 It is substituted into a spec by %g or %j.
2143 Thus, all temp file names contain this prefix.
2144 In practice, all temp file names start with this prefix.
2146 This prefix comes from the envvar TMPDIR if it is defined;
2147 otherwise, from the P_tmpdir macro if that is defined;
2148 otherwise, in /usr/tmp or /tmp;
2149 or finally the current directory if all else fails. */
2151 static const char *temp_filename
;
2153 /* Length of the prefix. */
2155 static int temp_filename_length
;
2157 /* Define the list of temporary files to delete. */
2162 struct temp_file
*next
;
2165 /* Queue of files to delete on success or failure of compilation. */
2166 static struct temp_file
*always_delete_queue
;
2167 /* Queue of files to delete on failure of compilation. */
2168 static struct temp_file
*failure_delete_queue
;
2170 /* Record FILENAME as a file to be deleted automatically.
2171 ALWAYS_DELETE nonzero means delete it if all compilation succeeds;
2172 otherwise delete it in any case.
2173 FAIL_DELETE nonzero means delete it if a compilation step fails;
2174 otherwise delete it in any case. */
2177 record_temp_file (filename
, always_delete
, fail_delete
)
2178 const char *filename
;
2182 char *const name
= xstrdup (filename
);
2186 struct temp_file
*temp
;
2187 for (temp
= always_delete_queue
; temp
; temp
= temp
->next
)
2188 if (! strcmp (name
, temp
->name
))
2191 temp
= (struct temp_file
*) xmalloc (sizeof (struct temp_file
));
2192 temp
->next
= always_delete_queue
;
2194 always_delete_queue
= temp
;
2201 struct temp_file
*temp
;
2202 for (temp
= failure_delete_queue
; temp
; temp
= temp
->next
)
2203 if (! strcmp (name
, temp
->name
))
2206 temp
= (struct temp_file
*) xmalloc (sizeof (struct temp_file
));
2207 temp
->next
= failure_delete_queue
;
2209 failure_delete_queue
= temp
;
2215 /* Delete all the temporary files whose names we previously recorded. */
2218 delete_if_ordinary (name
)
2225 printf ("Delete %s? (y or n) ", name
);
2229 while ((c
= getchar ()) != '\n' && c
!= EOF
)
2232 if (i
== 'y' || i
== 'Y')
2234 if (stat (name
, &st
) >= 0 && S_ISREG (st
.st_mode
))
2235 if (unlink (name
) < 0)
2237 perror_with_name (name
);
2241 delete_temp_files ()
2243 struct temp_file
*temp
;
2245 for (temp
= always_delete_queue
; temp
; temp
= temp
->next
)
2246 delete_if_ordinary (temp
->name
);
2247 always_delete_queue
= 0;
2250 /* Delete all the files to be deleted on error. */
2253 delete_failure_queue ()
2255 struct temp_file
*temp
;
2257 for (temp
= failure_delete_queue
; temp
; temp
= temp
->next
)
2258 delete_if_ordinary (temp
->name
);
2262 clear_failure_queue ()
2264 failure_delete_queue
= 0;
2267 /* Build a list of search directories from PATHS.
2268 PREFIX is a string to prepend to the list.
2269 If CHECK_DIR_P is nonzero we ensure the directory exists.
2270 This is used mostly by putenv_from_prefixes so we use `collect_obstack'.
2271 It is also used by the --print-search-dirs flag. */
2274 build_search_list (paths
, prefix
, check_dir_p
)
2275 struct path_prefix
*paths
;
2279 int suffix_len
= (machine_suffix
) ? strlen (machine_suffix
) : 0;
2281 = (just_machine_suffix
) ? strlen (just_machine_suffix
) : 0;
2282 int first_time
= TRUE
;
2283 struct prefix_list
*pprefix
;
2285 obstack_grow (&collect_obstack
, prefix
, strlen (prefix
));
2286 obstack_1grow (&collect_obstack
, '=');
2288 for (pprefix
= paths
->plist
; pprefix
!= 0; pprefix
= pprefix
->next
)
2290 int len
= strlen (pprefix
->prefix
);
2294 || is_directory (pprefix
->prefix
, machine_suffix
, 0)))
2297 obstack_1grow (&collect_obstack
, PATH_SEPARATOR
);
2300 obstack_grow (&collect_obstack
, pprefix
->prefix
, len
);
2301 obstack_grow (&collect_obstack
, machine_suffix
, suffix_len
);
2304 if (just_machine_suffix
2305 && pprefix
->require_machine_suffix
== 2
2307 || is_directory (pprefix
->prefix
, just_machine_suffix
, 0)))
2310 obstack_1grow (&collect_obstack
, PATH_SEPARATOR
);
2313 obstack_grow (&collect_obstack
, pprefix
->prefix
, len
);
2314 obstack_grow (&collect_obstack
, just_machine_suffix
,
2318 if (! pprefix
->require_machine_suffix
)
2321 obstack_1grow (&collect_obstack
, PATH_SEPARATOR
);
2324 obstack_grow (&collect_obstack
, pprefix
->prefix
, len
);
2328 obstack_1grow (&collect_obstack
, '\0');
2329 return obstack_finish (&collect_obstack
);
2332 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
2336 putenv_from_prefixes (paths
, env_var
)
2337 struct path_prefix
*paths
;
2338 const char *env_var
;
2340 putenv (build_search_list (paths
, env_var
, 1));
2343 /* Check whether NAME can be accessed in MODE. This is like access,
2344 except that it never considers directories to be executable. */
2347 access_check (name
, mode
)
2355 if (stat (name
, &st
) < 0
2356 || S_ISDIR (st
.st_mode
))
2360 return access (name
, mode
);
2363 /* Search for NAME using the prefix list PREFIXES. MODE is passed to
2364 access to check permissions.
2365 Return 0 if not found, otherwise return its name, allocated with malloc. */
2368 find_a_file (pprefix
, name
, mode
, multilib
)
2369 struct path_prefix
*pprefix
;
2374 const char *const file_suffix
=
2375 ((mode
& X_OK
) != 0 ? HOST_EXECUTABLE_SUFFIX
: "");
2376 struct prefix_list
*pl
;
2377 int len
= pprefix
->max_len
+ strlen (name
) + strlen (file_suffix
) + 1;
2378 const char *multilib_name
, *multilib_os_name
;
2380 #ifdef DEFAULT_ASSEMBLER
2381 if (! strcmp (name
, "as") && access (DEFAULT_ASSEMBLER
, mode
) == 0)
2382 return xstrdup (DEFAULT_ASSEMBLER
);
2385 #ifdef DEFAULT_LINKER
2386 if (! strcmp(name
, "ld") && access (DEFAULT_LINKER
, mode
) == 0)
2387 return xstrdup (DEFAULT_LINKER
);
2391 len
+= strlen (machine_suffix
);
2393 multilib_name
= name
;
2394 multilib_os_name
= name
;
2395 if (multilib
&& multilib_os_dir
)
2397 int len1
= multilib_dir
? strlen (multilib_dir
) + 1 : 0;
2398 int len2
= strlen (multilib_os_dir
) + 1;
2400 len
+= len1
> len2
? len1
: len2
;
2402 multilib_name
= ACONCAT ((multilib_dir
, dir_separator_str
, name
,
2404 if (strcmp (multilib_os_dir
, ".") != 0)
2405 multilib_os_name
= ACONCAT ((multilib_os_dir
, dir_separator_str
, name
,
2409 temp
= xmalloc (len
);
2411 /* Determine the filename to execute (special case for absolute paths). */
2413 if (IS_ABSOLUTE_PATHNAME (name
))
2415 if (access (name
, mode
) == 0)
2417 strcpy (temp
, name
);
2422 for (pl
= pprefix
->plist
; pl
; pl
= pl
->next
)
2424 const char *this_name
2425 = pl
->os_multilib
? multilib_os_name
: multilib_name
;
2429 /* Some systems have a suffix for executable files.
2430 So try appending that first. */
2431 if (file_suffix
[0] != 0)
2433 strcpy (temp
, pl
->prefix
);
2434 strcat (temp
, machine_suffix
);
2435 strcat (temp
, multilib_name
);
2436 strcat (temp
, file_suffix
);
2437 if (access_check (temp
, mode
) == 0)
2439 if (pl
->used_flag_ptr
!= 0)
2440 *pl
->used_flag_ptr
= 1;
2445 /* Now try just the multilib_name. */
2446 strcpy (temp
, pl
->prefix
);
2447 strcat (temp
, machine_suffix
);
2448 strcat (temp
, multilib_name
);
2449 if (access_check (temp
, mode
) == 0)
2451 if (pl
->used_flag_ptr
!= 0)
2452 *pl
->used_flag_ptr
= 1;
2457 /* Certain prefixes are tried with just the machine type,
2458 not the version. This is used for finding as, ld, etc. */
2459 if (just_machine_suffix
&& pl
->require_machine_suffix
== 2)
2461 /* Some systems have a suffix for executable files.
2462 So try appending that first. */
2463 if (file_suffix
[0] != 0)
2465 strcpy (temp
, pl
->prefix
);
2466 strcat (temp
, just_machine_suffix
);
2467 strcat (temp
, multilib_name
);
2468 strcat (temp
, file_suffix
);
2469 if (access_check (temp
, mode
) == 0)
2471 if (pl
->used_flag_ptr
!= 0)
2472 *pl
->used_flag_ptr
= 1;
2477 strcpy (temp
, pl
->prefix
);
2478 strcat (temp
, just_machine_suffix
);
2479 strcat (temp
, multilib_name
);
2480 if (access_check (temp
, mode
) == 0)
2482 if (pl
->used_flag_ptr
!= 0)
2483 *pl
->used_flag_ptr
= 1;
2488 /* Certain prefixes can't be used without the machine suffix
2489 when the machine or version is explicitly specified. */
2490 if (! pl
->require_machine_suffix
)
2492 /* Some systems have a suffix for executable files.
2493 So try appending that first. */
2494 if (file_suffix
[0] != 0)
2496 strcpy (temp
, pl
->prefix
);
2497 strcat (temp
, this_name
);
2498 strcat (temp
, file_suffix
);
2499 if (access_check (temp
, mode
) == 0)
2501 if (pl
->used_flag_ptr
!= 0)
2502 *pl
->used_flag_ptr
= 1;
2507 strcpy (temp
, pl
->prefix
);
2508 strcat (temp
, this_name
);
2509 if (access_check (temp
, mode
) == 0)
2511 if (pl
->used_flag_ptr
!= 0)
2512 *pl
->used_flag_ptr
= 1;
2522 /* Ranking of prefixes in the sort list. -B prefixes are put before
2525 enum path_prefix_priority
2527 PREFIX_PRIORITY_B_OPT
,
2528 PREFIX_PRIORITY_LAST
2531 /* Add an entry for PREFIX in PLIST. The PLIST is kept in assending
2532 order according to PRIORITY. Within each PRIORITY, new entries are
2535 If WARN is nonzero, we will warn if no file is found
2536 through this prefix. WARN should point to an int
2537 which will be set to 1 if this entry is used.
2539 COMPONENT is the value to be passed to update_path.
2541 REQUIRE_MACHINE_SUFFIX is 1 if this prefix can't be used without
2542 the complete value of machine_suffix.
2543 2 means try both machine_suffix and just_machine_suffix. */
2546 add_prefix (pprefix
, prefix
, component
, priority
, require_machine_suffix
,
2548 struct path_prefix
*pprefix
;
2550 const char *component
;
2551 /* enum prefix_priority */ int priority
;
2552 int require_machine_suffix
;
2556 struct prefix_list
*pl
, **prev
;
2559 for (prev
= &pprefix
->plist
;
2560 (*prev
) != NULL
&& (*prev
)->priority
<= priority
;
2561 prev
= &(*prev
)->next
)
2564 /* Keep track of the longest prefix */
2566 prefix
= update_path (prefix
, component
);
2567 len
= strlen (prefix
);
2568 if (len
> pprefix
->max_len
)
2569 pprefix
->max_len
= len
;
2571 pl
= (struct prefix_list
*) xmalloc (sizeof (struct prefix_list
));
2572 pl
->prefix
= prefix
;
2573 pl
->require_machine_suffix
= require_machine_suffix
;
2574 pl
->used_flag_ptr
= warn
;
2575 pl
->priority
= priority
;
2576 pl
->os_multilib
= os_multilib
;
2580 /* Insert after PREV */
2585 /* Same as add_prefix, but prepending target_system_root to prefix. */
2587 add_sysrooted_prefix (pprefix
, prefix
, component
, priority
,
2588 require_machine_suffix
, warn
, os_multilib
)
2589 struct path_prefix
*pprefix
;
2591 const char *component
;
2592 /* enum prefix_priority */ int priority
;
2593 int require_machine_suffix
;
2597 if (!IS_ABSOLUTE_PATHNAME (prefix
))
2600 if (target_system_root
)
2602 prefix
= concat (target_system_root
, prefix
, NULL
);
2603 /* We have to override this because GCC's notion of sysroot
2604 moves along with GCC. */
2608 add_prefix (pprefix
, prefix
, component
, priority
,
2609 require_machine_suffix
, warn
, os_multilib
);
2612 /* Execute the command specified by the arguments on the current line of spec.
2613 When using pipes, this includes several piped-together commands
2614 with `|' between them.
2616 Return 0 if successful, -1 if failed. */
2622 int n_commands
; /* # of command. */
2626 const char *prog
; /* program name. */
2627 const char **argv
; /* vector of args. */
2628 int pid
; /* pid of process for this command. */
2631 struct command
*commands
; /* each command buffer with above info. */
2633 if (processing_spec_function
)
2636 /* Count # of piped commands. */
2637 for (n_commands
= 1, i
= 0; i
< argbuf_index
; i
++)
2638 if (strcmp (argbuf
[i
], "|") == 0)
2641 /* Get storage for each command. */
2642 commands
= (struct command
*) alloca (n_commands
* sizeof (struct command
));
2644 /* Split argbuf into its separate piped processes,
2645 and record info about each one.
2646 Also search for the programs that are to be run. */
2648 commands
[0].prog
= argbuf
[0]; /* first command. */
2649 commands
[0].argv
= &argbuf
[0];
2650 string
= find_a_file (&exec_prefixes
, commands
[0].prog
, X_OK
, 0);
2653 commands
[0].argv
[0] = string
;
2655 for (n_commands
= 1, i
= 0; i
< argbuf_index
; i
++)
2656 if (strcmp (argbuf
[i
], "|") == 0)
2657 { /* each command. */
2658 #if defined (__MSDOS__) || defined (OS2) || defined (VMS)
2659 fatal ("-pipe not supported");
2661 argbuf
[i
] = 0; /* termination of command args. */
2662 commands
[n_commands
].prog
= argbuf
[i
+ 1];
2663 commands
[n_commands
].argv
= &argbuf
[i
+ 1];
2664 string
= find_a_file (&exec_prefixes
, commands
[n_commands
].prog
,
2667 commands
[n_commands
].argv
[0] = string
;
2671 argbuf
[argbuf_index
] = 0;
2673 /* If -v, print what we are about to do, and maybe query. */
2677 /* For help listings, put a blank line between sub-processes. */
2678 if (print_help_list
)
2679 fputc ('\n', stderr
);
2681 /* Print each piped command as a separate line. */
2682 for (i
= 0; i
< n_commands
; i
++)
2684 const char *const *j
;
2686 if (verbose_only_flag
)
2688 for (j
= commands
[i
].argv
; *j
; j
++)
2691 fprintf (stderr
, " \"");
2692 for (p
= *j
; *p
; ++p
)
2694 if (*p
== '"' || *p
== '\\' || *p
== '$')
2695 fputc ('\\', stderr
);
2698 fputc ('"', stderr
);
2702 for (j
= commands
[i
].argv
; *j
; j
++)
2703 fprintf (stderr
, " %s", *j
);
2705 /* Print a pipe symbol after all but the last command. */
2706 if (i
+ 1 != n_commands
)
2707 fprintf (stderr
, " |");
2708 fprintf (stderr
, "\n");
2711 if (verbose_only_flag
!= 0)
2714 notice ("\nGo ahead? (y or n) ");
2718 while (getchar () != '\n')
2721 if (i
!= 'y' && i
!= 'Y')
2726 #ifdef ENABLE_VALGRIND_CHECKING
2727 /* Run the each command through valgrind. To simplifiy prepending the
2728 path to valgrind and the option "-q" (for quiet operation unless
2729 something triggers), we allocate a separate argv array. */
2731 for (i
= 0; i
< n_commands
; i
++)
2737 for (argc
= 0; commands
[i
].argv
[argc
] != NULL
; argc
++)
2740 argv
= alloca ((argc
+ 3) * sizeof (char *));
2742 argv
[0] = VALGRIND_PATH
;
2744 for (j
= 2; j
< argc
+ 2; j
++)
2745 argv
[j
] = commands
[i
].argv
[j
- 2];
2748 commands
[i
].argv
= argv
;
2749 commands
[i
].prog
= argv
[0];
2753 /* Run each piped subprocess. */
2755 for (i
= 0; i
< n_commands
; i
++)
2757 char *errmsg_fmt
, *errmsg_arg
;
2758 const char *string
= commands
[i
].argv
[0];
2760 /* For some bizarre reason, the second argument of execvp() is
2761 char *const *, not const char *const *. */
2762 commands
[i
].pid
= pexecute (string
, (char *const *) commands
[i
].argv
,
2763 programname
, temp_filename
,
2764 &errmsg_fmt
, &errmsg_arg
,
2765 ((i
== 0 ? PEXECUTE_FIRST
: 0)
2766 | (i
+ 1 == n_commands
? PEXECUTE_LAST
: 0)
2767 | (string
== commands
[i
].prog
2768 ? PEXECUTE_SEARCH
: 0)
2769 | (verbose_flag
? PEXECUTE_VERBOSE
: 0)));
2771 if (commands
[i
].pid
== -1)
2772 pfatal_pexecute (errmsg_fmt
, errmsg_arg
);
2774 if (string
!= commands
[i
].prog
)
2775 free ((PTR
) string
);
2780 /* Wait for all the subprocesses to finish.
2781 We don't care what order they finish in;
2782 we know that N_COMMANDS waits will get them all.
2783 Ignore subprocesses that we don't know about,
2784 since they can be spawned by the process that exec'ed us. */
2788 #ifdef HAVE_GETRUSAGE
2790 double ut
= 0.0, st
= 0.0;
2793 for (i
= 0; i
< n_commands
;)
2799 pid
= pwait (commands
[i
].pid
, &status
, 0);
2803 #ifdef HAVE_GETRUSAGE
2806 /* getrusage returns the total resource usage of all children
2807 up to now. Copy the previous values into prus, get the
2808 current statistics, then take the difference. */
2811 getrusage (RUSAGE_CHILDREN
, &rus
);
2812 d
.tv_sec
= rus
.ru_utime
.tv_sec
- prus
.ru_utime
.tv_sec
;
2813 d
.tv_usec
= rus
.ru_utime
.tv_usec
- prus
.ru_utime
.tv_usec
;
2814 ut
= (double) d
.tv_sec
+ (double) d
.tv_usec
/ 1.0e6
;
2816 d
.tv_sec
= rus
.ru_stime
.tv_sec
- prus
.ru_stime
.tv_sec
;
2817 d
.tv_usec
= rus
.ru_stime
.tv_usec
- prus
.ru_stime
.tv_usec
;
2818 st
= (double) d
.tv_sec
+ (double) d
.tv_usec
/ 1.0e6
;
2822 for (j
= 0; j
< n_commands
; j
++)
2823 if (commands
[j
].pid
== pid
)
2826 if (WIFSIGNALED (status
))
2829 /* SIGPIPE is a special case. It happens in -pipe mode
2830 when the compiler dies before the preprocessor is
2831 done, or the assembler dies before the compiler is
2832 done. There's generally been an error already, and
2833 this is just fallout. So don't generate another error
2834 unless we would otherwise have succeeded. */
2835 if (WTERMSIG (status
) == SIGPIPE
2836 && (signal_count
|| greatest_status
>= MIN_FATAL_STATUS
))
2841 Internal error: %s (program %s)\n\
2842 Please submit a full bug report.\n\
2843 See %s for instructions.",
2844 strsignal (WTERMSIG (status
)), commands
[j
].prog
,
2849 else if (WIFEXITED (status
)
2850 && WEXITSTATUS (status
) >= MIN_FATAL_STATUS
)
2852 if (WEXITSTATUS (status
) > greatest_status
)
2853 greatest_status
= WEXITSTATUS (status
);
2856 #ifdef HAVE_GETRUSAGE
2857 if (report_times
&& ut
+ st
!= 0)
2858 notice ("# %s %.2f %.2f\n", commands
[j
].prog
, ut
, st
);
2867 /* Find all the switches given to us
2868 and make a vector describing them.
2869 The elements of the vector are strings, one per switch given.
2870 If a switch uses following arguments, then the `part1' field
2871 is the switch itself and the `args' field
2872 is a null-terminated vector containing the following arguments.
2873 The `live_cond' field is:
2875 1 if the switch is true in a conditional spec,
2876 -1 if false (overridden by a later switch)
2877 -2 if this switch should be ignored (used in %<S)
2878 The `validated' field is nonzero if any spec has looked at this switch;
2879 if it remains zero at the end of the run, it must be meaningless. */
2882 #define SWITCH_FALSE -1
2883 #define SWITCH_IGNORE -2
2884 #define SWITCH_LIVE 1
2891 unsigned char validated
;
2892 unsigned char ordering
;
2895 static struct switchstr
*switches
;
2897 static int n_switches
;
2902 const char *language
;
2905 /* Also a vector of input files specified. */
2907 static struct infile
*infiles
;
2911 /* This counts the number of libraries added by lang_specific_driver, so that
2912 we can tell if there were any user supplied any files or libraries. */
2914 static int added_libraries
;
2916 /* And a vector of corresponding output files is made up later. */
2918 const char **outfiles
;
2920 /* Used to track if none of the -B paths are used. */
2923 /* Gives value to pass as "warn" to add_prefix for standard prefixes. */
2924 static int *warn_std_ptr
= 0;
2926 #if defined(HAVE_TARGET_OBJECT_SUFFIX) || defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
2928 /* Convert NAME to a new name if it is the standard suffix. DO_EXE
2929 is true if we should look for an executable suffix. DO_OBJ
2930 is true if we should look for an object suffix. */
2933 convert_filename (name
, do_exe
, do_obj
)
2935 int do_exe ATTRIBUTE_UNUSED
;
2936 int do_obj ATTRIBUTE_UNUSED
;
2938 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
2946 len
= strlen (name
);
2948 #ifdef HAVE_TARGET_OBJECT_SUFFIX
2949 /* Convert x.o to x.obj if TARGET_OBJECT_SUFFIX is ".obj". */
2950 if (do_obj
&& len
> 2
2951 && name
[len
- 2] == '.'
2952 && name
[len
- 1] == 'o')
2954 obstack_grow (&obstack
, name
, len
- 2);
2955 obstack_grow0 (&obstack
, TARGET_OBJECT_SUFFIX
, strlen (TARGET_OBJECT_SUFFIX
));
2956 name
= obstack_finish (&obstack
);
2960 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
2961 /* If there is no filetype, make it the executable suffix (which includes
2962 the "."). But don't get confused if we have just "-o". */
2963 if (! do_exe
|| TARGET_EXECUTABLE_SUFFIX
[0] == 0 || (len
== 2 && name
[0] == '-'))
2966 for (i
= len
- 1; i
>= 0; i
--)
2967 if (IS_DIR_SEPARATOR (name
[i
]))
2970 for (i
++; i
< len
; i
++)
2974 obstack_grow (&obstack
, name
, len
);
2975 obstack_grow0 (&obstack
, TARGET_EXECUTABLE_SUFFIX
,
2976 strlen (TARGET_EXECUTABLE_SUFFIX
));
2977 name
= obstack_finish (&obstack
);
2984 /* Display the command line switches accepted by gcc. */
2988 printf (_("Usage: %s [options] file...\n"), programname
);
2989 fputs (_("Options:\n"), stdout
);
2991 fputs (_(" -pass-exit-codes Exit with highest error code from a phase\n"), stdout
);
2992 fputs (_(" --help Display this information\n"), stdout
);
2993 fputs (_(" --target-help Display target specific command line options\n"), stdout
);
2995 fputs (_(" (Use '-v --help' to display command line options of sub-processes)\n"), stdout
);
2996 fputs (_(" -dumpspecs Display all of the built in spec strings\n"), stdout
);
2997 fputs (_(" -dumpversion Display the version of the compiler\n"), stdout
);
2998 fputs (_(" -dumpmachine Display the compiler's target processor\n"), stdout
);
2999 fputs (_(" -print-search-dirs Display the directories in the compiler's search path\n"), stdout
);
3000 fputs (_(" -print-libgcc-file-name Display the name of the compiler's companion library\n"), stdout
);
3001 fputs (_(" -print-file-name=<lib> Display the full path to library <lib>\n"), stdout
);
3002 fputs (_(" -print-prog-name=<prog> Display the full path to compiler component <prog>\n"), stdout
);
3003 fputs (_(" -print-multi-directory Display the root directory for versions of libgcc\n"), stdout
);
3005 -print-multi-lib Display the mapping between command line options and\n\
3006 multiple library search directories\n"), stdout
);
3007 fputs (_(" -print-multi-os-directory Display the relative path to OS libraries\n"), stdout
);
3008 fputs (_(" -Wa,<options> Pass comma-separated <options> on to the assembler\n"), stdout
);
3009 fputs (_(" -Wp,<options> Pass comma-separated <options> on to the preprocessor\n"), stdout
);
3010 fputs (_(" -Wl,<options> Pass comma-separated <options> on to the linker\n"), stdout
);
3011 fputs (_(" -Xassembler <arg> Pass <arg> on to the assembler\n"), stdout
);
3012 fputs (_(" -Xpreprocessor <arg> Pass <arg> on to the preprocessor\n"), stdout
);
3013 fputs (_(" -Xlinker <arg> Pass <arg> on to the linker\n"), stdout
);
3014 fputs (_(" -save-temps Do not delete intermediate files\n"), stdout
);
3015 fputs (_(" -pipe Use pipes rather than intermediate files\n"), stdout
);
3016 fputs (_(" -time Time the execution of each subprocess\n"), stdout
);
3017 fputs (_(" -specs=<file> Override built-in specs with the contents of <file>\n"), stdout
);
3018 fputs (_(" -std=<standard> Assume that the input sources are for <standard>\n"), stdout
);
3019 fputs (_(" -B <directory> Add <directory> to the compiler's search paths\n"), stdout
);
3020 fputs (_(" -b <machine> Run gcc for target <machine>, if installed\n"), stdout
);
3021 fputs (_(" -V <version> Run gcc version number <version>, if installed\n"), stdout
);
3022 fputs (_(" -v Display the programs invoked by the compiler\n"), stdout
);
3023 fputs (_(" -### Like -v but options quoted and commands not executed\n"), stdout
);
3024 fputs (_(" -E Preprocess only; do not compile, assemble or link\n"), stdout
);
3025 fputs (_(" -S Compile only; do not assemble or link\n"), stdout
);
3026 fputs (_(" -c Compile and assemble, but do not link\n"), stdout
);
3027 fputs (_(" -o <file> Place the output into <file>\n"), stdout
);
3029 -x <language> Specify the language of the following input files\n\
3030 Permissable languages include: c c++ assembler none\n\
3031 'none' means revert to the default behavior of\n\
3032 guessing the language based on the file's extension\n\
3036 \nOptions starting with -g, -f, -m, -O, -W, or --param are automatically\n\
3037 passed on to the various sub-processes invoked by %s. In order to pass\n\
3038 other options on to these processes the -W<letter> options must be used.\n\
3041 /* The rest of the options are displayed by invocations of the various
3046 add_preprocessor_option (option
, len
)
3050 n_preprocessor_options
++;
3052 if (! preprocessor_options
)
3053 preprocessor_options
3054 = (char **) xmalloc (n_preprocessor_options
* sizeof (char *));
3056 preprocessor_options
3057 = (char **) xrealloc (preprocessor_options
,
3058 n_preprocessor_options
* sizeof (char *));
3060 preprocessor_options
[n_preprocessor_options
- 1] =
3061 save_string (option
, len
);
3065 add_assembler_option (option
, len
)
3069 n_assembler_options
++;
3071 if (! assembler_options
)
3073 = (char **) xmalloc (n_assembler_options
* sizeof (char *));
3076 = (char **) xrealloc (assembler_options
,
3077 n_assembler_options
* sizeof (char *));
3079 assembler_options
[n_assembler_options
- 1] = save_string (option
, len
);
3083 add_linker_option (option
, len
)
3089 if (! linker_options
)
3091 = (char **) xmalloc (n_linker_options
* sizeof (char *));
3094 = (char **) xrealloc (linker_options
,
3095 n_linker_options
* sizeof (char *));
3097 linker_options
[n_linker_options
- 1] = save_string (option
, len
);
3100 /* Create the vector `switches' and its contents.
3101 Store its length in `n_switches'. */
3104 process_command (argc
, argv
)
3106 const char *const *argv
;
3111 const char *spec_lang
= 0;
3112 int last_language_n_infiles
;
3115 int lang_n_infiles
= 0;
3116 #ifdef MODIFY_TARGET_NAME
3117 int is_modify_target_name
;
3121 GET_ENVIRONMENT (gcc_exec_prefix
, "GCC_EXEC_PREFIX");
3125 added_libraries
= 0;
3127 /* Figure compiler version from version string. */
3129 compiler_version
= temp1
= xstrdup (version_string
);
3131 for (; *temp1
; ++temp1
)
3140 /* If there is a -V or -b option (or both), process it now, before
3141 trying to interpret the rest of the command line. */
3142 if (argc
> 1 && argv
[1][0] == '-'
3143 && (argv
[1][1] == 'V' || argv
[1][1] == 'b'))
3145 const char *new_version
= DEFAULT_TARGET_VERSION
;
3146 const char *new_machine
= DEFAULT_TARGET_MACHINE
;
3147 const char *progname
= argv
[0];
3152 while (argc
> 1 && argv
[1][0] == '-'
3153 && (argv
[1][1] == 'V' || argv
[1][1] == 'b'))
3155 char opt
= argv
[1][1];
3157 if (argv
[1][2] != '\0')
3170 fatal ("`-%c' option must have argument", opt
);
3177 for (baselen
= strlen (progname
); baselen
> 0; baselen
--)
3178 if (IS_DIR_SEPARATOR (progname
[baselen
-1]))
3180 new_argv0
= xmemdup (progname
, baselen
,
3181 baselen
+ concat_length (new_version
, new_machine
,
3182 "-gcc-", NULL
) + 1);
3183 strcpy (new_argv0
+ baselen
, new_machine
);
3184 strcat (new_argv0
, "-gcc-");
3185 strcat (new_argv0
, new_version
);
3187 new_argv
= xmemdup (argv
, (argc
+ 1) * sizeof (argv
[0]),
3188 (argc
+ 1) * sizeof (argv
[0]));
3189 new_argv
[0] = new_argv0
;
3191 execvp (new_argv0
, new_argv
);
3192 fatal ("couldn't run `%s': %s", new_argv0
, xstrerror (errno
));
3195 /* Set up the default search paths. If there is no GCC_EXEC_PREFIX,
3196 see if we can create it from the pathname specified in argv[0]. */
3199 /* FIXME: make_relative_prefix doesn't yet work for VMS. */
3200 if (!gcc_exec_prefix
)
3202 gcc_exec_prefix
= make_relative_prefix (argv
[0], standard_bindir_prefix
,
3203 standard_exec_prefix
);
3204 if (gcc_exec_prefix
)
3205 putenv (concat ("GCC_EXEC_PREFIX=", gcc_exec_prefix
, NULL
));
3209 if (gcc_exec_prefix
)
3211 int len
= strlen (gcc_exec_prefix
);
3213 if (len
> (int) sizeof ("/lib/gcc-lib/") - 1
3214 && (IS_DIR_SEPARATOR (gcc_exec_prefix
[len
-1])))
3216 temp
= gcc_exec_prefix
+ len
- sizeof ("/lib/gcc-lib/") + 1;
3217 if (IS_DIR_SEPARATOR (*temp
)
3218 && strncmp (temp
+ 1, "lib", 3) == 0
3219 && IS_DIR_SEPARATOR (temp
[4])
3220 && strncmp (temp
+ 5, "gcc-lib", 7) == 0)
3221 len
-= sizeof ("/lib/gcc-lib/") - 1;
3224 set_std_prefix (gcc_exec_prefix
, len
);
3225 add_prefix (&exec_prefixes
, gcc_exec_prefix
, "GCC",
3226 PREFIX_PRIORITY_LAST
, 0, NULL
, 0);
3227 add_prefix (&startfile_prefixes
, gcc_exec_prefix
, "GCC",
3228 PREFIX_PRIORITY_LAST
, 0, NULL
, 0);
3231 /* COMPILER_PATH and LIBRARY_PATH have values
3232 that are lists of directory names with colons. */
3234 GET_ENVIRONMENT (temp
, "COMPILER_PATH");
3237 const char *startp
, *endp
;
3238 char *nstore
= (char *) alloca (strlen (temp
) + 3);
3240 startp
= endp
= temp
;
3243 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
3245 strncpy (nstore
, startp
, endp
- startp
);
3247 strcpy (nstore
, concat (".", dir_separator_str
, NULL
));
3248 else if (!IS_DIR_SEPARATOR (endp
[-1]))
3250 nstore
[endp
- startp
] = DIR_SEPARATOR
;
3251 nstore
[endp
- startp
+ 1] = 0;
3254 nstore
[endp
- startp
] = 0;
3255 add_prefix (&exec_prefixes
, nstore
, 0,
3256 PREFIX_PRIORITY_LAST
, 0, NULL
, 0);
3257 add_prefix (&include_prefixes
,
3258 concat (nstore
, "include", NULL
),
3259 0, PREFIX_PRIORITY_LAST
, 0, NULL
, 0);
3262 endp
= startp
= endp
+ 1;
3269 GET_ENVIRONMENT (temp
, LIBRARY_PATH_ENV
);
3270 if (temp
&& *cross_compile
== '0')
3272 const char *startp
, *endp
;
3273 char *nstore
= (char *) alloca (strlen (temp
) + 3);
3275 startp
= endp
= temp
;
3278 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
3280 strncpy (nstore
, startp
, endp
- startp
);
3282 strcpy (nstore
, concat (".", dir_separator_str
, NULL
));
3283 else if (!IS_DIR_SEPARATOR (endp
[-1]))
3285 nstore
[endp
- startp
] = DIR_SEPARATOR
;
3286 nstore
[endp
- startp
+ 1] = 0;
3289 nstore
[endp
- startp
] = 0;
3290 add_prefix (&startfile_prefixes
, nstore
, NULL
,
3291 PREFIX_PRIORITY_LAST
, 0, NULL
, 1);
3294 endp
= startp
= endp
+ 1;
3301 /* Use LPATH like LIBRARY_PATH (for the CMU build program). */
3302 GET_ENVIRONMENT (temp
, "LPATH");
3303 if (temp
&& *cross_compile
== '0')
3305 const char *startp
, *endp
;
3306 char *nstore
= (char *) alloca (strlen (temp
) + 3);
3308 startp
= endp
= temp
;
3311 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
3313 strncpy (nstore
, startp
, endp
- startp
);
3315 strcpy (nstore
, concat (".", dir_separator_str
, NULL
));
3316 else if (!IS_DIR_SEPARATOR (endp
[-1]))
3318 nstore
[endp
- startp
] = DIR_SEPARATOR
;
3319 nstore
[endp
- startp
+ 1] = 0;
3322 nstore
[endp
- startp
] = 0;
3323 add_prefix (&startfile_prefixes
, nstore
, NULL
,
3324 PREFIX_PRIORITY_LAST
, 0, NULL
, 1);
3327 endp
= startp
= endp
+ 1;
3334 /* Convert new-style -- options to old-style. */
3335 translate_options (&argc
, &argv
);
3337 /* Do language-specific adjustment/addition of flags. */
3338 lang_specific_driver (&argc
, &argv
, &added_libraries
);
3340 /* Scan argv twice. Here, the first time, just count how many switches
3341 there will be in their vector, and how many input files in theirs.
3342 Here we also parse the switches that cc itself uses (e.g. -v). */
3344 for (i
= 1; i
< argc
; i
++)
3346 if (! strcmp (argv
[i
], "-dumpspecs"))
3348 struct spec_list
*sl
;
3350 for (sl
= specs
; sl
; sl
= sl
->next
)
3351 printf ("*%s:\n%s\n\n", sl
->name
, *(sl
->ptr_spec
));
3352 if (link_command_spec
)
3353 printf ("*link_command:\n%s\n\n", link_command_spec
);
3356 else if (! strcmp (argv
[i
], "-dumpversion"))
3358 printf ("%s\n", spec_version
);
3361 else if (! strcmp (argv
[i
], "-dumpmachine"))
3363 printf ("%s\n", spec_machine
);
3366 else if (strcmp (argv
[i
], "-fversion") == 0)
3368 /* translate_options () has turned --version into -fversion. */
3369 printf (_("%s (GCC) %s\n"), programname
, version_string
);
3370 fputs (_("Copyright (C) 2002 Free Software Foundation, Inc.\n"),
3372 fputs (_("This is free software; see the source for copying conditions. There is NO\n\
3373 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n"),
3377 else if (strcmp (argv
[i
], "-fhelp") == 0)
3379 /* translate_options () has turned --help into -fhelp. */
3380 print_help_list
= 1;
3382 /* We will be passing a dummy file on to the sub-processes. */
3386 /* CPP driver cannot obtain switch from cc1_options. */
3388 add_preprocessor_option ("--help", 6);
3389 add_assembler_option ("--help", 6);
3390 add_linker_option ("--help", 6);
3392 else if (strcmp (argv
[i
], "-ftarget-help") == 0)
3394 /* translate_options() has turned --target-help into -ftarget-help. */
3395 target_help_flag
= 1;
3397 /* We will be passing a dummy file on to the sub-processes. */
3401 /* CPP driver cannot obtain switch from cc1_options. */
3403 add_preprocessor_option ("--target-help", 13);
3404 add_assembler_option ("--target-help", 13);
3405 add_linker_option ("--target-help", 13);
3407 else if (! strcmp (argv
[i
], "-pass-exit-codes"))
3409 pass_exit_codes
= 1;
3412 else if (! strcmp (argv
[i
], "-print-search-dirs"))
3413 print_search_dirs
= 1;
3414 else if (! strcmp (argv
[i
], "-print-libgcc-file-name"))
3415 print_file_name
= "libgcc.a";
3416 else if (! strncmp (argv
[i
], "-print-file-name=", 17))
3417 print_file_name
= argv
[i
] + 17;
3418 else if (! strncmp (argv
[i
], "-print-prog-name=", 17))
3419 print_prog_name
= argv
[i
] + 17;
3420 else if (! strcmp (argv
[i
], "-print-multi-lib"))
3421 print_multi_lib
= 1;
3422 else if (! strcmp (argv
[i
], "-print-multi-directory"))
3423 print_multi_directory
= 1;
3424 else if (! strcmp (argv
[i
], "-print-multi-os-directory"))
3425 print_multi_os_directory
= 1;
3426 else if (! strncmp (argv
[i
], "-Wa,", 4))
3429 /* Pass the rest of this option to the assembler. */
3431 /* Split the argument at commas. */
3433 for (j
= 4; argv
[i
][j
]; j
++)
3434 if (argv
[i
][j
] == ',')
3436 add_assembler_option (argv
[i
] + prev
, j
- prev
);
3440 /* Record the part after the last comma. */
3441 add_assembler_option (argv
[i
] + prev
, j
- prev
);
3443 else if (! strncmp (argv
[i
], "-Wp,", 4))
3446 /* Pass the rest of this option to the preprocessor. */
3448 /* Split the argument at commas. */
3450 for (j
= 4; argv
[i
][j
]; j
++)
3451 if (argv
[i
][j
] == ',')
3453 add_preprocessor_option (argv
[i
] + prev
, j
- prev
);
3457 /* Record the part after the last comma. */
3458 add_preprocessor_option (argv
[i
] + prev
, j
- prev
);
3460 else if (argv
[i
][0] == '+' && argv
[i
][1] == 'e')
3461 /* The +e options to the C++ front-end. */
3463 else if (strncmp (argv
[i
], "-Wl,", 4) == 0)
3466 /* Split the argument at commas. */
3467 for (j
= 3; argv
[i
][j
]; j
++)
3468 n_infiles
+= (argv
[i
][j
] == ',');
3470 else if (strcmp (argv
[i
], "-Xlinker") == 0)
3473 fatal ("argument to `-Xlinker' is missing");
3478 else if (strcmp (argv
[i
], "-Xpreprocessor") == 0)
3481 fatal ("argument to `-Xpreprocessor' is missing");
3483 add_preprocessor_option (argv
[i
+1], strlen (argv
[i
+1]));
3485 else if (strcmp (argv
[i
], "-Xassembler") == 0)
3488 fatal ("argument to `-Xassembler' is missing");
3490 add_assembler_option (argv
[i
+1], strlen (argv
[i
+1]));
3492 else if (strcmp (argv
[i
], "-l") == 0)
3495 fatal ("argument to `-l' is missing");
3500 else if (strncmp (argv
[i
], "-l", 2) == 0)
3502 else if (strcmp (argv
[i
], "-save-temps") == 0)
3504 save_temps_flag
= 1;
3507 else if (strcmp (argv
[i
], "-specs") == 0)
3509 struct user_specs
*user
= (struct user_specs
*)
3510 xmalloc (sizeof (struct user_specs
));
3512 fatal ("argument to `-specs' is missing");
3514 user
->next
= (struct user_specs
*) 0;
3515 user
->filename
= argv
[i
];
3516 if (user_specs_tail
)
3517 user_specs_tail
->next
= user
;
3519 user_specs_head
= user
;
3520 user_specs_tail
= user
;
3522 else if (strncmp (argv
[i
], "-specs=", 7) == 0)
3524 struct user_specs
*user
= (struct user_specs
*)
3525 xmalloc (sizeof (struct user_specs
));
3526 if (strlen (argv
[i
]) == 7)
3527 fatal ("argument to `-specs=' is missing");
3529 user
->next
= (struct user_specs
*) 0;
3530 user
->filename
= argv
[i
] + 7;
3531 if (user_specs_tail
)
3532 user_specs_tail
->next
= user
;
3534 user_specs_head
= user
;
3535 user_specs_tail
= user
;
3537 else if (strcmp (argv
[i
], "-time") == 0)
3539 else if (strcmp (argv
[i
], "-pipe") == 0)
3541 /* -pipe has to go into the switches array as well as
3546 else if (strcmp (argv
[i
], "-###") == 0)
3548 /* This is similar to -v except that there is no execution
3549 of the commands and the echoed arguments are quoted. It
3550 is intended for use in shell scripts to capture the
3551 driver-generated command line. */
3552 verbose_only_flag
++;
3555 else if (argv
[i
][0] == '-' && argv
[i
][1] != 0)
3557 const char *p
= &argv
[i
][1];
3564 fatal ("`-%c' must come at the start of the command line", c
);
3572 if (p
[1] == 0 && i
+ 1 == argc
)
3573 fatal ("argument to `-B' is missing");
3579 len
= strlen (value
);
3581 /* Catch the case where the user has forgotten to append a
3582 directory separator to the path. Note, they may be using
3583 -B to add an executable name prefix, eg "i386-elf-", in
3584 order to distinguish between multiple installations of
3585 GCC in the same directory. Hence we must check to see
3586 if appending a directory separator actually makes a
3587 valid directory name. */
3588 if (! IS_DIR_SEPARATOR (value
[len
- 1])
3589 && is_directory (value
, "", 0))
3591 char *tmp
= xmalloc (len
+ 2);
3592 strcpy (tmp
, value
);
3593 tmp
[len
] = DIR_SEPARATOR
;
3598 /* As a kludge, if the arg is "[foo/]stageN/", just
3599 add "[foo/]include" to the include prefix. */
3602 && (IS_DIR_SEPARATOR (value
[len
- 8]))))
3603 && strncmp (value
+ len
- 7, "stage", 5) == 0
3604 && ISDIGIT (value
[len
- 2])
3605 && (IS_DIR_SEPARATOR (value
[len
- 1])))
3608 add_prefix (&include_prefixes
, "include", NULL
,
3609 PREFIX_PRIORITY_B_OPT
, 0, NULL
, 0);
3612 char * string
= xmalloc (len
+ 1);
3614 strncpy (string
, value
, len
- 7);
3615 strcpy (string
+ len
- 7, "include");
3616 add_prefix (&include_prefixes
, string
, NULL
,
3617 PREFIX_PRIORITY_B_OPT
, 0, NULL
, 0);
3621 add_prefix (&exec_prefixes
, value
, NULL
,
3622 PREFIX_PRIORITY_B_OPT
, 0, &warn_B
, 0);
3623 add_prefix (&startfile_prefixes
, value
, NULL
,
3624 PREFIX_PRIORITY_B_OPT
, 0, &warn_B
, 0);
3625 add_prefix (&include_prefixes
, concat (value
, "include", NULL
),
3626 NULL
, PREFIX_PRIORITY_B_OPT
, 0, NULL
, 0);
3631 case 'v': /* Print our subcommands and print versions. */
3633 /* If they do anything other than exactly `-v', don't set
3634 verbose_flag; rather, continue on to give the error. */
3652 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
3657 /* Forward scan, just in case -S or -c is specified
3664 if (argv
[j
][0] == '-')
3666 if (SWITCH_CURTAILS_COMPILATION (argv
[j
][1])
3672 else if ((skip
= SWITCH_TAKES_ARG (argv
[j
][1])))
3673 j
+= skip
- (argv
[j
][2] != 0);
3674 else if ((skip
= WORD_SWITCH_TAKES_ARG (argv
[j
] + 1)))
3681 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX) || defined(HAVE_TARGET_OBJECT_SUFFIX)
3683 argv
[i
+ 1] = convert_filename (argv
[i
+ 1], ! have_c
, 0);
3685 argv
[i
] = convert_filename (argv
[i
], ! have_c
, 0);
3692 #ifdef MODIFY_TARGET_NAME
3693 is_modify_target_name
= 0;
3695 for (j
= 0; j
< ARRAY_SIZE (modify_target
); j
++)
3696 if (! strcmp (argv
[i
], modify_target
[j
].sw
))
3699 = (char *) xmalloc (strlen (modify_target
[j
].str
)
3700 + strlen (spec_machine
));
3703 int made_addition
= 0;
3705 is_modify_target_name
= 1;
3706 for (p
= spec_machine
, q
= new_name
; *p
!= 0; )
3708 if (modify_target
[j
].add_del
== DELETE
3709 && (! strncmp (q
, modify_target
[j
].str
,
3710 strlen (modify_target
[j
].str
))))
3711 p
+= strlen (modify_target
[j
].str
);
3712 else if (modify_target
[j
].add_del
== ADD
3713 && ! made_addition
&& *p
== '-')
3715 for (r
= modify_target
[j
].str
; *r
!= 0; )
3723 spec_machine
= new_name
;
3726 if (is_modify_target_name
)
3732 if (SWITCH_TAKES_ARG (c
) > (p
[1] != 0))
3733 i
+= SWITCH_TAKES_ARG (c
) - (p
[1] != 0);
3734 else if (WORD_SWITCH_TAKES_ARG (p
))
3735 i
+= WORD_SWITCH_TAKES_ARG (p
);
3745 if (have_c
&& have_o
&& lang_n_infiles
> 1)
3746 fatal ("cannot specify -o with -c or -S and multiple compilations");
3748 if ((save_temps_flag
|| report_times
) && use_pipes
)
3750 /* -save-temps overrides -pipe, so that temp files are produced */
3751 if (save_temps_flag
)
3752 error ("warning: -pipe ignored because -save-temps specified");
3753 /* -time overrides -pipe because we can't get correct stats when
3754 multiple children are running at once. */
3755 else if (report_times
)
3756 error ("warning: -pipe ignored because -time specified");
3761 /* Set up the search paths before we go looking for config files. */
3763 /* These come before the md prefixes so that we will find gcc's subcommands
3764 (such as cpp) rather than those of the host system. */
3765 /* Use 2 as fourth arg meaning try just the machine as a suffix,
3766 as well as trying the machine and the version. */
3768 add_prefix (&exec_prefixes
, standard_exec_prefix
, "GCC",
3769 PREFIX_PRIORITY_LAST
, 1, warn_std_ptr
, 0);
3770 add_prefix (&exec_prefixes
, standard_exec_prefix
, "BINUTILS",
3771 PREFIX_PRIORITY_LAST
, 2, warn_std_ptr
, 0);
3772 add_prefix (&exec_prefixes
, standard_exec_prefix_1
, "BINUTILS",
3773 PREFIX_PRIORITY_LAST
, 2, warn_std_ptr
, 0);
3776 add_prefix (&startfile_prefixes
, standard_exec_prefix
, "BINUTILS",
3777 PREFIX_PRIORITY_LAST
, 1, warn_std_ptr
, 0);
3778 add_prefix (&startfile_prefixes
, standard_exec_prefix_1
, "BINUTILS",
3779 PREFIX_PRIORITY_LAST
, 1, warn_std_ptr
, 0);
3781 tooldir_prefix
= concat (tooldir_base_prefix
, spec_machine
,
3782 dir_separator_str
, NULL
);
3784 /* If tooldir is relative, base it on exec_prefixes. A relative
3785 tooldir lets us move the installed tree as a unit.
3787 If GCC_EXEC_PREFIX is defined, then we want to add two relative
3788 directories, so that we can search both the user specified directory
3789 and the standard place. */
3791 if (!IS_ABSOLUTE_PATHNAME (tooldir_prefix
))
3793 if (gcc_exec_prefix
)
3795 char *gcc_exec_tooldir_prefix
3796 = concat (gcc_exec_prefix
, spec_machine
, dir_separator_str
,
3797 spec_version
, dir_separator_str
, tooldir_prefix
, NULL
);
3799 add_prefix (&exec_prefixes
,
3800 concat (gcc_exec_tooldir_prefix
, "bin",
3801 dir_separator_str
, NULL
),
3802 NULL
, PREFIX_PRIORITY_LAST
, 0, NULL
, 0);
3803 add_prefix (&startfile_prefixes
,
3804 concat (gcc_exec_tooldir_prefix
, "lib",
3805 dir_separator_str
, NULL
),
3806 NULL
, PREFIX_PRIORITY_LAST
, 0, NULL
, 1);
3809 tooldir_prefix
= concat (standard_exec_prefix
, spec_machine
,
3810 dir_separator_str
, spec_version
,
3811 dir_separator_str
, tooldir_prefix
, NULL
);
3814 add_prefix (&exec_prefixes
,
3815 concat (tooldir_prefix
, "bin", dir_separator_str
, NULL
),
3816 "BINUTILS", PREFIX_PRIORITY_LAST
, 0, NULL
, 0);
3817 add_prefix (&startfile_prefixes
,
3818 concat (tooldir_prefix
, "lib", dir_separator_str
, NULL
),
3819 "BINUTILS", PREFIX_PRIORITY_LAST
, 0, NULL
, 1);
3821 if (target_system_root
&& gcc_exec_prefix
)
3823 char *tmp_prefix
= make_relative_prefix (argv
[0],
3824 standard_bindir_prefix
,
3825 target_system_root
);
3826 if (tmp_prefix
&& access_check (tmp_prefix
, F_OK
) == 0)
3827 target_system_root
= tmp_prefix
;
3830 /* More prefixes are enabled in main, after we read the specs file
3831 and determine whether this is cross-compilation or not. */
3833 /* Then create the space for the vectors and scan again. */
3835 switches
= ((struct switchstr
*)
3836 xmalloc ((n_switches
+ 1) * sizeof (struct switchstr
)));
3837 infiles
= (struct infile
*) xmalloc ((n_infiles
+ 1) * sizeof (struct infile
));
3840 last_language_n_infiles
= -1;
3842 /* This, time, copy the text of each switch and store a pointer
3843 to the copy in the vector of switches.
3844 Store all the infiles in their vector. */
3846 for (i
= 1; i
< argc
; i
++)
3848 /* Just skip the switches that were handled by the preceding loop. */
3849 #ifdef MODIFY_TARGET_NAME
3850 is_modify_target_name
= 0;
3852 for (j
= 0; j
< ARRAY_SIZE (modify_target
); j
++)
3853 if (! strcmp (argv
[i
], modify_target
[j
].sw
))
3854 is_modify_target_name
= 1;
3856 if (is_modify_target_name
)
3860 if (! strncmp (argv
[i
], "-Wa,", 4))
3862 else if (! strncmp (argv
[i
], "-Wp,", 4))
3864 else if (! strcmp (argv
[i
], "-pass-exit-codes"))
3866 else if (! strcmp (argv
[i
], "-print-search-dirs"))
3868 else if (! strcmp (argv
[i
], "-print-libgcc-file-name"))
3870 else if (! strncmp (argv
[i
], "-print-file-name=", 17))
3872 else if (! strncmp (argv
[i
], "-print-prog-name=", 17))
3874 else if (! strcmp (argv
[i
], "-print-multi-lib"))
3876 else if (! strcmp (argv
[i
], "-print-multi-directory"))
3878 else if (! strcmp (argv
[i
], "-print-multi-os-directory"))
3880 else if (! strcmp (argv
[i
], "-ftarget-help"))
3882 else if (! strcmp (argv
[i
], "-fhelp"))
3884 else if (argv
[i
][0] == '+' && argv
[i
][1] == 'e')
3886 /* Compensate for the +e options to the C++ front-end;
3887 they're there simply for cfront call-compatibility. We do
3888 some magic in default_compilers to pass them down properly.
3889 Note we deliberately start at the `+' here, to avoid passing
3890 -e0 or -e1 down into the linker. */
3891 switches
[n_switches
].part1
= &argv
[i
][0];
3892 switches
[n_switches
].args
= 0;
3893 switches
[n_switches
].live_cond
= SWITCH_OK
;
3894 switches
[n_switches
].validated
= 0;
3897 else if (strncmp (argv
[i
], "-Wl,", 4) == 0)
3900 /* Split the argument at commas. */
3902 for (j
= 4; argv
[i
][j
]; j
++)
3903 if (argv
[i
][j
] == ',')
3905 infiles
[n_infiles
].language
= "*";
3906 infiles
[n_infiles
++].name
3907 = save_string (argv
[i
] + prev
, j
- prev
);
3910 /* Record the part after the last comma. */
3911 infiles
[n_infiles
].language
= "*";
3912 infiles
[n_infiles
++].name
= argv
[i
] + prev
;
3914 else if (strcmp (argv
[i
], "-Xlinker") == 0)
3916 infiles
[n_infiles
].language
= "*";
3917 infiles
[n_infiles
++].name
= argv
[++i
];
3919 else if (strcmp (argv
[i
], "-Xassembler") == 0)
3921 infiles
[n_infiles
].language
= "*";
3922 infiles
[n_infiles
++].name
= argv
[++i
];
3924 else if (strcmp (argv
[i
], "-Xpreprocessor") == 0)
3926 infiles
[n_infiles
].language
= "*";
3927 infiles
[n_infiles
++].name
= argv
[++i
];
3929 else if (strcmp (argv
[i
], "-l") == 0)
3930 { /* POSIX allows separation of -l and the lib arg;
3931 canonicalize by concatenating -l with its arg */
3932 infiles
[n_infiles
].language
= "*";
3933 infiles
[n_infiles
++].name
= concat ("-l", argv
[++i
], NULL
);
3935 else if (strncmp (argv
[i
], "-l", 2) == 0)
3937 infiles
[n_infiles
].language
= "*";
3938 infiles
[n_infiles
++].name
= argv
[i
];
3940 else if (strcmp (argv
[i
], "-specs") == 0)
3942 else if (strncmp (argv
[i
], "-specs=", 7) == 0)
3944 else if (strcmp (argv
[i
], "-time") == 0)
3946 else if (strcmp (argv
[i
], "-###") == 0)
3948 else if (argv
[i
][0] == '-' && argv
[i
][1] != 0)
3950 const char *p
= &argv
[i
][1];
3955 if (p
[1] == 0 && i
+ 1 == argc
)
3956 fatal ("argument to `-x' is missing");
3958 spec_lang
= argv
[++i
];
3961 if (! strcmp (spec_lang
, "none"))
3962 /* Suppress the warning if -xnone comes after the last input
3963 file, because alternate command interfaces like g++ might
3964 find it useful to place -xnone after each input file. */
3967 last_language_n_infiles
= n_infiles
;
3970 switches
[n_switches
].part1
= p
;
3971 /* Deal with option arguments in separate argv elements. */
3972 if ((SWITCH_TAKES_ARG (c
) > (p
[1] != 0))
3973 || WORD_SWITCH_TAKES_ARG (p
))
3976 int n_args
= WORD_SWITCH_TAKES_ARG (p
);
3980 /* Count only the option arguments in separate argv elements. */
3981 n_args
= SWITCH_TAKES_ARG (c
) - (p
[1] != 0);
3983 if (i
+ n_args
>= argc
)
3984 fatal ("argument to `-%s' is missing", p
);
3985 switches
[n_switches
].args
3986 = (const char **) xmalloc ((n_args
+ 1) * sizeof(const char *));
3988 switches
[n_switches
].args
[j
++] = argv
[++i
];
3989 /* Null-terminate the vector. */
3990 switches
[n_switches
].args
[j
] = 0;
3992 else if (strchr (switches_need_spaces
, c
))
3994 /* On some systems, ld cannot handle some options without
3995 a space. So split the option from its argument. */
3996 char *part1
= (char *) xmalloc (2);
4000 switches
[n_switches
].part1
= part1
;
4001 switches
[n_switches
].args
4002 = (const char **) xmalloc (2 * sizeof (const char *));
4003 switches
[n_switches
].args
[0] = xstrdup (p
+1);
4004 switches
[n_switches
].args
[1] = 0;
4007 switches
[n_switches
].args
= 0;
4009 switches
[n_switches
].live_cond
= SWITCH_OK
;
4010 switches
[n_switches
].validated
= 0;
4011 switches
[n_switches
].ordering
= 0;
4012 /* These are always valid, since gcc.c itself understands them. */
4013 if (!strcmp (p
, "save-temps")
4014 || !strcmp (p
, "static-libgcc")
4015 || !strcmp (p
, "shared-libgcc")
4016 || !strcmp (p
, "pipe"))
4017 switches
[n_switches
].validated
= 1;
4020 char ch
= switches
[n_switches
].part1
[0];
4022 switches
[n_switches
].validated
= 1;
4028 #ifdef HAVE_TARGET_OBJECT_SUFFIX
4029 argv
[i
] = convert_filename (argv
[i
], 0, access (argv
[i
], F_OK
));
4032 if (strcmp (argv
[i
], "-") != 0 && access (argv
[i
], F_OK
) < 0)
4034 perror_with_name (argv
[i
]);
4039 infiles
[n_infiles
].language
= spec_lang
;
4040 infiles
[n_infiles
++].name
= argv
[i
];
4045 if (n_infiles
== last_language_n_infiles
&& spec_lang
!= 0)
4046 error ("warning: `-x %s' after last input file has no effect", spec_lang
);
4048 /* Ensure we only invoke each subprocess once. */
4049 if (target_help_flag
|| print_help_list
)
4053 /* Create a dummy input file, so that we can pass --target-help on to
4054 the various sub-processes. */
4055 infiles
[0].language
= "c";
4056 infiles
[0].name
= "help-dummy";
4058 if (target_help_flag
)
4060 switches
[n_switches
].part1
= "--target-help";
4061 switches
[n_switches
].args
= 0;
4062 switches
[n_switches
].live_cond
= SWITCH_OK
;
4063 switches
[n_switches
].validated
= 0;
4068 if (print_help_list
)
4070 switches
[n_switches
].part1
= "--help";
4071 switches
[n_switches
].args
= 0;
4072 switches
[n_switches
].live_cond
= SWITCH_OK
;
4073 switches
[n_switches
].validated
= 0;
4079 switches
[n_switches
].part1
= 0;
4080 infiles
[n_infiles
].name
= 0;
4083 /* Store switches not filtered out by %<S in spec in COLLECT_GCC_OPTIONS
4084 and place that in the environment. */
4087 set_collect_gcc_options ()
4092 /* Build COLLECT_GCC_OPTIONS to have all of the options specified to
4094 obstack_grow (&collect_obstack
, "COLLECT_GCC_OPTIONS=",
4095 sizeof ("COLLECT_GCC_OPTIONS=") - 1);
4098 for (i
= 0; (int) i
< n_switches
; i
++)
4100 const char *const *args
;
4103 obstack_grow (&collect_obstack
, " ", 1);
4107 /* Ignore elided switches. */
4108 if (switches
[i
].live_cond
== SWITCH_IGNORE
)
4111 obstack_grow (&collect_obstack
, "'-", 2);
4112 q
= switches
[i
].part1
;
4113 while ((p
= strchr (q
, '\'')))
4115 obstack_grow (&collect_obstack
, q
, p
- q
);
4116 obstack_grow (&collect_obstack
, "'\\''", 4);
4119 obstack_grow (&collect_obstack
, q
, strlen (q
));
4120 obstack_grow (&collect_obstack
, "'", 1);
4122 for (args
= switches
[i
].args
; args
&& *args
; args
++)
4124 obstack_grow (&collect_obstack
, " '", 2);
4126 while ((p
= strchr (q
, '\'')))
4128 obstack_grow (&collect_obstack
, q
, p
- q
);
4129 obstack_grow (&collect_obstack
, "'\\''", 4);
4132 obstack_grow (&collect_obstack
, q
, strlen (q
));
4133 obstack_grow (&collect_obstack
, "'", 1);
4136 obstack_grow (&collect_obstack
, "\0", 1);
4137 putenv (obstack_finish (&collect_obstack
));
4140 /* Process a spec string, accumulating and running commands. */
4142 /* These variables describe the input file name.
4143 input_file_number is the index on outfiles of this file,
4144 so that the output file name can be stored for later use by %o.
4145 input_basename is the start of the part of the input file
4146 sans all directory names, and basename_length is the number
4147 of characters starting there excluding the suffix .c or whatever. */
4149 const char *input_filename
;
4150 static int input_file_number
;
4151 size_t input_filename_length
;
4152 static int basename_length
;
4153 static int suffixed_basename_length
;
4154 static const char *input_basename
;
4155 static const char *input_suffix
;
4156 static struct stat input_stat
;
4157 static int input_stat_set
;
4159 /* The compiler used to process the current input file. */
4160 static struct compiler
*input_file_compiler
;
4162 /* These are variables used within do_spec and do_spec_1. */
4164 /* Nonzero if an arg has been started and not yet terminated
4165 (with space, tab or newline). */
4166 static int arg_going
;
4168 /* Nonzero means %d or %g has been seen; the next arg to be terminated
4169 is a temporary file name. */
4170 static int delete_this_arg
;
4172 /* Nonzero means %w has been seen; the next arg to be terminated
4173 is the output file name of this compilation. */
4174 static int this_is_output_file
;
4176 /* Nonzero means %s has been seen; the next arg to be terminated
4177 is the name of a library file and we should try the standard
4178 search dirs for it. */
4179 static int this_is_library_file
;
4181 /* Nonzero means that the input of this command is coming from a pipe. */
4182 static int input_from_pipe
;
4184 /* Nonnull means substitute this for any suffix when outputting a switches
4186 static const char *suffix_subst
;
4188 /* Process the spec SPEC and run the commands specified therein.
4189 Returns 0 if the spec is successfully processed; -1 if failed. */
4197 value
= do_spec_2 (spec
);
4199 /* Force out any unfinished command.
4200 If -pipe, this forces out the last command if it ended in `|'. */
4203 if (argbuf_index
> 0 && !strcmp (argbuf
[argbuf_index
- 1], "|"))
4206 set_collect_gcc_options ();
4208 if (argbuf_index
> 0)
4221 delete_this_arg
= 0;
4222 this_is_output_file
= 0;
4223 this_is_library_file
= 0;
4224 input_from_pipe
= 0;
4225 suffix_subst
= NULL
;
4227 return do_spec_1 (spec
, 0, NULL
);
4231 /* Process the given spec string and add any new options to the end
4232 of the switches/n_switches array. */
4239 do_spec_1 (" ", 0, NULL
);
4241 if (argbuf_index
> 0)
4246 n_switches
+= argbuf_index
;
4247 switches
= xrealloc (switches
,
4248 sizeof (struct switchstr
) * (n_switches
+ 1));
4250 switches
[n_switches
] = switches
[first
];
4251 for (i
= 0; i
< argbuf_index
; i
++)
4253 struct switchstr
*sw
;
4255 /* Each switch should start with '-'. */
4256 if (argbuf
[i
][0] != '-')
4259 sw
= &switches
[i
+ first
];
4260 sw
->part1
= &argbuf
[i
][1];
4262 sw
->live_cond
= SWITCH_OK
;
4269 /* Process the sub-spec SPEC as a portion of a larger spec.
4270 This is like processing a whole spec except that we do
4271 not initialize at the beginning and we do not supply a
4272 newline by default at the end.
4273 INSWITCH nonzero means don't process %-sequences in SPEC;
4274 in this case, % is treated as an ordinary character.
4275 This is used while substituting switches.
4276 INSWITCH nonzero also causes SPC not to terminate an argument.
4278 Value is zero unless a line was finished
4279 and the command on that line reported an error. */
4282 do_spec_1 (spec
, inswitch
, soft_matched_part
)
4285 const char *soft_matched_part
;
4287 const char *p
= spec
;
4294 /* If substituting a switch, treat all chars like letters.
4295 Otherwise, NL, SPC, TAB and % are special. */
4296 switch (inswitch
? 'a' : c
)
4299 /* End of line: finish any pending argument,
4300 then run the pending command if one has been started. */
4303 obstack_1grow (&obstack
, 0);
4304 string
= obstack_finish (&obstack
);
4305 if (this_is_library_file
)
4306 string
= find_file (string
);
4307 store_arg (string
, delete_this_arg
, this_is_output_file
);
4308 if (this_is_output_file
)
4309 outfiles
[input_file_number
] = string
;
4313 if (argbuf_index
> 0 && !strcmp (argbuf
[argbuf_index
- 1], "|"))
4315 /* A `|' before the newline means use a pipe here,
4316 but only if -pipe was specified.
4317 Otherwise, execute now and don't pass the `|' as an arg. */
4320 input_from_pipe
= 1;
4327 set_collect_gcc_options ();
4329 if (argbuf_index
> 0)
4335 /* Reinitialize for a new command, and for a new argument. */
4338 delete_this_arg
= 0;
4339 this_is_output_file
= 0;
4340 this_is_library_file
= 0;
4341 input_from_pipe
= 0;
4345 /* End any pending argument. */
4348 obstack_1grow (&obstack
, 0);
4349 string
= obstack_finish (&obstack
);
4350 if (this_is_library_file
)
4351 string
= find_file (string
);
4352 store_arg (string
, delete_this_arg
, this_is_output_file
);
4353 if (this_is_output_file
)
4354 outfiles
[input_file_number
] = string
;
4358 obstack_1grow (&obstack
, c
);
4364 /* Space or tab ends an argument if one is pending. */
4367 obstack_1grow (&obstack
, 0);
4368 string
= obstack_finish (&obstack
);
4369 if (this_is_library_file
)
4370 string
= find_file (string
);
4371 store_arg (string
, delete_this_arg
, this_is_output_file
);
4372 if (this_is_output_file
)
4373 outfiles
[input_file_number
] = string
;
4375 /* Reinitialize for a new argument. */
4377 delete_this_arg
= 0;
4378 this_is_output_file
= 0;
4379 this_is_library_file
= 0;
4386 fatal ("invalid specification! Bug in cc");
4389 obstack_grow (&obstack
, input_basename
, basename_length
);
4394 obstack_grow (&obstack
, input_basename
, suffixed_basename_length
);
4399 delete_this_arg
= 2;
4402 /* Dump out the directories specified with LIBRARY_PATH,
4403 followed by the absolute directories
4404 that we search for startfiles. */
4407 struct prefix_list
*pl
= startfile_prefixes
.plist
;
4408 size_t bufsize
= 100;
4409 char *buffer
= (char *) xmalloc (bufsize
);
4412 for (; pl
; pl
= pl
->next
)
4414 #ifdef RELATIVE_PREFIX_NOT_LINKDIR
4415 /* Used on systems which record the specified -L dirs
4416 and use them to search for dynamic linking. */
4417 /* Relative directories always come from -B,
4418 and it is better not to use them for searching
4419 at run time. In particular, stage1 loses. */
4420 if (!IS_ABSOLUTE_PATHNAME (pl
->prefix
))
4423 /* Try subdirectory if there is one. */
4424 if (multilib_dir
!= NULL
4425 || (pl
->os_multilib
&& multilib_os_dir
!= NULL
))
4427 const char *multi_dir
;
4429 multi_dir
= pl
->os_multilib
? multilib_os_dir
4431 if (machine_suffix
&& multilib_dir
)
4433 if (strlen (pl
->prefix
) + strlen (machine_suffix
)
4435 bufsize
= (strlen (pl
->prefix
)
4436 + strlen (machine_suffix
)) * 2 + 1;
4437 buffer
= (char *) xrealloc (buffer
, bufsize
);
4438 strcpy (buffer
, pl
->prefix
);
4439 strcat (buffer
, machine_suffix
);
4440 if (is_directory (buffer
, multilib_dir
, 1))
4442 do_spec_1 ("-L", 0, NULL
);
4443 #ifdef SPACE_AFTER_L_OPTION
4444 do_spec_1 (" ", 0, NULL
);
4446 do_spec_1 (buffer
, 1, NULL
);
4447 do_spec_1 (multilib_dir
, 1, NULL
);
4448 /* Make this a separate argument. */
4449 do_spec_1 (" ", 0, NULL
);
4452 if (!pl
->require_machine_suffix
)
4454 if (is_directory (pl
->prefix
, multi_dir
, 1))
4456 do_spec_1 ("-L", 0, NULL
);
4457 #ifdef SPACE_AFTER_L_OPTION
4458 do_spec_1 (" ", 0, NULL
);
4460 do_spec_1 (pl
->prefix
, 1, NULL
);
4461 do_spec_1 (multi_dir
, 1, NULL
);
4462 /* Make this a separate argument. */
4463 do_spec_1 (" ", 0, NULL
);
4469 if (is_directory (pl
->prefix
, machine_suffix
, 1))
4471 do_spec_1 ("-L", 0, NULL
);
4472 #ifdef SPACE_AFTER_L_OPTION
4473 do_spec_1 (" ", 0, NULL
);
4475 do_spec_1 (pl
->prefix
, 1, NULL
);
4476 /* Remove slash from machine_suffix. */
4477 if (strlen (machine_suffix
) >= bufsize
)
4478 bufsize
= strlen (machine_suffix
) * 2 + 1;
4479 buffer
= (char *) xrealloc (buffer
, bufsize
);
4480 strcpy (buffer
, machine_suffix
);
4481 idx
= strlen (buffer
);
4482 if (IS_DIR_SEPARATOR (buffer
[idx
- 1]))
4483 buffer
[idx
- 1] = 0;
4484 do_spec_1 (buffer
, 1, NULL
);
4485 /* Make this a separate argument. */
4486 do_spec_1 (" ", 0, NULL
);
4489 if (!pl
->require_machine_suffix
)
4491 if (is_directory (pl
->prefix
, "", 1))
4493 do_spec_1 ("-L", 0, NULL
);
4494 #ifdef SPACE_AFTER_L_OPTION
4495 do_spec_1 (" ", 0, NULL
);
4497 /* Remove slash from pl->prefix. */
4498 if (strlen (pl
->prefix
) >= bufsize
)
4499 bufsize
= strlen (pl
->prefix
) * 2 + 1;
4500 buffer
= (char *) xrealloc (buffer
, bufsize
);
4501 strcpy (buffer
, pl
->prefix
);
4502 idx
= strlen (buffer
);
4503 if (IS_DIR_SEPARATOR (buffer
[idx
- 1]))
4504 buffer
[idx
- 1] = 0;
4505 do_spec_1 (buffer
, 1, NULL
);
4506 /* Make this a separate argument. */
4507 do_spec_1 (" ", 0, NULL
);
4516 /* %efoo means report an error with `foo' as error message
4517 and don't execute any more commands for this file. */
4521 while (*p
!= 0 && *p
!= '\n')
4523 buf
= (char *) alloca (p
- q
+ 1);
4524 strncpy (buf
, q
, p
- q
);
4531 /* %nfoo means report a notice with `foo' on stderr. */
4535 while (*p
!= 0 && *p
!= '\n')
4537 buf
= (char *) alloca (p
- q
+ 1);
4538 strncpy (buf
, q
, p
- q
);
4540 notice ("%s\n", buf
);
4550 /* If save_temps_flag is off, and the HOST_BIT_BUCKET is
4551 defined, and it is not a directory, and it is
4552 writable, use it. Otherwise, treat this like any
4553 other temporary file. */
4555 if ((!save_temps_flag
)
4556 && (stat (HOST_BIT_BUCKET
, &st
) == 0) && (!S_ISDIR (st
.st_mode
))
4557 && (access (HOST_BIT_BUCKET
, W_OK
) == 0))
4559 obstack_grow (&obstack
, HOST_BIT_BUCKET
,
4560 strlen (HOST_BIT_BUCKET
));
4561 delete_this_arg
= 0;
4566 goto create_temp_file
;
4570 obstack_1grow (&obstack
, '-');
4571 delete_this_arg
= 0;
4574 /* consume suffix */
4575 while (*p
== '.' || ISALPHA ((unsigned char) *p
))
4577 if (p
[0] == '%' && p
[1] == 'O')
4582 goto create_temp_file
;
4586 /* consume suffix */
4587 while (*p
== '.' || ISALPHA ((unsigned char) *p
))
4589 if (p
[0] == '%' && p
[1] == 'O')
4594 goto create_temp_file
;
4600 struct temp_name
*t
;
4602 const char *suffix
= p
;
4603 char *saved_suffix
= NULL
;
4605 while (*p
== '.' || ISALPHA ((unsigned char) *p
))
4607 suffix_length
= p
- suffix
;
4608 if (p
[0] == '%' && p
[1] == 'O')
4611 /* We don't support extra suffix characters after %O. */
4612 if (*p
== '.' || ISALPHA ((unsigned char) *p
))
4614 if (suffix_length
== 0)
4615 suffix
= TARGET_OBJECT_SUFFIX
;
4619 = (char *) xmalloc (suffix_length
4620 + strlen (TARGET_OBJECT_SUFFIX
));
4621 strncpy (saved_suffix
, suffix
, suffix_length
);
4622 strcpy (saved_suffix
+ suffix_length
,
4623 TARGET_OBJECT_SUFFIX
);
4625 suffix_length
+= strlen (TARGET_OBJECT_SUFFIX
);
4628 /* If the input_filename has the same suffix specified
4629 for the %g, %u, or %U, and -save-temps is specified,
4630 we could end up using that file as an intermediate
4631 thus clobbering the user's source file (.e.g.,
4632 gcc -save-temps foo.s would clobber foo.s with the
4633 output of cpp0). So check for this condition and
4634 generate a temp file as the intermediate. */
4636 if (save_temps_flag
)
4638 temp_filename_length
= basename_length
+ suffix_length
;
4639 temp_filename
= alloca (temp_filename_length
+ 1);
4640 strncpy ((char *) temp_filename
, input_basename
, basename_length
);
4641 strncpy ((char *) temp_filename
+ basename_length
, suffix
,
4643 *((char *) temp_filename
+ temp_filename_length
) = '\0';
4644 if (strcmp (temp_filename
, input_filename
) != 0)
4646 struct stat st_temp
;
4648 /* Note, set_input() resets input_stat_set to 0. */
4649 if (input_stat_set
== 0)
4651 input_stat_set
= stat (input_filename
, &input_stat
);
4652 if (input_stat_set
>= 0)
4656 /* If we have the stat for the input_filename
4657 and we can do the stat for the temp_filename
4658 then the they could still refer to the same
4659 file if st_dev/st_ino's are the same. */
4661 if (input_stat_set
!= 1
4662 || stat (temp_filename
, &st_temp
) < 0
4663 || input_stat
.st_dev
!= st_temp
.st_dev
4664 || input_stat
.st_ino
!= st_temp
.st_ino
)
4666 temp_filename
= save_string (temp_filename
,
4667 temp_filename_length
+ 1);
4668 obstack_grow (&obstack
, temp_filename
,
4669 temp_filename_length
);
4671 delete_this_arg
= 0;
4677 /* See if we already have an association of %g/%u/%U and
4679 for (t
= temp_names
; t
; t
= t
->next
)
4680 if (t
->length
== suffix_length
4681 && strncmp (t
->suffix
, suffix
, suffix_length
) == 0
4682 && t
->unique
== (c
== 'u' || c
== 'j'))
4685 /* Make a new association if needed. %u and %j
4687 if (t
== 0 || c
== 'u' || c
== 'j')
4691 t
= (struct temp_name
*) xmalloc (sizeof (struct temp_name
));
4692 t
->next
= temp_names
;
4695 t
->length
= suffix_length
;
4698 t
->suffix
= saved_suffix
;
4699 saved_suffix
= NULL
;
4702 t
->suffix
= save_string (suffix
, suffix_length
);
4703 t
->unique
= (c
== 'u' || c
== 'j');
4704 temp_filename
= make_temp_file (t
->suffix
);
4705 temp_filename_length
= strlen (temp_filename
);
4706 t
->filename
= temp_filename
;
4707 t
->filename_length
= temp_filename_length
;
4711 free (saved_suffix
);
4713 obstack_grow (&obstack
, t
->filename
, t
->filename_length
);
4714 delete_this_arg
= 1;
4720 obstack_grow (&obstack
, input_filename
, input_filename_length
);
4726 struct prefix_list
*pl
= include_prefixes
.plist
;
4728 if (gcc_exec_prefix
)
4730 do_spec_1 ("-iprefix", 1, NULL
);
4731 /* Make this a separate argument. */
4732 do_spec_1 (" ", 0, NULL
);
4733 do_spec_1 (gcc_exec_prefix
, 1, NULL
);
4734 do_spec_1 (" ", 0, NULL
);
4737 for (; pl
; pl
= pl
->next
)
4739 do_spec_1 ("-isystem", 1, NULL
);
4740 /* Make this a separate argument. */
4741 do_spec_1 (" ", 0, NULL
);
4742 do_spec_1 (pl
->prefix
, 1, NULL
);
4743 do_spec_1 (" ", 0, NULL
);
4750 int max
= n_infiles
;
4751 max
+= lang_specific_extra_outfiles
;
4753 for (i
= 0; i
< max
; i
++)
4755 store_arg (outfiles
[i
], 0, 0);
4760 obstack_grow (&obstack
, TARGET_OBJECT_SUFFIX
, strlen (TARGET_OBJECT_SUFFIX
));
4765 this_is_library_file
= 1;
4769 this_is_output_file
= 1;
4774 int cur_index
= argbuf_index
;
4775 /* Handle the {...} following the %W. */
4778 p
= handle_braces (p
+ 1);
4781 /* End any pending argument. */
4784 obstack_1grow (&obstack
, 0);
4785 string
= obstack_finish (&obstack
);
4786 if (this_is_library_file
)
4787 string
= find_file (string
);
4788 store_arg (string
, delete_this_arg
, this_is_output_file
);
4789 if (this_is_output_file
)
4790 outfiles
[input_file_number
] = string
;
4793 /* If any args were output, mark the last one for deletion
4795 if (argbuf_index
!= cur_index
)
4796 record_temp_file (argbuf
[argbuf_index
- 1], 0, 1);
4800 /* %x{OPTION} records OPTION for %X to output. */
4806 /* Skip past the option value and make a copy. */
4811 string
= save_string (p1
+ 1, p
- p1
- 2);
4813 /* See if we already recorded this option. */
4814 for (i
= 0; i
< n_linker_options
; i
++)
4815 if (! strcmp (string
, linker_options
[i
]))
4821 /* This option is new; add it. */
4822 add_linker_option (string
, strlen (string
));
4826 /* Dump out the options accumulated previously using %x. */
4828 for (i
= 0; i
< n_linker_options
; i
++)
4830 do_spec_1 (linker_options
[i
], 1, NULL
);
4831 /* Make each accumulated option a separate argument. */
4832 do_spec_1 (" ", 0, NULL
);
4836 /* Dump out the options accumulated previously using -Wa,. */
4838 for (i
= 0; i
< n_assembler_options
; i
++)
4840 do_spec_1 (assembler_options
[i
], 1, NULL
);
4841 /* Make each accumulated option a separate argument. */
4842 do_spec_1 (" ", 0, NULL
);
4846 /* Dump out the options accumulated previously using -Wp,. */
4848 for (i
= 0; i
< n_preprocessor_options
; i
++)
4850 do_spec_1 (preprocessor_options
[i
], 1, NULL
);
4851 /* Make each accumulated option a separate argument. */
4852 do_spec_1 (" ", 0, NULL
);
4856 /* Here are digits and numbers that just process
4857 a certain constant string as a spec. */
4860 value
= do_spec_1 (cc1_spec
, 0, NULL
);
4866 value
= do_spec_1 (cc1plus_spec
, 0, NULL
);
4872 value
= do_spec_1 (asm_spec
, 0, NULL
);
4878 value
= do_spec_1 (asm_final_spec
, 0, NULL
);
4885 const char *const spec
4886 = (input_file_compiler
->cpp_spec
4887 ? input_file_compiler
->cpp_spec
4889 value
= do_spec_1 (spec
, 0, NULL
);
4896 value
= do_spec_1 (endfile_spec
, 0, NULL
);
4902 value
= do_spec_1 (link_spec
, 0, NULL
);
4908 value
= do_spec_1 (lib_spec
, 0, NULL
);
4914 value
= do_spec_1 (libgcc_spec
, 0, NULL
);
4920 if (multilib_dir
&& strcmp (multilib_dir
, ".") != 0)
4926 len
= strlen (multilib_dir
);
4927 obstack_blank (&obstack
, len
+ 1);
4928 p
= obstack_next_free (&obstack
) - (len
+ 1);
4931 for (q
= multilib_dir
; *q
; ++q
, ++p
)
4932 *p
= (IS_DIR_SEPARATOR (*q
) ? '_' : *q
);
4938 char *x
= (char *) alloca (strlen (cpp_predefines
) + 1);
4942 /* Copy all of the -D options in CPP_PREDEFINES into BUF. */
4946 if (! strncmp (y
, "-D", 2))
4947 /* Copy the whole option. */
4948 while (*y
&& *y
!= ' ' && *y
!= '\t')
4950 else if (*y
== ' ' || *y
== '\t')
4951 /* Copy whitespace to the result. */
4953 /* Don't copy other options. */
4960 value
= do_spec_1 (buf
, 0, NULL
);
4968 char *x
= (char *) alloca (strlen (cpp_predefines
) * 4 + 1);
4972 /* Copy all of CPP_PREDEFINES into BUF,
4973 but force them all into the reserved name space if they
4974 aren't already there. The reserved name space is all
4975 identifiers beginning with two underscores or with one
4976 underscore and a capital letter. We do the forcing by
4977 adding up to two underscores to the beginning and end
4978 of each symbol. e.g. mips, _mips, mips_, and _mips_ all
4983 if (! strncmp (y
, "-D", 2))
4992 && ! ISUPPER ((unsigned char) *(y
+ 1))))
4994 /* Stick __ at front of macro name. */
4998 /* Arrange to stick __ at the end as well. */
5002 /* Copy the macro name. */
5003 while (*y
&& *y
!= '=' && *y
!= ' ' && *y
!= '\t')
5016 /* Copy the value given, if any. */
5017 while (*y
&& *y
!= ' ' && *y
!= '\t')
5020 else if (*y
== ' ' || *y
== '\t')
5021 /* Copy whitespace to the result. */
5023 /* Don't copy -A options */
5029 /* Copy all of CPP_PREDEFINES into BUF,
5030 but put __ after every -D. */
5034 if (! strncmp (y
, "-D", 2))
5040 && ! ISUPPER ((unsigned char) *(y
+ 1))))
5042 /* Stick -D__ at front of macro name. */
5049 /* Copy the macro name. */
5050 while (*y
&& *y
!= '=' && *y
!= ' ' && *y
!= '\t')
5053 /* Copy the value given, if any. */
5054 while (*y
&& *y
!= ' ' && *y
!= '\t')
5059 /* Do not copy this macro - we have just done it before */
5060 while (*y
&& *y
!= ' ' && *y
!= '\t')
5064 else if (*y
== ' ' || *y
== '\t')
5065 /* Copy whitespace to the result. */
5067 /* Don't copy -A options. */
5073 /* Copy all of the -A options in CPP_PREDEFINES into BUF. */
5077 if (! strncmp (y
, "-A", 2))
5078 /* Copy the whole option. */
5079 while (*y
&& *y
!= ' ' && *y
!= '\t')
5081 else if (*y
== ' ' || *y
== '\t')
5082 /* Copy whitespace to the result. */
5084 /* Don't copy other options. */
5091 value
= do_spec_1 (buf
, 0, NULL
);
5098 /* We assume there is a directory
5099 separator at the end of this string. */
5100 if (target_system_root
)
5101 obstack_grow (&obstack
, target_system_root
,
5102 strlen (target_system_root
));
5106 value
= do_spec_1 (startfile_spec
, 0, NULL
);
5111 /* Here we define characters other than letters and digits. */
5114 p
= handle_braces (p
);
5120 p
= handle_spec_function (p
);
5126 obstack_1grow (&obstack
, '%');
5133 while (p
[len
] && p
[len
] != ' ' && p
[len
] != '%')
5135 suffix_subst
= save_string (p
- 1, len
+ 1);
5140 /* Henceforth ignore the option(s) matching the pattern
5145 int have_wildcard
= 0;
5148 while (p
[len
] && p
[len
] != ' ' && p
[len
] != '\t')
5151 if (p
[len
-1] == '*')
5154 for (i
= 0; i
< n_switches
; i
++)
5155 if (!strncmp (switches
[i
].part1
, p
, len
- have_wildcard
)
5156 && (have_wildcard
|| switches
[i
].part1
[len
] == '\0'))
5158 switches
[i
].live_cond
= SWITCH_IGNORE
;
5159 switches
[i
].validated
= 1;
5167 if (soft_matched_part
)
5169 do_spec_1 (soft_matched_part
, 1, NULL
);
5170 do_spec_1 (" ", 0, NULL
);
5173 /* Catch the case where a spec string contains something like
5174 '%{foo:%*}'. ie there is no * in the pattern on the left
5175 hand side of the :. */
5176 error ("spec failure: '%%*' has not been initialized by pattern match");
5179 /* Process a string found as the value of a spec given by name.
5180 This feature allows individual machine descriptions
5181 to add and use their own specs.
5182 %[...] modifies -D options the way %P does;
5183 %(...) uses the spec unmodified. */
5185 error ("warning: use of obsolete %%[ operator in specs");
5188 const char *name
= p
;
5189 struct spec_list
*sl
;
5192 /* The string after the S/P is the name of a spec that is to be
5194 while (*p
&& *p
!= ')' && *p
!= ']')
5197 /* See if it's in the list. */
5198 for (len
= p
- name
, sl
= specs
; sl
; sl
= sl
->next
)
5199 if (sl
->name_len
== len
&& !strncmp (sl
->name
, name
, len
))
5201 name
= *(sl
->ptr_spec
);
5203 notice ("Processing spec %c%s%c, which is '%s'\n",
5204 c
, sl
->name
, (c
== '(') ? ')' : ']', name
);
5213 value
= do_spec_1 (name
, 0, NULL
);
5219 char *x
= (char *) alloca (strlen (name
) * 2 + 1);
5221 const char *y
= name
;
5224 /* Copy all of NAME into BUF, but put __ after
5225 every -D and at the end of each arg. */
5228 if (! strncmp (y
, "-D", 2))
5239 && (*y
== ' ' || *y
== '\t' || *y
== '='
5240 || *y
== '}' || *y
== 0))
5253 value
= do_spec_1 (buf
, 0, NULL
);
5259 /* Discard the closing paren or bracket. */
5267 int c1
= *p
++; /* Select first or second version number. */
5268 const char *v
= compiler_version
;
5270 static const char zeroc
= '0';
5272 /* The format of the version string is
5273 ([^0-9]*-)?[0-9]+[.][0-9]+([.][0-9]+)?([- ].*)? */
5275 /* Ignore leading non-digits. i.e. "foo-" in "foo-2.7.2". */
5276 while (! ISDIGIT (*v
))
5278 if (v
> compiler_version
&& v
[-1] != '-')
5281 /* If desired, advance to second version number. */
5284 /* Set V after the first period. */
5285 while (ISDIGIT (*v
))
5292 /* If desired, advance to third version number.
5293 But don't complain if it's not present */
5296 /* Set V after the second period. */
5297 while (ISDIGIT (*v
))
5299 if ((*v
!= 0) && (*v
!= ' ') && (*v
!= '.') && (*v
!= '-'))
5305 /* Set Q at the next period or at the end. */
5307 while (ISDIGIT (*q
))
5309 if (*q
!= 0 && q
> v
&& *q
!= ' ' && *q
!= '.' && *q
!= '-')
5313 /* Put that part into the command. */
5314 obstack_grow (&obstack
, v
, q
- v
);
5316 /* Default to "0" */
5317 obstack_grow (&obstack
, &zeroc
, 1);
5323 error ("spec failure: unrecognized spec option '%c'", c
);
5329 /* Backslash: treat next character as ordinary. */
5334 /* Ordinary character: put it into the current argument. */
5335 obstack_1grow (&obstack
, c
);
5339 /* End of string. If we are processing a spec function, we need to
5340 end any pending argument. */
5341 if (processing_spec_function
&& arg_going
)
5343 obstack_1grow (&obstack
, 0);
5344 string
= obstack_finish (&obstack
);
5345 if (this_is_library_file
)
5346 string
= find_file (string
);
5347 store_arg (string
, delete_this_arg
, this_is_output_file
);
5348 if (this_is_output_file
)
5349 outfiles
[input_file_number
] = string
;
5356 /* Look up a spec function. */
5358 static const struct spec_function
*
5359 lookup_spec_function (name
)
5362 static const struct spec_function
* const spec_function_tables
[] =
5364 static_spec_functions
,
5365 lang_specific_spec_functions
,
5367 const struct spec_function
*sf
;
5370 for (i
= 0; i
< ARRAY_SIZE (spec_function_tables
); i
++)
5372 for (sf
= spec_function_tables
[i
]; sf
->name
!= NULL
; sf
++)
5373 if (strcmp (sf
->name
, name
) == 0)
5380 /* Evaluate a spec function. */
5383 eval_spec_function (func
, args
)
5384 const char *func
, *args
;
5386 const struct spec_function
*sf
;
5387 const char *funcval
;
5389 /* Saved spec processing context. */
5390 int save_argbuf_index
;
5391 int save_argbuf_length
;
5392 const char **save_argbuf
;
5395 int save_delete_this_arg
;
5396 int save_this_is_output_file
;
5397 int save_this_is_library_file
;
5398 int save_input_from_pipe
;
5399 const char *save_suffix_subst
;
5402 sf
= lookup_spec_function (func
);
5404 fatal ("unknown spec function `%s'", func
);
5406 /* Push the spec processing context. */
5407 save_argbuf_index
= argbuf_index
;
5408 save_argbuf_length
= argbuf_length
;
5409 save_argbuf
= argbuf
;
5411 save_arg_going
= arg_going
;
5412 save_delete_this_arg
= delete_this_arg
;
5413 save_this_is_output_file
= this_is_output_file
;
5414 save_this_is_library_file
= this_is_library_file
;
5415 save_input_from_pipe
= input_from_pipe
;
5416 save_suffix_subst
= suffix_subst
;
5418 /* Create a new spec processing context, and build the function
5422 if (do_spec_2 (args
) < 0)
5423 fatal ("error in args to spec function `%s'", func
);
5425 /* argbuf_index is an index for the next argument to be inserted, and
5426 so contains the count of the args already inserted. */
5428 funcval
= (*sf
->func
) (argbuf_index
, argbuf
);
5430 /* Pop the spec processing context. */
5431 argbuf_index
= save_argbuf_index
;
5432 argbuf_length
= save_argbuf_length
;
5434 argbuf
= save_argbuf
;
5436 arg_going
= save_arg_going
;
5437 delete_this_arg
= save_delete_this_arg
;
5438 this_is_output_file
= save_this_is_output_file
;
5439 this_is_library_file
= save_this_is_library_file
;
5440 input_from_pipe
= save_input_from_pipe
;
5441 suffix_subst
= save_suffix_subst
;
5446 /* Handle a spec function call of the form:
5450 ARGS is processed as a spec in a separate context and split into an
5451 argument vector in the normal fashion. The function returns a string
5452 containing a spec which we then process in the caller's context, or
5453 NULL if no processing is required. */
5456 handle_spec_function (p
)
5460 const char *endp
, *funcval
;
5463 processing_spec_function
++;
5465 /* Get the function name. */
5466 for (endp
= p
; *endp
!= '\0'; endp
++)
5468 if (*endp
== '(') /* ) */
5470 /* Only allow [A-Za-z0-9], -, and _ in function names. */
5471 if (!ISALNUM (*endp
) && !(*endp
== '-' || *endp
== '_'))
5472 fatal ("malformed spec function name");
5474 if (*endp
!= '(') /* ) */
5475 fatal ("no arguments for spec function");
5476 func
= save_string (p
, endp
- p
);
5479 /* Get the arguments. */
5480 for (count
= 0; *endp
!= '\0'; endp
++)
5489 else if (*endp
== '(') /* ) */
5494 fatal ("malformed spec function arguments");
5495 args
= save_string (p
, endp
- p
);
5498 /* p now points to just past the end of the spec function expression. */
5500 funcval
= eval_spec_function (func
, args
);
5501 if (funcval
!= NULL
&& do_spec_1 (funcval
, 0, NULL
) < 0)
5507 processing_spec_function
--;
5512 /* Inline subroutine of handle_braces. Returns true if the current
5513 input suffix matches the atom bracketed by ATOM and END_ATOM. */
5515 input_suffix_matches (atom
, end_atom
)
5517 const char *end_atom
;
5519 return (input_suffix
5520 && !strncmp (input_suffix
, atom
, end_atom
- atom
)
5521 && input_suffix
[end_atom
- atom
] == '\0');
5524 /* Inline subroutine of handle_braces. Returns true if a switch
5525 matching the atom bracketed by ATOM and END_ATOM appeared on the
5528 switch_matches (atom
, end_atom
, starred
)
5530 const char *end_atom
;
5534 int len
= end_atom
- atom
;
5535 int plen
= starred
? len
: -1;
5537 for (i
= 0; i
< n_switches
; i
++)
5538 if (!strncmp (switches
[i
].part1
, atom
, len
)
5539 && (starred
|| switches
[i
].part1
[len
] == '\0')
5540 && check_live_switch (i
, plen
))
5546 /* Inline subroutine of handle_braces. Mark all of the switches which
5547 match ATOM (extends to END_ATOM; STARRED indicates whether there
5548 was a star after the atom) for later processing. */
5550 mark_matching_switches (atom
, end_atom
, starred
)
5552 const char *end_atom
;
5556 int len
= end_atom
- atom
;
5557 int plen
= starred
? len
: -1;
5559 for (i
= 0; i
< n_switches
; i
++)
5560 if (!strncmp (switches
[i
].part1
, atom
, len
)
5561 && (starred
|| switches
[i
].part1
[len
] == '\0')
5562 && check_live_switch (i
, plen
))
5563 switches
[i
].ordering
= 1;
5566 /* Inline subroutine of handle_braces. Process all the currently
5567 marked switches through give_switch, and clear the marks. */
5569 process_marked_switches ()
5573 for (i
= 0; i
< n_switches
; i
++)
5574 if (switches
[i
].ordering
== 1)
5576 switches
[i
].ordering
= 0;
5581 /* Handle a %{ ... } construct. P points just inside the leading {.
5582 Returns a pointer one past the end of the brace block, or 0
5583 if we call do_spec_1 and that returns -1. */
5589 const char *atom
, *end_atom
;
5590 const char *d_atom
= NULL
, *d_end_atom
= NULL
;
5597 bool a_must_be_last
= false;
5598 bool ordered_set
= false;
5599 bool disjunct_set
= false;
5600 bool disj_matched
= false;
5601 bool disj_starred
= true;
5602 bool n_way_choice
= false;
5603 bool n_way_matched
= false;
5605 #define SKIP_WHITE() do { while (*p == ' ' || *p == '\t') p++; } while (0)
5612 /* Scan one "atom" (S in the description above of %{}, possibly
5613 with !, ., or * modifiers). */
5614 a_matched
= a_is_suffix
= a_is_starred
= a_is_negated
= false;
5618 p
++, a_is_negated
= true;
5622 p
++, a_is_suffix
= true;
5625 while (ISIDNUM(*p
) || *p
== '-' || *p
== '+' || *p
== '='
5626 || *p
== ',' || *p
== '.' || *p
== '@')
5631 p
++, a_is_starred
= 1;
5634 if (*p
== '&' || *p
== '}')
5636 /* Substitute the switch(es) indicated by the current atom. */
5638 if (disjunct_set
|| n_way_choice
|| a_is_negated
|| a_is_suffix
5639 || atom
== end_atom
)
5642 mark_matching_switches (atom
, end_atom
, a_is_starred
);
5645 process_marked_switches ();
5647 else if (*p
== '|' || *p
== ':')
5649 /* Substitute some text if the current atom appears as a switch
5651 disjunct_set
= true;
5655 if (atom
== end_atom
)
5657 if (!n_way_choice
|| disj_matched
|| *p
== '|'
5658 || a_is_negated
|| a_is_suffix
|| a_is_starred
)
5661 /* An empty term may appear as the last choice of an
5662 N-way choice set; it means "otherwise". */
5663 a_must_be_last
= true;
5664 disj_matched
= !n_way_matched
;
5665 disj_starred
= false;
5669 if (a_is_suffix
&& a_is_starred
)
5673 disj_starred
= false;
5675 /* Don't bother testing this atom if we already have a
5677 if (!disj_matched
&& !n_way_matched
)
5680 a_matched
= input_suffix_matches (atom
, end_atom
);
5682 a_matched
= switch_matches (atom
, end_atom
, a_is_starred
);
5684 if (a_matched
!= a_is_negated
)
5686 disj_matched
= true;
5688 d_end_atom
= end_atom
;
5695 /* Found the body, that is, the text to substitute if the
5696 current disjunction matches. */
5697 p
= process_brace_body (p
+ 1, d_atom
, d_end_atom
, disj_starred
,
5698 disj_matched
&& !n_way_matched
);
5702 /* If we have an N-way choice, reset state for the next
5706 n_way_choice
= true;
5707 n_way_matched
|= disj_matched
;
5708 disj_matched
= false;
5709 disj_starred
= true;
5710 d_atom
= d_end_atom
= NULL
;
5717 while (*p
++ != '}');
5724 /* Subroutine of handle_braces. Scan and process a brace substitution body
5725 (X in the description of %{} syntax). P points one past the colon;
5726 ATOM and END_ATOM bracket the first atom which was found to be true
5727 (present) in the current disjunction; STARRED indicates whether all
5728 the atoms in the current disjunction were starred (for syntax validation);
5729 MATCHED indicates whether the disjunction matched or not, and therefore
5730 whether or not the body is to be processed through do_spec_1 or just
5731 skipped. Returns a pointer to the closing } or ;, or 0 if do_spec_1
5735 process_brace_body (p
, atom
, end_atom
, starred
, matched
)
5738 const char *end_atom
;
5742 const char *body
, *end_body
;
5743 unsigned int nesting_level
;
5744 bool have_subst
= false;
5746 /* Locate the closing } or ;, honoring nested braces.
5747 Trim trailing whitespace. */
5756 if (!--nesting_level
)
5759 else if (*p
== ';' && nesting_level
== 1)
5761 else if (*p
== '%' && p
[1] == '*' && nesting_level
== 1)
5763 else if (*p
== '\0')
5769 while (end_body
[-1] == ' ' || end_body
[-1] == '\t')
5772 if (have_subst
&& !starred
)
5777 /* Copy the substitution body to permanent storage and execute it.
5778 If have_subst is false, this is a simple matter of running the
5779 body through do_spec_1... */
5780 char *string
= save_string (body
, end_body
- body
);
5783 if (do_spec_1 (string
, 0, NULL
) < 0)
5788 /* ... but if have_subst is true, we have to process the
5789 body once for each matching switch, with %* set to the
5790 variant part of the switch. */
5791 unsigned int hard_match_len
= end_atom
- atom
;
5794 for (i
= 0; i
< n_switches
; i
++)
5795 if (!strncmp (switches
[i
].part1
, atom
, hard_match_len
)
5796 && check_live_switch (i
, hard_match_len
))
5798 if (do_spec_1 (string
, 0,
5799 &switches
[i
].part1
[hard_match_len
]) < 0)
5801 /* Pass any arguments this switch has. */
5803 suffix_subst
= NULL
;
5811 /* Return 0 iff switch number SWITCHNUM is obsoleted by a later switch
5812 on the command line. PREFIX_LENGTH is the length of XXX in an {XXX*}
5813 spec, or -1 if either exact match or %* is used.
5815 A -O switch is obsoleted by a later -O switch. A -f, -m, or -W switch
5816 whose value does not begin with "no-" is obsoleted by the same value
5817 with the "no-", similarly for a switch with the "no-" prefix. */
5820 check_live_switch (switchnum
, prefix_length
)
5824 const char *name
= switches
[switchnum
].part1
;
5827 /* In the common case of {<at-most-one-letter>*}, a negating
5828 switch would always match, so ignore that case. We will just
5829 send the conflicting switches to the compiler phase. */
5830 if (prefix_length
>= 0 && prefix_length
<= 1)
5833 /* If we already processed this switch and determined if it was
5834 live or not, return our past determination. */
5835 if (switches
[switchnum
].live_cond
!= 0)
5836 return switches
[switchnum
].live_cond
> 0;
5838 /* Now search for duplicate in a manner that depends on the name. */
5842 for (i
= switchnum
+ 1; i
< n_switches
; i
++)
5843 if (switches
[i
].part1
[0] == 'O')
5845 switches
[switchnum
].validated
= 1;
5846 switches
[switchnum
].live_cond
= SWITCH_FALSE
;
5851 case 'W': case 'f': case 'm':
5852 if (! strncmp (name
+ 1, "no-", 3))
5854 /* We have Xno-YYY, search for XYYY. */
5855 for (i
= switchnum
+ 1; i
< n_switches
; i
++)
5856 if (switches
[i
].part1
[0] == name
[0]
5857 && ! strcmp (&switches
[i
].part1
[1], &name
[4]))
5859 switches
[switchnum
].validated
= 1;
5860 switches
[switchnum
].live_cond
= SWITCH_FALSE
;
5866 /* We have XYYY, search for Xno-YYY. */
5867 for (i
= switchnum
+ 1; i
< n_switches
; i
++)
5868 if (switches
[i
].part1
[0] == name
[0]
5869 && switches
[i
].part1
[1] == 'n'
5870 && switches
[i
].part1
[2] == 'o'
5871 && switches
[i
].part1
[3] == '-'
5872 && !strcmp (&switches
[i
].part1
[4], &name
[1]))
5874 switches
[switchnum
].validated
= 1;
5875 switches
[switchnum
].live_cond
= SWITCH_FALSE
;
5882 /* Otherwise the switch is live. */
5883 switches
[switchnum
].live_cond
= SWITCH_LIVE
;
5887 /* Pass a switch to the current accumulating command
5888 in the same form that we received it.
5889 SWITCHNUM identifies the switch; it is an index into
5890 the vector of switches gcc received, which is `switches'.
5891 This cannot fail since it never finishes a command line.
5893 If OMIT_FIRST_WORD is nonzero, then we omit .part1 of the argument. */
5896 give_switch (switchnum
, omit_first_word
)
5898 int omit_first_word
;
5900 if (switches
[switchnum
].live_cond
== SWITCH_IGNORE
)
5903 if (!omit_first_word
)
5905 do_spec_1 ("-", 0, NULL
);
5906 do_spec_1 (switches
[switchnum
].part1
, 1, NULL
);
5909 if (switches
[switchnum
].args
!= 0)
5912 for (p
= switches
[switchnum
].args
; *p
; p
++)
5914 const char *arg
= *p
;
5916 do_spec_1 (" ", 0, NULL
);
5919 unsigned length
= strlen (arg
);
5922 while (length
-- && !IS_DIR_SEPARATOR (arg
[length
]))
5923 if (arg
[length
] == '.')
5925 ((char *)arg
)[length
] = 0;
5929 do_spec_1 (arg
, 1, NULL
);
5931 ((char *)arg
)[length
] = '.';
5932 do_spec_1 (suffix_subst
, 1, NULL
);
5935 do_spec_1 (arg
, 1, NULL
);
5939 do_spec_1 (" ", 0, NULL
);
5940 switches
[switchnum
].validated
= 1;
5943 /* Search for a file named NAME trying various prefixes including the
5944 user's -B prefix and some standard ones.
5945 Return the absolute file name found. If nothing is found, return NAME. */
5953 /* Try multilib_dir if it is defined. */
5954 if (multilib_os_dir
!= NULL
)
5956 newname
= find_a_file (&startfile_prefixes
, name
, R_OK
, 1);
5958 /* If we don't find it in the multi library dir, then fall
5959 through and look for it in the normal places. */
5960 if (newname
!= NULL
)
5964 newname
= find_a_file (&startfile_prefixes
, name
, R_OK
, 0);
5965 return newname
? newname
: name
;
5968 /* Determine whether a directory exists. If LINKER, return 0 for
5969 certain fixed names not needed by the linker. If not LINKER, it is
5970 only important to return 0 if the host machine has a small ARG_MAX
5974 is_directory (path1
, path2
, linker
)
5979 int len1
= strlen (path1
);
5980 int len2
= strlen (path2
);
5981 char *path
= (char *) alloca (3 + len1
+ len2
);
5985 #ifndef SMALL_ARG_MAX
5990 /* Construct the path from the two parts. Ensure the string ends with "/.".
5991 The resulting path will be a directory even if the given path is a
5993 memcpy (path
, path1
, len1
);
5994 memcpy (path
+ len1
, path2
, len2
);
5995 cp
= path
+ len1
+ len2
;
5996 if (!IS_DIR_SEPARATOR (cp
[-1]))
5997 *cp
++ = DIR_SEPARATOR
;
6001 /* Exclude directories that the linker is known to search. */
6004 && strcmp (path
, concat (dir_separator_str
, "lib",
6005 dir_separator_str
, ".", NULL
)) == 0)
6007 && strcmp (path
, concat (dir_separator_str
, "usr",
6008 dir_separator_str
, "lib",
6009 dir_separator_str
, ".", NULL
)) == 0)))
6012 return (stat (path
, &st
) >= 0 && S_ISDIR (st
.st_mode
));
6015 /* Set up the various global variables to indicate that we're processing
6016 the input file named FILENAME. */
6019 set_input (filename
)
6020 const char *filename
;
6024 input_filename
= filename
;
6025 input_filename_length
= strlen (input_filename
);
6027 input_basename
= input_filename
;
6028 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
6029 /* Skip drive name so 'x:foo' is handled properly. */
6030 if (input_basename
[1] == ':')
6031 input_basename
+= 2;
6033 for (p
= input_basename
; *p
; p
++)
6034 if (IS_DIR_SEPARATOR (*p
))
6035 input_basename
= p
+ 1;
6037 /* Find a suffix starting with the last period,
6038 and set basename_length to exclude that suffix. */
6039 basename_length
= strlen (input_basename
);
6040 suffixed_basename_length
= basename_length
;
6041 p
= input_basename
+ basename_length
;
6042 while (p
!= input_basename
&& *p
!= '.')
6044 if (*p
== '.' && p
!= input_basename
)
6046 basename_length
= p
- input_basename
;
6047 input_suffix
= p
+ 1;
6052 /* If a spec for 'g', 'u', or 'U' is seen with -save-temps then
6053 we will need to do a stat on the input_filename. The
6054 INPUT_STAT_SET signals that the stat is needed. */
6058 /* On fatal signals, delete all the temporary files. */
6061 fatal_error (signum
)
6064 signal (signum
, SIG_DFL
);
6065 delete_failure_queue ();
6066 delete_temp_files ();
6067 /* Get the same signal again, this time not handled,
6068 so its normal effect occurs. */
6069 kill (getpid (), signum
);
6072 extern int main
PARAMS ((int, const char *const *));
6077 const char *const *argv
;
6081 int linker_was_run
= 0;
6082 char *explicit_link_files
;
6085 struct user_specs
*uptr
;
6087 p
= argv
[0] + strlen (argv
[0]);
6088 while (p
!= argv
[0] && !IS_DIR_SEPARATOR (p
[-1]))
6092 xmalloc_set_program_name (programname
);
6094 #ifdef GCC_DRIVER_HOST_INITIALIZATION
6095 /* Perform host dependent initialization when needed. */
6096 GCC_DRIVER_HOST_INITIALIZATION
;
6099 gcc_init_libintl ();
6101 if (signal (SIGINT
, SIG_IGN
) != SIG_IGN
)
6102 signal (SIGINT
, fatal_error
);
6104 if (signal (SIGHUP
, SIG_IGN
) != SIG_IGN
)
6105 signal (SIGHUP
, fatal_error
);
6107 if (signal (SIGTERM
, SIG_IGN
) != SIG_IGN
)
6108 signal (SIGTERM
, fatal_error
);
6110 if (signal (SIGPIPE
, SIG_IGN
) != SIG_IGN
)
6111 signal (SIGPIPE
, fatal_error
);
6114 /* We *MUST* set SIGCHLD to SIG_DFL so that the wait4() call will
6115 receive the signal. A different setting is inheritable */
6116 signal (SIGCHLD
, SIG_DFL
);
6119 /* Allocate the argument vector. */
6122 obstack_init (&obstack
);
6124 /* Build multilib_select, et. al from the separate lines that make up each
6125 multilib selection. */
6127 const char *const *q
= multilib_raw
;
6130 obstack_init (&multilib_obstack
);
6131 while ((p
= *q
++) != (char *) 0)
6132 obstack_grow (&multilib_obstack
, p
, strlen (p
));
6134 obstack_1grow (&multilib_obstack
, 0);
6135 multilib_select
= obstack_finish (&multilib_obstack
);
6137 q
= multilib_matches_raw
;
6138 while ((p
= *q
++) != (char *) 0)
6139 obstack_grow (&multilib_obstack
, p
, strlen (p
));
6141 obstack_1grow (&multilib_obstack
, 0);
6142 multilib_matches
= obstack_finish (&multilib_obstack
);
6144 q
= multilib_exclusions_raw
;
6145 while ((p
= *q
++) != (char *) 0)
6146 obstack_grow (&multilib_obstack
, p
, strlen (p
));
6148 obstack_1grow (&multilib_obstack
, 0);
6149 multilib_exclusions
= obstack_finish (&multilib_obstack
);
6152 for (i
= 0; i
< ARRAY_SIZE (multilib_defaults_raw
); i
++)
6155 obstack_1grow (&multilib_obstack
, ' ');
6156 obstack_grow (&multilib_obstack
,
6157 multilib_defaults_raw
[i
],
6158 strlen (multilib_defaults_raw
[i
]));
6162 obstack_1grow (&multilib_obstack
, 0);
6163 multilib_defaults
= obstack_finish (&multilib_obstack
);
6166 /* Set up to remember the pathname of gcc and any options
6167 needed for collect. We use argv[0] instead of programname because
6168 we need the complete pathname. */
6169 obstack_init (&collect_obstack
);
6170 obstack_grow (&collect_obstack
, "COLLECT_GCC=", sizeof ("COLLECT_GCC=") - 1);
6171 obstack_grow (&collect_obstack
, argv
[0], strlen (argv
[0]) + 1);
6172 putenv (obstack_finish (&collect_obstack
));
6174 #ifdef INIT_ENVIRONMENT
6175 /* Set up any other necessary machine specific environment variables. */
6176 putenv (INIT_ENVIRONMENT
);
6179 /* Make a table of what switches there are (switches, n_switches).
6180 Make a table of specified input files (infiles, n_infiles).
6181 Decode switches that are handled locally. */
6183 process_command (argc
, argv
);
6185 /* Process DRIVER_SELF_SPECS, adding any new options to the end
6186 of the command line. */
6188 for (i
= 0; i
< ARRAY_SIZE (driver_self_specs
); i
++)
6189 do_self_spec (driver_self_specs
[i
]);
6191 /* Initialize the vector of specs to just the default.
6192 This means one element containing 0s, as a terminator. */
6194 compilers
= (struct compiler
*) xmalloc (sizeof default_compilers
);
6195 memcpy ((char *) compilers
, (char *) default_compilers
,
6196 sizeof default_compilers
);
6197 n_compilers
= n_default_compilers
;
6199 /* Read specs from a file if there is one. */
6201 machine_suffix
= concat (spec_machine
, dir_separator_str
,
6202 spec_version
, dir_separator_str
, NULL
);
6203 just_machine_suffix
= concat (spec_machine
, dir_separator_str
, NULL
);
6205 specs_file
= find_a_file (&startfile_prefixes
, "specs", R_OK
, 0);
6206 /* Read the specs file unless it is a default one. */
6207 if (specs_file
!= 0 && strcmp (specs_file
, "specs"))
6208 read_specs (specs_file
, TRUE
);
6212 /* We need to check standard_exec_prefix/just_machine_suffix/specs
6213 for any override of as, ld and libraries. */
6214 specs_file
= (char *) alloca (strlen (standard_exec_prefix
)
6215 + strlen (just_machine_suffix
)
6216 + sizeof ("specs"));
6218 strcpy (specs_file
, standard_exec_prefix
);
6219 strcat (specs_file
, just_machine_suffix
);
6220 strcat (specs_file
, "specs");
6221 if (access (specs_file
, R_OK
) == 0)
6222 read_specs (specs_file
, TRUE
);
6224 /* If not cross-compiling, look for executables in the standard
6226 if (*cross_compile
== '0')
6228 if (*md_exec_prefix
)
6230 add_prefix (&exec_prefixes
, md_exec_prefix
, "GCC",
6231 PREFIX_PRIORITY_LAST
, 0, NULL
, 0);
6235 /* Look for startfiles in the standard places. */
6236 if (*startfile_prefix_spec
!= 0
6237 && do_spec_2 (startfile_prefix_spec
) == 0
6238 && do_spec_1 (" ", 0, NULL
) == 0)
6241 for (ndx
= 0; ndx
< argbuf_index
; ndx
++)
6242 add_sysrooted_prefix (&startfile_prefixes
, argbuf
[ndx
], "BINUTILS",
6243 PREFIX_PRIORITY_LAST
, 0, NULL
, 1);
6245 /* We should eventually get rid of all these and stick to
6246 startfile_prefix_spec exclusively. */
6247 else if (*cross_compile
== '0' || target_system_root
)
6249 if (*md_exec_prefix
)
6250 add_sysrooted_prefix (&startfile_prefixes
, md_exec_prefix
, "GCC",
6251 PREFIX_PRIORITY_LAST
, 0, NULL
, 1);
6253 if (*md_startfile_prefix
)
6254 add_sysrooted_prefix (&startfile_prefixes
, md_startfile_prefix
,
6255 "GCC", PREFIX_PRIORITY_LAST
, 0, NULL
, 1);
6257 if (*md_startfile_prefix_1
)
6258 add_sysrooted_prefix (&startfile_prefixes
, md_startfile_prefix_1
,
6259 "GCC", PREFIX_PRIORITY_LAST
, 0, NULL
, 1);
6261 /* If standard_startfile_prefix is relative, base it on
6262 standard_exec_prefix. This lets us move the installed tree
6263 as a unit. If GCC_EXEC_PREFIX is defined, base
6264 standard_startfile_prefix on that as well. */
6265 if (IS_ABSOLUTE_PATHNAME (standard_startfile_prefix
))
6266 add_sysrooted_prefix (&startfile_prefixes
,
6267 standard_startfile_prefix
, "BINUTILS",
6268 PREFIX_PRIORITY_LAST
, 0, NULL
, 1);
6271 if (gcc_exec_prefix
)
6272 add_prefix (&startfile_prefixes
,
6273 concat (gcc_exec_prefix
, machine_suffix
,
6274 standard_startfile_prefix
, NULL
),
6275 NULL
, PREFIX_PRIORITY_LAST
, 0, NULL
, 1);
6276 add_prefix (&startfile_prefixes
,
6277 concat (standard_exec_prefix
,
6279 standard_startfile_prefix
, NULL
),
6280 NULL
, PREFIX_PRIORITY_LAST
, 0, NULL
, 1);
6283 add_sysrooted_prefix (&startfile_prefixes
, standard_startfile_prefix_1
,
6284 "BINUTILS", PREFIX_PRIORITY_LAST
, 0, NULL
, 1);
6285 add_sysrooted_prefix (&startfile_prefixes
, standard_startfile_prefix_2
,
6286 "BINUTILS", PREFIX_PRIORITY_LAST
, 0, NULL
, 1);
6287 #if 0 /* Can cause surprises, and one can use -B./ instead. */
6288 add_prefix (&startfile_prefixes
, "./", NULL
,
6289 PREFIX_PRIORITY_LAST
, 1, NULL
, 0);
6293 /* Process any user specified specs in the order given on the command
6295 for (uptr
= user_specs_head
; uptr
; uptr
= uptr
->next
)
6297 char *filename
= find_a_file (&startfile_prefixes
, uptr
->filename
,
6299 read_specs (filename
? filename
: uptr
->filename
, FALSE
);
6302 /* If we have a GCC_EXEC_PREFIX envvar, modify it for cpp's sake. */
6303 if (gcc_exec_prefix
)
6304 gcc_exec_prefix
= concat (gcc_exec_prefix
, spec_machine
, dir_separator_str
,
6305 spec_version
, dir_separator_str
, NULL
);
6307 /* Now we have the specs.
6308 Set the `valid' bits for switches that match anything in any spec. */
6310 validate_all_switches ();
6312 /* Now that we have the switches and the specs, set
6313 the subdirectory based on the options. */
6314 set_multilib_dir ();
6316 /* Warn about any switches that no pass was interested in. */
6318 for (i
= 0; (int) i
< n_switches
; i
++)
6319 if (! switches
[i
].validated
)
6320 error ("unrecognized option `-%s'", switches
[i
].part1
);
6322 /* Obey some of the options. */
6324 if (print_search_dirs
)
6326 printf (_("install: %s%s\n"), standard_exec_prefix
, machine_suffix
);
6327 printf (_("programs: %s\n"), build_search_list (&exec_prefixes
, "", 0));
6328 printf (_("libraries: %s\n"), build_search_list (&startfile_prefixes
, "", 0));
6332 if (print_file_name
)
6334 printf ("%s\n", find_file (print_file_name
));
6338 if (print_prog_name
)
6340 char *newname
= find_a_file (&exec_prefixes
, print_prog_name
, X_OK
, 0);
6341 printf ("%s\n", (newname
? newname
: print_prog_name
));
6345 if (print_multi_lib
)
6347 print_multilib_info ();
6351 if (print_multi_directory
)
6353 if (multilib_dir
== NULL
)
6356 printf ("%s\n", multilib_dir
);
6360 if (print_multi_os_directory
)
6362 if (multilib_os_dir
== NULL
)
6365 printf ("%s\n", multilib_os_dir
);
6369 if (target_help_flag
)
6371 /* Print if any target specific options. */
6373 /* We do not exit here. Instead we have created a fake input file
6374 called 'target-dummy' which needs to be compiled, and we pass this
6375 on to the various sub-processes, along with the --target-help
6379 if (print_help_list
)
6385 printf (_("\nFor bug reporting instructions, please see:\n"));
6386 printf ("%s.\n", bug_report_url
);
6391 /* We do not exit here. Instead we have created a fake input file
6392 called 'help-dummy' which needs to be compiled, and we pass this
6393 on the various sub-processes, along with the --help switch. */
6401 notice ("Configured with: %s\n", configuration_arguments
);
6403 #ifdef THREAD_MODEL_SPEC
6404 /* We could have defined THREAD_MODEL_SPEC to "%*" by default,
6405 but there's no point in doing all this processing just to get
6406 thread_model back. */
6407 obstack_init (&obstack
);
6408 do_spec_1 (THREAD_MODEL_SPEC
, 0, thread_model
);
6409 obstack_1grow (&obstack
, '\0');
6410 thrmod
= obstack_finish (&obstack
);
6412 thrmod
= thread_model
;
6415 notice ("Thread model: %s\n", thrmod
);
6417 /* compiler_version is truncated at the first space when initialized
6418 from version string, so truncate version_string at the first space
6419 before comparing. */
6420 for (n
= 0; version_string
[n
]; n
++)
6421 if (version_string
[n
] == ' ')
6424 if (! strncmp (version_string
, compiler_version
, n
)
6425 && compiler_version
[n
] == 0)
6426 notice ("gcc version %s\n", version_string
);
6428 notice ("gcc driver version %s executing gcc version %s\n",
6429 version_string
, compiler_version
);
6435 if (n_infiles
== added_libraries
)
6436 fatal ("no input files");
6438 /* Make a place to record the compiler output file names
6439 that correspond to the input files. */
6442 i
+= lang_specific_extra_outfiles
;
6443 outfiles
= (const char **) xcalloc (i
, sizeof (char *));
6445 /* Record which files were specified explicitly as link input. */
6447 explicit_link_files
= xcalloc (1, n_infiles
);
6449 for (i
= 0; (int) i
< n_infiles
; i
++)
6451 int this_file_error
= 0;
6453 /* Tell do_spec what to substitute for %i. */
6455 input_file_number
= i
;
6456 set_input (infiles
[i
].name
);
6458 /* Use the same thing in %o, unless cp->spec says otherwise. */
6460 outfiles
[i
] = input_filename
;
6462 /* Figure out which compiler from the file's suffix. */
6465 = lookup_compiler (infiles
[i
].name
, input_filename_length
,
6466 infiles
[i
].language
);
6468 if (input_file_compiler
)
6470 /* Ok, we found an applicable compiler. Run its spec. */
6472 if (input_file_compiler
->spec
[0] == '#')
6474 error ("%s: %s compiler not installed on this system",
6475 input_filename
, &input_file_compiler
->spec
[1]);
6476 this_file_error
= 1;
6480 value
= do_spec (input_file_compiler
->spec
);
6482 this_file_error
= 1;
6486 /* If this file's name does not contain a recognized suffix,
6487 record it as explicit linker input. */
6490 explicit_link_files
[i
] = 1;
6492 /* Clear the delete-on-failure queue, deleting the files in it
6493 if this compilation failed. */
6495 if (this_file_error
)
6497 delete_failure_queue ();
6500 /* If this compilation succeeded, don't delete those files later. */
6501 clear_failure_queue ();
6504 /* Reset the output file name to the first input file name, for use
6505 with %b in LINK_SPEC on a target that prefers not to emit a.out
6508 set_input (infiles
[0].name
);
6510 if (error_count
== 0)
6512 /* Make sure INPUT_FILE_NUMBER points to first available open
6514 input_file_number
= n_infiles
;
6515 if (lang_specific_pre_link ())
6519 /* Run ld to link all the compiler output files. */
6521 if (error_count
== 0)
6523 int tmp
= execution_count
;
6525 /* We'll use ld if we can't find collect2. */
6526 if (! strcmp (linker_name_spec
, "collect2"))
6528 char *s
= find_a_file (&exec_prefixes
, "collect2", X_OK
, 0);
6530 linker_name_spec
= "ld";
6532 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
6534 putenv_from_prefixes (&exec_prefixes
, "COMPILER_PATH");
6535 putenv_from_prefixes (&startfile_prefixes
, LIBRARY_PATH_ENV
);
6537 value
= do_spec (link_command_spec
);
6540 linker_was_run
= (tmp
!= execution_count
);
6543 /* If options said don't run linker,
6544 complain about input files to be given to the linker. */
6546 if (! linker_was_run
&& error_count
== 0)
6547 for (i
= 0; (int) i
< n_infiles
; i
++)
6548 if (explicit_link_files
[i
])
6549 error ("%s: linker input file unused because linking not done",
6552 /* Delete some or all of the temporary files we made. */
6555 delete_failure_queue ();
6556 delete_temp_files ();
6558 if (print_help_list
)
6560 printf (("\nFor bug reporting instructions, please see:\n"));
6561 printf ("%s\n", bug_report_url
);
6564 return (signal_count
!= 0 ? 2
6565 : error_count
> 0 ? (pass_exit_codes
? greatest_status
: 1)
6569 /* Find the proper compilation spec for the file name NAME,
6570 whose length is LENGTH. LANGUAGE is the specified language,
6571 or 0 if this file is to be passed to the linker. */
6573 static struct compiler
*
6574 lookup_compiler (name
, length
, language
)
6577 const char *language
;
6579 struct compiler
*cp
;
6581 /* If this was specified by the user to be a linker input, indicate that. */
6582 if (language
!= 0 && language
[0] == '*')
6585 /* Otherwise, look for the language, if one is spec'd. */
6588 for (cp
= compilers
+ n_compilers
- 1; cp
>= compilers
; cp
--)
6589 if (cp
->suffix
[0] == '@' && !strcmp (cp
->suffix
+ 1, language
))
6592 error ("language %s not recognized", language
);
6596 /* Look for a suffix. */
6597 for (cp
= compilers
+ n_compilers
- 1; cp
>= compilers
; cp
--)
6599 if (/* The suffix `-' matches only the file name `-'. */
6600 (!strcmp (cp
->suffix
, "-") && !strcmp (name
, "-"))
6601 || (strlen (cp
->suffix
) < length
6602 /* See if the suffix matches the end of NAME. */
6603 && !strcmp (cp
->suffix
,
6604 name
+ length
- strlen (cp
->suffix
))
6609 #if defined (OS2) ||defined (HAVE_DOS_BASED_FILE_SYSTEM)
6610 /* look again, but case-insensitively this time. */
6612 for (cp
= compilers
+ n_compilers
- 1; cp
>= compilers
; cp
--)
6614 if (/* The suffix `-' matches only the file name `-'. */
6615 (!strcmp (cp
->suffix
, "-") && !strcmp (name
, "-"))
6616 || (strlen (cp
->suffix
) < length
6617 /* See if the suffix matches the end of NAME. */
6618 && ((!strcmp (cp
->suffix
,
6619 name
+ length
- strlen (cp
->suffix
))
6620 || !strpbrk (cp
->suffix
, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"))
6621 && !strcasecmp (cp
->suffix
,
6622 name
+ length
- strlen (cp
->suffix
)))
6628 if (cp
>= compilers
)
6630 if (cp
->spec
[0] != '@')
6631 /* A non-alias entry: return it. */
6634 /* An alias entry maps a suffix to a language.
6635 Search for the language; pass 0 for NAME and LENGTH
6636 to avoid infinite recursion if language not found. */
6637 return lookup_compiler (NULL
, 0, cp
->spec
+ 1);
6643 save_string (s
, len
)
6647 char *result
= xmalloc (len
+ 1);
6649 memcpy (result
, s
, len
);
6655 pfatal_with_name (name
)
6658 perror_with_name (name
);
6659 delete_temp_files ();
6664 perror_with_name (name
)
6667 error ("%s: %s", name
, xstrerror (errno
));
6671 pfatal_pexecute (errmsg_fmt
, errmsg_arg
)
6672 const char *errmsg_fmt
;
6673 const char *errmsg_arg
;
6677 int save_errno
= errno
;
6679 /* Space for trailing '\0' is in %s. */
6680 char *msg
= xmalloc (strlen (errmsg_fmt
) + strlen (errmsg_arg
));
6681 sprintf (msg
, errmsg_fmt
, errmsg_arg
);
6687 pfatal_with_name (errmsg_fmt
);
6690 /* Output an error message and exit */
6695 fatal ("internal gcc abort");
6698 /* Output an error message and exit */
6701 fatal
VPARAMS ((const char *msgid
, ...))
6703 VA_OPEN (ap
, msgid
);
6704 VA_FIXEDARG (ap
, const char *, msgid
);
6706 fprintf (stderr
, "%s: ", programname
);
6707 vfprintf (stderr
, _(msgid
), ap
);
6709 fprintf (stderr
, "\n");
6710 delete_temp_files ();
6715 error
VPARAMS ((const char *msgid
, ...))
6717 VA_OPEN (ap
, msgid
);
6718 VA_FIXEDARG (ap
, const char *, msgid
);
6720 fprintf (stderr
, "%s: ", programname
);
6721 vfprintf (stderr
, _(msgid
), ap
);
6724 fprintf (stderr
, "\n");
6728 notice
VPARAMS ((const char *msgid
, ...))
6730 VA_OPEN (ap
, msgid
);
6731 VA_FIXEDARG (ap
, const char *, msgid
);
6733 vfprintf (stderr
, _(msgid
), ap
);
6738 validate_switches_from_spec (spec
)
6741 const char *p
= spec
;
6744 if (c
== '%' && (*p
== '{' || *p
== '<' || (*p
== 'W' && *++p
== '{')))
6745 /* We have a switch spec. */
6746 p
= validate_switches (p
+ 1);
6750 validate_all_switches ()
6752 struct compiler
*comp
;
6753 struct spec_list
*spec
;
6755 for (comp
= compilers
; comp
->spec
; comp
++)
6756 validate_switches_from_spec (comp
->spec
);
6758 /* Look through the linked list of specs read from the specs file. */
6759 for (spec
= specs
; spec
; spec
= spec
->next
)
6760 validate_switches_from_spec (*spec
->ptr_spec
);
6762 validate_switches_from_spec (link_command_spec
);
6765 /* Look at the switch-name that comes after START
6766 and mark as valid all supplied switches that match it. */
6769 validate_switches (start
)
6772 const char *p
= start
;
6776 bool suffix
= false;
6777 bool starred
= false;
6779 #define SKIP_WHITE() do { while (*p == ' ' || *p == '\t') p++; } while (0)
6792 while (ISIDNUM (*p
) || *p
== '-' || *p
== '+' || *p
== '='
6793 || *p
== ',' || *p
== '.' || *p
== '@')
6798 starred
= true, p
++;
6804 /* Mark all matching switches as valid. */
6805 for (i
= 0; i
< n_switches
; i
++)
6806 if (!strncmp (switches
[i
].part1
, atom
, len
)
6807 && (starred
|| switches
[i
].part1
[len
] == 0))
6808 switches
[i
].validated
= 1;
6812 if (*p
&& (p
[-1] == '|' || p
[-1] == '&'))
6815 if (*p
&& p
[-1] == ':')
6817 while (*p
&& *p
!= ';' && *p
!= '}')
6822 if (*p
== '{' || *p
== '<')
6823 p
= validate_switches (p
+1);
6824 else if (p
[0] == 'W' && p
[1] == '{')
6825 p
= validate_switches (p
+2);
6831 if (*p
&& p
[-1] == ';')
6845 static struct mdswitchstr
*mdswitches
;
6846 static int n_mdswitches
;
6848 /* Check whether a particular argument was used. The first time we
6849 canonicalize the switches to keep only the ones we care about. */
6859 const char *replace
;
6864 static struct mswitchstr
*mswitches
;
6865 static int n_mswitches
;
6870 struct mswitchstr
*matches
;
6874 /* Break multilib_matches into the component strings of string
6875 and replacement string. */
6876 for (q
= multilib_matches
; *q
!= '\0'; q
++)
6881 (struct mswitchstr
*) alloca ((sizeof (struct mswitchstr
)) * cnt
);
6883 q
= multilib_matches
;
6893 matches
[i
].len
= q
- matches
[i
].str
;
6895 matches
[i
].replace
= ++q
;
6896 while (*q
!= ';' && *q
!= '\0')
6902 matches
[i
].rep_len
= q
- matches
[i
].replace
;
6908 /* Now build a list of the replacement string for switches that we care
6909 about. Make sure we allocate at least one entry. This prevents
6910 xmalloc from calling fatal, and prevents us from re-executing this
6913 = (struct mswitchstr
*)
6914 xmalloc (sizeof (struct mswitchstr
)
6915 * (n_mdswitches
+ (n_switches
? n_switches
: 1)));
6916 for (i
= 0; i
< n_switches
; i
++)
6918 int xlen
= strlen (switches
[i
].part1
);
6919 for (j
= 0; j
< cnt
; j
++)
6920 if (xlen
== matches
[j
].len
6921 && ! strncmp (switches
[i
].part1
, matches
[j
].str
, xlen
))
6923 mswitches
[n_mswitches
].str
= matches
[j
].replace
;
6924 mswitches
[n_mswitches
].len
= matches
[j
].rep_len
;
6925 mswitches
[n_mswitches
].replace
= (char *) 0;
6926 mswitches
[n_mswitches
].rep_len
= 0;
6932 /* Add MULTILIB_DEFAULTS switches too, as long as they were not present
6933 on the command line nor any options mutually incompatible with
6935 for (i
= 0; i
< n_mdswitches
; i
++)
6939 for (q
= multilib_options
; *q
!= '\0'; q
++)
6945 while (strncmp (q
, mdswitches
[i
].str
, mdswitches
[i
].len
) != 0
6946 || strchr (" /", q
[mdswitches
[i
].len
]) == NULL
)
6948 while (*q
!= ' ' && *q
!= '/' && *q
!= '\0')
6955 if (*q
!= ' ' && *q
!= '\0')
6957 while (*r
!= ' ' && *r
!= '\0')
6960 while (*q
!= ' ' && *q
!= '/' && *q
!= '\0')
6963 if (used_arg (r
, q
- r
))
6968 mswitches
[n_mswitches
].str
= mdswitches
[i
].str
;
6969 mswitches
[n_mswitches
].len
= mdswitches
[i
].len
;
6970 mswitches
[n_mswitches
].replace
= (char *) 0;
6971 mswitches
[n_mswitches
].rep_len
= 0;
6984 for (i
= 0; i
< n_mswitches
; i
++)
6985 if (len
== mswitches
[i
].len
&& ! strncmp (p
, mswitches
[i
].str
, len
))
6992 default_arg (p
, len
)
6998 for (i
= 0; i
< n_mdswitches
; i
++)
6999 if (len
== mdswitches
[i
].len
&& ! strncmp (p
, mdswitches
[i
].str
, len
))
7005 /* Work out the subdirectory to use based on the options. The format of
7006 multilib_select is a list of elements. Each element is a subdirectory
7007 name followed by a list of options followed by a semicolon. The format
7008 of multilib_exclusions is the same, but without the preceding
7009 directory. First gcc will check the exclusions, if none of the options
7010 beginning with an exclamation point are present, and all of the other
7011 options are present, then we will ignore this completely. Passing
7012 that, gcc will consider each multilib_select in turn using the same
7013 rules for matching the options. If a match is found, that subdirectory
7020 unsigned int this_path_len
;
7021 const char *this_path
, *this_arg
;
7022 const char *start
, *end
;
7024 int ok
, ndfltok
, first
;
7027 start
= multilib_defaults
;
7028 while (*start
== ' ' || *start
== '\t')
7030 while (*start
!= '\0')
7033 while (*start
!= ' ' && *start
!= '\t' && *start
!= '\0')
7035 while (*start
== ' ' || *start
== '\t')
7044 = (struct mdswitchstr
*) xmalloc (sizeof (struct mdswitchstr
)
7046 for (start
= multilib_defaults
; *start
!= '\0'; start
= end
+ 1)
7048 while (*start
== ' ' || *start
== '\t')
7054 for (end
= start
+ 1;
7055 *end
!= ' ' && *end
!= '\t' && *end
!= '\0'; end
++)
7058 obstack_grow (&multilib_obstack
, start
, end
- start
);
7059 obstack_1grow (&multilib_obstack
, 0);
7060 mdswitches
[i
].str
= obstack_finish (&multilib_obstack
);
7061 mdswitches
[i
++].len
= end
- start
;
7068 p
= multilib_exclusions
;
7071 /* Ignore newlines. */
7078 /* Check the arguments. */
7092 while (*p
!= ' ' && *p
!= ';')
7099 if (*this_arg
!= '!')
7107 ok
= used_arg (this_arg
, p
- this_arg
);
7122 p
= multilib_select
;
7125 /* Ignore newlines. */
7132 /* Get the initial path. */
7140 this_path_len
= p
- this_path
;
7142 /* Check the arguments. */
7158 while (*p
!= ' ' && *p
!= ';')
7165 if (*this_arg
!= '!')
7173 /* If this is a default argument, we can just ignore it.
7174 This is true even if this_arg begins with '!'. Beginning
7175 with '!' does not mean that this argument is necessarily
7176 inappropriate for this library: it merely means that
7177 there is a more specific library which uses this
7178 argument. If this argument is a default, we need not
7179 consider that more specific library. */
7180 ok
= used_arg (this_arg
, p
- this_arg
);
7187 if (default_arg (this_arg
, p
- this_arg
))
7196 if (this_path_len
!= 1
7197 || this_path
[0] != '.')
7199 char *new_multilib_dir
= xmalloc (this_path_len
+ 1);
7202 strncpy (new_multilib_dir
, this_path
, this_path_len
);
7203 new_multilib_dir
[this_path_len
] = '\0';
7204 q
= strchr (new_multilib_dir
, ':');
7207 multilib_dir
= new_multilib_dir
;
7214 const char *q
= this_path
, *end
= this_path
+ this_path_len
;
7216 while (q
< end
&& *q
!= ':')
7220 char *new_multilib_os_dir
= xmalloc (end
- q
);
7221 memcpy (new_multilib_os_dir
, q
+ 1, end
- q
- 1);
7222 new_multilib_os_dir
[end
- q
- 1] = '\0';
7223 multilib_os_dir
= new_multilib_os_dir
;
7231 if (multilib_dir
== NULL
&& multilib_os_dir
!= NULL
7232 && strcmp (multilib_os_dir
, ".") == 0)
7234 free ((char *) multilib_os_dir
);
7235 multilib_os_dir
= NULL
;
7237 else if (multilib_dir
!= NULL
&& multilib_os_dir
== NULL
)
7238 multilib_os_dir
= multilib_dir
;
7241 /* Print out the multiple library subdirectory selection
7242 information. This prints out a series of lines. Each line looks
7243 like SUBDIRECTORY;@OPTION@OPTION, with as many options as is
7244 required. Only the desired options are printed out, the negative
7245 matches. The options are print without a leading dash. There are
7246 no spaces to make it easy to use the information in the shell.
7247 Each subdirectory is printed only once. This assumes the ordering
7248 generated by the genmultilib script. Also, we leave out ones that match
7252 print_multilib_info ()
7254 const char *p
= multilib_select
;
7255 const char *last_path
= 0, *this_path
;
7257 unsigned int last_path_len
= 0;
7262 /* Ignore newlines. */
7269 /* Get the initial path. */
7278 /* When --disable-multilib was used but target defines
7279 MULTILIB_OSDIRNAMES, entries starting with .: are there just
7280 to find multilib_os_dir, so skip them from output. */
7281 if (this_path
[0] == '.' && this_path
[1] == ':')
7284 /* Check for matches with the multilib_exclusions. We don't bother
7285 with the '!' in either list. If any of the exclusion rules match
7286 all of its options with the select rule, we skip it. */
7288 const char *e
= multilib_exclusions
;
7289 const char *this_arg
;
7294 /* Ignore newlines. */
7301 /* Check the arguments. */
7318 while (*e
!= ' ' && *e
!= ';')
7329 int len
= e
- this_arg
;
7336 while (*q
!= ' ' && *q
!= ';')
7343 if (! strncmp (arg
, this_arg
, (len
< q
- arg
) ? q
- arg
: len
) ||
7344 default_arg (this_arg
, e
- this_arg
))
7374 /* If this is a duplicate, skip it. */
7375 skip
= (last_path
!= 0 && (unsigned int) (p
- this_path
) == last_path_len
7376 && ! strncmp (last_path
, this_path
, last_path_len
));
7378 last_path
= this_path
;
7379 last_path_len
= p
- this_path
;
7382 /* If this directory requires any default arguments, we can skip
7383 it. We will already have printed a directory identical to
7384 this one which does not require that default argument. */
7402 while (*q
!= ' ' && *q
!= ';')
7410 && default_arg (arg
, q
- arg
))
7425 for (p1
= last_path
; p1
< p
&& *p1
!= ':'; p1
++)
7444 use_arg
= *p
!= '!';
7449 while (*p
!= ' ' && *p
!= ';')
7464 /* If there are extra options, print them now. */
7465 if (multilib_extra
&& *multilib_extra
)
7467 int print_at
= TRUE
;
7470 for (q
= multilib_extra
; *q
!= '\0'; q
++)
7491 /* if-exists built-in spec function.
7493 Checks to see if the file specified by the absolute pathname in
7494 ARGS exists. Returns that pathname if found.
7496 The usual use for this function is to check for a library file
7497 (whose name has been expanded with %s). */
7500 if_exists_spec_function (argc
, argv
)
7504 /* Must have only one argument. */
7505 if (argc
== 1 && IS_ABSOLUTE_PATHNAME (argv
[0]) && ! access (argv
[0], R_OK
))
7511 /* if-exists-else built-in spec function.
7513 This is like if-exists, but takes an additional argument which
7514 is returned if the first argument does not exist. */
7517 if_exists_else_spec_function (argc
, argv
)
7521 /* Must have exactly two arguments. */
7525 if (IS_ABSOLUTE_PATHNAME (argv
[0]) && ! access (argv
[0], R_OK
))