* java/io/FileDescriptor.java (position): New private field.
[official-gcc.git] / gcc / gcc.c
blob618d2723208d22b14258c2fb5c5bc725372dccb0
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
10 version.
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
15 for more details.
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
20 02111-1307, USA.
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
42 `--bar'.
44 1. Each command-line option is specified in the specs file. The
45 notation is described below in the comment entitled "The Specs
46 Language". Read it.
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 `-'
62 from `--baz'.
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(),
67 instead.
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(). */
73 #include "config.h"
74 #include "system.h"
75 #include "coretypes.h"
76 #include "tm.h"
77 #include <signal.h>
78 #if ! defined( SIGCHLD ) && defined( SIGCLD )
79 # define SIGCHLD SIGCLD
80 #endif
81 #include "obstack.h"
82 #include "intl.h"
83 #include "prefix.h"
84 #include "gcc.h"
85 #include "flags.h"
87 #ifdef HAVE_SYS_RESOURCE_H
88 #include <sys/resource.h>
89 #endif
90 #if defined (HAVE_DECL_GETRUSAGE) && !HAVE_DECL_GETRUSAGE
91 extern int getrusage PARAMS ((int, struct rusage *));
92 #endif
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
98 #endif
100 /* By default there is no special suffix for host executables. */
101 #ifdef HOST_EXECUTABLE_SUFFIX
102 #define HAVE_HOST_EXECUTABLE_SUFFIX
103 #else
104 #define HOST_EXECUTABLE_SUFFIX ""
105 #endif
107 /* By default, the suffix for target object files is ".o". */
108 #ifdef TARGET_OBJECT_SUFFIX
109 #define HAVE_TARGET_OBJECT_SUFFIX
110 #else
111 #define TARGET_OBJECT_SUFFIX ".o"
112 #endif
114 #ifndef VMS
115 /* FIXME: the location independence code for VMS is hairier than this,
116 and hasn't been written. */
117 #ifndef DIR_UP
118 #define DIR_UP ".."
119 #endif /* DIR_UP */
120 #endif /* VMS */
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"
127 #endif
129 #ifndef HAVE_KILL
130 #define kill(p,s) raise(s)
131 #endif
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. */
139 int is_cpp_driver;
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
178 sub-processes. */
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. */
232 #ifdef CROSS_COMPILE
233 static const char *cross_compile = "1";
234 #else
235 static const char *cross_compile = "0";
236 #endif
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;
251 #endif
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
258 now. */
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
268 and destructors. */
270 static struct obstack collect_obstack;
272 /* These structs are used to collect resource usage information for
273 subprocesses. */
274 #ifdef HAVE_GETRUSAGE
275 static struct rusage rus, prus;
276 #endif
278 /* Forward declaration for prototypes. */
279 struct path_prefix;
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 *,
291 int, int));
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 *,
305 const char *));
306 static inline bool switch_matches PARAMS ((const char *,
307 const char *, int));
308 static inline void mark_matching_switches PARAMS ((const char *,
309 const char *, int));
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 *))
333 ATTRIBUTE_NORETURN;
334 static void notice PARAMS ((const char *, ...))
335 ATTRIBUTE_PRINTF_1;
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 *,
348 const char *));
349 #endif
350 #if defined(HAVE_TARGET_OBJECT_SUFFIX) || defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
351 static const char *convert_filename PARAMS ((const char *, int, int));
352 #endif
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).
378 %gSUFFIX
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.
390 %|SUFFIX
391 like %g, but if -pipe is in effect, expands simply to "-".
392 %mSUFFIX
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.)
396 %uSUFFIX
397 like %g, but generates a new temporary file name even if %uSUFFIX
398 was already seen.
399 %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.
408 %jSUFFIX
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
413 disposal mechanism.
414 %.SUFFIX
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
417 space or %.
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.
424 %W{...}
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
433 be linked.
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
441 example, `.o'.
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 __.)
446 This is for ANSI C.
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
483 a single space.
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
489 command line.
490 %:function(args)
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
537 word.
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
547 is specified.
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. */
565 #ifndef ASM_SPEC
566 #define ASM_SPEC ""
567 #endif
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 ""
573 #endif
575 /* config.h can define CPP_SPEC to provide extra args to the C preprocessor
576 or extra switch-translations. */
577 #ifndef CPP_SPEC
578 #define CPP_SPEC ""
579 #endif
581 /* config.h can define CC1_SPEC to provide extra args to cc1 and cc1plus
582 or extra switch-translations. */
583 #ifndef CC1_SPEC
584 #define CC1_SPEC ""
585 #endif
587 /* config.h can define CC1PLUS_SPEC to provide extra args to cc1plus
588 or extra switch-translations. */
589 #ifndef CC1PLUS_SPEC
590 #define CC1PLUS_SPEC ""
591 #endif
593 /* config.h can define LINK_SPEC to provide extra args to the linker
594 or extra switch-translations. */
595 #ifndef LINK_SPEC
596 #define LINK_SPEC ""
597 #endif
599 /* config.h can define LIB_SPEC to override the default libraries. */
600 #ifndef LIB_SPEC
601 #define LIB_SPEC "%{!shared:%{g*:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}}"
602 #endif
604 /* config.h can define LIBGCC_SPEC to override how and when libgcc.a is
605 included. */
606 #ifndef LIBGCC_SPEC
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"
610 #else
611 #define LIBGCC_SPEC "-lgcc"
612 #endif
613 #endif
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}}}"
619 #endif
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 ""
625 #endif
627 /* config.h can define ENDFILE_SPEC to override the default crtn files. */
628 #ifndef ENDFILE_SPEC
629 #define ENDFILE_SPEC ""
630 #endif
632 #ifndef LINKER_NAME
633 #define LINKER_NAME "collect2"
634 #endif
636 /* Define ASM_DEBUG_SPEC to be a spec suitable for translating '-g'
637 to the assembler. */
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}}")
645 # else
646 # if defined(DBX_DEBUGGING_INFO) && defined(HAVE_AS_GSTABS_DEBUG_FLAG)
647 # define ASM_DEBUG_SPEC "%{g*:--gstabs}"
648 # endif
649 # if defined(DWARF2_DEBUGGING_INFO) && defined(HAVE_AS_GDWARF2_DEBUG_FLAG)
650 # define ASM_DEBUG_SPEC "%{g*:--gdwarf2}"
651 # endif
652 # endif
653 #endif
654 #ifndef ASM_DEBUG_SPEC
655 # define ASM_DEBUG_SPEC ""
656 #endif
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"
665 #endif
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
672 directories. */
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*} }}}}}}"
680 #endif
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 ""
686 # else
687 /* Do generate them. */
688 # define LINK_LIBGCC_SPEC "%D"
689 # endif
690 #endif
692 #ifndef STARTFILE_PREFIX_SPEC
693 # define STARTFILE_PREFIX_SPEC ""
694 #endif
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\
741 %{E|M|MM:%W{o*}}";
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*}\
750 %{O*} %{undef}";
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 }";
774 #else
775 "%{!S:-o %|.s |\n as %(asm_options) %m.s %A }";
776 #endif
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
780 run time. */
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 { "" }
792 #endif
794 static const char *const multilib_defaults_raw[] = MULTILIB_DEFAULTS;
796 #ifndef DRIVER_SELF_SPECS
797 #define DRIVER_SELF_SPECS ""
798 #endif
800 static const char *const driver_self_specs[] = { DRIVER_SELF_SPECS };
802 struct user_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)
820 #endif
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)
836 #endif
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)
846 #endif
847 #endif
849 /* Record the mapping from file suffixes for compilation specs. */
851 struct compiler
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
860 cpp_spec. */
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. */
898 {".c", "@c", 0},
899 {"@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)}\
903 %{!E:%{!M:%{!MM:\
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},
912 {"-",
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},
916 {"@c-header",
917 "%{!E:%ecompilation of header file requested} \
918 %(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)",
920 {".i", "@cpp-output", 0},
921 {"@cpp-output",
922 "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0},
923 {".s", "@assembler", 0},
924 {"@assembler",
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 }}}}"
933 #else
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 }}}}"
938 #endif
939 , 0},
941 #include "specs.h"
942 /* Mark end of table */
943 {0, 0, 0}
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. */
971 struct option_map
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},
1069 {"--", "-f", "*j"}
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,
1080 { 0, 0 }
1082 #endif
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. */
1088 static void
1089 translate_options (argcp, argvp)
1090 int *argcp;
1091 const char *const **argvp;
1093 int i;
1094 int argc = *argcp;
1095 const char *const *argv = *argvp;
1096 int newvsize = (argc + 2) * 2 * sizeof (const char *);
1097 const char **newv =
1098 (const char **) xmalloc (newvsize);
1099 int newindex = 0;
1101 i = 0;
1102 newv[newindex++] = argv[i++];
1104 while (i < argc)
1106 #ifdef TARGET_OPTION_TRANSLATE_TABLE
1107 int tott_idx;
1109 for (tott_idx = 0;
1110 target_option_translations[tott_idx].option_found;
1111 tott_idx++)
1113 if (strcmp (target_option_translations[tott_idx].option_found,
1114 argv[i]) == 0)
1116 int spaces = 1;
1117 const char *sp;
1118 char *np;
1120 for (sp = target_option_translations[tott_idx].replacements;
1121 *sp; sp++)
1123 if (*sp == ' ')
1124 spaces ++;
1127 newvsize += spaces * sizeof (const char *);
1128 newv = (const char **) xrealloc (newv, newvsize);
1130 sp = target_option_translations[tott_idx].replacements;
1131 np = xstrdup (sp);
1133 while (1)
1135 while (*np == ' ')
1136 np++;
1137 if (*np == 0)
1138 break;
1139 newv[newindex++] = np;
1140 while (*np != ' ' && *np)
1141 np++;
1142 if (*np == 0)
1143 break;
1144 *np++ = 0;
1147 i ++;
1148 break;
1151 if (target_option_translations[tott_idx].option_found)
1152 continue;
1153 #endif
1155 /* Translate -- options. */
1156 if (argv[i][0] == '-' && argv[i][1] == '-')
1158 size_t j;
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;
1167 if (arginfo == 0)
1168 arginfo = "";
1170 if (!strncmp (argv[i], option_map[j].name, complen))
1172 const char *arg = 0;
1174 if (arglen < optlen)
1176 size_t k;
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]);
1182 break;
1185 if (k != ARRAY_SIZE (option_map))
1186 break;
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. */
1202 else
1203 continue;
1206 else if (strchr (arginfo, '*') != 0)
1208 error ("incomplete `%s' option", option_map[j].name);
1209 break;
1212 /* Handle arguments. */
1213 if (strchr (arginfo, 'a') != 0)
1215 if (arg == 0)
1217 if (i + 1 == argc)
1219 error ("missing argument to `%s' option",
1220 option_map[j].name);
1221 break;
1224 arg = argv[++i];
1227 else if (strchr (arginfo, '*') != 0)
1229 else if (strchr (arginfo, 'o') == 0)
1231 if (arg != 0)
1232 error ("extraneous argument to `%s' option",
1233 option_map[j].name);
1234 arg = 0;
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,
1240 NULL);
1241 else if (arg != 0)
1243 newv[newindex++] = option_map[j].equivalent;
1244 newv[newindex++] = arg;
1246 else
1247 newv[newindex++] = option_map[j].equivalent;
1249 break;
1252 i++;
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;
1260 int c = *p;
1261 int nskip = 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')
1268 && p[1] == 0)
1269 nskip += 1;
1270 else if (! strcmp (p, "Xlinker"))
1271 nskip += 1;
1272 else if (! strcmp (p, "Xpreprocessor"))
1273 nskip += 1;
1274 else if (! strcmp (p, "Xassembler"))
1275 nskip += 1;
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
1279 command line. */
1280 if (nskip + i > argc)
1281 nskip = argc - i;
1283 while (nskip > 0)
1285 newv[newindex++] = argv[i++];
1286 nskip--;
1289 else
1290 /* Ordinary operands, or +e options. */
1291 newv[newindex++] = argv[i++];
1294 newv[newindex] = 0;
1296 *argvp = newv;
1297 *argcp = newindex;
1300 static char *
1301 skip_whitespace (p)
1302 char *p;
1304 while (1)
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')
1309 return p + 1;
1310 else if (*p == '\n' || *p == ' ' || *p == '\t')
1311 p++;
1312 else if (*p == '#')
1314 while (*p != '\n')
1315 p++;
1316 p++;
1318 else
1319 break;
1322 return p;
1324 /* Structures to keep track of prefixes to try when looking for files. */
1326 struct prefix_list
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. */
1338 struct path_prefix
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
1377 #endif
1379 /* If no prefixes defined, use the null string, which will disable them. */
1380 #ifndef MD_EXEC_PREFIX
1381 #define MD_EXEC_PREFIX ""
1382 #endif
1383 #ifndef MD_STARTFILE_PREFIX
1384 #define MD_STARTFILE_PREFIX ""
1385 #endif
1386 #ifndef MD_STARTFILE_PREFIX_1
1387 #define MD_STARTFILE_PREFIX_1 ""
1388 #endif
1390 /* Supply defaults for the standard prefixes. */
1392 #ifndef STANDARD_EXEC_PREFIX
1393 #define STANDARD_EXEC_PREFIX "/usr/local/lib/gcc-lib/"
1394 #endif
1395 #ifndef STANDARD_STARTFILE_PREFIX
1396 #define STANDARD_STARTFILE_PREFIX "/usr/local/lib/"
1397 #endif
1398 #ifndef TOOLDIR_BASE_PREFIX
1399 #define TOOLDIR_BASE_PREFIX "/usr/local/"
1400 #endif
1401 #ifndef STANDARD_BINDIR_PREFIX
1402 #define STANDARD_BINDIR_PREFIX "/usr/local/bin"
1403 #endif
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
1432 or link spec. */
1434 struct spec_list
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. */
1495 struct spec_list_1
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;
1503 #endif
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 },
1515 { 0, 0 }
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
1524 static void
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;
1531 char *buf;
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:",
1538 #ifdef LINK_EH_SPEC
1539 "%{shared-libgcc:", shared_name,
1540 "}%{!shared-libgcc:", static_name, "}",
1541 #else
1542 shared_name,
1543 #endif
1544 "}}}", NULL);
1546 obstack_grow (obstack, buf, strlen (buf));
1547 free (buf);
1549 #endif /* ENABLE_SHARED_LIBGCC */
1551 /* Initialize the specs lookup routines. */
1553 static void
1554 init_spec ()
1556 struct spec_list *next = (struct spec_list *) 0;
1557 struct spec_list *sl = (struct spec_list *) 0;
1558 int i;
1560 if (specs)
1561 return; /* Already initialized. */
1563 if (verbose_flag)
1564 notice ("Using built-in specs.\n");
1566 #ifdef EXTRA_SPECS
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;
1575 sl->next = next;
1576 sl->name_len = strlen (sl->name);
1577 sl->ptr_spec = &sl->ptr;
1578 next = sl;
1580 #endif
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];
1589 sl->next = next;
1590 next = sl;
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
1603 dynamic loading.
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.
1609 (4) If "-shared"
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;
1623 int in_sep = 1;
1625 /* Transform the extant libgcc_spec into one that uses the shared libgcc
1626 when given the proper command line arguments. */
1627 while (*p)
1629 if (in_sep && *p == '-' && strncmp (p, "-lgcc", 5) == 0)
1631 init_gcc_specs (&obstack,
1632 #ifdef NO_SHARED_LIBGCC_MULTILIB
1633 "-lgcc_s"
1634 #else
1635 "-lgcc_s%M"
1636 #endif
1637 #ifdef USE_LIBUNWIND_EXCEPTIONS
1638 " -lunwind"
1639 #endif
1641 "-lgcc",
1642 "-lgcc_eh");
1643 p += 5;
1644 in_sep = 0;
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
1652 "-lgcc_s"
1653 #else
1654 "-lgcc_s%M"
1655 #endif
1657 "libgcc.a%s",
1658 "libgcc_eh.a%s");
1659 p += 10;
1660 in_sep = 0;
1662 else
1664 obstack_1grow (&obstack, *p);
1665 in_sep = (*p == ' ');
1666 p += 1;
1670 obstack_1grow (&obstack, '\0');
1671 libgcc_spec = obstack_finish (&obstack);
1673 #endif
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);
1682 #endif
1683 #ifdef LINK_EH_SPEC
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);
1688 #endif
1690 specs = sl;
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
1695 current spec. */
1697 static void
1698 set_spec (name, spec)
1699 const char *name;
1700 const char *spec;
1702 struct spec_list *sl;
1703 const char *old_spec;
1704 int name_len = strlen (name);
1705 int i;
1707 /* If this is the first call, initialize the statically allocated specs. */
1708 if (!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];
1714 sl->next = next;
1715 next = sl;
1717 specs = sl;
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))
1723 break;
1725 if (!sl)
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;
1732 sl->alloc_p = 0;
1733 *(sl->ptr_spec) = "";
1734 sl->next = specs;
1735 specs = sl;
1738 old_spec = *(sl->ptr_spec);
1739 *(sl->ptr_spec) = ((spec[0] == '+' && ISSPACE ((unsigned char)spec[1]))
1740 ? concat (old_spec, spec + 1, NULL)
1741 : xstrdup (spec));
1743 #ifdef DEBUG_SPECS
1744 if (verbose_flag)
1745 notice ("Setting spec %s to '%s'\n\n", name, *(sl->ptr_spec));
1746 #endif
1748 /* Free the old spec. */
1749 if (old_spec && sl->alloc_p)
1750 free ((PTR) old_spec);
1752 sl->alloc_p = 1;
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
1771 it here. */
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;
1780 } *temp_names;
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. */
1796 static void
1797 alloc_args ()
1799 argbuf_length = 10;
1800 argbuf = (const char **) xmalloc (argbuf_length * sizeof (const char *));
1803 /* Clear out the vector of arguments (after a command is executed). */
1805 static void
1806 clear_args ()
1808 argbuf_index = 0;
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. */
1818 static void
1819 store_arg (arg, delete_always, delete_failure)
1820 const char *arg;
1821 int delete_always, delete_failure;
1823 if (argbuf_index + 1 == argbuf_length)
1824 argbuf
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
1837 a single \n. */
1839 static char *
1840 load_specs (filename)
1841 const char *filename;
1843 int desc;
1844 int readlen;
1845 struct stat statbuf;
1846 char *buffer;
1847 char *buffer_p;
1848 char *specs;
1849 char *specs_p;
1851 if (verbose_flag)
1852 notice ("Reading specs from %s\n", filename);
1854 /* Open and stat the file. */
1855 desc = open (filename, O_RDONLY, 0);
1856 if (desc < 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);
1864 if (readlen < 0)
1865 pfatal_with_name (filename);
1866 buffer[readlen] = 0;
1867 close (desc);
1869 specs = xmalloc (readlen + 1);
1870 specs_p = specs;
1871 for (buffer_p = buffer; buffer_p && *buffer_p; buffer_p++)
1873 int skip = 0;
1874 char c = *buffer_p;
1875 if (c == '\r')
1877 if (buffer_p > buffer && *(buffer_p - 1) == '\n') /* \n\r */
1878 skip = 1;
1879 else if (*(buffer_p + 1) == '\n') /* \r\n */
1880 skip = 1;
1881 else /* \r */
1882 c = '\n';
1884 if (! skip)
1885 *specs_p++ = c;
1887 *specs_p = '\0';
1889 free (buffer);
1890 return (specs);
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. */
1904 static void
1905 read_specs (filename, main_p)
1906 const char *filename;
1907 int main_p;
1909 char *buffer;
1910 char *p;
1912 buffer = load_specs (filename);
1914 /* Scan BUFFER for specs, putting them in the vector. */
1915 p = buffer;
1916 while (1)
1918 char *suffix;
1919 char *spec;
1920 char *in, *out, *p1, *p2, *p3;
1922 /* Advance P in BUFFER to the next nonblank nocomment line. */
1923 p = skip_whitespace (p);
1924 if (*p == 0)
1925 break;
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)
1932 p1 = p;
1933 while (*p && *p != '\n')
1934 p++;
1936 /* Skip '\n'. */
1937 p++;
1939 if (!strncmp (p1, "%include", sizeof ("%include") - 1)
1940 && (p1[sizeof "%include" - 1] == ' '
1941 || p1[sizeof "%include" - 1] == '\t'))
1943 char *new_filename;
1945 p1 += sizeof ("%include");
1946 while (*p1 == ' ' || *p1 == '\t')
1947 p1++;
1949 if (*p1++ != '<' || p[-2] != '>')
1950 fatal ("specs %%include syntax malformed after %ld characters",
1951 (long) (p1 - buffer + 1));
1953 p[-2] = '\0';
1954 new_filename = find_a_file (&startfile_prefixes, p1, R_OK, 0);
1955 read_specs (new_filename ? new_filename : p1, FALSE);
1956 continue;
1958 else if (!strncmp (p1, "%include_noerr", sizeof "%include_noerr" - 1)
1959 && (p1[sizeof "%include_noerr" - 1] == ' '
1960 || p1[sizeof "%include_noerr" - 1] == '\t'))
1962 char *new_filename;
1964 p1 += sizeof "%include_noerr";
1965 while (*p1 == ' ' || *p1 == '\t')
1966 p1++;
1968 if (*p1++ != '<' || p[-2] != '>')
1969 fatal ("specs %%include syntax malformed after %ld characters",
1970 (long) (p1 - buffer + 1));
1972 p[-2] = '\0';
1973 new_filename = find_a_file (&startfile_prefixes, p1, R_OK, 0);
1974 if (new_filename)
1975 read_specs (new_filename, FALSE);
1976 else if (verbose_flag)
1977 notice ("could not find specs file %s\n", p1);
1978 continue;
1980 else if (!strncmp (p1, "%rename", sizeof "%rename" - 1)
1981 && (p1[sizeof "%rename" - 1] == ' '
1982 || p1[sizeof "%rename" - 1] == '\t'))
1984 int name_len;
1985 struct spec_list *sl;
1986 struct spec_list *newsl;
1988 /* Get original name. */
1989 p1 += sizeof "%rename";
1990 while (*p1 == ' ' || *p1 == '\t')
1991 p1++;
1993 if (! ISALPHA ((unsigned char) *p1))
1994 fatal ("specs %%rename syntax malformed after %ld characters",
1995 (long) (p1 - buffer));
1997 p2 = p1;
1998 while (*p2 && !ISSPACE ((unsigned char) *p2))
1999 p2++;
2001 if (*p2 != ' ' && *p2 != '\t')
2002 fatal ("specs %%rename syntax malformed after %ld characters",
2003 (long) (p2 - buffer));
2005 name_len = p2 - p1;
2006 *p2++ = '\0';
2007 while (*p2 == ' ' || *p2 == '\t')
2008 p2++;
2010 if (! ISALPHA ((unsigned char) *p2))
2011 fatal ("specs %%rename syntax malformed after %ld characters",
2012 (long) (p2 - buffer));
2014 /* Get new spec name. */
2015 p3 = p2;
2016 while (*p3 && !ISSPACE ((unsigned char) *p3))
2017 p3++;
2019 if (p3 != p - 1)
2020 fatal ("specs %%rename syntax malformed after %ld characters",
2021 (long) (p3 - buffer));
2022 *p3 = '\0';
2024 for (sl = specs; sl; sl = sl->next)
2025 if (name_len == sl->name_len && !strcmp (sl->name, p1))
2026 break;
2028 if (!sl)
2029 fatal ("specs %s spec was not found to be renamed", p1);
2031 if (strcmp (p1, p2) == 0)
2032 continue;
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'",
2037 filename, p1, p2);
2039 if (verbose_flag)
2041 notice ("rename spec %s to %s\n", p1, p2);
2042 #ifdef DEBUG_SPECS
2043 notice ("spec is '%s'\n\n", *(sl->ptr_spec));
2044 #endif
2047 set_spec (p2, *(sl->ptr_spec));
2048 if (sl->alloc_p)
2049 free ((PTR) *(sl->ptr_spec));
2051 *(sl->ptr_spec) = "";
2052 sl->alloc_p = 0;
2053 continue;
2055 else
2056 fatal ("specs unknown %% command after %ld characters",
2057 (long) (p1 - buffer));
2060 /* Find the colon that should end the suffix. */
2061 p1 = p;
2062 while (*p1 && *p1 != ':' && *p1 != '\n')
2063 p1++;
2065 /* The colon shouldn't be missing. */
2066 if (*p1 != ':')
2067 fatal ("specs file malformed after %ld characters",
2068 (long) (p1 - buffer));
2070 /* Skip back over trailing whitespace. */
2071 p2 = p1;
2072 while (p2 > buffer && (p2[-1] == ' ' || p2[-1] == '\t'))
2073 p2--;
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);
2079 if (p[1] == 0)
2080 fatal ("specs file malformed after %ld characters",
2081 (long) (p - buffer));
2083 p1 = p;
2084 /* Find next blank line or end of string. */
2085 while (*p1 && !(*p1 == '\n' && (p1[1] == '\n' || p1[1] == '\0')))
2086 p1++;
2088 /* Specs end at the blank line and do not include the newline. */
2089 spec = save_string (p, p1 - p);
2090 p = p1;
2092 /* Delete backslash-newline sequences from the spec. */
2093 in = spec;
2094 out = spec;
2095 while (*in != 0)
2097 if (in[0] == '\\' && in[1] == '\n')
2098 in += 2;
2099 else if (in[0] == '#')
2100 while (*in && *in != '\n')
2101 in++;
2103 else
2104 *out++ = *in++;
2106 *out = 0;
2108 if (suffix[0] == '*')
2110 if (! strcmp (suffix, "*link_command"))
2111 link_command_spec = spec;
2112 else
2113 set_spec (suffix + 1, spec);
2115 else
2117 /* Add this pair to the vector. */
2118 compilers
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;
2125 n_compilers++;
2126 memset (&compilers[n_compilers], 0, sizeof compilers[n_compilers]);
2129 if (*suffix == 0)
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. */
2159 struct temp_file
2161 const char *name;
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. */
2176 void
2177 record_temp_file (filename, always_delete, fail_delete)
2178 const char *filename;
2179 int always_delete;
2180 int fail_delete;
2182 char *const name = xstrdup (filename);
2184 if (always_delete)
2186 struct temp_file *temp;
2187 for (temp = always_delete_queue; temp; temp = temp->next)
2188 if (! strcmp (name, temp->name))
2189 goto already1;
2191 temp = (struct temp_file *) xmalloc (sizeof (struct temp_file));
2192 temp->next = always_delete_queue;
2193 temp->name = name;
2194 always_delete_queue = temp;
2196 already1:;
2199 if (fail_delete)
2201 struct temp_file *temp;
2202 for (temp = failure_delete_queue; temp; temp = temp->next)
2203 if (! strcmp (name, temp->name))
2204 goto already2;
2206 temp = (struct temp_file *) xmalloc (sizeof (struct temp_file));
2207 temp->next = failure_delete_queue;
2208 temp->name = name;
2209 failure_delete_queue = temp;
2211 already2:;
2215 /* Delete all the temporary files whose names we previously recorded. */
2217 static void
2218 delete_if_ordinary (name)
2219 const char *name;
2221 struct stat st;
2222 #ifdef DEBUG
2223 int i, c;
2225 printf ("Delete %s? (y or n) ", name);
2226 fflush (stdout);
2227 i = getchar ();
2228 if (i != '\n')
2229 while ((c = getchar ()) != '\n' && c != EOF)
2232 if (i == 'y' || i == 'Y')
2233 #endif /* DEBUG */
2234 if (stat (name, &st) >= 0 && S_ISREG (st.st_mode))
2235 if (unlink (name) < 0)
2236 if (verbose_flag)
2237 perror_with_name (name);
2240 static void
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. */
2252 static void
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);
2261 static void
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. */
2273 static char *
2274 build_search_list (paths, prefix, check_dir_p)
2275 struct path_prefix *paths;
2276 const char *prefix;
2277 int check_dir_p;
2279 int suffix_len = (machine_suffix) ? strlen (machine_suffix) : 0;
2280 int just_suffix_len
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);
2292 if (machine_suffix
2293 && (! check_dir_p
2294 || is_directory (pprefix->prefix, machine_suffix, 0)))
2296 if (!first_time)
2297 obstack_1grow (&collect_obstack, PATH_SEPARATOR);
2299 first_time = FALSE;
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
2306 && (! check_dir_p
2307 || is_directory (pprefix->prefix, just_machine_suffix, 0)))
2309 if (! first_time)
2310 obstack_1grow (&collect_obstack, PATH_SEPARATOR);
2312 first_time = FALSE;
2313 obstack_grow (&collect_obstack, pprefix->prefix, len);
2314 obstack_grow (&collect_obstack, just_machine_suffix,
2315 just_suffix_len);
2318 if (! pprefix->require_machine_suffix)
2320 if (! first_time)
2321 obstack_1grow (&collect_obstack, PATH_SEPARATOR);
2323 first_time = FALSE;
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
2333 for collect. */
2335 static void
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. */
2346 static int
2347 access_check (name, mode)
2348 const char *name;
2349 int mode;
2351 if (mode == X_OK)
2353 struct stat st;
2355 if (stat (name, &st) < 0
2356 || S_ISDIR (st.st_mode))
2357 return -1;
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. */
2367 static char *
2368 find_a_file (pprefix, name, mode, multilib)
2369 struct path_prefix *pprefix;
2370 const char *name;
2371 int mode, multilib;
2373 char *temp;
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);
2383 #endif
2385 #ifdef DEFAULT_LINKER
2386 if (! strcmp(name, "ld") && access (DEFAULT_LINKER, mode) == 0)
2387 return xstrdup (DEFAULT_LINKER);
2388 #endif
2390 if (machine_suffix)
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;
2401 if (multilib_dir)
2402 multilib_name = ACONCAT ((multilib_dir, dir_separator_str, name,
2403 NULL));
2404 if (strcmp (multilib_os_dir, ".") != 0)
2405 multilib_os_name = ACONCAT ((multilib_os_dir, dir_separator_str, name,
2406 NULL));
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);
2418 return temp;
2421 else
2422 for (pl = pprefix->plist; pl; pl = pl->next)
2424 const char *this_name
2425 = pl->os_multilib ? multilib_os_name : multilib_name;
2427 if (machine_suffix)
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;
2441 return temp;
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;
2453 return temp;
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;
2473 return temp;
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;
2484 return temp;
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;
2503 return temp;
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;
2513 return temp;
2518 free (temp);
2519 return 0;
2522 /* Ranking of prefixes in the sort list. -B prefixes are put before
2523 all others. */
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
2533 appended.
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. */
2545 static void
2546 add_prefix (pprefix, prefix, component, priority, require_machine_suffix,
2547 warn, os_multilib)
2548 struct path_prefix *pprefix;
2549 const char *prefix;
2550 const char *component;
2551 /* enum prefix_priority */ int priority;
2552 int require_machine_suffix;
2553 int *warn;
2554 int os_multilib;
2556 struct prefix_list *pl, **prev;
2557 int len;
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;
2577 if (warn)
2578 *warn = 0;
2580 /* Insert after PREV */
2581 pl->next = (*prev);
2582 (*prev) = pl;
2585 /* Same as add_prefix, but prepending target_system_root to prefix. */
2586 static void
2587 add_sysrooted_prefix (pprefix, prefix, component, priority,
2588 require_machine_suffix, warn, os_multilib)
2589 struct path_prefix *pprefix;
2590 const char *prefix;
2591 const char *component;
2592 /* enum prefix_priority */ int priority;
2593 int require_machine_suffix;
2594 int *warn;
2595 int os_multilib;
2597 if (!IS_ABSOLUTE_PATHNAME (prefix))
2598 abort ();
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. */
2605 component = "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. */
2618 static int
2619 execute ()
2621 int i;
2622 int n_commands; /* # of command. */
2623 char *string;
2624 struct 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)
2634 abort ();
2636 /* Count # of piped commands. */
2637 for (n_commands = 1, i = 0; i < argbuf_index; i++)
2638 if (strcmp (argbuf[i], "|") == 0)
2639 n_commands++;
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);
2652 if (string)
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");
2660 #endif
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,
2665 X_OK, 0);
2666 if (string)
2667 commands[n_commands].argv[0] = string;
2668 n_commands++;
2671 argbuf[argbuf_index] = 0;
2673 /* If -v, print what we are about to do, and maybe query. */
2675 if (verbose_flag)
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++)
2690 const char *p;
2691 fprintf (stderr, " \"");
2692 for (p = *j; *p; ++p)
2694 if (*p == '"' || *p == '\\' || *p == '$')
2695 fputc ('\\', stderr);
2696 fputc (*p, stderr);
2698 fputc ('"', stderr);
2701 else
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");
2710 fflush (stderr);
2711 if (verbose_only_flag != 0)
2712 return 0;
2713 #ifdef DEBUG
2714 notice ("\nGo ahead? (y or n) ");
2715 fflush (stderr);
2716 i = getchar ();
2717 if (i != '\n')
2718 while (getchar () != '\n')
2721 if (i != 'y' && i != 'Y')
2722 return 0;
2723 #endif /* DEBUG */
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++)
2733 const char **argv;
2734 int argc;
2735 int j;
2737 for (argc = 0; commands[i].argv[argc] != NULL; argc++)
2740 argv = alloca ((argc + 3) * sizeof (char *));
2742 argv[0] = VALGRIND_PATH;
2743 argv[1] = "-q";
2744 for (j = 2; j < argc + 2; j++)
2745 argv[j] = commands[i].argv[j - 2];
2746 argv[j] = NULL;
2748 commands[i].argv = argv;
2749 commands[i].prog = argv[0];
2751 #endif
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);
2778 execution_count++;
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. */
2787 int ret_code = 0;
2788 #ifdef HAVE_GETRUSAGE
2789 struct timeval d;
2790 double ut = 0.0, st = 0.0;
2791 #endif
2793 for (i = 0; i < n_commands;)
2795 int j;
2796 int status;
2797 int pid;
2799 pid = pwait (commands[i].pid, &status, 0);
2800 if (pid < 0)
2801 abort ();
2803 #ifdef HAVE_GETRUSAGE
2804 if (report_times)
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. */
2810 prus = rus;
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;
2820 #endif
2822 for (j = 0; j < n_commands; j++)
2823 if (commands[j].pid == pid)
2825 i++;
2826 if (WIFSIGNALED (status))
2828 #ifdef SIGPIPE
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))
2838 else
2839 #endif
2840 fatal ("\
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,
2845 bug_report_url);
2846 signal_count++;
2847 ret_code = -1;
2849 else if (WIFEXITED (status)
2850 && WEXITSTATUS (status) >= MIN_FATAL_STATUS)
2852 if (WEXITSTATUS (status) > greatest_status)
2853 greatest_status = WEXITSTATUS (status);
2854 ret_code = -1;
2856 #ifdef HAVE_GETRUSAGE
2857 if (report_times && ut + st != 0)
2858 notice ("# %s %.2f %.2f\n", commands[j].prog, ut, st);
2859 #endif
2860 break;
2863 return ret_code;
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:
2874 0 when initialized
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. */
2881 #define SWITCH_OK 0
2882 #define SWITCH_FALSE -1
2883 #define SWITCH_IGNORE -2
2884 #define SWITCH_LIVE 1
2886 struct switchstr
2888 const char *part1;
2889 const char **args;
2890 int live_cond;
2891 unsigned char validated;
2892 unsigned char ordering;
2895 static struct switchstr *switches;
2897 static int n_switches;
2899 struct infile
2901 const char *name;
2902 const char *language;
2905 /* Also a vector of input files specified. */
2907 static struct infile *infiles;
2909 int n_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. */
2921 static int warn_B;
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. */
2932 static const char *
2933 convert_filename (name, do_exe, do_obj)
2934 const char *name;
2935 int do_exe ATTRIBUTE_UNUSED;
2936 int do_obj ATTRIBUTE_UNUSED;
2938 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
2939 int i;
2940 #endif
2941 int len;
2943 if (name == NULL)
2944 return NULL;
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);
2958 #endif
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] == '-'))
2964 return name;
2966 for (i = len - 1; i >= 0; i--)
2967 if (IS_DIR_SEPARATOR (name[i]))
2968 break;
2970 for (i++; i < len; i++)
2971 if (name[i] == '.')
2972 return name;
2974 obstack_grow (&obstack, name, len);
2975 obstack_grow0 (&obstack, TARGET_EXECUTABLE_SUFFIX,
2976 strlen (TARGET_EXECUTABLE_SUFFIX));
2977 name = obstack_finish (&obstack);
2978 #endif
2980 return name;
2982 #endif
2984 /* Display the command line switches accepted by gcc. */
2985 static void
2986 display_help ()
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);
2994 if (! verbose_flag)
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);
3004 fputs (_("\
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);
3028 fputs (_("\
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\
3033 "), stdout);
3035 printf (_("\
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\
3039 "), programname);
3041 /* The rest of the options are displayed by invocations of the various
3042 sub-processes. */
3045 static void
3046 add_preprocessor_option (option, len)
3047 const char *option;
3048 int len;
3050 n_preprocessor_options++;
3052 if (! preprocessor_options)
3053 preprocessor_options
3054 = (char **) xmalloc (n_preprocessor_options * sizeof (char *));
3055 else
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);
3064 static void
3065 add_assembler_option (option, len)
3066 const char *option;
3067 int len;
3069 n_assembler_options++;
3071 if (! assembler_options)
3072 assembler_options
3073 = (char **) xmalloc (n_assembler_options * sizeof (char *));
3074 else
3075 assembler_options
3076 = (char **) xrealloc (assembler_options,
3077 n_assembler_options * sizeof (char *));
3079 assembler_options [n_assembler_options - 1] = save_string (option, len);
3082 static void
3083 add_linker_option (option, len)
3084 const char *option;
3085 int len;
3087 n_linker_options++;
3089 if (! linker_options)
3090 linker_options
3091 = (char **) xmalloc (n_linker_options * sizeof (char *));
3092 else
3093 linker_options
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'. */
3103 static void
3104 process_command (argc, argv)
3105 int argc;
3106 const char *const *argv;
3108 int i;
3109 const char *temp;
3110 char *temp1;
3111 const char *spec_lang = 0;
3112 int last_language_n_infiles;
3113 int have_c = 0;
3114 int have_o = 0;
3115 int lang_n_infiles = 0;
3116 #ifdef MODIFY_TARGET_NAME
3117 int is_modify_target_name;
3118 int j;
3119 #endif
3121 GET_ENVIRONMENT (gcc_exec_prefix, "GCC_EXEC_PREFIX");
3123 n_switches = 0;
3124 n_infiles = 0;
3125 added_libraries = 0;
3127 /* Figure compiler version from version string. */
3129 compiler_version = temp1 = xstrdup (version_string);
3131 for (; *temp1; ++temp1)
3133 if (*temp1 == ' ')
3135 *temp1 = '\0';
3136 break;
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];
3148 char **new_argv;
3149 char *new_argv0;
3150 int baselen;
3152 while (argc > 1 && argv[1][0] == '-'
3153 && (argv[1][1] == 'V' || argv[1][1] == 'b'))
3155 char opt = argv[1][1];
3156 const char *arg;
3157 if (argv[1][2] != '\0')
3159 arg = argv[1] + 2;
3160 argc -= 1;
3161 argv += 1;
3163 else if (argc > 2)
3165 arg = argv[2];
3166 argc -= 2;
3167 argv += 2;
3169 else
3170 fatal ("`-%c' option must have argument", opt);
3171 if (opt == 'V')
3172 new_version = arg;
3173 else
3174 new_machine = arg;
3177 for (baselen = strlen (progname); baselen > 0; baselen--)
3178 if (IS_DIR_SEPARATOR (progname[baselen-1]))
3179 break;
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]. */
3198 #ifndef VMS
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));
3207 #endif
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");
3235 if (temp)
3237 const char *startp, *endp;
3238 char *nstore = (char *) alloca (strlen (temp) + 3);
3240 startp = endp = temp;
3241 while (1)
3243 if (*endp == PATH_SEPARATOR || *endp == 0)
3245 strncpy (nstore, startp, endp - startp);
3246 if (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;
3253 else
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);
3260 if (*endp == 0)
3261 break;
3262 endp = startp = endp + 1;
3264 else
3265 endp++;
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;
3276 while (1)
3278 if (*endp == PATH_SEPARATOR || *endp == 0)
3280 strncpy (nstore, startp, endp - startp);
3281 if (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;
3288 else
3289 nstore[endp - startp] = 0;
3290 add_prefix (&startfile_prefixes, nstore, NULL,
3291 PREFIX_PRIORITY_LAST, 0, NULL, 1);
3292 if (*endp == 0)
3293 break;
3294 endp = startp = endp + 1;
3296 else
3297 endp++;
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;
3309 while (1)
3311 if (*endp == PATH_SEPARATOR || *endp == 0)
3313 strncpy (nstore, startp, endp - startp);
3314 if (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;
3321 else
3322 nstore[endp - startp] = 0;
3323 add_prefix (&startfile_prefixes, nstore, NULL,
3324 PREFIX_PRIORITY_LAST, 0, NULL, 1);
3325 if (*endp == 0)
3326 break;
3327 endp = startp = endp + 1;
3329 else
3330 endp++;
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;
3349 init_spec ();
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);
3354 exit (0);
3356 else if (! strcmp (argv[i], "-dumpversion"))
3358 printf ("%s\n", spec_version);
3359 exit (0);
3361 else if (! strcmp (argv[i], "-dumpmachine"))
3363 printf ("%s\n", spec_machine);
3364 exit (0);
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"),
3371 stdout);
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"),
3374 stdout);
3375 exit (0);
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. */
3383 n_infiles++;
3384 n_switches++;
3386 /* CPP driver cannot obtain switch from cc1_options. */
3387 if (is_cpp_driver)
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. */
3398 n_infiles++;
3399 n_switches++;
3401 /* CPP driver cannot obtain switch from cc1_options. */
3402 if (is_cpp_driver)
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;
3410 n_switches++;
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))
3428 int prev, j;
3429 /* Pass the rest of this option to the assembler. */
3431 /* Split the argument at commas. */
3432 prev = 4;
3433 for (j = 4; argv[i][j]; j++)
3434 if (argv[i][j] == ',')
3436 add_assembler_option (argv[i] + prev, j - prev);
3437 prev = j + 1;
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))
3445 int prev, j;
3446 /* Pass the rest of this option to the preprocessor. */
3448 /* Split the argument at commas. */
3449 prev = 4;
3450 for (j = 4; argv[i][j]; j++)
3451 if (argv[i][j] == ',')
3453 add_preprocessor_option (argv[i] + prev, j - prev);
3454 prev = j + 1;
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. */
3462 n_switches++;
3463 else if (strncmp (argv[i], "-Wl,", 4) == 0)
3465 int j;
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)
3472 if (i + 1 == argc)
3473 fatal ("argument to `-Xlinker' is missing");
3475 n_infiles++;
3476 i++;
3478 else if (strcmp (argv[i], "-Xpreprocessor") == 0)
3480 if (i + 1 == argc)
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)
3487 if (i + 1 == argc)
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)
3494 if (i + 1 == argc)
3495 fatal ("argument to `-l' is missing");
3497 n_infiles++;
3498 i++;
3500 else if (strncmp (argv[i], "-l", 2) == 0)
3501 n_infiles++;
3502 else if (strcmp (argv[i], "-save-temps") == 0)
3504 save_temps_flag = 1;
3505 n_switches++;
3507 else if (strcmp (argv[i], "-specs") == 0)
3509 struct user_specs *user = (struct user_specs *)
3510 xmalloc (sizeof (struct user_specs));
3511 if (++i >= argc)
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;
3518 else
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;
3533 else
3534 user_specs_head = user;
3535 user_specs_tail = user;
3537 else if (strcmp (argv[i], "-time") == 0)
3538 report_times = 1;
3539 else if (strcmp (argv[i], "-pipe") == 0)
3541 /* -pipe has to go into the switches array as well as
3542 setting a flag. */
3543 use_pipes = 1;
3544 n_switches++;
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++;
3553 verbose_flag++;
3555 else if (argv[i][0] == '-' && argv[i][1] != 0)
3557 const char *p = &argv[i][1];
3558 int c = *p;
3560 switch (c)
3562 case 'b':
3563 case 'V':
3564 fatal ("`-%c' must come at the start of the command line", c);
3565 break;
3567 case 'B':
3569 const char *value;
3570 int len;
3572 if (p[1] == 0 && i + 1 == argc)
3573 fatal ("argument to `-B' is missing");
3574 if (p[1] == 0)
3575 value = argv[++i];
3576 else
3577 value = p + 1;
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;
3594 tmp[++ len] = 0;
3595 value = tmp;
3598 /* As a kludge, if the arg is "[foo/]stageN/", just
3599 add "[foo/]include" to the include prefix. */
3600 if ((len == 7
3601 || (len > 7
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])))
3607 if (len == 7)
3608 add_prefix (&include_prefixes, "include", NULL,
3609 PREFIX_PRIORITY_B_OPT, 0, NULL, 0);
3610 else
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);
3627 n_switches++;
3629 break;
3631 case 'v': /* Print our subcommands and print versions. */
3632 n_switches++;
3633 /* If they do anything other than exactly `-v', don't set
3634 verbose_flag; rather, continue on to give the error. */
3635 if (p[1] != 0)
3636 break;
3637 verbose_flag++;
3638 break;
3640 case 'S':
3641 case 'c':
3642 if (p[1] == 0)
3644 have_c = 1;
3645 n_switches++;
3646 break;
3648 goto normal_switch;
3650 case 'o':
3651 have_o = 1;
3652 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
3653 if (! have_c)
3655 int skip;
3657 /* Forward scan, just in case -S or -c is specified
3658 after -o. */
3659 int j = i + 1;
3660 if (p[1] == 0)
3661 ++j;
3662 while (j < argc)
3664 if (argv[j][0] == '-')
3666 if (SWITCH_CURTAILS_COMPILATION (argv[j][1])
3667 && argv[j][2] == 0)
3669 have_c = 1;
3670 break;
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)))
3675 j += skip;
3677 j++;
3680 #endif
3681 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX) || defined(HAVE_TARGET_OBJECT_SUFFIX)
3682 if (p[1] == 0)
3683 argv[i + 1] = convert_filename (argv[i + 1], ! have_c, 0);
3684 else
3685 argv[i] = convert_filename (argv[i], ! have_c, 0);
3686 #endif
3687 goto normal_switch;
3689 default:
3690 normal_switch:
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))
3698 char *new_name
3699 = (char *) xmalloc (strlen (modify_target[j].str)
3700 + strlen (spec_machine));
3701 const char *p, *r;
3702 char *q;
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; )
3716 *q++ = *r++;
3717 made_addition = 1;
3720 *q++ = *p++;
3723 spec_machine = new_name;
3726 if (is_modify_target_name)
3727 break;
3728 #endif
3730 n_switches++;
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);
3738 else
3740 n_infiles++;
3741 lang_n_infiles++;
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");
3758 use_pipes = 0;
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. */
3767 #ifndef OS2
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);
3774 #endif
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));
3838 n_switches = 0;
3839 n_infiles = 0;
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)
3858 else
3859 #endif
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;
3895 n_switches++;
3897 else if (strncmp (argv[i], "-Wl,", 4) == 0)
3899 int prev, j;
3900 /* Split the argument at commas. */
3901 prev = 4;
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);
3908 prev = j + 1;
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)
3941 i++;
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];
3951 int c = *p;
3953 if (c == 'x')
3955 if (p[1] == 0 && i + 1 == argc)
3956 fatal ("argument to `-x' is missing");
3957 if (p[1] == 0)
3958 spec_lang = argv[++i];
3959 else
3960 spec_lang = p + 1;
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. */
3965 spec_lang = 0;
3966 else
3967 last_language_n_infiles = n_infiles;
3968 continue;
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))
3975 int j = 0;
3976 int n_args = WORD_SWITCH_TAKES_ARG (p);
3978 if (n_args == 0)
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 *));
3987 while (j < n_args)
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);
3997 part1[0] = c;
3998 part1[1] = '\0';
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;
4006 else
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;
4018 else
4020 char ch = switches[n_switches].part1[0];
4021 if (ch == 'B')
4022 switches[n_switches].validated = 1;
4024 n_switches++;
4026 else
4028 #ifdef HAVE_TARGET_OBJECT_SUFFIX
4029 argv[i] = convert_filename (argv[i], 0, access (argv[i], F_OK));
4030 #endif
4032 if (strcmp (argv[i], "-") != 0 && access (argv[i], F_OK) < 0)
4034 perror_with_name (argv[i]);
4035 error_count++;
4037 else
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)
4051 n_infiles = 1;
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;
4065 n_switches++;
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;
4075 n_switches++;
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. */
4086 static void
4087 set_collect_gcc_options ()
4089 int i;
4090 int first_time;
4092 /* Build COLLECT_GCC_OPTIONS to have all of the options specified to
4093 the compiler. */
4094 obstack_grow (&collect_obstack, "COLLECT_GCC_OPTIONS=",
4095 sizeof ("COLLECT_GCC_OPTIONS=") - 1);
4097 first_time = TRUE;
4098 for (i = 0; (int) i < n_switches; i++)
4100 const char *const *args;
4101 const char *p, *q;
4102 if (!first_time)
4103 obstack_grow (&collect_obstack, " ", 1);
4105 first_time = FALSE;
4107 /* Ignore elided switches. */
4108 if (switches[i].live_cond == SWITCH_IGNORE)
4109 continue;
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);
4117 q = ++p;
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);
4125 q = *args;
4126 while ((p = strchr (q, '\'')))
4128 obstack_grow (&collect_obstack, q, p - q);
4129 obstack_grow (&collect_obstack, "'\\''", 4);
4130 q = ++p;
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
4185 arguments. */
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. */
4192 do_spec (spec)
4193 const char *spec;
4195 int value;
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 `|'. */
4201 if (value == 0)
4203 if (argbuf_index > 0 && !strcmp (argbuf[argbuf_index - 1], "|"))
4204 argbuf_index--;
4206 set_collect_gcc_options ();
4208 if (argbuf_index > 0)
4209 value = execute ();
4212 return value;
4215 static int
4216 do_spec_2 (spec)
4217 const char *spec;
4219 clear_args ();
4220 arg_going = 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. */
4234 static void
4235 do_self_spec (spec)
4236 const char *spec;
4238 do_spec_2 (spec);
4239 do_spec_1 (" ", 0, NULL);
4241 if (argbuf_index > 0)
4243 int i, first;
4245 first = n_switches;
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] != '-')
4257 abort ();
4259 sw = &switches[i + first];
4260 sw->part1 = &argbuf[i][1];
4261 sw->args = 0;
4262 sw->live_cond = SWITCH_OK;
4263 sw->validated = 0;
4264 sw->ordering = 0;
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. */
4281 static int
4282 do_spec_1 (spec, inswitch, soft_matched_part)
4283 const char *spec;
4284 int inswitch;
4285 const char *soft_matched_part;
4287 const char *p = spec;
4288 int c;
4289 int i;
4290 const char *string;
4291 int value;
4293 while ((c = *p++))
4294 /* If substituting a switch, treat all chars like letters.
4295 Otherwise, NL, SPC, TAB and % are special. */
4296 switch (inswitch ? 'a' : c)
4298 case '\n':
4299 /* End of line: finish any pending argument,
4300 then run the pending command if one has been started. */
4301 if (arg_going)
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;
4311 arg_going = 0;
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. */
4318 if (use_pipes)
4320 input_from_pipe = 1;
4321 break;
4323 else
4324 argbuf_index--;
4327 set_collect_gcc_options ();
4329 if (argbuf_index > 0)
4331 value = execute ();
4332 if (value)
4333 return value;
4335 /* Reinitialize for a new command, and for a new argument. */
4336 clear_args ();
4337 arg_going = 0;
4338 delete_this_arg = 0;
4339 this_is_output_file = 0;
4340 this_is_library_file = 0;
4341 input_from_pipe = 0;
4342 break;
4344 case '|':
4345 /* End any pending argument. */
4346 if (arg_going)
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;
4357 /* Use pipe */
4358 obstack_1grow (&obstack, c);
4359 arg_going = 1;
4360 break;
4362 case '\t':
4363 case ' ':
4364 /* Space or tab ends an argument if one is pending. */
4365 if (arg_going)
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. */
4376 arg_going = 0;
4377 delete_this_arg = 0;
4378 this_is_output_file = 0;
4379 this_is_library_file = 0;
4380 break;
4382 case '%':
4383 switch (c = *p++)
4385 case 0:
4386 fatal ("invalid specification! Bug in cc");
4388 case 'b':
4389 obstack_grow (&obstack, input_basename, basename_length);
4390 arg_going = 1;
4391 break;
4393 case 'B':
4394 obstack_grow (&obstack, input_basename, suffixed_basename_length);
4395 arg_going = 1;
4396 break;
4398 case 'd':
4399 delete_this_arg = 2;
4400 break;
4402 /* Dump out the directories specified with LIBRARY_PATH,
4403 followed by the absolute directories
4404 that we search for startfiles. */
4405 case 'D':
4407 struct prefix_list *pl = startfile_prefixes.plist;
4408 size_t bufsize = 100;
4409 char *buffer = (char *) xmalloc (bufsize);
4410 int idx;
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))
4421 continue;
4422 #endif
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
4430 : multilib_dir;
4431 if (machine_suffix && multilib_dir)
4433 if (strlen (pl->prefix) + strlen (machine_suffix)
4434 >= bufsize)
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);
4445 #endif
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);
4459 #endif
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);
4467 if (machine_suffix)
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);
4474 #endif
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);
4496 #endif
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);
4511 free (buffer);
4513 break;
4515 case 'e':
4516 /* %efoo means report an error with `foo' as error message
4517 and don't execute any more commands for this file. */
4519 const char *q = p;
4520 char *buf;
4521 while (*p != 0 && *p != '\n')
4522 p++;
4523 buf = (char *) alloca (p - q + 1);
4524 strncpy (buf, q, p - q);
4525 buf[p - q] = 0;
4526 error ("%s", buf);
4527 return -1;
4529 break;
4530 case 'n':
4531 /* %nfoo means report a notice with `foo' on stderr. */
4533 const char *q = p;
4534 char *buf;
4535 while (*p != 0 && *p != '\n')
4536 p++;
4537 buf = (char *) alloca (p - q + 1);
4538 strncpy (buf, q, p - q);
4539 buf[p - q] = 0;
4540 notice ("%s\n", buf);
4541 if (*p)
4542 p++;
4544 break;
4546 case 'j':
4548 struct stat st;
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;
4562 arg_going = 1;
4563 break;
4566 goto create_temp_file;
4567 case '|':
4568 if (use_pipes)
4570 obstack_1grow (&obstack, '-');
4571 delete_this_arg = 0;
4572 arg_going = 1;
4574 /* consume suffix */
4575 while (*p == '.' || ISALPHA ((unsigned char) *p))
4576 p++;
4577 if (p[0] == '%' && p[1] == 'O')
4578 p += 2;
4580 break;
4582 goto create_temp_file;
4583 case 'm':
4584 if (use_pipes)
4586 /* consume suffix */
4587 while (*p == '.' || ISALPHA ((unsigned char) *p))
4588 p++;
4589 if (p[0] == '%' && p[1] == 'O')
4590 p += 2;
4592 break;
4594 goto create_temp_file;
4595 case 'g':
4596 case 'u':
4597 case 'U':
4598 create_temp_file:
4600 struct temp_name *t;
4601 int suffix_length;
4602 const char *suffix = p;
4603 char *saved_suffix = NULL;
4605 while (*p == '.' || ISALPHA ((unsigned char) *p))
4606 p++;
4607 suffix_length = p - suffix;
4608 if (p[0] == '%' && p[1] == 'O')
4610 p += 2;
4611 /* We don't support extra suffix characters after %O. */
4612 if (*p == '.' || ISALPHA ((unsigned char) *p))
4613 abort ();
4614 if (suffix_length == 0)
4615 suffix = TARGET_OBJECT_SUFFIX;
4616 else
4618 saved_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,
4642 suffix_length);
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)
4653 input_stat_set = 1;
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);
4670 arg_going = 1;
4671 delete_this_arg = 0;
4672 break;
4677 /* See if we already have an association of %g/%u/%U and
4678 suffix. */
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'))
4683 break;
4685 /* Make a new association if needed. %u and %j
4686 require one. */
4687 if (t == 0 || c == 'u' || c == 'j')
4689 if (t == 0)
4691 t = (struct temp_name *) xmalloc (sizeof (struct temp_name));
4692 t->next = temp_names;
4693 temp_names = t;
4695 t->length = suffix_length;
4696 if (saved_suffix)
4698 t->suffix = saved_suffix;
4699 saved_suffix = NULL;
4701 else
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;
4710 if (saved_suffix)
4711 free (saved_suffix);
4713 obstack_grow (&obstack, t->filename, t->filename_length);
4714 delete_this_arg = 1;
4716 arg_going = 1;
4717 break;
4719 case 'i':
4720 obstack_grow (&obstack, input_filename, input_filename_length);
4721 arg_going = 1;
4722 break;
4724 case 'I':
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);
4746 break;
4748 case 'o':
4750 int max = n_infiles;
4751 max += lang_specific_extra_outfiles;
4753 for (i = 0; i < max; i++)
4754 if (outfiles[i])
4755 store_arg (outfiles[i], 0, 0);
4756 break;
4759 case 'O':
4760 obstack_grow (&obstack, TARGET_OBJECT_SUFFIX, strlen (TARGET_OBJECT_SUFFIX));
4761 arg_going = 1;
4762 break;
4764 case 's':
4765 this_is_library_file = 1;
4766 break;
4768 case 'w':
4769 this_is_output_file = 1;
4770 break;
4772 case 'W':
4774 int cur_index = argbuf_index;
4775 /* Handle the {...} following the %W. */
4776 if (*p != '{')
4777 abort ();
4778 p = handle_braces (p + 1);
4779 if (p == 0)
4780 return -1;
4781 /* End any pending argument. */
4782 if (arg_going)
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;
4791 arg_going = 0;
4793 /* If any args were output, mark the last one for deletion
4794 on failure. */
4795 if (argbuf_index != cur_index)
4796 record_temp_file (argbuf[argbuf_index - 1], 0, 1);
4797 break;
4800 /* %x{OPTION} records OPTION for %X to output. */
4801 case 'x':
4803 const char *p1 = p;
4804 char *string;
4806 /* Skip past the option value and make a copy. */
4807 if (*p != '{')
4808 abort ();
4809 while (*p++ != '}')
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]))
4817 free (string);
4818 return 0;
4821 /* This option is new; add it. */
4822 add_linker_option (string, strlen (string));
4824 break;
4826 /* Dump out the options accumulated previously using %x. */
4827 case '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);
4834 break;
4836 /* Dump out the options accumulated previously using -Wa,. */
4837 case 'Y':
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);
4844 break;
4846 /* Dump out the options accumulated previously using -Wp,. */
4847 case 'Z':
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);
4854 break;
4856 /* Here are digits and numbers that just process
4857 a certain constant string as a spec. */
4859 case '1':
4860 value = do_spec_1 (cc1_spec, 0, NULL);
4861 if (value != 0)
4862 return value;
4863 break;
4865 case '2':
4866 value = do_spec_1 (cc1plus_spec, 0, NULL);
4867 if (value != 0)
4868 return value;
4869 break;
4871 case 'a':
4872 value = do_spec_1 (asm_spec, 0, NULL);
4873 if (value != 0)
4874 return value;
4875 break;
4877 case 'A':
4878 value = do_spec_1 (asm_final_spec, 0, NULL);
4879 if (value != 0)
4880 return value;
4881 break;
4883 case 'C':
4885 const char *const spec
4886 = (input_file_compiler->cpp_spec
4887 ? input_file_compiler->cpp_spec
4888 : cpp_spec);
4889 value = do_spec_1 (spec, 0, NULL);
4890 if (value != 0)
4891 return value;
4893 break;
4895 case 'E':
4896 value = do_spec_1 (endfile_spec, 0, NULL);
4897 if (value != 0)
4898 return value;
4899 break;
4901 case 'l':
4902 value = do_spec_1 (link_spec, 0, NULL);
4903 if (value != 0)
4904 return value;
4905 break;
4907 case 'L':
4908 value = do_spec_1 (lib_spec, 0, NULL);
4909 if (value != 0)
4910 return value;
4911 break;
4913 case 'G':
4914 value = do_spec_1 (libgcc_spec, 0, NULL);
4915 if (value != 0)
4916 return value;
4917 break;
4919 case 'M':
4920 if (multilib_dir && strcmp (multilib_dir, ".") != 0)
4922 char *p;
4923 const char *q;
4924 size_t len;
4926 len = strlen (multilib_dir);
4927 obstack_blank (&obstack, len + 1);
4928 p = obstack_next_free (&obstack) - (len + 1);
4930 *p++ = '_';
4931 for (q = multilib_dir; *q ; ++q, ++p)
4932 *p = (IS_DIR_SEPARATOR (*q) ? '_' : *q);
4934 break;
4936 case 'p':
4938 char *x = (char *) alloca (strlen (cpp_predefines) + 1);
4939 char *buf = x;
4940 const char *y;
4942 /* Copy all of the -D options in CPP_PREDEFINES into BUF. */
4943 y = cpp_predefines;
4944 while (*y != 0)
4946 if (! strncmp (y, "-D", 2))
4947 /* Copy the whole option. */
4948 while (*y && *y != ' ' && *y != '\t')
4949 *x++ = *y++;
4950 else if (*y == ' ' || *y == '\t')
4951 /* Copy whitespace to the result. */
4952 *x++ = *y++;
4953 /* Don't copy other options. */
4954 else
4955 y++;
4958 *x = 0;
4960 value = do_spec_1 (buf, 0, NULL);
4961 if (value != 0)
4962 return value;
4964 break;
4966 case 'P':
4968 char *x = (char *) alloca (strlen (cpp_predefines) * 4 + 1);
4969 char *buf = x;
4970 const char *y;
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
4979 become __mips__. */
4980 y = cpp_predefines;
4981 while (*y != 0)
4983 if (! strncmp (y, "-D", 2))
4985 int flag = 0;
4987 *x++ = *y++;
4988 *x++ = *y++;
4990 if (*y != '_'
4991 || (*(y + 1) != '_'
4992 && ! ISUPPER ((unsigned char) *(y + 1))))
4994 /* Stick __ at front of macro name. */
4995 if (*y != '_')
4996 *x++ = '_';
4997 *x++ = '_';
4998 /* Arrange to stick __ at the end as well. */
4999 flag = 1;
5002 /* Copy the macro name. */
5003 while (*y && *y != '=' && *y != ' ' && *y != '\t')
5004 *x++ = *y++;
5006 if (flag)
5008 if (x[-1] != '_')
5010 if (x[-2] != '_')
5011 *x++ = '_';
5012 *x++ = '_';
5016 /* Copy the value given, if any. */
5017 while (*y && *y != ' ' && *y != '\t')
5018 *x++ = *y++;
5020 else if (*y == ' ' || *y == '\t')
5021 /* Copy whitespace to the result. */
5022 *x++ = *y++;
5023 /* Don't copy -A options */
5024 else
5025 y++;
5027 *x++ = ' ';
5029 /* Copy all of CPP_PREDEFINES into BUF,
5030 but put __ after every -D. */
5031 y = cpp_predefines;
5032 while (*y != 0)
5034 if (! strncmp (y, "-D", 2))
5036 y += 2;
5038 if (*y != '_'
5039 || (*(y + 1) != '_'
5040 && ! ISUPPER ((unsigned char) *(y + 1))))
5042 /* Stick -D__ at front of macro name. */
5043 *x++ = '-';
5044 *x++ = 'D';
5045 if (*y != '_')
5046 *x++ = '_';
5047 *x++ = '_';
5049 /* Copy the macro name. */
5050 while (*y && *y != '=' && *y != ' ' && *y != '\t')
5051 *x++ = *y++;
5053 /* Copy the value given, if any. */
5054 while (*y && *y != ' ' && *y != '\t')
5055 *x++ = *y++;
5057 else
5059 /* Do not copy this macro - we have just done it before */
5060 while (*y && *y != ' ' && *y != '\t')
5061 y++;
5064 else if (*y == ' ' || *y == '\t')
5065 /* Copy whitespace to the result. */
5066 *x++ = *y++;
5067 /* Don't copy -A options. */
5068 else
5069 y++;
5071 *x++ = ' ';
5073 /* Copy all of the -A options in CPP_PREDEFINES into BUF. */
5074 y = cpp_predefines;
5075 while (*y != 0)
5077 if (! strncmp (y, "-A", 2))
5078 /* Copy the whole option. */
5079 while (*y && *y != ' ' && *y != '\t')
5080 *x++ = *y++;
5081 else if (*y == ' ' || *y == '\t')
5082 /* Copy whitespace to the result. */
5083 *x++ = *y++;
5084 /* Don't copy other options. */
5085 else
5086 y++;
5089 *x = 0;
5091 value = do_spec_1 (buf, 0, NULL);
5092 if (value != 0)
5093 return value;
5095 break;
5097 case 'R':
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));
5103 break;
5105 case 'S':
5106 value = do_spec_1 (startfile_spec, 0, NULL);
5107 if (value != 0)
5108 return value;
5109 break;
5111 /* Here we define characters other than letters and digits. */
5113 case '{':
5114 p = handle_braces (p);
5115 if (p == 0)
5116 return -1;
5117 break;
5119 case ':':
5120 p = handle_spec_function (p);
5121 if (p == 0)
5122 return -1;
5123 break;
5125 case '%':
5126 obstack_1grow (&obstack, '%');
5127 break;
5129 case '.':
5131 unsigned len = 0;
5133 while (p[len] && p[len] != ' ' && p[len] != '%')
5134 len++;
5135 suffix_subst = save_string (p - 1, len + 1);
5136 p += len;
5138 break;
5140 /* Henceforth ignore the option(s) matching the pattern
5141 after the %<. */
5142 case '<':
5144 unsigned len = 0;
5145 int have_wildcard = 0;
5146 int i;
5148 while (p[len] && p[len] != ' ' && p[len] != '\t')
5149 len++;
5151 if (p[len-1] == '*')
5152 have_wildcard = 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;
5162 p += len;
5164 break;
5166 case '*':
5167 if (soft_matched_part)
5169 do_spec_1 (soft_matched_part, 1, NULL);
5170 do_spec_1 (" ", 0, NULL);
5172 else
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");
5177 break;
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. */
5184 case '[':
5185 error ("warning: use of obsolete %%[ operator in specs");
5186 case '(':
5188 const char *name = p;
5189 struct spec_list *sl;
5190 int len;
5192 /* The string after the S/P is the name of a spec that is to be
5193 processed. */
5194 while (*p && *p != ')' && *p != ']')
5195 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);
5202 #ifdef DEBUG_SPECS
5203 notice ("Processing spec %c%s%c, which is '%s'\n",
5204 c, sl->name, (c == '(') ? ')' : ']', name);
5205 #endif
5206 break;
5209 if (sl)
5211 if (c == '(')
5213 value = do_spec_1 (name, 0, NULL);
5214 if (value != 0)
5215 return value;
5217 else
5219 char *x = (char *) alloca (strlen (name) * 2 + 1);
5220 char *buf = x;
5221 const char *y = name;
5222 int flag = 0;
5224 /* Copy all of NAME into BUF, but put __ after
5225 every -D and at the end of each arg. */
5226 while (1)
5228 if (! strncmp (y, "-D", 2))
5230 *x++ = '-';
5231 *x++ = 'D';
5232 *x++ = '_';
5233 *x++ = '_';
5234 y += 2;
5235 flag = 1;
5236 continue;
5238 else if (flag
5239 && (*y == ' ' || *y == '\t' || *y == '='
5240 || *y == '}' || *y == 0))
5242 *x++ = '_';
5243 *x++ = '_';
5244 flag = 0;
5246 if (*y == 0)
5247 break;
5248 else
5249 *x++ = *y++;
5251 *x = 0;
5253 value = do_spec_1 (buf, 0, NULL);
5254 if (value != 0)
5255 return value;
5259 /* Discard the closing paren or bracket. */
5260 if (*p)
5261 p++;
5263 break;
5265 case 'v':
5267 int c1 = *p++; /* Select first or second version number. */
5268 const char *v = compiler_version;
5269 const char *q;
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))
5277 v++;
5278 if (v > compiler_version && v[-1] != '-')
5279 abort ();
5281 /* If desired, advance to second version number. */
5282 if (c1 >= '2')
5284 /* Set V after the first period. */
5285 while (ISDIGIT (*v))
5286 v++;
5287 if (*v != '.')
5288 abort ();
5289 v++;
5292 /* If desired, advance to third version number.
5293 But don't complain if it's not present */
5294 if (c1 == '3')
5296 /* Set V after the second period. */
5297 while (ISDIGIT (*v))
5298 v++;
5299 if ((*v != 0) && (*v != ' ') && (*v != '.') && (*v != '-'))
5300 abort ();
5301 if (*v != 0)
5302 v++;
5305 /* Set Q at the next period or at the end. */
5306 q = v;
5307 while (ISDIGIT (*q))
5308 q++;
5309 if (*q != 0 && q > v && *q != ' ' && *q != '.' && *q != '-')
5310 abort ();
5312 if (q > v)
5313 /* Put that part into the command. */
5314 obstack_grow (&obstack, v, q - v);
5315 else
5316 /* Default to "0" */
5317 obstack_grow (&obstack, &zeroc, 1);
5318 arg_going = 1;
5320 break;
5322 default:
5323 error ("spec failure: unrecognized spec option '%c'", c);
5324 break;
5326 break;
5328 case '\\':
5329 /* Backslash: treat next character as ordinary. */
5330 c = *p++;
5332 /* fall through */
5333 default:
5334 /* Ordinary character: put it into the current argument. */
5335 obstack_1grow (&obstack, c);
5336 arg_going = 1;
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;
5350 arg_going = 0;
5353 return 0;
5356 /* Look up a spec function. */
5358 static const struct spec_function *
5359 lookup_spec_function (name)
5360 const char *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;
5368 unsigned int i;
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)
5374 return sf;
5377 return NULL;
5380 /* Evaluate a spec function. */
5382 static const char *
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;
5394 int save_arg_going;
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);
5403 if (sf == NULL)
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
5419 arguments. */
5421 alloc_args ();
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;
5433 free (argbuf);
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;
5443 return funcval;
5446 /* Handle a spec function call of the form:
5448 %:function(args)
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. */
5455 static const char *
5456 handle_spec_function (p)
5457 const char *p;
5459 char *func, *args;
5460 const char *endp, *funcval;
5461 int count;
5463 processing_spec_function++;
5465 /* Get the function name. */
5466 for (endp = p; *endp != '\0'; endp++)
5468 if (*endp == '(') /* ) */
5469 break;
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);
5477 p = ++endp;
5479 /* Get the arguments. */
5480 for (count = 0; *endp != '\0'; endp++)
5482 /* ( */
5483 if (*endp == ')')
5485 if (count == 0)
5486 break;
5487 count--;
5489 else if (*endp == '(') /* ) */
5490 count++;
5492 /* ( */
5493 if (*endp != ')')
5494 fatal ("malformed spec function arguments");
5495 args = save_string (p, endp - p);
5496 p = ++endp;
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)
5502 p = NULL;
5504 free (func);
5505 free (args);
5507 processing_spec_function--;
5509 return p;
5512 /* Inline subroutine of handle_braces. Returns true if the current
5513 input suffix matches the atom bracketed by ATOM and END_ATOM. */
5514 static inline bool
5515 input_suffix_matches (atom, end_atom)
5516 const char *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
5526 command line. */
5527 static inline bool
5528 switch_matches (atom, end_atom, starred)
5529 const char *atom;
5530 const char *end_atom;
5531 int starred;
5533 int i;
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))
5541 return true;
5543 return false;
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. */
5549 static inline void
5550 mark_matching_switches (atom, end_atom, starred)
5551 const char *atom;
5552 const char *end_atom;
5553 int starred;
5555 int i;
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. */
5568 static inline void
5569 process_marked_switches ()
5571 int i;
5573 for (i = 0; i < n_switches; i++)
5574 if (switches[i].ordering == 1)
5576 switches[i].ordering = 0;
5577 give_switch (i, 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. */
5585 static const char *
5586 handle_braces (p)
5587 const char *p;
5589 const char *atom, *end_atom;
5590 const char *d_atom = NULL, *d_end_atom = NULL;
5592 bool a_is_suffix;
5593 bool a_is_starred;
5594 bool a_is_negated;
5595 bool a_matched;
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)
5609 if (a_must_be_last)
5610 abort ();
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;
5616 SKIP_WHITE();
5617 if (*p == '!')
5618 p++, a_is_negated = true;
5620 SKIP_WHITE();
5621 if (*p == '.')
5622 p++, a_is_suffix = true;
5624 atom = p;
5625 while (ISIDNUM(*p) || *p == '-' || *p == '+' || *p == '='
5626 || *p == ',' || *p == '.' || *p == '@')
5627 p++;
5628 end_atom = p;
5630 if (*p == '*')
5631 p++, a_is_starred = 1;
5633 SKIP_WHITE();
5634 if (*p == '&' || *p == '}')
5636 /* Substitute the switch(es) indicated by the current atom. */
5637 ordered_set = true;
5638 if (disjunct_set || n_way_choice || a_is_negated || a_is_suffix
5639 || atom == end_atom)
5640 abort ();
5642 mark_matching_switches (atom, end_atom, a_is_starred);
5644 if (*p == '}')
5645 process_marked_switches ();
5647 else if (*p == '|' || *p == ':')
5649 /* Substitute some text if the current atom appears as a switch
5650 or suffix. */
5651 disjunct_set = true;
5652 if (ordered_set)
5653 abort ();
5655 if (atom == end_atom)
5657 if (!n_way_choice || disj_matched || *p == '|'
5658 || a_is_negated || a_is_suffix || a_is_starred)
5659 abort ();
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;
5667 else
5669 if (a_is_suffix && a_is_starred)
5670 abort ();
5672 if (!a_is_starred)
5673 disj_starred = false;
5675 /* Don't bother testing this atom if we already have a
5676 match. */
5677 if (!disj_matched && !n_way_matched)
5679 if (a_is_suffix)
5680 a_matched = input_suffix_matches (atom, end_atom);
5681 else
5682 a_matched = switch_matches (atom, end_atom, a_is_starred);
5684 if (a_matched != a_is_negated)
5686 disj_matched = true;
5687 d_atom = atom;
5688 d_end_atom = end_atom;
5693 if (*p == ':')
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);
5699 if (p == 0)
5700 return 0;
5702 /* If we have an N-way choice, reset state for the next
5703 disjunction. */
5704 if (*p == ';')
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;
5714 else
5715 abort ();
5717 while (*p++ != '}');
5719 return p;
5721 #undef SKIP_WHITE
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
5732 returns -1. */
5734 static const char *
5735 process_brace_body (p, atom, end_atom, starred, matched)
5736 const char *p;
5737 const char *atom;
5738 const char *end_atom;
5739 int starred;
5740 int matched;
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. */
5748 body = p;
5749 nesting_level = 1;
5750 for (;;)
5752 if (*p == '{')
5753 nesting_level++;
5754 else if (*p == '}')
5756 if (!--nesting_level)
5757 break;
5759 else if (*p == ';' && nesting_level == 1)
5760 break;
5761 else if (*p == '%' && p[1] == '*' && nesting_level == 1)
5762 have_subst = true;
5763 else if (*p == '\0')
5764 abort ();
5765 p++;
5768 end_body = p;
5769 while (end_body[-1] == ' ' || end_body[-1] == '\t')
5770 end_body--;
5772 if (have_subst && !starred)
5773 abort ();
5775 if (matched)
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);
5781 if (!have_subst)
5783 if (do_spec_1 (string, 0, NULL) < 0)
5784 return 0;
5786 else
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;
5792 int i;
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)
5800 return 0;
5801 /* Pass any arguments this switch has. */
5802 give_switch (i, 1);
5803 suffix_subst = NULL;
5808 return p;
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. */
5819 static int
5820 check_live_switch (switchnum, prefix_length)
5821 int switchnum;
5822 int prefix_length;
5824 const char *name = switches[switchnum].part1;
5825 int i;
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)
5831 return 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. */
5839 switch (*name)
5841 case 'O':
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;
5847 return 0;
5849 break;
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;
5861 return 0;
5864 else
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;
5876 return 0;
5879 break;
5882 /* Otherwise the switch is live. */
5883 switches[switchnum].live_cond = SWITCH_LIVE;
5884 return 1;
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. */
5895 static void
5896 give_switch (switchnum, omit_first_word)
5897 int switchnum;
5898 int omit_first_word;
5900 if (switches[switchnum].live_cond == SWITCH_IGNORE)
5901 return;
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)
5911 const char **p;
5912 for (p = switches[switchnum].args; *p; p++)
5914 const char *arg = *p;
5916 do_spec_1 (" ", 0, NULL);
5917 if (suffix_subst)
5919 unsigned length = strlen (arg);
5920 int dot = 0;
5922 while (length-- && !IS_DIR_SEPARATOR (arg[length]))
5923 if (arg[length] == '.')
5925 ((char *)arg)[length] = 0;
5926 dot = 1;
5927 break;
5929 do_spec_1 (arg, 1, NULL);
5930 if (dot)
5931 ((char *)arg)[length] = '.';
5932 do_spec_1 (suffix_subst, 1, NULL);
5934 else
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. */
5947 static const char *
5948 find_file (name)
5949 const char *name;
5951 char *newname;
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)
5961 return newname;
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
5971 limit. */
5973 static int
5974 is_directory (path1, path2, linker)
5975 const char *path1;
5976 const char *path2;
5977 int linker;
5979 int len1 = strlen (path1);
5980 int len2 = strlen (path2);
5981 char *path = (char *) alloca (3 + len1 + len2);
5982 char *cp;
5983 struct stat st;
5985 #ifndef SMALL_ARG_MAX
5986 if (! linker)
5987 return 1;
5988 #endif
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
5992 symbolic link. */
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;
5998 *cp++ = '.';
5999 *cp = '\0';
6001 /* Exclude directories that the linker is known to search. */
6002 if (linker
6003 && ((cp - path == 6
6004 && strcmp (path, concat (dir_separator_str, "lib",
6005 dir_separator_str, ".", NULL)) == 0)
6006 || (cp - path == 10
6007 && strcmp (path, concat (dir_separator_str, "usr",
6008 dir_separator_str, "lib",
6009 dir_separator_str, ".", NULL)) == 0)))
6010 return 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. */
6018 void
6019 set_input (filename)
6020 const char *filename;
6022 const char *p;
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;
6032 #endif
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 != '.')
6043 --p;
6044 if (*p == '.' && p != input_basename)
6046 basename_length = p - input_basename;
6047 input_suffix = p + 1;
6049 else
6050 input_suffix = "";
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. */
6055 input_stat_set = 0;
6058 /* On fatal signals, delete all the temporary files. */
6060 static void
6061 fatal_error (signum)
6062 int 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 *));
6075 main (argc, argv)
6076 int argc;
6077 const char *const *argv;
6079 size_t i;
6080 int value;
6081 int linker_was_run = 0;
6082 char *explicit_link_files;
6083 char *specs_file;
6084 const char *p;
6085 struct user_specs *uptr;
6087 p = argv[0] + strlen (argv[0]);
6088 while (p != argv[0] && !IS_DIR_SEPARATOR (p[-1]))
6089 --p;
6090 programname = p;
6092 xmalloc_set_program_name (programname);
6094 #ifdef GCC_DRIVER_HOST_INITIALIZATION
6095 /* Perform host dependent initialization when needed. */
6096 GCC_DRIVER_HOST_INITIALIZATION;
6097 #endif
6099 gcc_init_libintl ();
6101 if (signal (SIGINT, SIG_IGN) != SIG_IGN)
6102 signal (SIGINT, fatal_error);
6103 #ifdef SIGHUP
6104 if (signal (SIGHUP, SIG_IGN) != SIG_IGN)
6105 signal (SIGHUP, fatal_error);
6106 #endif
6107 if (signal (SIGTERM, SIG_IGN) != SIG_IGN)
6108 signal (SIGTERM, fatal_error);
6109 #ifdef SIGPIPE
6110 if (signal (SIGPIPE, SIG_IGN) != SIG_IGN)
6111 signal (SIGPIPE, fatal_error);
6112 #endif
6113 #ifdef SIGCHLD
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);
6117 #endif
6119 /* Allocate the argument vector. */
6120 alloc_args ();
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;
6128 int need_space;
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);
6151 need_space = FALSE;
6152 for (i = 0; i < ARRAY_SIZE (multilib_defaults_raw); i++)
6154 if (need_space)
6155 obstack_1grow (&multilib_obstack, ' ');
6156 obstack_grow (&multilib_obstack,
6157 multilib_defaults_raw[i],
6158 strlen (multilib_defaults_raw[i]));
6159 need_space = TRUE;
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);
6177 #endif
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);
6209 else
6210 init_spec ();
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
6225 places. */
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)
6240 int ndx;
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);
6269 else
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,
6278 machine_suffix,
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);
6290 #endif
6293 /* Process any user specified specs in the order given on the command
6294 line. */
6295 for (uptr = user_specs_head; uptr; uptr = uptr->next)
6297 char *filename = find_a_file (&startfile_prefixes, uptr->filename,
6298 R_OK, 0);
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));
6329 return (0);
6332 if (print_file_name)
6334 printf ("%s\n", find_file (print_file_name));
6335 return (0);
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));
6342 return (0);
6345 if (print_multi_lib)
6347 print_multilib_info ();
6348 return (0);
6351 if (print_multi_directory)
6353 if (multilib_dir == NULL)
6354 printf (".\n");
6355 else
6356 printf ("%s\n", multilib_dir);
6357 return (0);
6360 if (print_multi_os_directory)
6362 if (multilib_os_dir == NULL)
6363 printf (".\n");
6364 else
6365 printf ("%s\n", multilib_os_dir);
6366 return (0);
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
6376 switch. */
6379 if (print_help_list)
6381 display_help ();
6383 if (! verbose_flag)
6385 printf (_("\nFor bug reporting instructions, please see:\n"));
6386 printf ("%s.\n", bug_report_url);
6388 return (0);
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. */
6396 if (verbose_flag)
6398 int n;
6399 const char *thrmod;
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);
6411 #else
6412 thrmod = thread_model;
6413 #endif
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] == ' ')
6422 break;
6424 if (! strncmp (version_string, compiler_version, n)
6425 && compiler_version[n] == 0)
6426 notice ("gcc version %s\n", version_string);
6427 else
6428 notice ("gcc driver version %s executing gcc version %s\n",
6429 version_string, compiler_version);
6431 if (n_infiles == 0)
6432 return (0);
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. */
6441 i = n_infiles;
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. */
6464 input_file_compiler
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;
6478 else
6480 value = do_spec (input_file_compiler->spec);
6481 if (value < 0)
6482 this_file_error = 1;
6486 /* If this file's name does not contain a recognized suffix,
6487 record it as explicit linker input. */
6489 else
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 ();
6498 error_count++;
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
6506 by default. */
6507 if (n_infiles > 0)
6508 set_input (infiles[0].name);
6510 if (error_count == 0)
6512 /* Make sure INPUT_FILE_NUMBER points to first available open
6513 slot. */
6514 input_file_number = n_infiles;
6515 if (lang_specific_pre_link ())
6516 error_count++;
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);
6529 if (s == NULL)
6530 linker_name_spec = "ld";
6532 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
6533 for collect. */
6534 putenv_from_prefixes (&exec_prefixes, "COMPILER_PATH");
6535 putenv_from_prefixes (&startfile_prefixes, LIBRARY_PATH_ENV);
6537 value = do_spec (link_command_spec);
6538 if (value < 0)
6539 error_count = 1;
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",
6550 outfiles[i]);
6552 /* Delete some or all of the temporary files we made. */
6554 if (error_count)
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)
6566 : 0);
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)
6575 const char *name;
6576 size_t length;
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] == '*')
6583 return 0;
6585 /* Otherwise, look for the language, if one is spec'd. */
6586 if (language != 0)
6588 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
6589 if (cp->suffix[0] == '@' && !strcmp (cp->suffix + 1, language))
6590 return cp;
6592 error ("language %s not recognized", language);
6593 return 0;
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))
6606 break;
6609 #if defined (OS2) ||defined (HAVE_DOS_BASED_FILE_SYSTEM)
6610 /* look again, but case-insensitively this time. */
6611 if (cp < compilers)
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)))
6624 break;
6626 #endif
6628 if (cp >= compilers)
6630 if (cp->spec[0] != '@')
6631 /* A non-alias entry: return it. */
6632 return cp;
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);
6639 return 0;
6642 static char *
6643 save_string (s, len)
6644 const char *s;
6645 int len;
6647 char *result = xmalloc (len + 1);
6649 memcpy (result, s, len);
6650 result[len] = 0;
6651 return result;
6654 void
6655 pfatal_with_name (name)
6656 const char *name;
6658 perror_with_name (name);
6659 delete_temp_files ();
6660 exit (1);
6663 static void
6664 perror_with_name (name)
6665 const char *name;
6667 error ("%s: %s", name, xstrerror (errno));
6670 static void
6671 pfatal_pexecute (errmsg_fmt, errmsg_arg)
6672 const char *errmsg_fmt;
6673 const char *errmsg_arg;
6675 if (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);
6682 errmsg_fmt = msg;
6684 errno = save_errno;
6687 pfatal_with_name (errmsg_fmt);
6690 /* Output an error message and exit */
6692 void
6693 fancy_abort ()
6695 fatal ("internal gcc abort");
6698 /* Output an error message and exit */
6700 void
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);
6708 VA_CLOSE (ap);
6709 fprintf (stderr, "\n");
6710 delete_temp_files ();
6711 exit (1);
6714 void
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);
6722 VA_CLOSE (ap);
6724 fprintf (stderr, "\n");
6727 static void
6728 notice VPARAMS ((const char *msgid, ...))
6730 VA_OPEN (ap, msgid);
6731 VA_FIXEDARG (ap, const char *, msgid);
6733 vfprintf (stderr, _(msgid), ap);
6734 VA_CLOSE (ap);
6737 static inline void
6738 validate_switches_from_spec (spec)
6739 const char *spec;
6741 const char *p = spec;
6742 char c;
6743 while ((c = *p++))
6744 if (c == '%' && (*p == '{' || *p == '<' || (*p == 'W' && *++p == '{')))
6745 /* We have a switch spec. */
6746 p = validate_switches (p + 1);
6749 static void
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. */
6768 static const char *
6769 validate_switches (start)
6770 const char *start;
6772 const char *p = start;
6773 const char *atom;
6774 size_t len;
6775 int i;
6776 bool suffix = false;
6777 bool starred = false;
6779 #define SKIP_WHITE() do { while (*p == ' ' || *p == '\t') p++; } while (0)
6781 next_member:
6782 SKIP_WHITE ();
6784 if (*p == '!')
6785 p++;
6787 SKIP_WHITE ();
6788 if (*p == '.')
6789 suffix = true, p++;
6791 atom = p;
6792 while (ISIDNUM (*p) || *p == '-' || *p == '+' || *p == '='
6793 || *p == ',' || *p == '.' || *p == '@')
6794 p++;
6795 len = p - atom;
6797 if (*p == '*')
6798 starred = true, p++;
6800 SKIP_WHITE ();
6802 if (!suffix)
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;
6811 if (*p) p++;
6812 if (*p && (p[-1] == '|' || p[-1] == '&'))
6813 goto next_member;
6815 if (*p && p[-1] == ':')
6817 while (*p && *p != ';' && *p != '}')
6819 if (*p == '%')
6821 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);
6827 if (*p) p++;
6830 if (*p) p++;
6831 if (*p && p[-1] == ';')
6832 goto next_member;
6835 return p;
6836 #undef SKIP_WHITE
6839 struct mdswitchstr
6841 const char *str;
6842 int len;
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. */
6851 static int
6852 used_arg (p, len)
6853 const char *p;
6854 int len;
6856 struct mswitchstr
6858 const char *str;
6859 const char *replace;
6860 int len;
6861 int rep_len;
6864 static struct mswitchstr *mswitches;
6865 static int n_mswitches;
6866 int i, j;
6868 if (!mswitches)
6870 struct mswitchstr *matches;
6871 const char *q;
6872 int cnt = 0;
6874 /* Break multilib_matches into the component strings of string
6875 and replacement string. */
6876 for (q = multilib_matches; *q != '\0'; q++)
6877 if (*q == ';')
6878 cnt++;
6880 matches =
6881 (struct mswitchstr *) alloca ((sizeof (struct mswitchstr)) * cnt);
6882 i = 0;
6883 q = multilib_matches;
6884 while (*q != '\0')
6886 matches[i].str = q;
6887 while (*q != ' ')
6889 if (*q == '\0')
6890 abort ();
6891 q++;
6893 matches[i].len = q - matches[i].str;
6895 matches[i].replace = ++q;
6896 while (*q != ';' && *q != '\0')
6898 if (*q == ' ')
6899 abort ();
6900 q++;
6902 matches[i].rep_len = q - matches[i].replace;
6903 i++;
6904 if (*q == ';')
6905 q++;
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
6911 block of code. */
6912 mswitches
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;
6927 n_mswitches++;
6928 break;
6932 /* Add MULTILIB_DEFAULTS switches too, as long as they were not present
6933 on the command line nor any options mutually incompatible with
6934 them. */
6935 for (i = 0; i < n_mdswitches; i++)
6937 const char *r;
6939 for (q = multilib_options; *q != '\0'; q++)
6941 while (*q == ' ')
6942 q++;
6944 r = 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')
6949 q++;
6950 if (*q != '/')
6951 break;
6952 q++;
6955 if (*q != ' ' && *q != '\0')
6957 while (*r != ' ' && *r != '\0')
6959 q = r;
6960 while (*q != ' ' && *q != '/' && *q != '\0')
6961 q++;
6963 if (used_arg (r, q - r))
6964 break;
6966 if (*q != '/')
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;
6972 n_mswitches++;
6973 break;
6976 r = q + 1;
6978 break;
6984 for (i = 0; i < n_mswitches; i++)
6985 if (len == mswitches[i].len && ! strncmp (p, mswitches[i].str, len))
6986 return 1;
6988 return 0;
6991 static int
6992 default_arg (p, len)
6993 const char *p;
6994 int len;
6996 int i;
6998 for (i = 0; i < n_mdswitches; i++)
6999 if (len == mdswitches[i].len && ! strncmp (p, mdswitches[i].str, len))
7000 return 1;
7002 return 0;
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
7014 will be used. */
7016 static void
7017 set_multilib_dir ()
7019 const char *p;
7020 unsigned int this_path_len;
7021 const char *this_path, *this_arg;
7022 const char *start, *end;
7023 int not_arg;
7024 int ok, ndfltok, first;
7026 n_mdswitches = 0;
7027 start = multilib_defaults;
7028 while (*start == ' ' || *start == '\t')
7029 start++;
7030 while (*start != '\0')
7032 n_mdswitches++;
7033 while (*start != ' ' && *start != '\t' && *start != '\0')
7034 start++;
7035 while (*start == ' ' || *start == '\t')
7036 start++;
7039 if (n_mdswitches)
7041 int i = 0;
7043 mdswitches
7044 = (struct mdswitchstr *) xmalloc (sizeof (struct mdswitchstr)
7045 * n_mdswitches);
7046 for (start = multilib_defaults; *start != '\0'; start = end + 1)
7048 while (*start == ' ' || *start == '\t')
7049 start++;
7051 if (*start == '\0')
7052 break;
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;
7063 if (*end == '\0')
7064 break;
7068 p = multilib_exclusions;
7069 while (*p != '\0')
7071 /* Ignore newlines. */
7072 if (*p == '\n')
7074 ++p;
7075 continue;
7078 /* Check the arguments. */
7079 ok = 1;
7080 while (*p != ';')
7082 if (*p == '\0')
7083 abort ();
7085 if (! ok)
7087 ++p;
7088 continue;
7091 this_arg = p;
7092 while (*p != ' ' && *p != ';')
7094 if (*p == '\0')
7095 abort ();
7096 ++p;
7099 if (*this_arg != '!')
7100 not_arg = 0;
7101 else
7103 not_arg = 1;
7104 ++this_arg;
7107 ok = used_arg (this_arg, p - this_arg);
7108 if (not_arg)
7109 ok = ! ok;
7111 if (*p == ' ')
7112 ++p;
7115 if (ok)
7116 return;
7118 ++p;
7121 first = 1;
7122 p = multilib_select;
7123 while (*p != '\0')
7125 /* Ignore newlines. */
7126 if (*p == '\n')
7128 ++p;
7129 continue;
7132 /* Get the initial path. */
7133 this_path = p;
7134 while (*p != ' ')
7136 if (*p == '\0')
7137 abort ();
7138 ++p;
7140 this_path_len = p - this_path;
7142 /* Check the arguments. */
7143 ok = 1;
7144 ndfltok = 1;
7145 ++p;
7146 while (*p != ';')
7148 if (*p == '\0')
7149 abort ();
7151 if (! ok)
7153 ++p;
7154 continue;
7157 this_arg = p;
7158 while (*p != ' ' && *p != ';')
7160 if (*p == '\0')
7161 abort ();
7162 ++p;
7165 if (*this_arg != '!')
7166 not_arg = 0;
7167 else
7169 not_arg = 1;
7170 ++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);
7181 if (not_arg)
7182 ok = ! ok;
7184 if (! ok)
7185 ndfltok = 0;
7187 if (default_arg (this_arg, p - this_arg))
7188 ok = 1;
7190 if (*p == ' ')
7191 ++p;
7194 if (ok && first)
7196 if (this_path_len != 1
7197 || this_path[0] != '.')
7199 char *new_multilib_dir = xmalloc (this_path_len + 1);
7200 char *q;
7202 strncpy (new_multilib_dir, this_path, this_path_len);
7203 new_multilib_dir[this_path_len] = '\0';
7204 q = strchr (new_multilib_dir, ':');
7205 if (q != NULL)
7206 *q = '\0';
7207 multilib_dir = new_multilib_dir;
7209 first = 0;
7212 if (ndfltok)
7214 const char *q = this_path, *end = this_path + this_path_len;
7216 while (q < end && *q != ':')
7217 q++;
7218 if (q < end)
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;
7224 break;
7228 ++p;
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
7249 the exclusions. */
7251 static void
7252 print_multilib_info ()
7254 const char *p = multilib_select;
7255 const char *last_path = 0, *this_path;
7256 int skip;
7257 unsigned int last_path_len = 0;
7259 while (*p != '\0')
7261 skip = 0;
7262 /* Ignore newlines. */
7263 if (*p == '\n')
7265 ++p;
7266 continue;
7269 /* Get the initial path. */
7270 this_path = p;
7271 while (*p != ' ')
7273 if (*p == '\0')
7274 abort ();
7275 ++p;
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] == ':')
7282 skip = 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;
7291 while (*e != '\0')
7293 int m = 1;
7294 /* Ignore newlines. */
7295 if (*e == '\n')
7297 ++e;
7298 continue;
7301 /* Check the arguments. */
7302 while (*e != ';')
7304 const char *q;
7305 int mp = 0;
7307 if (*e == '\0')
7308 abort ();
7310 if (! m)
7312 ++e;
7313 continue;
7316 this_arg = e;
7318 while (*e != ' ' && *e != ';')
7320 if (*e == '\0')
7321 abort ();
7322 ++e;
7325 q = p + 1;
7326 while (*q != ';')
7328 const char *arg;
7329 int len = e - this_arg;
7331 if (*q == '\0')
7332 abort ();
7334 arg = q;
7336 while (*q != ' ' && *q != ';')
7338 if (*q == '\0')
7339 abort ();
7340 ++q;
7343 if (! strncmp (arg, this_arg, (len < q - arg) ? q - arg : len) ||
7344 default_arg (this_arg, e - this_arg))
7346 mp = 1;
7347 break;
7350 if (*q == ' ')
7351 ++q;
7354 if (! mp)
7355 m = 0;
7357 if (*e == ' ')
7358 ++e;
7361 if (m)
7363 skip = 1;
7364 break;
7367 if (*e != '\0')
7368 ++e;
7372 if (! skip)
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. */
7385 if (! skip)
7387 const char *q;
7389 q = p + 1;
7390 while (*q != ';')
7392 const char *arg;
7394 if (*q == '\0')
7395 abort ();
7397 if (*q == '!')
7398 arg = NULL;
7399 else
7400 arg = q;
7402 while (*q != ' ' && *q != ';')
7404 if (*q == '\0')
7405 abort ();
7406 ++q;
7409 if (arg != NULL
7410 && default_arg (arg, q - arg))
7412 skip = 1;
7413 break;
7416 if (*q == ' ')
7417 ++q;
7421 if (! skip)
7423 const char *p1;
7425 for (p1 = last_path; p1 < p && *p1 != ':'; p1++)
7426 putchar (*p1);
7427 putchar (';');
7430 ++p;
7431 while (*p != ';')
7433 int use_arg;
7435 if (*p == '\0')
7436 abort ();
7438 if (skip)
7440 ++p;
7441 continue;
7444 use_arg = *p != '!';
7446 if (use_arg)
7447 putchar ('@');
7449 while (*p != ' ' && *p != ';')
7451 if (*p == '\0')
7452 abort ();
7453 if (use_arg)
7454 putchar (*p);
7455 ++p;
7458 if (*p == ' ')
7459 ++p;
7462 if (! skip)
7464 /* If there are extra options, print them now. */
7465 if (multilib_extra && *multilib_extra)
7467 int print_at = TRUE;
7468 const char *q;
7470 for (q = multilib_extra; *q != '\0'; q++)
7472 if (*q == ' ')
7473 print_at = TRUE;
7474 else
7476 if (print_at)
7477 putchar ('@');
7478 putchar (*q);
7479 print_at = FALSE;
7484 putchar ('\n');
7487 ++p;
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). */
7499 static const char *
7500 if_exists_spec_function (argc, argv)
7501 int argc;
7502 const char **argv;
7504 /* Must have only one argument. */
7505 if (argc == 1 && IS_ABSOLUTE_PATHNAME (argv[0]) && ! access (argv[0], R_OK))
7506 return argv[0];
7508 return NULL;
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. */
7516 static const char *
7517 if_exists_else_spec_function (argc, argv)
7518 int argc;
7519 const char **argv;
7521 /* Must have exactly two arguments. */
7522 if (argc != 2)
7523 return NULL;
7525 if (IS_ABSOLUTE_PATHNAME (argv[0]) && ! access (argv[0], R_OK))
7526 return argv[0];
7528 return argv[1];