* c-aux-info.c: NULL_PTR->NULL in calls to `concat'.
[official-gcc.git] / gcc / gcc.c
blob298bbce141ac6261ab08c2d6e9851fa2684ed5e0
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 Free Software Foundation, Inc.
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 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 <signal.h>
76 #if ! defined( SIGCHLD ) && defined( SIGCLD )
77 # define SIGCHLD SIGCLD
78 #endif
79 #include "obstack.h"
80 #include "intl.h"
81 #include "prefix.h"
82 #include "gcc.h"
84 #ifdef VMS
85 #define exit __posix_exit
86 #endif
88 #ifdef HAVE_SYS_RESOURCE_H
89 #include <sys/resource.h>
90 #endif
91 #if defined (HAVE_DECL_GETRUSAGE) && !HAVE_DECL_GETRUSAGE
92 extern int getrusage PARAMS ((int, struct rusage *));
93 #endif
95 /* By default there is no special suffix for target executables. */
96 /* FIXME: when autoconf is fixed, remove the host check - dj */
97 #if defined(TARGET_EXECUTABLE_SUFFIX) && defined(HOST_EXECUTABLE_SUFFIX)
98 #define HAVE_TARGET_EXECUTABLE_SUFFIX
99 #else
100 #define TARGET_EXECUTABLE_SUFFIX ""
101 #endif
103 /* By default there is no special suffix for host executables. */
104 #ifdef HOST_EXECUTABLE_SUFFIX
105 #define HAVE_HOST_EXECUTABLE_SUFFIX
106 #else
107 #define HOST_EXECUTABLE_SUFFIX ""
108 #endif
110 /* By default, the suffix for target object files is ".o". */
111 #ifdef TARGET_OBJECT_SUFFIX
112 #define HAVE_TARGET_OBJECT_SUFFIX
113 #else
114 #define TARGET_OBJECT_SUFFIX ".o"
115 #endif
117 #ifndef VMS
118 /* FIXME: the location independence code for VMS is hairier than this,
119 and hasn't been written. */
120 #ifndef DIR_UP
121 #define DIR_UP ".."
122 #endif /* DIR_UP */
123 #endif /* VMS */
125 static char dir_separator_str[] = { DIR_SEPARATOR, 0 };
127 #define obstack_chunk_alloc xmalloc
128 #define obstack_chunk_free free
130 #ifndef GET_ENV_PATH_LIST
131 #define GET_ENV_PATH_LIST(VAR,NAME) do { (VAR) = getenv (NAME); } while (0)
132 #endif
134 /* Most every one is fine with LIBRARY_PATH. For some, it conflicts. */
135 #ifndef LIBRARY_PATH_ENV
136 #define LIBRARY_PATH_ENV "LIBRARY_PATH"
137 #endif
139 #ifndef HAVE_KILL
140 #define kill(p,s) raise(s)
141 #endif
143 /* If a stage of compilation returns an exit status >= 1,
144 compilation of that file ceases. */
146 #define MIN_FATAL_STATUS 1
148 /* Flag saying to pass the greatest exit code returned by a sub-process
149 to the calling program. */
150 static int pass_exit_codes;
152 /* Definition of string containing the arguments given to configure. */
153 #include "configargs.h"
155 /* Flag saying to print the directories gcc will search through looking for
156 programs, libraries, etc. */
158 static int print_search_dirs;
160 /* Flag saying to print the full filename of this file
161 as found through our usual search mechanism. */
163 static const char *print_file_name = NULL;
165 /* As print_file_name, but search for executable file. */
167 static const char *print_prog_name = NULL;
169 /* Flag saying to print the relative path we'd use to
170 find libgcc.a given the current compiler flags. */
172 static int print_multi_directory;
174 /* Flag saying to print the list of subdirectories and
175 compiler flags used to select them in a standard form. */
177 static int print_multi_lib;
179 /* Flag saying to print the command line options understood by gcc and its
180 sub-processes. */
182 static int print_help_list;
184 /* Flag indicating whether we should print the command and arguments */
186 static int verbose_flag;
188 /* Flag indicating to print target specific command line options. */
190 static int target_help_flag;
192 /* Flag indicating whether we should report subprocess execution times
193 (if this is supported by the system - see pexecute.c). */
195 static int report_times;
197 /* Nonzero means write "temp" files in source directory
198 and use the source file's name in them, and don't delete them. */
200 static int save_temps_flag;
202 /* The compiler version. */
204 static const char *compiler_version;
206 /* The target version specified with -V */
208 static const char *spec_version = DEFAULT_TARGET_VERSION;
210 /* The target machine specified with -b. */
212 static const char *spec_machine = DEFAULT_TARGET_MACHINE;
214 /* Nonzero if cross-compiling.
215 When -b is used, the value comes from the `specs' file. */
217 #ifdef CROSS_COMPILE
218 static const char *cross_compile = "1";
219 #else
220 static const char *cross_compile = "0";
221 #endif
223 #ifdef MODIFY_TARGET_NAME
225 /* Information on how to alter the target name based on a command-line
226 switch. The only case we support now is simply appending or deleting a
227 string to or from the end of the first part of the configuration name. */
229 struct modify_target
231 const char *sw;
232 enum add_del {ADD, DELETE} add_del;
233 const char *str;
235 modify_target[] = MODIFY_TARGET_NAME;
236 #endif
238 /* The number of errors that have occurred; the link phase will not be
239 run if this is non-zero. */
240 static int error_count = 0;
242 /* Greatest exit code of sub-processes that has been encountered up to
243 now. */
244 static int greatest_status = 1;
246 /* This is the obstack which we use to allocate many strings. */
248 static struct obstack obstack;
250 /* This is the obstack to build an environment variable to pass to
251 collect2 that describes all of the relevant switches of what to
252 pass the compiler in building the list of pointers to constructors
253 and destructors. */
255 static struct obstack collect_obstack;
257 /* These structs are used to collect resource usage information for
258 subprocesses. */
259 #ifdef HAVE_GETRUSAGE
260 static struct rusage rus, prus;
261 #endif
263 /* Forward declaration for prototypes. */
264 struct path_prefix;
266 static void init_spec PARAMS ((void));
267 #ifndef VMS
268 static char **split_directories PARAMS ((const char *, int *));
269 static void free_split_directories PARAMS ((char **));
270 static char *make_relative_prefix PARAMS ((const char *, const char *, const char *));
271 #endif /* VMS */
272 static void store_arg PARAMS ((const char *, int, int));
273 static char *load_specs PARAMS ((const char *));
274 static void read_specs PARAMS ((const char *, int));
275 static void set_spec PARAMS ((const char *, const char *));
276 static struct compiler *lookup_compiler PARAMS ((const char *, size_t, const char *));
277 static char *build_search_list PARAMS ((struct path_prefix *, const char *, int));
278 static void putenv_from_prefixes PARAMS ((struct path_prefix *, const char *));
279 static int access_check PARAMS ((const char *, int));
280 static char *find_a_file PARAMS ((struct path_prefix *, const char *, int));
281 static void add_prefix PARAMS ((struct path_prefix *, const char *,
282 const char *, int, int, int *));
283 static void translate_options PARAMS ((int *, const char *const **));
284 static char *skip_whitespace PARAMS ((char *));
285 static void delete_if_ordinary PARAMS ((const char *));
286 static void delete_temp_files PARAMS ((void));
287 static void delete_failure_queue PARAMS ((void));
288 static void clear_failure_queue PARAMS ((void));
289 static int check_live_switch PARAMS ((int, int));
290 static const char *handle_braces PARAMS ((const char *));
291 static char *save_string PARAMS ((const char *, int));
292 static int do_spec_1 PARAMS ((const char *, int, const char *));
293 static const char *find_file PARAMS ((const char *));
294 static int is_directory PARAMS ((const char *, const char *, int));
295 static void validate_switches PARAMS ((const char *));
296 static void validate_all_switches PARAMS ((void));
297 static void give_switch PARAMS ((int, int, int));
298 static int used_arg PARAMS ((const char *, int));
299 static int default_arg PARAMS ((const char *, int));
300 static void set_multilib_dir PARAMS ((void));
301 static void print_multilib_info PARAMS ((void));
302 static void perror_with_name PARAMS ((const char *));
303 static void pfatal_pexecute PARAMS ((const char *, const char *))
304 ATTRIBUTE_NORETURN;
305 static void notice PARAMS ((const char *, ...))
306 ATTRIBUTE_PRINTF_1;
307 static void display_help PARAMS ((void));
308 static void add_preprocessor_option PARAMS ((const char *, int));
309 static void add_assembler_option PARAMS ((const char *, int));
310 static void add_linker_option PARAMS ((const char *, int));
311 static void process_command PARAMS ((int, const char *const *));
312 static int execute PARAMS ((void));
313 static void clear_args PARAMS ((void));
314 static void fatal_error PARAMS ((int));
315 static void set_input PARAMS ((const char *));
316 static void init_gcc_specs PARAMS ((struct obstack *,
317 const char *,
318 const char *));
320 /* The Specs Language
322 Specs are strings containing lines, each of which (if not blank)
323 is made up of a program name, and arguments separated by spaces.
324 The program name must be exact and start from root, since no path
325 is searched and it is unreliable to depend on the current working directory.
326 Redirection of input or output is not supported; the subprograms must
327 accept filenames saying what files to read and write.
329 In addition, the specs can contain %-sequences to substitute variable text
330 or for conditional text. Here is a table of all defined %-sequences.
331 Note that spaces are not generated automatically around the results of
332 expanding these sequences; therefore, you can concatenate them together
333 or with constant text in a single argument.
335 %% substitute one % into the program name or argument.
336 %i substitute the name of the input file being processed.
337 %b substitute the basename of the input file being processed.
338 This is the substring up to (and not including) the last period
339 and not including the directory.
340 %B same as %b, but include the file suffix (text after the last period).
341 %gSUFFIX
342 substitute a file name that has suffix SUFFIX and is chosen
343 once per compilation, and mark the argument a la %d. To reduce
344 exposure to denial-of-service attacks, the file name is now
345 chosen in a way that is hard to predict even when previously
346 chosen file names are known. For example, `%g.s ... %g.o ... %g.s'
347 might turn into `ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s'. SUFFIX matches
348 the regexp "[.A-Za-z]*%O"; "%O" is treated exactly as if it
349 had been pre-processed. Previously, %g was simply substituted
350 with a file name chosen once per compilation, without regard
351 to any appended suffix (which was therefore treated just like
352 ordinary text), making such attacks more likely to succeed.
353 %uSUFFIX
354 like %g, but generates a new temporary file name even if %uSUFFIX
355 was already seen.
356 %USUFFIX
357 substitutes the last file name generated with %uSUFFIX, generating a
358 new one if there is no such last file name. In the absence of any
359 %uSUFFIX, this is just like %gSUFFIX, except they don't share
360 the same suffix "space", so `%g.s ... %U.s ... %g.s ... %U.s'
361 would involve the generation of two distinct file names, one
362 for each `%g.s' and another for each `%U.s'. Previously, %U was
363 simply substituted with a file name chosen for the previous %u,
364 without regard to any appended suffix.
365 %jSUFFIX
366 substitutes the name of the HOST_BIT_BUCKET, if any, and if it is
367 writable, and if save-temps is off; otherwise, substitute the name
368 of a temporary file, just like %u. This temporary file is not
369 meant for communication between processes, but rather as a junk
370 disposal mechanism.
371 %.SUFFIX
372 substitutes .SUFFIX for the suffixes of a matched switch's args when
373 it is subsequently output with %*. SUFFIX is terminated by the next
374 space or %.
375 %d marks the argument containing or following the %d as a
376 temporary file name, so that that file will be deleted if CC exits
377 successfully. Unlike %g, this contributes no text to the argument.
378 %w marks the argument containing or following the %w as the
379 "output file" of this compilation. This puts the argument
380 into the sequence of arguments that %o will substitute later.
381 %W{...}
382 like %{...} but mark last argument supplied within
383 as a file to be deleted on failure.
384 %o substitutes the names of all the output files, with spaces
385 automatically placed around them. You should write spaces
386 around the %o as well or the results are undefined.
387 %o is for use in the specs for running the linker.
388 Input files whose names have no recognized suffix are not compiled
389 at all, but they are included among the output files, so they will
390 be linked.
391 %O substitutes the suffix for object files. Note that this is
392 handled specially when it immediately follows %g, %u, or %U
393 (with or without a suffix argument) because of the need for
394 those to form complete file names. The handling is such that
395 %O is treated exactly as if it had already been substituted,
396 except that %g, %u, and %U do not currently support additional
397 SUFFIX characters following %O as they would following, for
398 example, `.o'.
399 %p substitutes the standard macro predefinitions for the
400 current target machine. Use this when running cpp.
401 %P like %p, but puts `__' before and after the name of each macro.
402 (Except macros that already have __.)
403 This is for ANSI C.
404 %I Substitute a -iprefix option made from GCC_EXEC_PREFIX.
405 %s current argument is the name of a library or startup file of some sort.
406 Search for that file in a standard list of directories
407 and substitute the full name found.
408 %eSTR Print STR as an error message. STR is terminated by a newline.
409 Use this when inconsistent options are detected.
410 %nSTR Print STR as an notice. STR is terminated by a newline.
411 %x{OPTION} Accumulate an option for %X.
412 %X Output the accumulated linker options specified by compilations.
413 %Y Output the accumulated assembler options specified by compilations.
414 %Z Output the accumulated preprocessor options specified by compilations.
415 %v1 Substitute the major version number of GCC.
416 (For version 2.5.3, this is 2.)
417 %v2 Substitute the minor version number of GCC.
418 (For version 2.5.3, this is 5.)
419 %v3 Substitute the patch level number of GCC.
420 (For version 2.5.3, this is 3.)
421 %a process ASM_SPEC as a spec.
422 This allows config.h to specify part of the spec for running as.
423 %A process ASM_FINAL_SPEC as a spec. A capital A is actually
424 used here. This can be used to run a post-processor after the
425 assembler has done its job.
426 %D Dump out a -L option for each directory in startfile_prefixes.
427 If multilib_dir is set, extra entries are generated with it affixed.
428 %l process LINK_SPEC as a spec.
429 %L process LIB_SPEC as a spec.
430 %G process LIBGCC_SPEC as a spec.
431 %M output multilib_dir with directory separators replaced with "_";
432 if multilib_dir is not set or is ".", output "".
433 %S process STARTFILE_SPEC as a spec. A capital S is actually used here.
434 %E process ENDFILE_SPEC as a spec. A capital E is actually used here.
435 %c process SIGNED_CHAR_SPEC as a spec.
436 %C process CPP_SPEC as a spec.
437 %1 process CC1_SPEC as a spec.
438 %2 process CC1PLUS_SPEC as a spec.
439 %| output "-" if the input for the current command is coming from a pipe.
440 %* substitute the variable part of a matched option. (See below.)
441 Note that each comma in the substituted string is replaced by
442 a single space.
443 %{S} substitutes the -S switch, if that switch was given to CC.
444 If that switch was not specified, this substitutes nothing.
445 Here S is a metasyntactic variable.
446 %{S*} substitutes all the switches specified to CC whose names start
447 with -S. This is used for -o, -I, etc; switches that take
448 arguments. CC considers `-o foo' as being one switch whose
449 name starts with `o'. %{o*} would substitute this text,
450 including the space; thus, two arguments would be generated.
451 %{^S*} likewise, but don't put a blank between a switch and any args.
452 %{S*&T*} likewise, but preserve order of S and T options (the order
453 of S and T in the spec is not significant). Can be any number
454 of ampersand-separated variables; for each the wild card is
455 optional. Useful for CPP as %{D*&U*&A*}.
456 %{S*:X} substitutes X if one or more switches whose names start with -S are
457 specified to CC. Note that the tail part of the -S option
458 (i.e. the part matched by the `*') will be substituted for each
459 occurrence of %* within X.
460 %{<S} remove all occurences of -S from the command line.
461 Note - this option is position dependent. % commands in the
462 spec string before this option will see -S, % commands in the
463 spec string after this option will not.
464 %{S:X} substitutes X, but only if the -S switch was given to CC.
465 %{!S:X} substitutes X, but only if the -S switch was NOT given to CC.
466 %{|S:X} like %{S:X}, but if no S switch, substitute `-'.
467 %{|!S:X} like %{!S:X}, but if there is an S switch, substitute `-'.
468 %{.S:X} substitutes X, but only if processing a file with suffix S.
469 %{!.S:X} substitutes X, but only if NOT processing a file with suffix S.
470 %{S|P:X} substitutes X if either -S or -P was given to CC. This may be
471 combined with ! and . as above binding stronger than the OR.
472 %(Spec) processes a specification defined in a specs file as *Spec:
473 %[Spec] as above, but put __ around -D arguments
475 The conditional text X in a %{S:X} or %{!S:X} construct may contain
476 other nested % constructs or spaces, or even newlines. They are
477 processed as usual, as described above.
479 The -O, -f, -m, and -W switches are handled specifically in these
480 constructs. If another value of -O or the negated form of a -f, -m, or
481 -W switch is found later in the command line, the earlier switch
482 value is ignored, except with {S*} where S is just one letter; this
483 passes all matching options.
485 The character | at the beginning of the predicate text is used to indicate
486 that a command should be piped to the following command, but only if -pipe
487 is specified.
489 Note that it is built into CC which switches take arguments and which
490 do not. You might think it would be useful to generalize this to
491 allow each compiler's spec to say which switches take arguments. But
492 this cannot be done in a consistent fashion. CC cannot even decide
493 which input files have been specified without knowing which switches
494 take arguments, and it must know which input files to compile in order
495 to tell which compilers to run.
497 CC also knows implicitly that arguments starting in `-l' are to be
498 treated as compiler output files, and passed to the linker in their
499 proper position among the other output files. */
501 /* Define the macros used for specs %a, %l, %L, %S, %c, %C, %1. */
503 /* config.h can define ASM_SPEC to provide extra args to the assembler
504 or extra switch-translations. */
505 #ifndef ASM_SPEC
506 #define ASM_SPEC ""
507 #endif
509 /* config.h can define ASM_FINAL_SPEC to run a post processor after
510 the assembler has run. */
511 #ifndef ASM_FINAL_SPEC
512 #define ASM_FINAL_SPEC ""
513 #endif
515 /* config.h can define CPP_SPEC to provide extra args to the C preprocessor
516 or extra switch-translations. */
517 #ifndef CPP_SPEC
518 #define CPP_SPEC ""
519 #endif
521 /* config.h can define CC1_SPEC to provide extra args to cc1 and cc1plus
522 or extra switch-translations. */
523 #ifndef CC1_SPEC
524 #define CC1_SPEC ""
525 #endif
527 /* config.h can define CC1PLUS_SPEC to provide extra args to cc1plus
528 or extra switch-translations. */
529 #ifndef CC1PLUS_SPEC
530 #define CC1PLUS_SPEC ""
531 #endif
533 /* config.h can define LINK_SPEC to provide extra args to the linker
534 or extra switch-translations. */
535 #ifndef LINK_SPEC
536 #define LINK_SPEC ""
537 #endif
539 /* config.h can define LIB_SPEC to override the default libraries. */
540 #ifndef LIB_SPEC
541 #define LIB_SPEC "%{!shared:%{g*:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}}"
542 #endif
544 /* config.h can define LIBGCC_SPEC to override how and when libgcc.a is
545 included. */
546 #ifndef LIBGCC_SPEC
547 #if defined(LINK_LIBGCC_SPECIAL) || defined(LINK_LIBGCC_SPECIAL_1)
548 /* Have gcc do the search for libgcc.a. */
549 #define LIBGCC_SPEC "libgcc.a%s"
550 #else
551 #define LIBGCC_SPEC "-lgcc"
552 #endif
553 #endif
555 /* config.h can define STARTFILE_SPEC to override the default crt0 files. */
556 #ifndef STARTFILE_SPEC
557 #define STARTFILE_SPEC \
558 "%{!shared:%{pg:gcrt0%O%s}%{!pg:%{p:mcrt0%O%s}%{!p:crt0%O%s}}}"
559 #endif
561 /* config.h can define SWITCHES_NEED_SPACES to control which options
562 require spaces between the option and the argument. */
563 #ifndef SWITCHES_NEED_SPACES
564 #define SWITCHES_NEED_SPACES ""
565 #endif
567 /* config.h can define ENDFILE_SPEC to override the default crtn files. */
568 #ifndef ENDFILE_SPEC
569 #define ENDFILE_SPEC ""
570 #endif
572 /* This spec is used for telling cpp whether char is signed or not. */
573 #ifndef SIGNED_CHAR_SPEC
574 /* Use #if rather than ?:
575 because MIPS C compiler rejects like ?: in initializers. */
576 #if DEFAULT_SIGNED_CHAR
577 #define SIGNED_CHAR_SPEC "%{funsigned-char:-D__CHAR_UNSIGNED__}"
578 #else
579 #define SIGNED_CHAR_SPEC "%{!fsigned-char:-D__CHAR_UNSIGNED__}"
580 #endif
581 #endif
583 #ifndef LINKER_NAME
584 #define LINKER_NAME "collect2"
585 #endif
587 /* Here is the spec for running the linker, after compiling all files. */
589 /* -u* was put back because both BSD and SysV seem to support it. */
590 /* %{static:} simply prevents an error message if the target machine
591 doesn't handle -static. */
592 /* We want %{T*} after %{L*} and %D so that it can be used to specify linker
593 scripts which exist in user specified directories, or in standard
594 directories. */
595 #ifndef LINK_COMMAND_SPEC
596 #define LINK_COMMAND_SPEC "\
597 %{!fsyntax-only:%{!c:%{!M:%{!MM:%{!E:%{!S:\
598 %(linker) %l %X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} %{r} %{s} %{t}\
599 %{u*} %{x} %{z} %{Z} %{!A:%{!nostdlib:%{!nostartfiles:%S}}}\
600 %{static:} %{L*} %(link_libgcc) %o %{!nostdlib:%{!nodefaultlibs:%G %L %G}}\
601 %{!A:%{!nostdlib:%{!nostartfiles:%E}}} %{T*} }}}}}}"
602 #endif
604 #ifndef LINK_LIBGCC_SPEC
605 # ifdef LINK_LIBGCC_SPECIAL
606 /* Don't generate -L options for startfile prefix list. */
607 # define LINK_LIBGCC_SPEC ""
608 # else
609 /* Do generate them. */
610 # define LINK_LIBGCC_SPEC "%D"
611 # endif
612 #endif
614 static const char *cpp_spec = CPP_SPEC;
615 static const char *cpp_predefines = CPP_PREDEFINES;
616 static const char *cc1_spec = CC1_SPEC;
617 static const char *cc1plus_spec = CC1PLUS_SPEC;
618 static const char *signed_char_spec = SIGNED_CHAR_SPEC;
619 static const char *asm_spec = ASM_SPEC;
620 static const char *asm_final_spec = ASM_FINAL_SPEC;
621 static const char *link_spec = LINK_SPEC;
622 static const char *lib_spec = LIB_SPEC;
623 static const char *libgcc_spec = LIBGCC_SPEC;
624 static const char *endfile_spec = ENDFILE_SPEC;
625 static const char *startfile_spec = STARTFILE_SPEC;
626 static const char *switches_need_spaces = SWITCHES_NEED_SPACES;
627 static const char *linker_name_spec = LINKER_NAME;
628 static const char *link_command_spec = LINK_COMMAND_SPEC;
629 static const char *link_libgcc_spec = LINK_LIBGCC_SPEC;
631 /* Standard options to cpp, cc1, and as, to reduce duplication in specs.
632 There should be no need to override these in target dependent files,
633 but we need to copy them to the specs file so that newer versions
634 of the GCC driver can correctly drive older tool chains with the
635 appropriate -B options. */
637 static const char *trad_capable_cpp =
638 "%{traditional|ftraditional|traditional-cpp:trad}cpp0";
640 static const char *cpp_options =
641 "%{C:%{!E:%eGNU C does not support -C without using -E}}\
642 %{std*} %{nostdinc*}\
643 %{C} %{v} %{I*} %{P} %{$} %I\
644 %{MD:-M -MF %W{!o: %b.d}%W{o*:%.d%*}}\
645 %{MMD:-MM -MF %W{!o: %b.d}%W{o*:%.d%*}}\
646 %{M} %{MM} %W{MF*} %{MG} %{MP} %{MQ*} %{MT*} %{M|MD|MM|MMD:%{o*:-MQ %*}}\
647 %{!no-gcc:-D__GNUC__=%v1 -D__GNUC_MINOR__=%v2 -D__GNUC_PATCHLEVEL__=%v3}\
648 %{!undef:%{!ansi:%{!std=*:%p}%{std=gnu*:%p}} %P} %{trigraphs}\
649 %c %{Os:-D__OPTIMIZE_SIZE__} %{O*:%{!O0:-D__OPTIMIZE__}}\
650 %{ffast-math:-D__FAST_MATH__}\
651 %{fshort-wchar:-U__WCHAR_TYPE__ -D__WCHAR_TYPE__=short\\ unsigned\\ int}\
652 %{ffreestanding:-D__STDC_HOSTED__=0} %{fno-hosted:-D__STDC_HOSTED__=0}\
653 %{!ffreestanding:%{!fno-hosted:-D__STDC_HOSTED__=1}}\
654 %{fshow-column} %{fno-show-column}\
655 %{fleading-underscore} %{fno-leading-underscore}\
656 %{fno-operator-names} %{ftabstop=*} %{remap}\
657 %{g3:-dD} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*&U*&A*} %{i*} %Z %i\
658 %{E:%{!M*:%W{o*}}}";
660 /* NB: This is shared amongst all front-ends. */
661 static const char *cc1_options =
662 "%{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
663 %1 %{!Q:-quiet} -dumpbase %B %{d*} %{m*} %{a*}\
664 %{g*} %{O*} %{W*} %{w} %{pedantic*} %{std*} %{ansi}\
665 %{traditional} %{v:-version} %{pg:-p} %{p} %{f*}\
666 %{aux-info*} %{Qn:-fno-ident} %{--help:--help}\
667 %{--target-help:--target-help}\
668 %{!fsyntax-only:%{S:%W{o*}%{!o*:-o %b.s}}}\
669 %{fsyntax-only:-o %j} %{-param*}";
671 static const char *asm_options =
672 "%a %Y %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}";
674 static const char *invoke_as =
675 "%{!S:-o %{|!pipe:%g.s} |\n as %(asm_options) %{!pipe:%g.s} %A }";
677 /* Some compilers have limits on line lengths, and the multilib_select
678 and/or multilib_matches strings can be very long, so we build them at
679 run time. */
680 static struct obstack multilib_obstack;
681 static const char *multilib_select;
682 static const char *multilib_matches;
683 static const char *multilib_defaults;
684 static const char *multilib_exclusions;
685 #include "multilib.h"
687 /* Check whether a particular argument is a default argument. */
689 #ifndef MULTILIB_DEFAULTS
690 #define MULTILIB_DEFAULTS { "" }
691 #endif
693 static const char *const multilib_defaults_raw[] = MULTILIB_DEFAULTS;
695 struct user_specs
697 struct user_specs *next;
698 const char *filename;
701 static struct user_specs *user_specs_head, *user_specs_tail;
703 /* This defines which switch letters take arguments. */
705 #define DEFAULT_SWITCH_TAKES_ARG(CHAR) \
706 ((CHAR) == 'D' || (CHAR) == 'U' || (CHAR) == 'o' \
707 || (CHAR) == 'e' || (CHAR) == 'T' || (CHAR) == 'u' \
708 || (CHAR) == 'I' || (CHAR) == 'm' || (CHAR) == 'x' \
709 || (CHAR) == 'L' || (CHAR) == 'A' || (CHAR) == 'V' \
710 || (CHAR) == 'B' || (CHAR) == 'b')
712 #ifndef SWITCH_TAKES_ARG
713 #define SWITCH_TAKES_ARG(CHAR) DEFAULT_SWITCH_TAKES_ARG(CHAR)
714 #endif
716 /* This defines which multi-letter switches take arguments. */
718 #define DEFAULT_WORD_SWITCH_TAKES_ARG(STR) \
719 (!strcmp (STR, "Tdata") || !strcmp (STR, "Ttext") \
720 || !strcmp (STR, "Tbss") || !strcmp (STR, "include") \
721 || !strcmp (STR, "imacros") || !strcmp (STR, "aux-info") \
722 || !strcmp (STR, "idirafter") || !strcmp (STR, "iprefix") \
723 || !strcmp (STR, "iwithprefix") || !strcmp (STR, "iwithprefixbefore") \
724 || !strcmp (STR, "isystem") || !strcmp (STR, "-param") \
725 || !strcmp (STR, "specs") \
726 || !strcmp (STR, "MF") || !strcmp (STR, "MT") || !strcmp (STR, "MQ"))
728 #ifndef WORD_SWITCH_TAKES_ARG
729 #define WORD_SWITCH_TAKES_ARG(STR) DEFAULT_WORD_SWITCH_TAKES_ARG (STR)
730 #endif
732 #ifdef HAVE_TARGET_EXECUTABLE_SUFFIX
733 /* This defines which switches stop a full compilation. */
734 #define DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR) \
735 ((CHAR) == 'c' || (CHAR) == 'S')
737 #ifndef SWITCH_CURTAILS_COMPILATION
738 #define SWITCH_CURTAILS_COMPILATION(CHAR) \
739 DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR)
740 #endif
741 #endif
743 /* Record the mapping from file suffixes for compilation specs. */
745 struct compiler
747 const char *suffix; /* Use this compiler for input files
748 whose names end in this suffix. */
750 const char *spec; /* To use this compiler, run this spec. */
752 const char *cpp_spec; /* If non-NULL, substitute this spec
753 for `%C', rather than the usual
754 cpp_spec. */
757 /* Pointer to a vector of `struct compiler' that gives the spec for
758 compiling a file, based on its suffix.
759 A file that does not end in any of these suffixes will be passed
760 unchanged to the loader and nothing else will be done to it.
762 An entry containing two 0s is used to terminate the vector.
764 If multiple entries match a file, the last matching one is used. */
766 static struct compiler *compilers;
768 /* Number of entries in `compilers', not counting the null terminator. */
770 static int n_compilers;
772 /* The default list of file name suffixes and their compilation specs. */
774 static struct compiler default_compilers[] =
776 /* Add lists of suffixes of known languages here. If those languages
777 were not present when we built the driver, we will hit these copies
778 and be given a more meaningful error than "file not used since
779 linking is not done". */
780 {".m", "#Objective-C", 0}, {".mi", "#Objective-C", 0},
781 {".cc", "#C++", 0}, {".cxx", "#C++", 0}, {".cpp", "#C++", 0},
782 {".cp", "#C++", 0}, {".c++", "#C++", 0}, {".C", "#C++", 0},
783 {".ii", "#C++", 0},
784 {".ads", "#Ada", 0}, {".adb", "#Ada", 0}, {".ada", "#Ada", 0},
785 {".f", "#Fortran", 0}, {".for", "#Fortran", 0}, {".fpp", "#Fortran", 0},
786 {".F", "#Fortran", 0}, {".FOR", "#Fortran", 0}, {".FPP", "#Fortran", 0},
787 {".r", "#Ratfor", 0},
788 {".p", "#Pascal", 0}, {".pas", "#Pascal", 0},
789 {".ch", "#Chill", 0}, {".chi", "#Chill", 0},
790 {".java", "#Java", 0}, {".class", "#Java", 0},
791 {".zip", "#Java", 0}, {".jar", "#Java", 0},
792 /* Next come the entries for C. */
793 {".c", "@c", 0},
794 {"@c",
795 /* cc1 has an integrated ISO C preprocessor. We should invoke the
796 external preprocessor if -save-temps or -traditional is given. */
797 "%{E|M|MM:%(trad_capable_cpp) -lang-c %{ansi:-std=c89} %(cpp_options)}\
798 %{!E:%{!M:%{!MM:\
799 %{save-temps:%(trad_capable_cpp) -lang-c %{ansi:-std=c89}\
800 %(cpp_options) %b.i \n\
801 cc1 -fpreprocessed %b.i %(cc1_options)}\
802 %{!save-temps:\
803 %{traditional|ftraditional|traditional-cpp:\
804 tradcpp0 -lang-c %{ansi:-std=c89} %(cpp_options) %{!pipe:%g.i} |\n\
805 cc1 -fpreprocessed %{!pipe:%g.i} %(cc1_options)}\
806 %{!traditional:%{!ftraditional:%{!traditional-cpp:\
807 cc1 -lang-c %{ansi:-std=c89} %(cpp_options) %(cc1_options)}}}}\
808 %{!fsyntax-only:%(invoke_as)}}}}", 0},
809 {"-",
810 "%{!E:%e-E required when input is from standard input}\
811 %(trad_capable_cpp) -lang-c %{ansi:-std=c89} %(cpp_options)", 0},
812 {".h", "@c-header", 0},
813 {"@c-header",
814 "%{!E:%eCompilation of header file requested} \
815 %(trad_capable_cpp) -lang-c %{ansi:-std=c89} %(cpp_options)", 0},
816 {".i", "@cpp-output", 0},
817 {"@cpp-output",
818 "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0},
819 {".s", "@assembler", 0},
820 {"@assembler",
821 "%{!M:%{!MM:%{!E:%{!S:as %(asm_options) %i %A }}}}", 0},
822 {".S", "@assembler-with-cpp", 0},
823 {"@assembler-with-cpp",
824 "%(trad_capable_cpp) -lang-asm %(cpp_options)\
825 %{!M:%{!MM:%{!E:%(invoke_as)}}}", 0},
826 #include "specs.h"
827 /* Mark end of table */
828 {0, 0, 0}
831 /* Number of elements in default_compilers, not counting the terminator. */
833 static int n_default_compilers
834 = (sizeof default_compilers / sizeof (struct compiler)) - 1;
836 /* A vector of options to give to the linker.
837 These options are accumulated by %x,
838 and substituted into the linker command with %X. */
839 static int n_linker_options;
840 static char **linker_options;
842 /* A vector of options to give to the assembler.
843 These options are accumulated by -Wa,
844 and substituted into the assembler command with %Y. */
845 static int n_assembler_options;
846 static char **assembler_options;
848 /* A vector of options to give to the preprocessor.
849 These options are accumulated by -Wp,
850 and substituted into the preprocessor command with %Z. */
851 static int n_preprocessor_options;
852 static char **preprocessor_options;
854 /* Define how to map long options into short ones. */
856 /* This structure describes one mapping. */
857 struct option_map
859 /* The long option's name. */
860 const char *name;
861 /* The equivalent short option. */
862 const char *equivalent;
863 /* Argument info. A string of flag chars; NULL equals no options.
864 a => argument required.
865 o => argument optional.
866 j => join argument to equivalent, making one word.
867 * => require other text after NAME as an argument. */
868 const char *arg_info;
871 /* This is the table of mappings. Mappings are tried sequentially
872 for each option encountered; the first one that matches, wins. */
874 struct option_map option_map[] =
876 {"--all-warnings", "-Wall", 0},
877 {"--ansi", "-ansi", 0},
878 {"--assemble", "-S", 0},
879 {"--assert", "-A", "a"},
880 {"--classpath", "-fclasspath=", "aj"},
881 {"--CLASSPATH", "-fCLASSPATH=", "aj"},
882 {"--comments", "-C", 0},
883 {"--compile", "-c", 0},
884 {"--debug", "-g", "oj"},
885 {"--define-macro", "-D", "aj"},
886 {"--dependencies", "-M", 0},
887 {"--dump", "-d", "a"},
888 {"--dumpbase", "-dumpbase", "a"},
889 {"--entry", "-e", 0},
890 {"--extra-warnings", "-W", 0},
891 {"--for-assembler", "-Wa", "a"},
892 {"--for-linker", "-Xlinker", "a"},
893 {"--force-link", "-u", "a"},
894 {"--imacros", "-imacros", "a"},
895 {"--include", "-include", "a"},
896 {"--include-barrier", "-I-", 0},
897 {"--include-directory", "-I", "aj"},
898 {"--include-directory-after", "-idirafter", "a"},
899 {"--include-prefix", "-iprefix", "a"},
900 {"--include-with-prefix", "-iwithprefix", "a"},
901 {"--include-with-prefix-before", "-iwithprefixbefore", "a"},
902 {"--include-with-prefix-after", "-iwithprefix", "a"},
903 {"--language", "-x", "a"},
904 {"--library-directory", "-L", "a"},
905 {"--machine", "-m", "aj"},
906 {"--machine-", "-m", "*j"},
907 {"--no-line-commands", "-P", 0},
908 {"--no-precompiled-includes", "-noprecomp", 0},
909 {"--no-standard-includes", "-nostdinc", 0},
910 {"--no-standard-libraries", "-nostdlib", 0},
911 {"--no-warnings", "-w", 0},
912 {"--optimize", "-O", "oj"},
913 {"--output", "-o", "a"},
914 {"--output-class-directory", "-foutput-class-dir=", "ja"},
915 {"--param", "--param", "a"},
916 {"--pedantic", "-pedantic", 0},
917 {"--pedantic-errors", "-pedantic-errors", 0},
918 {"--pipe", "-pipe", 0},
919 {"--prefix", "-B", "a"},
920 {"--preprocess", "-E", 0},
921 {"--print-search-dirs", "-print-search-dirs", 0},
922 {"--print-file-name", "-print-file-name=", "aj"},
923 {"--print-libgcc-file-name", "-print-libgcc-file-name", 0},
924 {"--print-missing-file-dependencies", "-MG", 0},
925 {"--print-multi-lib", "-print-multi-lib", 0},
926 {"--print-multi-directory", "-print-multi-directory", 0},
927 {"--print-prog-name", "-print-prog-name=", "aj"},
928 {"--profile", "-p", 0},
929 {"--profile-blocks", "-a", 0},
930 {"--quiet", "-q", 0},
931 {"--save-temps", "-save-temps", 0},
932 {"--shared", "-shared", 0},
933 {"--silent", "-q", 0},
934 {"--specs", "-specs=", "aj"},
935 {"--static", "-static", 0},
936 {"--std", "-std=", "aj"},
937 {"--symbolic", "-symbolic", 0},
938 {"--target", "-b", "a"},
939 {"--time", "-time", 0},
940 {"--trace-includes", "-H", 0},
941 {"--traditional", "-traditional", 0},
942 {"--traditional-cpp", "-traditional-cpp", 0},
943 {"--trigraphs", "-trigraphs", 0},
944 {"--undefine-macro", "-U", "aj"},
945 {"--use-version", "-V", "a"},
946 {"--user-dependencies", "-MM", 0},
947 {"--verbose", "-v", 0},
948 {"--version", "-dumpversion", 0},
949 {"--warn-", "-W", "*j"},
950 {"--write-dependencies", "-MD", 0},
951 {"--write-user-dependencies", "-MMD", 0},
952 {"--", "-f", "*j"}
955 /* Translate the options described by *ARGCP and *ARGVP.
956 Make a new vector and store it back in *ARGVP,
957 and store its length in *ARGVC. */
959 static void
960 translate_options (argcp, argvp)
961 int *argcp;
962 const char *const **argvp;
964 int i;
965 int argc = *argcp;
966 const char *const *argv = *argvp;
967 const char **newv =
968 (const char **) xmalloc ((argc + 2) * 2 * sizeof (const char *));
969 int newindex = 0;
971 i = 0;
972 newv[newindex++] = argv[i++];
974 while (i < argc)
976 /* Translate -- options. */
977 if (argv[i][0] == '-' && argv[i][1] == '-')
979 size_t j;
980 /* Find a mapping that applies to this option. */
981 for (j = 0; j < ARRAY_SIZE (option_map); j++)
983 size_t optlen = strlen (option_map[j].name);
984 size_t arglen = strlen (argv[i]);
985 size_t complen = arglen > optlen ? optlen : arglen;
986 const char *arginfo = option_map[j].arg_info;
988 if (arginfo == 0)
989 arginfo = "";
991 if (!strncmp (argv[i], option_map[j].name, complen))
993 const char *arg = 0;
995 if (arglen < optlen)
997 size_t k;
998 for (k = j + 1; k < ARRAY_SIZE (option_map); k++)
999 if (strlen (option_map[k].name) >= arglen
1000 && !strncmp (argv[i], option_map[k].name, arglen))
1002 error ("Ambiguous abbreviation %s", argv[i]);
1003 break;
1006 if (k != ARRAY_SIZE (option_map))
1007 break;
1010 if (arglen > optlen)
1012 /* If the option has an argument, accept that. */
1013 if (argv[i][optlen] == '=')
1014 arg = argv[i] + optlen + 1;
1016 /* If this mapping requires extra text at end of name,
1017 accept that as "argument". */
1018 else if (strchr (arginfo, '*') != 0)
1019 arg = argv[i] + optlen;
1021 /* Otherwise, extra text at end means mismatch.
1022 Try other mappings. */
1023 else
1024 continue;
1027 else if (strchr (arginfo, '*') != 0)
1029 error ("Incomplete `%s' option", option_map[j].name);
1030 break;
1033 /* Handle arguments. */
1034 if (strchr (arginfo, 'a') != 0)
1036 if (arg == 0)
1038 if (i + 1 == argc)
1040 error ("Missing argument to `%s' option",
1041 option_map[j].name);
1042 break;
1045 arg = argv[++i];
1048 else if (strchr (arginfo, '*') != 0)
1050 else if (strchr (arginfo, 'o') == 0)
1052 if (arg != 0)
1053 error ("Extraneous argument to `%s' option",
1054 option_map[j].name);
1055 arg = 0;
1058 /* Store the translation as one argv elt or as two. */
1059 if (arg != 0 && strchr (arginfo, 'j') != 0)
1060 newv[newindex++] = concat (option_map[j].equivalent, arg,
1061 NULL);
1062 else if (arg != 0)
1064 newv[newindex++] = option_map[j].equivalent;
1065 newv[newindex++] = arg;
1067 else
1068 newv[newindex++] = option_map[j].equivalent;
1070 break;
1073 i++;
1076 /* Handle old-fashioned options--just copy them through,
1077 with their arguments. */
1078 else if (argv[i][0] == '-')
1080 const char *p = argv[i] + 1;
1081 int c = *p;
1082 int nskip = 1;
1084 if (SWITCH_TAKES_ARG (c) > (p[1] != 0))
1085 nskip += SWITCH_TAKES_ARG (c) - (p[1] != 0);
1086 else if (WORD_SWITCH_TAKES_ARG (p))
1087 nskip += WORD_SWITCH_TAKES_ARG (p);
1088 else if ((c == 'B' || c == 'b' || c == 'V' || c == 'x')
1089 && p[1] == 0)
1090 nskip += 1;
1091 else if (! strcmp (p, "Xlinker"))
1092 nskip += 1;
1094 /* Watch out for an option at the end of the command line that
1095 is missing arguments, and avoid skipping past the end of the
1096 command line. */
1097 if (nskip + i > argc)
1098 nskip = argc - i;
1100 while (nskip > 0)
1102 newv[newindex++] = argv[i++];
1103 nskip--;
1106 else
1107 /* Ordinary operands, or +e options. */
1108 newv[newindex++] = argv[i++];
1111 newv[newindex] = 0;
1113 *argvp = newv;
1114 *argcp = newindex;
1117 static char *
1118 skip_whitespace (p)
1119 char *p;
1121 while (1)
1123 /* A fully-blank line is a delimiter in the SPEC file and shouldn't
1124 be considered whitespace. */
1125 if (p[0] == '\n' && p[1] == '\n' && p[2] == '\n')
1126 return p + 1;
1127 else if (*p == '\n' || *p == ' ' || *p == '\t')
1128 p++;
1129 else if (*p == '#')
1131 while (*p != '\n')
1132 p++;
1133 p++;
1135 else
1136 break;
1139 return p;
1141 /* Structures to keep track of prefixes to try when looking for files. */
1143 struct prefix_list
1145 char *prefix; /* String to prepend to the path. */
1146 struct prefix_list *next; /* Next in linked list. */
1147 int require_machine_suffix; /* Don't use without machine_suffix. */
1148 /* 2 means try both machine_suffix and just_machine_suffix. */
1149 int *used_flag_ptr; /* 1 if a file was found with this prefix. */
1150 int priority; /* Sort key - priority within list */
1153 struct path_prefix
1155 struct prefix_list *plist; /* List of prefixes to try */
1156 int max_len; /* Max length of a prefix in PLIST */
1157 const char *name; /* Name of this list (used in config stuff) */
1160 /* List of prefixes to try when looking for executables. */
1162 static struct path_prefix exec_prefixes = { 0, 0, "exec" };
1164 /* List of prefixes to try when looking for startup (crt0) files. */
1166 static struct path_prefix startfile_prefixes = { 0, 0, "startfile" };
1168 /* List of prefixes to try when looking for include files. */
1170 static struct path_prefix include_prefixes = { 0, 0, "include" };
1172 /* Suffix to attach to directories searched for commands.
1173 This looks like `MACHINE/VERSION/'. */
1175 static const char *machine_suffix = 0;
1177 /* Suffix to attach to directories searched for commands.
1178 This is just `MACHINE/'. */
1180 static const char *just_machine_suffix = 0;
1182 /* Adjusted value of GCC_EXEC_PREFIX envvar. */
1184 static const char *gcc_exec_prefix;
1186 /* Default prefixes to attach to command names. */
1188 #ifdef CROSS_COMPILE /* Don't use these prefixes for a cross compiler. */
1189 #undef MD_EXEC_PREFIX
1190 #undef MD_STARTFILE_PREFIX
1191 #undef MD_STARTFILE_PREFIX_1
1192 #endif
1194 /* If no prefixes defined, use the null string, which will disable them. */
1195 #ifndef MD_EXEC_PREFIX
1196 #define MD_EXEC_PREFIX ""
1197 #endif
1198 #ifndef MD_STARTFILE_PREFIX
1199 #define MD_STARTFILE_PREFIX ""
1200 #endif
1201 #ifndef MD_STARTFILE_PREFIX_1
1202 #define MD_STARTFILE_PREFIX_1 ""
1203 #endif
1205 /* Supply defaults for the standard prefixes. */
1207 #ifndef STANDARD_EXEC_PREFIX
1208 #define STANDARD_EXEC_PREFIX "/usr/local/lib/gcc-lib/"
1209 #endif
1210 #ifndef STANDARD_STARTFILE_PREFIX
1211 #define STANDARD_STARTFILE_PREFIX "/usr/local/lib/"
1212 #endif
1213 #ifndef TOOLDIR_BASE_PREFIX
1214 #define TOOLDIR_BASE_PREFIX "/usr/local/"
1215 #endif
1216 #ifndef STANDARD_BINDIR_PREFIX
1217 #define STANDARD_BINDIR_PREFIX "/usr/local/bin"
1218 #endif
1220 static const char *standard_exec_prefix = STANDARD_EXEC_PREFIX;
1221 static const char *standard_exec_prefix_1 = "/usr/lib/gcc/";
1222 static const char *md_exec_prefix = MD_EXEC_PREFIX;
1224 static const char *md_startfile_prefix = MD_STARTFILE_PREFIX;
1225 static const char *md_startfile_prefix_1 = MD_STARTFILE_PREFIX_1;
1226 static const char *standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
1227 static const char *standard_startfile_prefix_1 = "/lib/";
1228 static const char *standard_startfile_prefix_2 = "/usr/lib/";
1230 static const char *tooldir_base_prefix = TOOLDIR_BASE_PREFIX;
1231 static const char *tooldir_prefix;
1233 static const char *standard_bindir_prefix = STANDARD_BINDIR_PREFIX;
1235 /* Subdirectory to use for locating libraries. Set by
1236 set_multilib_dir based on the compilation options. */
1238 static const char *multilib_dir;
1240 /* Structure to keep track of the specs that have been defined so far.
1241 These are accessed using %(specname) or %[specname] in a compiler
1242 or link spec. */
1244 struct spec_list
1246 /* The following 2 fields must be first */
1247 /* to allow EXTRA_SPECS to be initialized */
1248 const char *name; /* name of the spec. */
1249 const char *ptr; /* available ptr if no static pointer */
1251 /* The following fields are not initialized */
1252 /* by EXTRA_SPECS */
1253 const char **ptr_spec; /* pointer to the spec itself. */
1254 struct spec_list *next; /* Next spec in linked list. */
1255 int name_len; /* length of the name */
1256 int alloc_p; /* whether string was allocated */
1259 #define INIT_STATIC_SPEC(NAME,PTR) \
1260 { NAME, NULL_PTR, PTR, (struct spec_list *) 0, sizeof (NAME) - 1, 0 }
1262 /* List of statically defined specs. */
1263 static struct spec_list static_specs[] =
1265 INIT_STATIC_SPEC ("asm", &asm_spec),
1266 INIT_STATIC_SPEC ("asm_final", &asm_final_spec),
1267 INIT_STATIC_SPEC ("asm_options", &asm_options),
1268 INIT_STATIC_SPEC ("invoke_as", &invoke_as),
1269 INIT_STATIC_SPEC ("cpp", &cpp_spec),
1270 INIT_STATIC_SPEC ("cpp_options", &cpp_options),
1271 INIT_STATIC_SPEC ("trad_capable_cpp", &trad_capable_cpp),
1272 INIT_STATIC_SPEC ("cc1", &cc1_spec),
1273 INIT_STATIC_SPEC ("cc1_options", &cc1_options),
1274 INIT_STATIC_SPEC ("cc1plus", &cc1plus_spec),
1275 INIT_STATIC_SPEC ("endfile", &endfile_spec),
1276 INIT_STATIC_SPEC ("link", &link_spec),
1277 INIT_STATIC_SPEC ("lib", &lib_spec),
1278 INIT_STATIC_SPEC ("libgcc", &libgcc_spec),
1279 INIT_STATIC_SPEC ("startfile", &startfile_spec),
1280 INIT_STATIC_SPEC ("switches_need_spaces", &switches_need_spaces),
1281 INIT_STATIC_SPEC ("signed_char", &signed_char_spec),
1282 INIT_STATIC_SPEC ("predefines", &cpp_predefines),
1283 INIT_STATIC_SPEC ("cross_compile", &cross_compile),
1284 INIT_STATIC_SPEC ("version", &compiler_version),
1285 INIT_STATIC_SPEC ("multilib", &multilib_select),
1286 INIT_STATIC_SPEC ("multilib_defaults", &multilib_defaults),
1287 INIT_STATIC_SPEC ("multilib_extra", &multilib_extra),
1288 INIT_STATIC_SPEC ("multilib_matches", &multilib_matches),
1289 INIT_STATIC_SPEC ("multilib_exclusions", &multilib_exclusions),
1290 INIT_STATIC_SPEC ("linker", &linker_name_spec),
1291 INIT_STATIC_SPEC ("link_libgcc", &link_libgcc_spec),
1292 INIT_STATIC_SPEC ("md_exec_prefix", &md_exec_prefix),
1293 INIT_STATIC_SPEC ("md_startfile_prefix", &md_startfile_prefix),
1294 INIT_STATIC_SPEC ("md_startfile_prefix_1", &md_startfile_prefix_1),
1297 #ifdef EXTRA_SPECS /* additional specs needed */
1298 /* Structure to keep track of just the first two args of a spec_list.
1299 That is all that the EXTRA_SPECS macro gives us. */
1300 struct spec_list_1
1302 const char *name;
1303 const char *ptr;
1306 static struct spec_list_1 extra_specs_1[] = { EXTRA_SPECS };
1307 static struct spec_list *extra_specs = (struct spec_list *) 0;
1308 #endif
1310 /* List of dynamically allocates specs that have been defined so far. */
1312 static struct spec_list *specs = (struct spec_list *) 0;
1314 /* Add appropriate libgcc specs to OBSTACK, taking into account
1315 various permutations of -shared-libgcc, -shared, and such. */
1317 static void
1318 init_gcc_specs (obstack, shared_name, static_name)
1319 struct obstack *obstack;
1320 const char *shared_name;
1321 const char *static_name;
1323 char buffer[128];
1325 /* If we see -shared-libgcc, then use the shared version. */
1326 sprintf (buffer, "%%{shared-libgcc:%s}", shared_name);
1327 obstack_grow (obstack, buffer, strlen (buffer));
1328 /* If we see -static-libgcc, then use the static version. */
1329 sprintf (buffer, "%%{static-libgcc:%s}", static_name);
1330 obstack_grow (obstack, buffer, strlen (buffer));
1331 /* Otherwise, if we see -shared, then use the shared version. */
1332 sprintf (buffer,
1333 "%%{!shared-libgcc:%%{!static-libgcc:%%{shared:%s}}}",
1334 shared_name);
1335 obstack_grow (obstack, buffer, strlen (buffer));
1336 /* Otherwise, use the static version. */
1337 sprintf (buffer,
1338 "%%{!shared-libgcc:%%{!static-libgcc:%%{!shared:%s}}}",
1339 static_name);
1340 obstack_grow (obstack, buffer, strlen (buffer));
1343 /* Initialize the specs lookup routines. */
1345 static void
1346 init_spec ()
1348 struct spec_list *next = (struct spec_list *) 0;
1349 struct spec_list *sl = (struct spec_list *) 0;
1350 int i;
1352 if (specs)
1353 return; /* Already initialized. */
1355 if (verbose_flag)
1356 notice ("Using builtin specs.\n");
1358 #ifdef EXTRA_SPECS
1359 extra_specs = (struct spec_list *)
1360 xcalloc (sizeof (struct spec_list), ARRAY_SIZE (extra_specs_1));
1362 for (i = ARRAY_SIZE (extra_specs_1) - 1; i >= 0; i--)
1364 sl = &extra_specs[i];
1365 sl->name = extra_specs_1[i].name;
1366 sl->ptr = extra_specs_1[i].ptr;
1367 sl->next = next;
1368 sl->name_len = strlen (sl->name);
1369 sl->ptr_spec = &sl->ptr;
1370 next = sl;
1372 #endif
1374 for (i = ARRAY_SIZE (static_specs) - 1; i >= 0; i--)
1376 sl = &static_specs[i];
1377 sl->next = next;
1378 next = sl;
1381 #ifdef ENABLE_SHARED_LIBGCC
1382 /* ??? If neither -shared-libgcc nor --static-libgcc was
1383 seen, then we should be making an educated guess. Some proposed
1384 heuristics for ELF include:
1386 (1) If "-Wl,--export-dynamic", then it's a fair bet that the
1387 program will be doing dynamic loading, which will likely
1388 need the shared libgcc.
1390 (2) If "-ldl", then it's also a fair bet that we're doing
1391 dynamic loading.
1393 (3) For each ET_DYN we're linking against (either through -lfoo
1394 or /some/path/foo.so), check to see whether it or one of
1395 its dependancies depends on a shared libgcc.
1397 (4) If "-shared"
1399 If the runtime is fixed to look for program headers instead
1400 of calling __register_frame_info at all, for each object,
1401 use the shared libgcc if any EH symbol referenced.
1403 If crtstuff is fixed to not invoke __register_frame_info
1404 automatically, for each object, use the shared libgcc if
1405 any non-empty unwind section found.
1407 Doing any of this probably requires invoking an external program to
1408 do the actual object file scanning. */
1410 const char *p = libgcc_spec;
1411 int in_sep = 1;
1413 /* Transform the extant libgcc_spec into one that uses the shared libgcc
1414 when given the proper command line arguments. */
1415 while (*p)
1417 if (in_sep && *p == '-' && strncmp (p, "-lgcc", 5) == 0)
1419 init_gcc_specs (&obstack,
1420 #ifdef NO_SHARED_LIBGCC_MULTILIB
1421 "-lgcc_s"
1422 #else
1423 "-lgcc_s%M"
1424 #endif
1426 "-lgcc");
1427 p += 5;
1428 in_sep = 0;
1430 else if (in_sep && *p == 'l' && strncmp (p, "libgcc.a%s", 10) == 0)
1432 /* Ug. We don't know shared library extensions. Hope that
1433 systems that use this form don't do shared libraries. */
1434 init_gcc_specs (&obstack,
1435 #ifdef NO_SHARED_LIBGCC_MULTILIB
1436 "-lgcc_s"
1437 #else
1438 "-lgcc_s%M"
1439 #endif
1441 "libgcc.a%s");
1442 p += 10;
1443 in_sep = 0;
1445 else
1447 obstack_1grow (&obstack, *p);
1448 in_sep = (*p == ' ');
1449 p += 1;
1453 obstack_1grow (&obstack, '\0');
1454 libgcc_spec = obstack_finish (&obstack);
1456 #endif
1458 specs = sl;
1461 /* Change the value of spec NAME to SPEC. If SPEC is empty, then the spec is
1462 removed; If the spec starts with a + then SPEC is added to the end of the
1463 current spec. */
1465 static void
1466 set_spec (name, spec)
1467 const char *name;
1468 const char *spec;
1470 struct spec_list *sl;
1471 const char *old_spec;
1472 int name_len = strlen (name);
1473 int i;
1475 /* If this is the first call, initialize the statically allocated specs. */
1476 if (!specs)
1478 struct spec_list *next = (struct spec_list *) 0;
1479 for (i = ARRAY_SIZE (static_specs) - 1; i >= 0; i--)
1481 sl = &static_specs[i];
1482 sl->next = next;
1483 next = sl;
1485 specs = sl;
1488 /* See if the spec already exists. */
1489 for (sl = specs; sl; sl = sl->next)
1490 if (name_len == sl->name_len && !strcmp (sl->name, name))
1491 break;
1493 if (!sl)
1495 /* Not found - make it. */
1496 sl = (struct spec_list *) xmalloc (sizeof (struct spec_list));
1497 sl->name = xstrdup (name);
1498 sl->name_len = name_len;
1499 sl->ptr_spec = &sl->ptr;
1500 sl->alloc_p = 0;
1501 *(sl->ptr_spec) = "";
1502 sl->next = specs;
1503 specs = sl;
1506 old_spec = *(sl->ptr_spec);
1507 *(sl->ptr_spec) = ((spec[0] == '+' && ISSPACE ((unsigned char)spec[1]))
1508 ? concat (old_spec, spec + 1, NULL)
1509 : xstrdup (spec));
1511 #ifdef DEBUG_SPECS
1512 if (verbose_flag)
1513 notice ("Setting spec %s to '%s'\n\n", name, *(sl->ptr_spec));
1514 #endif
1516 /* Free the old spec. */
1517 if (old_spec && sl->alloc_p)
1518 free ((PTR) old_spec);
1520 sl->alloc_p = 1;
1523 /* Accumulate a command (program name and args), and run it. */
1525 /* Vector of pointers to arguments in the current line of specifications. */
1527 static const char **argbuf;
1529 /* Number of elements allocated in argbuf. */
1531 static int argbuf_length;
1533 /* Number of elements in argbuf currently in use (containing args). */
1535 static int argbuf_index;
1537 /* This is the list of suffixes and codes (%g/%u/%U/%j) and the associated
1538 temp file. If the HOST_BIT_BUCKET is used for %j, no entry is made for
1539 it here. */
1541 static struct temp_name {
1542 const char *suffix; /* suffix associated with the code. */
1543 int length; /* strlen (suffix). */
1544 int unique; /* Indicates whether %g or %u/%U was used. */
1545 const char *filename; /* associated filename. */
1546 int filename_length; /* strlen (filename). */
1547 struct temp_name *next;
1548 } *temp_names;
1550 /* Number of commands executed so far. */
1552 static int execution_count;
1554 /* Number of commands that exited with a signal. */
1556 static int signal_count;
1558 /* Name with which this program was invoked. */
1560 static const char *programname;
1562 /* Clear out the vector of arguments (after a command is executed). */
1564 static void
1565 clear_args ()
1567 argbuf_index = 0;
1570 /* Add one argument to the vector at the end.
1571 This is done when a space is seen or at the end of the line.
1572 If DELETE_ALWAYS is nonzero, the arg is a filename
1573 and the file should be deleted eventually.
1574 If DELETE_FAILURE is nonzero, the arg is a filename
1575 and the file should be deleted if this compilation fails. */
1577 static void
1578 store_arg (arg, delete_always, delete_failure)
1579 const char *arg;
1580 int delete_always, delete_failure;
1582 if (argbuf_index + 1 == argbuf_length)
1583 argbuf
1584 = (const char **) xrealloc (argbuf,
1585 (argbuf_length *= 2) * sizeof (const char *));
1587 argbuf[argbuf_index++] = arg;
1588 argbuf[argbuf_index] = 0;
1590 if (delete_always || delete_failure)
1591 record_temp_file (arg, delete_always, delete_failure);
1594 /* Load specs from a file name named FILENAME, replacing occurances of
1595 various different types of line-endings, \r\n, \n\r and just \r, with
1596 a single \n. */
1598 static char *
1599 load_specs (filename)
1600 const char *filename;
1602 int desc;
1603 int readlen;
1604 struct stat statbuf;
1605 char *buffer;
1606 char *buffer_p;
1607 char *specs;
1608 char *specs_p;
1610 if (verbose_flag)
1611 notice ("Reading specs from %s\n", filename);
1613 /* Open and stat the file. */
1614 desc = open (filename, O_RDONLY, 0);
1615 if (desc < 0)
1616 pfatal_with_name (filename);
1617 if (stat (filename, &statbuf) < 0)
1618 pfatal_with_name (filename);
1620 /* Read contents of file into BUFFER. */
1621 buffer = xmalloc ((unsigned) statbuf.st_size + 1);
1622 readlen = read (desc, buffer, (unsigned) statbuf.st_size);
1623 if (readlen < 0)
1624 pfatal_with_name (filename);
1625 buffer[readlen] = 0;
1626 close (desc);
1628 specs = xmalloc (readlen + 1);
1629 specs_p = specs;
1630 for (buffer_p = buffer; buffer_p && *buffer_p; buffer_p++)
1632 int skip = 0;
1633 char c = *buffer_p;
1634 if (c == '\r')
1636 if (buffer_p > buffer && *(buffer_p - 1) == '\n') /* \n\r */
1637 skip = 1;
1638 else if (*(buffer_p + 1) == '\n') /* \r\n */
1639 skip = 1;
1640 else /* \r */
1641 c = '\n';
1643 if (! skip)
1644 *specs_p++ = c;
1646 *specs_p = '\0';
1648 free (buffer);
1649 return (specs);
1652 /* Read compilation specs from a file named FILENAME,
1653 replacing the default ones.
1655 A suffix which starts with `*' is a definition for
1656 one of the machine-specific sub-specs. The "suffix" should be
1657 *asm, *cc1, *cpp, *link, *startfile, *signed_char, etc.
1658 The corresponding spec is stored in asm_spec, etc.,
1659 rather than in the `compilers' vector.
1661 Anything invalid in the file is a fatal error. */
1663 static void
1664 read_specs (filename, main_p)
1665 const char *filename;
1666 int main_p;
1668 char *buffer;
1669 register char *p;
1671 buffer = load_specs (filename);
1673 /* Scan BUFFER for specs, putting them in the vector. */
1674 p = buffer;
1675 while (1)
1677 char *suffix;
1678 char *spec;
1679 char *in, *out, *p1, *p2, *p3;
1681 /* Advance P in BUFFER to the next nonblank nocomment line. */
1682 p = skip_whitespace (p);
1683 if (*p == 0)
1684 break;
1686 /* Is this a special command that starts with '%'? */
1687 /* Don't allow this for the main specs file, since it would
1688 encourage people to overwrite it. */
1689 if (*p == '%' && !main_p)
1691 p1 = p;
1692 while (*p && *p != '\n')
1693 p++;
1695 /* Skip '\n'. */
1696 p++;
1698 if (!strncmp (p1, "%include", sizeof ("%include") - 1)
1699 && (p1[sizeof "%include" - 1] == ' '
1700 || p1[sizeof "%include" - 1] == '\t'))
1702 char *new_filename;
1704 p1 += sizeof ("%include");
1705 while (*p1 == ' ' || *p1 == '\t')
1706 p1++;
1708 if (*p1++ != '<' || p[-2] != '>')
1709 fatal ("specs %%include syntax malformed after %ld characters",
1710 (long) (p1 - buffer + 1));
1712 p[-2] = '\0';
1713 new_filename = find_a_file (&startfile_prefixes, p1, R_OK);
1714 read_specs (new_filename ? new_filename : p1, FALSE);
1715 continue;
1717 else if (!strncmp (p1, "%include_noerr", sizeof "%include_noerr" - 1)
1718 && (p1[sizeof "%include_noerr" - 1] == ' '
1719 || p1[sizeof "%include_noerr" - 1] == '\t'))
1721 char *new_filename;
1723 p1 += sizeof "%include_noerr";
1724 while (*p1 == ' ' || *p1 == '\t')
1725 p1++;
1727 if (*p1++ != '<' || p[-2] != '>')
1728 fatal ("specs %%include syntax malformed after %ld characters",
1729 (long) (p1 - buffer + 1));
1731 p[-2] = '\0';
1732 new_filename = find_a_file (&startfile_prefixes, p1, R_OK);
1733 if (new_filename)
1734 read_specs (new_filename, FALSE);
1735 else if (verbose_flag)
1736 notice ("Could not find specs file %s\n", p1);
1737 continue;
1739 else if (!strncmp (p1, "%rename", sizeof "%rename" - 1)
1740 && (p1[sizeof "%rename" - 1] == ' '
1741 || p1[sizeof "%rename" - 1] == '\t'))
1743 int name_len;
1744 struct spec_list *sl;
1746 /* Get original name */
1747 p1 += sizeof "%rename";
1748 while (*p1 == ' ' || *p1 == '\t')
1749 p1++;
1751 if (! ISALPHA ((unsigned char) *p1))
1752 fatal ("specs %%rename syntax malformed after %ld characters",
1753 (long) (p1 - buffer));
1755 p2 = p1;
1756 while (*p2 && !ISSPACE ((unsigned char) *p2))
1757 p2++;
1759 if (*p2 != ' ' && *p2 != '\t')
1760 fatal ("specs %%rename syntax malformed after %ld characters",
1761 (long) (p2 - buffer));
1763 name_len = p2 - p1;
1764 *p2++ = '\0';
1765 while (*p2 == ' ' || *p2 == '\t')
1766 p2++;
1768 if (! ISALPHA ((unsigned char) *p2))
1769 fatal ("specs %%rename syntax malformed after %ld characters",
1770 (long) (p2 - buffer));
1772 /* Get new spec name. */
1773 p3 = p2;
1774 while (*p3 && !ISSPACE ((unsigned char) *p3))
1775 p3++;
1777 if (p3 != p - 1)
1778 fatal ("specs %%rename syntax malformed after %ld characters",
1779 (long) (p3 - buffer));
1780 *p3 = '\0';
1782 for (sl = specs; sl; sl = sl->next)
1783 if (name_len == sl->name_len && !strcmp (sl->name, p1))
1784 break;
1786 if (!sl)
1787 fatal ("specs %s spec was not found to be renamed", p1);
1789 if (strcmp (p1, p2) == 0)
1790 continue;
1792 if (verbose_flag)
1794 notice ("rename spec %s to %s\n", p1, p2);
1795 #ifdef DEBUG_SPECS
1796 notice ("spec is '%s'\n\n", *(sl->ptr_spec));
1797 #endif
1800 set_spec (p2, *(sl->ptr_spec));
1801 if (sl->alloc_p)
1802 free ((PTR) *(sl->ptr_spec));
1804 *(sl->ptr_spec) = "";
1805 sl->alloc_p = 0;
1806 continue;
1808 else
1809 fatal ("specs unknown %% command after %ld characters",
1810 (long) (p1 - buffer));
1813 /* Find the colon that should end the suffix. */
1814 p1 = p;
1815 while (*p1 && *p1 != ':' && *p1 != '\n')
1816 p1++;
1818 /* The colon shouldn't be missing. */
1819 if (*p1 != ':')
1820 fatal ("specs file malformed after %ld characters",
1821 (long) (p1 - buffer));
1823 /* Skip back over trailing whitespace. */
1824 p2 = p1;
1825 while (p2 > buffer && (p2[-1] == ' ' || p2[-1] == '\t'))
1826 p2--;
1828 /* Copy the suffix to a string. */
1829 suffix = save_string (p, p2 - p);
1830 /* Find the next line. */
1831 p = skip_whitespace (p1 + 1);
1832 if (p[1] == 0)
1833 fatal ("specs file malformed after %ld characters",
1834 (long) (p - buffer));
1836 p1 = p;
1837 /* Find next blank line or end of string. */
1838 while (*p1 && !(*p1 == '\n' && (p1[1] == '\n' || p1[1] == '\0')))
1839 p1++;
1841 /* Specs end at the blank line and do not include the newline. */
1842 spec = save_string (p, p1 - p);
1843 p = p1;
1845 /* Delete backslash-newline sequences from the spec. */
1846 in = spec;
1847 out = spec;
1848 while (*in != 0)
1850 if (in[0] == '\\' && in[1] == '\n')
1851 in += 2;
1852 else if (in[0] == '#')
1853 while (*in && *in != '\n')
1854 in++;
1856 else
1857 *out++ = *in++;
1859 *out = 0;
1861 if (suffix[0] == '*')
1863 if (! strcmp (suffix, "*link_command"))
1864 link_command_spec = spec;
1865 else
1866 set_spec (suffix + 1, spec);
1868 else
1870 /* Add this pair to the vector. */
1871 compilers
1872 = ((struct compiler *)
1873 xrealloc (compilers,
1874 (n_compilers + 2) * sizeof (struct compiler)));
1876 compilers[n_compilers].suffix = suffix;
1877 compilers[n_compilers].spec = spec;
1878 n_compilers++;
1879 memset (&compilers[n_compilers], 0, sizeof compilers[n_compilers]);
1882 if (*suffix == 0)
1883 link_command_spec = spec;
1886 if (link_command_spec == 0)
1887 fatal ("spec file has no spec for linking");
1890 /* Record the names of temporary files we tell compilers to write,
1891 and delete them at the end of the run. */
1893 /* This is the common prefix we use to make temp file names.
1894 It is chosen once for each run of this program.
1895 It is substituted into a spec by %g or %j.
1896 Thus, all temp file names contain this prefix.
1897 In practice, all temp file names start with this prefix.
1899 This prefix comes from the envvar TMPDIR if it is defined;
1900 otherwise, from the P_tmpdir macro if that is defined;
1901 otherwise, in /usr/tmp or /tmp;
1902 or finally the current directory if all else fails. */
1904 static const char *temp_filename;
1906 /* Length of the prefix. */
1908 static int temp_filename_length;
1910 /* Define the list of temporary files to delete. */
1912 struct temp_file
1914 const char *name;
1915 struct temp_file *next;
1918 /* Queue of files to delete on success or failure of compilation. */
1919 static struct temp_file *always_delete_queue;
1920 /* Queue of files to delete on failure of compilation. */
1921 static struct temp_file *failure_delete_queue;
1923 /* Record FILENAME as a file to be deleted automatically.
1924 ALWAYS_DELETE nonzero means delete it if all compilation succeeds;
1925 otherwise delete it in any case.
1926 FAIL_DELETE nonzero means delete it if a compilation step fails;
1927 otherwise delete it in any case. */
1929 void
1930 record_temp_file (filename, always_delete, fail_delete)
1931 const char *filename;
1932 int always_delete;
1933 int fail_delete;
1935 register char *const name = xstrdup (filename);
1937 if (always_delete)
1939 register struct temp_file *temp;
1940 for (temp = always_delete_queue; temp; temp = temp->next)
1941 if (! strcmp (name, temp->name))
1942 goto already1;
1944 temp = (struct temp_file *) xmalloc (sizeof (struct temp_file));
1945 temp->next = always_delete_queue;
1946 temp->name = name;
1947 always_delete_queue = temp;
1949 already1:;
1952 if (fail_delete)
1954 register struct temp_file *temp;
1955 for (temp = failure_delete_queue; temp; temp = temp->next)
1956 if (! strcmp (name, temp->name))
1957 goto already2;
1959 temp = (struct temp_file *) xmalloc (sizeof (struct temp_file));
1960 temp->next = failure_delete_queue;
1961 temp->name = name;
1962 failure_delete_queue = temp;
1964 already2:;
1968 /* Delete all the temporary files whose names we previously recorded. */
1970 static void
1971 delete_if_ordinary (name)
1972 const char *name;
1974 struct stat st;
1975 #ifdef DEBUG
1976 int i, c;
1978 printf ("Delete %s? (y or n) ", name);
1979 fflush (stdout);
1980 i = getchar ();
1981 if (i != '\n')
1982 while ((c = getchar ()) != '\n' && c != EOF)
1985 if (i == 'y' || i == 'Y')
1986 #endif /* DEBUG */
1987 if (stat (name, &st) >= 0 && S_ISREG (st.st_mode))
1988 if (unlink (name) < 0)
1989 if (verbose_flag)
1990 perror_with_name (name);
1993 static void
1994 delete_temp_files ()
1996 register struct temp_file *temp;
1998 for (temp = always_delete_queue; temp; temp = temp->next)
1999 delete_if_ordinary (temp->name);
2000 always_delete_queue = 0;
2003 /* Delete all the files to be deleted on error. */
2005 static void
2006 delete_failure_queue ()
2008 register struct temp_file *temp;
2010 for (temp = failure_delete_queue; temp; temp = temp->next)
2011 delete_if_ordinary (temp->name);
2014 static void
2015 clear_failure_queue ()
2017 failure_delete_queue = 0;
2020 /* Build a list of search directories from PATHS.
2021 PREFIX is a string to prepend to the list.
2022 If CHECK_DIR_P is non-zero we ensure the directory exists.
2023 This is used mostly by putenv_from_prefixes so we use `collect_obstack'.
2024 It is also used by the --print-search-dirs flag. */
2026 static char *
2027 build_search_list (paths, prefix, check_dir_p)
2028 struct path_prefix *paths;
2029 const char *prefix;
2030 int check_dir_p;
2032 int suffix_len = (machine_suffix) ? strlen (machine_suffix) : 0;
2033 int just_suffix_len
2034 = (just_machine_suffix) ? strlen (just_machine_suffix) : 0;
2035 int first_time = TRUE;
2036 struct prefix_list *pprefix;
2038 obstack_grow (&collect_obstack, prefix, strlen (prefix));
2039 obstack_1grow (&collect_obstack, '=');
2041 for (pprefix = paths->plist; pprefix != 0; pprefix = pprefix->next)
2043 int len = strlen (pprefix->prefix);
2045 if (machine_suffix
2046 && (! check_dir_p
2047 || is_directory (pprefix->prefix, machine_suffix, 0)))
2049 if (!first_time)
2050 obstack_1grow (&collect_obstack, PATH_SEPARATOR);
2052 first_time = FALSE;
2053 obstack_grow (&collect_obstack, pprefix->prefix, len);
2054 obstack_grow (&collect_obstack, machine_suffix, suffix_len);
2057 if (just_machine_suffix
2058 && pprefix->require_machine_suffix == 2
2059 && (! check_dir_p
2060 || is_directory (pprefix->prefix, just_machine_suffix, 0)))
2062 if (! first_time)
2063 obstack_1grow (&collect_obstack, PATH_SEPARATOR);
2065 first_time = FALSE;
2066 obstack_grow (&collect_obstack, pprefix->prefix, len);
2067 obstack_grow (&collect_obstack, just_machine_suffix,
2068 just_suffix_len);
2071 if (! pprefix->require_machine_suffix)
2073 if (! first_time)
2074 obstack_1grow (&collect_obstack, PATH_SEPARATOR);
2076 first_time = FALSE;
2077 obstack_grow (&collect_obstack, pprefix->prefix, len);
2081 obstack_1grow (&collect_obstack, '\0');
2082 return obstack_finish (&collect_obstack);
2085 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
2086 for collect. */
2088 static void
2089 putenv_from_prefixes (paths, env_var)
2090 struct path_prefix *paths;
2091 const char *env_var;
2093 putenv (build_search_list (paths, env_var, 1));
2096 #ifndef VMS
2098 /* FIXME: the location independence code for VMS is hairier than this,
2099 and hasn't been written. */
2101 /* Split a filename into component directories. */
2103 static char **
2104 split_directories (name, ptr_num_dirs)
2105 const char *name;
2106 int *ptr_num_dirs;
2108 int num_dirs = 0;
2109 char **dirs;
2110 const char *p, *q;
2111 int ch;
2113 /* Count the number of directories. Special case MSDOS disk names as part
2114 of the initial directory. */
2115 p = name;
2116 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
2117 if (name[1] == ':' && IS_DIR_SEPARATOR (name[2]))
2119 p += 3;
2120 num_dirs++;
2122 #endif /* HAVE_DOS_BASED_FILE_SYSTEM */
2124 while ((ch = *p++) != '\0')
2126 if (IS_DIR_SEPARATOR (ch))
2128 num_dirs++;
2129 while (IS_DIR_SEPARATOR (*p))
2130 p++;
2134 dirs = (char **) xmalloc (sizeof (char *) * (num_dirs + 2));
2136 /* Now copy the directory parts. */
2137 num_dirs = 0;
2138 p = name;
2139 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
2140 if (name[1] == ':' && IS_DIR_SEPARATOR (name[2]))
2142 dirs[num_dirs++] = save_string (p, 3);
2143 p += 3;
2145 #endif /* HAVE_DOS_BASED_FILE_SYSTEM */
2147 q = p;
2148 while ((ch = *p++) != '\0')
2150 if (IS_DIR_SEPARATOR (ch))
2152 while (IS_DIR_SEPARATOR (*p))
2153 p++;
2155 dirs[num_dirs++] = save_string (q, p - q);
2156 q = p;
2160 if (p - 1 - q > 0)
2161 dirs[num_dirs++] = save_string (q, p - 1 - q);
2163 dirs[num_dirs] = NULL_PTR;
2164 if (ptr_num_dirs)
2165 *ptr_num_dirs = num_dirs;
2167 return dirs;
2170 /* Release storage held by split directories. */
2172 static void
2173 free_split_directories (dirs)
2174 char **dirs;
2176 int i = 0;
2178 while (dirs[i] != NULL_PTR)
2179 free (dirs[i++]);
2181 free ((char *) dirs);
2184 /* Given three strings PROGNAME, BIN_PREFIX, PREFIX, return a string that gets
2185 to PREFIX starting with the directory portion of PROGNAME and a relative
2186 pathname of the difference between BIN_PREFIX and PREFIX.
2188 For example, if BIN_PREFIX is /alpha/beta/gamma/gcc/delta, PREFIX is
2189 /alpha/beta/gamma/omega/, and PROGNAME is /red/green/blue/gcc, then this
2190 function will return /red/green/blue/../omega.
2192 If no relative prefix can be found, return NULL. */
2194 static char *
2195 make_relative_prefix (progname, bin_prefix, prefix)
2196 const char *progname;
2197 const char *bin_prefix;
2198 const char *prefix;
2200 char **prog_dirs, **bin_dirs, **prefix_dirs;
2201 int prog_num, bin_num, prefix_num, std_loc_p;
2202 int i, n, common;
2204 prog_dirs = split_directories (progname, &prog_num);
2205 bin_dirs = split_directories (bin_prefix, &bin_num);
2207 /* If there is no full pathname, try to find the program by checking in each
2208 of the directories specified in the PATH environment variable. */
2209 if (prog_num == 1)
2211 char *temp;
2213 GET_ENV_PATH_LIST (temp, "PATH");
2214 if (temp)
2216 char *startp, *endp;
2217 char *nstore = (char *) alloca (strlen (temp) + strlen (progname) + 1);
2219 startp = endp = temp;
2220 while (1)
2222 if (*endp == PATH_SEPARATOR || *endp == 0)
2224 if (endp == startp)
2226 nstore[0] = '.';
2227 nstore[1] = DIR_SEPARATOR;
2228 nstore[2] = '\0';
2230 else
2232 strncpy (nstore, startp, endp - startp);
2233 if (! IS_DIR_SEPARATOR (endp[-1]))
2235 nstore[endp - startp] = DIR_SEPARATOR;
2236 nstore[endp - startp + 1] = 0;
2238 else
2239 nstore[endp - startp] = 0;
2241 strcat (nstore, progname);
2242 if (! access (nstore, X_OK)
2243 #ifdef HAVE_HOST_EXECUTABLE_SUFFIX
2244 || ! access (strcat (nstore, HOST_EXECUTABLE_SUFFIX), X_OK)
2245 #endif
2248 free_split_directories (prog_dirs);
2249 progname = nstore;
2250 prog_dirs = split_directories (progname, &prog_num);
2251 break;
2254 if (*endp == 0)
2255 break;
2256 endp = startp = endp + 1;
2258 else
2259 endp++;
2264 /* Remove the program name from comparison of directory names. */
2265 prog_num--;
2267 /* Determine if the compiler is installed in the standard location, and if
2268 so, we don't need to specify relative directories. Also, if argv[0]
2269 doesn't contain any directory specifiers, there is not much we can do. */
2270 std_loc_p = 0;
2271 if (prog_num == bin_num)
2273 for (i = 0; i < bin_num; i++)
2275 if (strcmp (prog_dirs[i], bin_dirs[i]) != 0)
2276 break;
2279 if (prog_num <= 0 || i == bin_num)
2281 std_loc_p = 1;
2282 free_split_directories (prog_dirs);
2283 free_split_directories (bin_dirs);
2284 prog_dirs = bin_dirs = (char **) 0;
2285 return NULL_PTR;
2289 prefix_dirs = split_directories (prefix, &prefix_num);
2291 /* Find how many directories are in common between bin_prefix & prefix. */
2292 n = (prefix_num < bin_num) ? prefix_num : bin_num;
2293 for (common = 0; common < n; common++)
2295 if (strcmp (bin_dirs[common], prefix_dirs[common]) != 0)
2296 break;
2299 /* If there are no common directories, there can be no relative prefix. */
2300 if (common == 0)
2302 free_split_directories (prog_dirs);
2303 free_split_directories (bin_dirs);
2304 free_split_directories (prefix_dirs);
2305 return NULL_PTR;
2308 /* Build up the pathnames in argv[0]. */
2309 for (i = 0; i < prog_num; i++)
2310 obstack_grow (&obstack, prog_dirs[i], strlen (prog_dirs[i]));
2312 /* Now build up the ..'s. */
2313 for (i = common; i < n; i++)
2315 obstack_grow (&obstack, DIR_UP, sizeof (DIR_UP) - 1);
2316 obstack_1grow (&obstack, DIR_SEPARATOR);
2319 /* Put in directories to move over to prefix. */
2320 for (i = common; i < prefix_num; i++)
2321 obstack_grow (&obstack, prefix_dirs[i], strlen (prefix_dirs[i]));
2323 free_split_directories (prog_dirs);
2324 free_split_directories (bin_dirs);
2325 free_split_directories (prefix_dirs);
2327 obstack_1grow (&obstack, '\0');
2328 return obstack_finish (&obstack);
2330 #endif /* VMS */
2332 /* Check whether NAME can be accessed in MODE. This is like access,
2333 except that it never considers directories to be executable. */
2335 static int
2336 access_check (name, mode)
2337 const char *name;
2338 int mode;
2340 if (mode == X_OK)
2342 struct stat st;
2344 if (stat (name, &st) < 0
2345 || S_ISDIR (st.st_mode))
2346 return -1;
2349 return access (name, mode);
2352 /* Search for NAME using the prefix list PREFIXES. MODE is passed to
2353 access to check permissions.
2354 Return 0 if not found, otherwise return its name, allocated with malloc. */
2356 static char *
2357 find_a_file (pprefix, name, mode)
2358 struct path_prefix *pprefix;
2359 const char *name;
2360 int mode;
2362 char *temp;
2363 const char *file_suffix = ((mode & X_OK) != 0 ? HOST_EXECUTABLE_SUFFIX : "");
2364 struct prefix_list *pl;
2365 int len = pprefix->max_len + strlen (name) + strlen (file_suffix) + 1;
2367 #ifdef DEFAULT_ASSEMBLER
2368 if (! strcmp (name, "as") && access (DEFAULT_ASSEMBLER, mode) == 0)
2369 return xstrdup (DEFAULT_ASSEMBLER);
2370 #endif
2372 #ifdef DEFAULT_LINKER
2373 if (! strcmp(name, "ld") && access (DEFAULT_LINKER, mode) == 0)
2374 return xstrdup (DEFAULT_LINKER);
2375 #endif
2377 if (machine_suffix)
2378 len += strlen (machine_suffix);
2380 temp = xmalloc (len);
2382 /* Determine the filename to execute (special case for absolute paths). */
2384 if (IS_ABSOLUTE_PATHNAME (name))
2386 if (access (name, mode) == 0)
2388 strcpy (temp, name);
2389 return temp;
2392 else
2393 for (pl = pprefix->plist; pl; pl = pl->next)
2395 if (machine_suffix)
2397 /* Some systems have a suffix for executable files.
2398 So try appending that first. */
2399 if (file_suffix[0] != 0)
2401 strcpy (temp, pl->prefix);
2402 strcat (temp, machine_suffix);
2403 strcat (temp, name);
2404 strcat (temp, file_suffix);
2405 if (access_check (temp, mode) == 0)
2407 if (pl->used_flag_ptr != 0)
2408 *pl->used_flag_ptr = 1;
2409 return temp;
2413 /* Now try just the name. */
2414 strcpy (temp, pl->prefix);
2415 strcat (temp, machine_suffix);
2416 strcat (temp, name);
2417 if (access_check (temp, mode) == 0)
2419 if (pl->used_flag_ptr != 0)
2420 *pl->used_flag_ptr = 1;
2421 return temp;
2425 /* Certain prefixes are tried with just the machine type,
2426 not the version. This is used for finding as, ld, etc. */
2427 if (just_machine_suffix && pl->require_machine_suffix == 2)
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, just_machine_suffix);
2435 strcat (temp, 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 strcpy (temp, pl->prefix);
2446 strcat (temp, just_machine_suffix);
2447 strcat (temp, name);
2448 if (access_check (temp, mode) == 0)
2450 if (pl->used_flag_ptr != 0)
2451 *pl->used_flag_ptr = 1;
2452 return temp;
2456 /* Certain prefixes can't be used without the machine suffix
2457 when the machine or version is explicitly specified. */
2458 if (! pl->require_machine_suffix)
2460 /* Some systems have a suffix for executable files.
2461 So try appending that first. */
2462 if (file_suffix[0] != 0)
2464 strcpy (temp, pl->prefix);
2465 strcat (temp, name);
2466 strcat (temp, file_suffix);
2467 if (access_check (temp, mode) == 0)
2469 if (pl->used_flag_ptr != 0)
2470 *pl->used_flag_ptr = 1;
2471 return temp;
2475 strcpy (temp, pl->prefix);
2476 strcat (temp, name);
2477 if (access_check (temp, mode) == 0)
2479 if (pl->used_flag_ptr != 0)
2480 *pl->used_flag_ptr = 1;
2481 return temp;
2486 free (temp);
2487 return 0;
2490 /* Ranking of prefixes in the sort list. -B prefixes are put before
2491 all others. */
2493 enum path_prefix_priority
2495 PREFIX_PRIORITY_B_OPT,
2496 PREFIX_PRIORITY_LAST
2499 /* Add an entry for PREFIX in PLIST. The PLIST is kept in assending
2500 order according to PRIORITY. Within each PRIORITY, new entries are
2501 appended.
2503 If WARN is nonzero, we will warn if no file is found
2504 through this prefix. WARN should point to an int
2505 which will be set to 1 if this entry is used.
2507 COMPONENT is the value to be passed to update_path.
2509 REQUIRE_MACHINE_SUFFIX is 1 if this prefix can't be used without
2510 the complete value of machine_suffix.
2511 2 means try both machine_suffix and just_machine_suffix. */
2513 static void
2514 add_prefix (pprefix, prefix, component, priority, require_machine_suffix, warn)
2515 struct path_prefix *pprefix;
2516 const char *prefix;
2517 const char *component;
2518 /* enum prefix_priority */ int priority;
2519 int require_machine_suffix;
2520 int *warn;
2522 struct prefix_list *pl, **prev;
2523 int len;
2525 for (prev = &pprefix->plist;
2526 (*prev) != NULL && (*prev)->priority <= priority;
2527 prev = &(*prev)->next)
2530 /* Keep track of the longest prefix */
2532 prefix = update_path (prefix, component);
2533 len = strlen (prefix);
2534 if (len > pprefix->max_len)
2535 pprefix->max_len = len;
2537 pl = (struct prefix_list *) xmalloc (sizeof (struct prefix_list));
2538 pl->prefix = save_string (prefix, len);
2539 pl->require_machine_suffix = require_machine_suffix;
2540 pl->used_flag_ptr = warn;
2541 pl->priority = priority;
2542 if (warn)
2543 *warn = 0;
2545 /* Insert after PREV */
2546 pl->next = (*prev);
2547 (*prev) = pl;
2550 /* Execute the command specified by the arguments on the current line of spec.
2551 When using pipes, this includes several piped-together commands
2552 with `|' between them.
2554 Return 0 if successful, -1 if failed. */
2556 static int
2557 execute ()
2559 int i;
2560 int n_commands; /* # of command. */
2561 char *string;
2562 struct command
2564 const char *prog; /* program name. */
2565 const char **argv; /* vector of args. */
2566 int pid; /* pid of process for this command. */
2569 struct command *commands; /* each command buffer with above info. */
2571 /* Count # of piped commands. */
2572 for (n_commands = 1, i = 0; i < argbuf_index; i++)
2573 if (strcmp (argbuf[i], "|") == 0)
2574 n_commands++;
2576 /* Get storage for each command. */
2577 commands = (struct command *) alloca (n_commands * sizeof (struct command));
2579 /* Split argbuf into its separate piped processes,
2580 and record info about each one.
2581 Also search for the programs that are to be run. */
2583 commands[0].prog = argbuf[0]; /* first command. */
2584 commands[0].argv = &argbuf[0];
2585 string = find_a_file (&exec_prefixes, commands[0].prog, X_OK);
2587 if (string)
2588 commands[0].argv[0] = string;
2590 for (n_commands = 1, i = 0; i < argbuf_index; i++)
2591 if (strcmp (argbuf[i], "|") == 0)
2592 { /* each command. */
2593 #if defined (__MSDOS__) || defined (OS2) || defined (VMS)
2594 fatal ("-pipe not supported");
2595 #endif
2596 argbuf[i] = 0; /* termination of command args. */
2597 commands[n_commands].prog = argbuf[i + 1];
2598 commands[n_commands].argv = &argbuf[i + 1];
2599 string = find_a_file (&exec_prefixes, commands[n_commands].prog, X_OK);
2600 if (string)
2601 commands[n_commands].argv[0] = string;
2602 n_commands++;
2605 argbuf[argbuf_index] = 0;
2607 /* If -v, print what we are about to do, and maybe query. */
2609 if (verbose_flag)
2611 /* For help listings, put a blank line between sub-processes. */
2612 if (print_help_list)
2613 fputc ('\n', stderr);
2615 /* Print each piped command as a separate line. */
2616 for (i = 0; i < n_commands; i++)
2618 const char *const *j;
2620 for (j = commands[i].argv; *j; j++)
2621 fprintf (stderr, " %s", *j);
2623 /* Print a pipe symbol after all but the last command. */
2624 if (i + 1 != n_commands)
2625 fprintf (stderr, " |");
2626 fprintf (stderr, "\n");
2628 fflush (stderr);
2629 #ifdef DEBUG
2630 notice ("\nGo ahead? (y or n) ");
2631 fflush (stderr);
2632 i = getchar ();
2633 if (i != '\n')
2634 while (getchar () != '\n')
2637 if (i != 'y' && i != 'Y')
2638 return 0;
2639 #endif /* DEBUG */
2642 /* Run each piped subprocess. */
2644 for (i = 0; i < n_commands; i++)
2646 char *errmsg_fmt, *errmsg_arg;
2647 const char *string = commands[i].argv[0];
2649 /* For some bizarre reason, the second argument of execvp() is
2650 char *const *, not const char *const *. */
2651 commands[i].pid = pexecute (string, (char *const *) commands[i].argv,
2652 programname, temp_filename,
2653 &errmsg_fmt, &errmsg_arg,
2654 ((i == 0 ? PEXECUTE_FIRST : 0)
2655 | (i + 1 == n_commands ? PEXECUTE_LAST : 0)
2656 | (string == commands[i].prog
2657 ? PEXECUTE_SEARCH : 0)
2658 | (verbose_flag ? PEXECUTE_VERBOSE : 0)));
2660 if (commands[i].pid == -1)
2661 pfatal_pexecute (errmsg_fmt, errmsg_arg);
2663 if (string != commands[i].prog)
2664 free ((PTR) string);
2667 execution_count++;
2669 /* Wait for all the subprocesses to finish.
2670 We don't care what order they finish in;
2671 we know that N_COMMANDS waits will get them all.
2672 Ignore subprocesses that we don't know about,
2673 since they can be spawned by the process that exec'ed us. */
2676 int ret_code = 0;
2677 #ifdef HAVE_GETRUSAGE
2678 struct timeval d;
2679 double ut = 0.0, st = 0.0;
2680 #endif
2682 for (i = 0; i < n_commands;)
2684 int j;
2685 int status;
2686 int pid;
2688 pid = pwait (commands[i].pid, &status, 0);
2689 if (pid < 0)
2690 abort ();
2692 #ifdef HAVE_GETRUSAGE
2693 if (report_times)
2695 /* getrusage returns the total resource usage of all children
2696 up to now. Copy the previous values into prus, get the
2697 current statistics, then take the difference. */
2699 prus = rus;
2700 getrusage (RUSAGE_CHILDREN, &rus);
2701 d.tv_sec = rus.ru_utime.tv_sec - prus.ru_utime.tv_sec;
2702 d.tv_usec = rus.ru_utime.tv_usec - prus.ru_utime.tv_usec;
2703 ut = (double) d.tv_sec + (double) d.tv_usec / 1.0e6;
2705 d.tv_sec = rus.ru_stime.tv_sec - prus.ru_stime.tv_sec;
2706 d.tv_usec = rus.ru_stime.tv_usec - prus.ru_stime.tv_usec;
2707 st = (double) d.tv_sec + (double) d.tv_usec / 1.0e6;
2709 #endif
2711 for (j = 0; j < n_commands; j++)
2712 if (commands[j].pid == pid)
2714 i++;
2715 if (WIFSIGNALED (status))
2717 #ifdef SIGPIPE
2718 /* SIGPIPE is a special case. It happens in -pipe mode
2719 when the compiler dies before the preprocessor is
2720 done, or the assembler dies before the compiler is
2721 done. There's generally been an error already, and
2722 this is just fallout. So don't generate another error
2723 unless we would otherwise have succeeded. */
2724 if (WTERMSIG (status) == SIGPIPE
2725 && (signal_count || greatest_status >= MIN_FATAL_STATUS))
2727 else
2728 #endif
2729 fatal ("\
2730 Internal error: %s (program %s)\n\
2731 Please submit a full bug report.\n\
2732 See %s for instructions.",
2733 strsignal (WTERMSIG (status)), commands[j].prog,
2734 GCCBUGURL);
2735 signal_count++;
2736 ret_code = -1;
2738 else if (WIFEXITED (status)
2739 && WEXITSTATUS (status) >= MIN_FATAL_STATUS)
2741 if (WEXITSTATUS (status) > greatest_status)
2742 greatest_status = WEXITSTATUS (status);
2743 ret_code = -1;
2745 #ifdef HAVE_GETRUSAGE
2746 if (report_times && ut + st != 0)
2747 notice ("# %s %.2f %.2f\n", commands[j].prog, ut, st);
2748 #endif
2749 break;
2752 return ret_code;
2756 /* Find all the switches given to us
2757 and make a vector describing them.
2758 The elements of the vector are strings, one per switch given.
2759 If a switch uses following arguments, then the `part1' field
2760 is the switch itself and the `args' field
2761 is a null-terminated vector containing the following arguments.
2762 The `live_cond' field is:
2763 0 when initialized
2764 1 if the switch is true in a conditional spec,
2765 -1 if false (overridden by a later switch)
2766 -2 if this switch should be ignored (used in %{<S})
2767 The `validated' field is nonzero if any spec has looked at this switch;
2768 if it remains zero at the end of the run, it must be meaningless. */
2770 #define SWITCH_OK 0
2771 #define SWITCH_FALSE -1
2772 #define SWITCH_IGNORE -2
2773 #define SWITCH_LIVE 1
2775 struct switchstr
2777 const char *part1;
2778 const char **args;
2779 int live_cond;
2780 unsigned char validated;
2781 unsigned char ordering;
2784 static struct switchstr *switches;
2786 static int n_switches;
2788 struct infile
2790 const char *name;
2791 const char *language;
2794 /* Also a vector of input files specified. */
2796 static struct infile *infiles;
2798 static int n_infiles;
2800 /* This counts the number of libraries added by lang_specific_driver, so that
2801 we can tell if there were any user supplied any files or libraries. */
2803 static int added_libraries;
2805 /* And a vector of corresponding output files is made up later. */
2807 static const char **outfiles;
2809 /* Used to track if none of the -B paths are used. */
2810 static int warn_B;
2812 /* Used to track if standard path isn't used and -b or -V is specified. */
2813 static int warn_std;
2815 /* Gives value to pass as "warn" to add_prefix for standard prefixes. */
2816 static int *warn_std_ptr = 0;
2818 #if defined(HAVE_TARGET_OBJECT_SUFFIX) || defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
2820 /* Convert NAME to a new name if it is the standard suffix. DO_EXE
2821 is true if we should look for an executable suffix as well. */
2823 static char *
2824 convert_filename (name, do_exe)
2825 char *name;
2826 int do_exe;
2828 int i;
2829 int len;
2831 if (name == NULL)
2832 return NULL;
2834 len = strlen (name);
2836 #ifdef HAVE_TARGET_OBJECT_SUFFIX
2837 /* Convert x.o to x.obj if TARGET_OBJECT_SUFFIX is ".obj". */
2838 if (len > 2
2839 && name[len - 2] == '.'
2840 && name[len - 1] == 'o')
2842 obstack_grow (&obstack, name, len - 2);
2843 obstack_grow0 (&obstack, TARGET_OBJECT_SUFFIX, strlen (TARGET_OBJECT_SUFFIX));
2844 name = obstack_finish (&obstack);
2846 #endif
2848 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
2849 /* If there is no filetype, make it the executable suffix (which includes
2850 the "."). But don't get confused if we have just "-o". */
2851 if (! do_exe || TARGET_EXECUTABLE_SUFFIX[0] == 0 || (len == 2 && name[0] == '-'))
2852 return name;
2854 for (i = len - 1; i >= 0; i--)
2855 if (IS_DIR_SEPARATOR (name[i]))
2856 break;
2858 for (i++; i < len; i++)
2859 if (name[i] == '.')
2860 return name;
2862 obstack_grow (&obstack, name, len);
2863 obstack_grow0 (&obstack, TARGET_EXECUTABLE_SUFFIX, strlen (TARGET_EXECUTABLE_SUFFIX));
2864 name = obstack_finish (&obstack);
2865 #endif
2867 return name;
2869 #endif
2871 /* Display the command line switches accepted by gcc. */
2872 static void
2873 display_help ()
2875 printf (_("Usage: %s [options] file...\n"), programname);
2876 fputs (_("Options:\n"), stdout);
2878 fputs (_(" -pass-exit-codes Exit with highest error code from a phase\n"), stdout);
2879 fputs (_(" --help Display this information\n"), stdout);
2880 fputs (_(" --target-help Display target specific command line options\n"), stdout);
2881 if (! verbose_flag)
2882 fputs (_(" (Use '-v --help' to display command line options of sub-processes)\n"), stdout);
2883 fputs (_(" -dumpspecs Display all of the built in spec strings\n"), stdout);
2884 fputs (_(" -dumpversion Display the version of the compiler\n"), stdout);
2885 fputs (_(" -dumpmachine Display the compiler's target processor\n"), stdout);
2886 fputs (_(" -print-search-dirs Display the directories in the compiler's search path\n"), stdout);
2887 fputs (_(" -print-libgcc-file-name Display the name of the compiler's companion library\n"), stdout);
2888 fputs (_(" -print-file-name=<lib> Display the full path to library <lib>\n"), stdout);
2889 fputs (_(" -print-prog-name=<prog> Display the full path to compiler component <prog>\n"), stdout);
2890 fputs (_(" -print-multi-directory Display the root directory for versions of libgcc\n"), stdout);
2891 fputs (_("\
2892 -print-multi-lib Display the mapping between command line options and\n\
2893 multiple library search directories\n"), stdout);
2894 fputs (_(" -Wa,<options> Pass comma-separated <options> on to the assembler\n"), stdout);
2895 fputs (_(" -Wp,<options> Pass comma-separated <options> on to the preprocessor\n"), stdout);
2896 fputs (_(" -Wl,<options> Pass comma-separated <options> on to the linker\n"), stdout);
2897 fputs (_(" -Xlinker <arg> Pass <arg> on to the linker\n"), stdout);
2898 fputs (_(" -save-temps Do not delete intermediate files\n"), stdout);
2899 fputs (_(" -pipe Use pipes rather than intermediate files\n"), stdout);
2900 fputs (_(" -time Time the execution of each subprocess\n"), stdout);
2901 fputs (_(" -specs=<file> Override builtin specs with the contents of <file>\n"), stdout);
2902 fputs (_(" -std=<standard> Assume that the input sources are for <standard>\n"), stdout);
2903 fputs (_(" -B <directory> Add <directory> to the compiler's search paths\n"), stdout);
2904 fputs (_(" -b <machine> Run gcc for target <machine>, if installed\n"), stdout);
2905 fputs (_(" -V <version> Run gcc version number <version>, if installed\n"), stdout);
2906 fputs (_(" -v Display the programs invoked by the compiler\n"), stdout);
2907 fputs (_(" -E Preprocess only; do not compile, assemble or link\n"), stdout);
2908 fputs (_(" -S Compile only; do not assemble or link\n"), stdout);
2909 fputs (_(" -c Compile and assemble, but do not link\n"), stdout);
2910 fputs (_(" -o <file> Place the output into <file>\n"), stdout);
2911 fputs (_("\
2912 -x <language> Specify the language of the following input files\n\
2913 Permissable languages include: c c++ assembler none\n\
2914 'none' means revert to the default behaviour of\n\
2915 guessing the language based on the file's extension\n\
2916 "), stdout);
2918 printf (_("\
2919 \nOptions starting with -g, -f, -m, -O, -W, or --param are automatically\n\
2920 passed on to the various sub-processes invoked by %s. In order to pass\n\
2921 other options on to these processes the -W<letter> options must be used.\n\
2922 "), programname);
2924 /* The rest of the options are displayed by invocations of the various
2925 sub-processes. */
2928 static void
2929 add_preprocessor_option (option, len)
2930 const char *option;
2931 int len;
2933 n_preprocessor_options++;
2935 if (! preprocessor_options)
2936 preprocessor_options
2937 = (char **) xmalloc (n_preprocessor_options * sizeof (char *));
2938 else
2939 preprocessor_options
2940 = (char **) xrealloc (preprocessor_options,
2941 n_preprocessor_options * sizeof (char *));
2943 preprocessor_options [n_preprocessor_options - 1] =
2944 save_string (option, len);
2947 static void
2948 add_assembler_option (option, len)
2949 const char *option;
2950 int len;
2952 n_assembler_options++;
2954 if (! assembler_options)
2955 assembler_options
2956 = (char **) xmalloc (n_assembler_options * sizeof (char *));
2957 else
2958 assembler_options
2959 = (char **) xrealloc (assembler_options,
2960 n_assembler_options * sizeof (char *));
2962 assembler_options [n_assembler_options - 1] = save_string (option, len);
2965 static void
2966 add_linker_option (option, len)
2967 const char *option;
2968 int len;
2970 n_linker_options++;
2972 if (! linker_options)
2973 linker_options
2974 = (char **) xmalloc (n_linker_options * sizeof (char *));
2975 else
2976 linker_options
2977 = (char **) xrealloc (linker_options,
2978 n_linker_options * sizeof (char *));
2980 linker_options [n_linker_options - 1] = save_string (option, len);
2983 /* Create the vector `switches' and its contents.
2984 Store its length in `n_switches'. */
2986 static void
2987 process_command (argc, argv)
2988 int argc;
2989 const char *const *argv;
2991 register int i;
2992 const char *temp;
2993 char *temp1;
2994 const char *spec_lang = 0;
2995 int last_language_n_infiles;
2996 int have_c = 0;
2997 int have_o = 0;
2998 int lang_n_infiles = 0;
2999 #ifdef MODIFY_TARGET_NAME
3000 int is_modify_target_name;
3001 int j;
3002 #endif
3004 GET_ENV_PATH_LIST (gcc_exec_prefix, "GCC_EXEC_PREFIX");
3006 n_switches = 0;
3007 n_infiles = 0;
3008 added_libraries = 0;
3010 /* Figure compiler version from version string. */
3012 compiler_version = temp1 = xstrdup (version_string);
3014 for (; *temp1; ++temp1)
3016 if (*temp1 == ' ')
3018 *temp1 = '\0';
3019 break;
3023 /* Set up the default search paths. If there is no GCC_EXEC_PREFIX,
3024 see if we can create it from the pathname specified in argv[0]. */
3026 #ifndef VMS
3027 /* FIXME: make_relative_prefix doesn't yet work for VMS. */
3028 if (!gcc_exec_prefix)
3030 gcc_exec_prefix = make_relative_prefix (argv[0], standard_bindir_prefix,
3031 standard_exec_prefix);
3032 if (gcc_exec_prefix)
3033 putenv (concat ("GCC_EXEC_PREFIX=", gcc_exec_prefix, NULL));
3035 #endif
3037 if (gcc_exec_prefix)
3039 int len = strlen (gcc_exec_prefix);
3041 if (len > (int) sizeof ("/lib/gcc-lib/") - 1
3042 && (IS_DIR_SEPARATOR (gcc_exec_prefix[len-1])))
3044 temp = gcc_exec_prefix + len - sizeof ("/lib/gcc-lib/") + 1;
3045 if (IS_DIR_SEPARATOR (*temp)
3046 && strncmp (temp + 1, "lib", 3) == 0
3047 && IS_DIR_SEPARATOR (temp[4])
3048 && strncmp (temp + 5, "gcc-lib", 7) == 0)
3049 len -= sizeof ("/lib/gcc-lib/") - 1;
3052 set_std_prefix (gcc_exec_prefix, len);
3053 add_prefix (&exec_prefixes, gcc_exec_prefix, "GCC",
3054 PREFIX_PRIORITY_LAST, 0, NULL_PTR);
3055 add_prefix (&startfile_prefixes, gcc_exec_prefix, "GCC",
3056 PREFIX_PRIORITY_LAST, 0, NULL_PTR);
3059 /* COMPILER_PATH and LIBRARY_PATH have values
3060 that are lists of directory names with colons. */
3062 GET_ENV_PATH_LIST (temp, "COMPILER_PATH");
3063 if (temp)
3065 const char *startp, *endp;
3066 char *nstore = (char *) alloca (strlen (temp) + 3);
3068 startp = endp = temp;
3069 while (1)
3071 if (*endp == PATH_SEPARATOR || *endp == 0)
3073 strncpy (nstore, startp, endp - startp);
3074 if (endp == startp)
3075 strcpy (nstore, concat (".", dir_separator_str, NULL));
3076 else if (!IS_DIR_SEPARATOR (endp[-1]))
3078 nstore[endp - startp] = DIR_SEPARATOR;
3079 nstore[endp - startp + 1] = 0;
3081 else
3082 nstore[endp - startp] = 0;
3083 add_prefix (&exec_prefixes, nstore, 0,
3084 PREFIX_PRIORITY_LAST, 0, NULL_PTR);
3085 add_prefix (&include_prefixes,
3086 concat (nstore, "include", NULL),
3087 0, PREFIX_PRIORITY_LAST, 0, NULL_PTR);
3088 if (*endp == 0)
3089 break;
3090 endp = startp = endp + 1;
3092 else
3093 endp++;
3097 GET_ENV_PATH_LIST (temp, LIBRARY_PATH_ENV);
3098 if (temp && *cross_compile == '0')
3100 const char *startp, *endp;
3101 char *nstore = (char *) alloca (strlen (temp) + 3);
3103 startp = endp = temp;
3104 while (1)
3106 if (*endp == PATH_SEPARATOR || *endp == 0)
3108 strncpy (nstore, startp, endp - startp);
3109 if (endp == startp)
3110 strcpy (nstore, concat (".", dir_separator_str, NULL));
3111 else if (!IS_DIR_SEPARATOR (endp[-1]))
3113 nstore[endp - startp] = DIR_SEPARATOR;
3114 nstore[endp - startp + 1] = 0;
3116 else
3117 nstore[endp - startp] = 0;
3118 add_prefix (&startfile_prefixes, nstore, NULL_PTR,
3119 PREFIX_PRIORITY_LAST, 0, NULL_PTR);
3120 if (*endp == 0)
3121 break;
3122 endp = startp = endp + 1;
3124 else
3125 endp++;
3129 /* Use LPATH like LIBRARY_PATH (for the CMU build program). */
3130 GET_ENV_PATH_LIST (temp, "LPATH");
3131 if (temp && *cross_compile == '0')
3133 const char *startp, *endp;
3134 char *nstore = (char *) alloca (strlen (temp) + 3);
3136 startp = endp = temp;
3137 while (1)
3139 if (*endp == PATH_SEPARATOR || *endp == 0)
3141 strncpy (nstore, startp, endp - startp);
3142 if (endp == startp)
3143 strcpy (nstore, concat (".", dir_separator_str, NULL));
3144 else if (!IS_DIR_SEPARATOR (endp[-1]))
3146 nstore[endp - startp] = DIR_SEPARATOR;
3147 nstore[endp - startp + 1] = 0;
3149 else
3150 nstore[endp - startp] = 0;
3151 add_prefix (&startfile_prefixes, nstore, NULL_PTR,
3152 PREFIX_PRIORITY_LAST, 0, NULL_PTR);
3153 if (*endp == 0)
3154 break;
3155 endp = startp = endp + 1;
3157 else
3158 endp++;
3162 /* Convert new-style -- options to old-style. */
3163 translate_options (&argc, &argv);
3165 /* Do language-specific adjustment/addition of flags. */
3166 lang_specific_driver (&argc, &argv, &added_libraries);
3168 /* Scan argv twice. Here, the first time, just count how many switches
3169 there will be in their vector, and how many input files in theirs.
3170 Also parse any switches that determine the configuration name, such as -b.
3171 Here we also parse the switches that cc itself uses (e.g. -v). */
3173 for (i = 1; i < argc; i++)
3175 if (! strcmp (argv[i], "-dumpspecs"))
3177 struct spec_list *sl;
3178 init_spec ();
3179 for (sl = specs; sl; sl = sl->next)
3180 printf ("*%s:\n%s\n\n", sl->name, *(sl->ptr_spec));
3181 if (link_command_spec)
3182 printf ("*link_command:\n%s\n\n", link_command_spec);
3183 exit (0);
3185 else if (! strcmp (argv[i], "-dumpversion"))
3187 printf ("%s\n", spec_version);
3188 exit (0);
3190 else if (! strcmp (argv[i], "-dumpmachine"))
3192 printf ("%s\n", spec_machine);
3193 exit (0);
3195 else if (strcmp (argv[i], "-fhelp") == 0)
3197 /* translate_options () has turned --help into -fhelp. */
3198 print_help_list = 1;
3200 /* We will be passing a dummy file on to the sub-processes. */
3201 n_infiles++;
3202 n_switches++;
3204 add_preprocessor_option ("--help", 6);
3205 add_assembler_option ("--help", 6);
3206 add_linker_option ("--help", 6);
3208 else if (strcmp (argv[i], "-ftarget-help") == 0)
3210 /* translate_options() has turned --target-help into -ftarget-help. */
3211 target_help_flag = 1;
3213 /* We will be passing a dummy file on to the sub-processes. */
3214 n_infiles++;
3215 n_switches++;
3217 add_preprocessor_option ("--target-help", 13);
3218 add_assembler_option ("--target-help", 13);
3219 add_linker_option ("--target-help", 13);
3221 else if (! strcmp (argv[i], "-pass-exit-codes"))
3223 pass_exit_codes = 1;
3224 n_switches++;
3226 else if (! strcmp (argv[i], "-print-search-dirs"))
3227 print_search_dirs = 1;
3228 else if (! strcmp (argv[i], "-print-libgcc-file-name"))
3229 print_file_name = "libgcc.a";
3230 else if (! strncmp (argv[i], "-print-file-name=", 17))
3231 print_file_name = argv[i] + 17;
3232 else if (! strncmp (argv[i], "-print-prog-name=", 17))
3233 print_prog_name = argv[i] + 17;
3234 else if (! strcmp (argv[i], "-print-multi-lib"))
3235 print_multi_lib = 1;
3236 else if (! strcmp (argv[i], "-print-multi-directory"))
3237 print_multi_directory = 1;
3238 else if (! strncmp (argv[i], "-Wa,", 4))
3240 int prev, j;
3241 /* Pass the rest of this option to the assembler. */
3243 /* Split the argument at commas. */
3244 prev = 4;
3245 for (j = 4; argv[i][j]; j++)
3246 if (argv[i][j] == ',')
3248 add_assembler_option (argv[i] + prev, j - prev);
3249 prev = j + 1;
3252 /* Record the part after the last comma. */
3253 add_assembler_option (argv[i] + prev, j - prev);
3255 else if (! strncmp (argv[i], "-Wp,", 4))
3257 int prev, j;
3258 /* Pass the rest of this option to the preprocessor. */
3260 /* Split the argument at commas. */
3261 prev = 4;
3262 for (j = 4; argv[i][j]; j++)
3263 if (argv[i][j] == ',')
3265 add_preprocessor_option (argv[i] + prev, j - prev);
3266 prev = j + 1;
3269 /* Record the part after the last comma. */
3270 add_preprocessor_option (argv[i] + prev, j - prev);
3272 else if (argv[i][0] == '+' && argv[i][1] == 'e')
3273 /* The +e options to the C++ front-end. */
3274 n_switches++;
3275 else if (strncmp (argv[i], "-Wl,", 4) == 0)
3277 int j;
3278 /* Split the argument at commas. */
3279 for (j = 3; argv[i][j]; j++)
3280 n_infiles += (argv[i][j] == ',');
3282 else if (strcmp (argv[i], "-Xlinker") == 0)
3284 if (i + 1 == argc)
3285 fatal ("argument to `-Xlinker' is missing");
3287 n_infiles++;
3288 i++;
3290 else if (strcmp (argv[i], "-l") == 0)
3292 if (i + 1 == argc)
3293 fatal ("argument to `-l' is missing");
3295 n_infiles++;
3296 i++;
3298 else if (strncmp (argv[i], "-l", 2) == 0)
3299 n_infiles++;
3300 else if (strcmp (argv[i], "-save-temps") == 0)
3302 save_temps_flag = 1;
3303 n_switches++;
3305 else if (strcmp (argv[i], "-specs") == 0)
3307 struct user_specs *user = (struct user_specs *)
3308 xmalloc (sizeof (struct user_specs));
3309 if (++i >= argc)
3310 fatal ("argument to `-specs' is missing");
3312 user->next = (struct user_specs *) 0;
3313 user->filename = argv[i];
3314 if (user_specs_tail)
3315 user_specs_tail->next = user;
3316 else
3317 user_specs_head = user;
3318 user_specs_tail = user;
3320 else if (strncmp (argv[i], "-specs=", 7) == 0)
3322 struct user_specs *user = (struct user_specs *)
3323 xmalloc (sizeof (struct user_specs));
3324 if (strlen (argv[i]) == 7)
3325 fatal ("argument to `-specs=' is missing");
3327 user->next = (struct user_specs *) 0;
3328 user->filename = argv[i] + 7;
3329 if (user_specs_tail)
3330 user_specs_tail->next = user;
3331 else
3332 user_specs_head = user;
3333 user_specs_tail = user;
3335 else if (strcmp (argv[i], "-time") == 0)
3336 report_times = 1;
3337 else if (argv[i][0] == '-' && argv[i][1] != 0)
3339 register const char *p = &argv[i][1];
3340 register int c = *p;
3342 switch (c)
3344 case 'b':
3345 n_switches++;
3346 if (p[1] == 0 && i + 1 == argc)
3347 fatal ("argument to `-b' is missing");
3348 if (p[1] == 0)
3349 spec_machine = argv[++i];
3350 else
3351 spec_machine = p + 1;
3353 warn_std_ptr = &warn_std;
3354 break;
3356 case 'B':
3358 const char *value;
3359 if (p[1] == 0 && i + 1 == argc)
3360 fatal ("argument to `-B' is missing");
3361 if (p[1] == 0)
3362 value = argv[++i];
3363 else
3364 value = p + 1;
3366 /* As a kludge, if the arg is "[foo/]stageN/", just
3367 add "[foo/]include" to the include prefix. */
3368 int len = strlen (value);
3369 if ((len == 7
3370 || (len > 7
3371 && (IS_DIR_SEPARATOR (value[len - 8]))))
3372 && strncmp (value + len - 7, "stage", 5) == 0
3373 && ISDIGIT (value[len - 2])
3374 && (IS_DIR_SEPARATOR (value[len - 1])))
3376 if (len == 7)
3377 add_prefix (&include_prefixes, "include", NULL_PTR,
3378 PREFIX_PRIORITY_B_OPT, 0, NULL_PTR);
3379 else
3381 char *string = xmalloc (len + 1);
3382 strncpy (string, value, len-7);
3383 strcpy (string+len-7, "include");
3384 add_prefix (&include_prefixes, string, NULL_PTR,
3385 PREFIX_PRIORITY_B_OPT, 0, NULL_PTR);
3389 add_prefix (&exec_prefixes, value, NULL_PTR,
3390 PREFIX_PRIORITY_B_OPT, 0, &warn_B);
3391 add_prefix (&startfile_prefixes, value, NULL_PTR,
3392 PREFIX_PRIORITY_B_OPT, 0, &warn_B);
3393 add_prefix (&include_prefixes, concat (value, "include", NULL),
3394 NULL_PTR,
3395 PREFIX_PRIORITY_B_OPT, 0, NULL_PTR);
3396 n_switches++;
3398 break;
3400 case 'v': /* Print our subcommands and print versions. */
3401 n_switches++;
3402 /* If they do anything other than exactly `-v', don't set
3403 verbose_flag; rather, continue on to give the error. */
3404 if (p[1] != 0)
3405 break;
3406 verbose_flag++;
3407 break;
3409 case 'V':
3410 n_switches++;
3411 if (p[1] == 0 && i + 1 == argc)
3412 fatal ("argument to `-V' is missing");
3413 if (p[1] == 0)
3414 spec_version = argv[++i];
3415 else
3416 spec_version = p + 1;
3417 compiler_version = spec_version;
3418 warn_std_ptr = &warn_std;
3420 /* Validate the version number. Use the same checks
3421 done when inserting it into a spec.
3423 The format of the version string is
3424 ([^0-9]*-)?[0-9]+[.][0-9]+([.][0-9]+)?([- ].*)? */
3426 const char *v = compiler_version;
3428 /* Ignore leading non-digits. i.e. "foo-" in "foo-2.7.2". */
3429 while (! ISDIGIT (*v))
3430 v++;
3432 if (v > compiler_version && v[-1] != '-')
3433 fatal ("invalid version number format");
3435 /* Set V after the first period. */
3436 while (ISDIGIT (*v))
3437 v++;
3439 if (*v != '.')
3440 fatal ("invalid version number format");
3442 v++;
3443 while (ISDIGIT (*v))
3444 v++;
3446 if (*v != 0 && *v != ' ' && *v != '.' && *v != '-')
3447 fatal ("invalid version number format");
3449 break;
3451 case 'S':
3452 case 'c':
3453 if (p[1] == 0)
3455 have_c = 1;
3456 n_switches++;
3457 break;
3459 goto normal_switch;
3461 case 'o':
3462 have_o = 1;
3463 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
3464 if (! have_c)
3466 int skip;
3468 /* Forward scan, just in case -S or -c is specified
3469 after -o. */
3470 int j = i + 1;
3471 if (p[1] == 0)
3472 ++j;
3473 while (j < argc)
3475 if (argv[j][0] == '-')
3477 if (SWITCH_CURTAILS_COMPILATION (argv[j][1])
3478 && argv[j][2] == 0)
3480 have_c = 1;
3481 break;
3483 else if (skip = SWITCH_TAKES_ARG (argv[j][1]))
3484 j += skip - (argv[j][2] != 0);
3485 else if (skip = WORD_SWITCH_TAKES_ARG (argv[j] + 1))
3486 j += skip;
3488 j++;
3491 #endif
3492 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX) || defined(HAVE_TARGET_OBJECT_SUFFIX)
3493 if (p[1] == 0)
3494 argv[i + 1] = convert_filename (argv[i + 1], ! have_c);
3495 else
3496 argv[i] = convert_filename (argv[i], ! have_c);
3497 #endif
3498 goto normal_switch;
3500 default:
3501 normal_switch:
3503 #ifdef MODIFY_TARGET_NAME
3504 is_modify_target_name = 0;
3506 for (j = 0;
3507 j < sizeof modify_target / sizeof modify_target[0]; j++)
3508 if (! strcmp (argv[i], modify_target[j].sw))
3510 char *new_name
3511 = (char *) xmalloc (strlen (modify_target[j].str)
3512 + strlen (spec_machine));
3513 const char *p, *r;
3514 char *q;
3515 int made_addition = 0;
3517 is_modify_target_name = 1;
3518 for (p = spec_machine, q = new_name; *p != 0; )
3520 if (modify_target[j].add_del == DELETE
3521 && (! strncmp (q, modify_target[j].str,
3522 strlen (modify_target[j].str))))
3523 p += strlen (modify_target[j].str);
3524 else if (modify_target[j].add_del == ADD
3525 && ! made_addition && *p == '-')
3527 for (r = modify_target[j].str; *r != 0; )
3528 *q++ = *r++;
3529 made_addition = 1;
3532 *q++ = *p++;
3535 spec_machine = new_name;
3538 if (is_modify_target_name)
3539 break;
3540 #endif
3542 n_switches++;
3544 if (SWITCH_TAKES_ARG (c) > (p[1] != 0))
3545 i += SWITCH_TAKES_ARG (c) - (p[1] != 0);
3546 else if (WORD_SWITCH_TAKES_ARG (p))
3547 i += WORD_SWITCH_TAKES_ARG (p);
3550 else
3552 n_infiles++;
3553 lang_n_infiles++;
3557 if (have_c && have_o && lang_n_infiles > 1)
3558 fatal ("cannot specify -o with -c or -S and multiple compilations");
3560 /* Set up the search paths before we go looking for config files. */
3562 /* These come before the md prefixes so that we will find gcc's subcommands
3563 (such as cpp) rather than those of the host system. */
3564 /* Use 2 as fourth arg meaning try just the machine as a suffix,
3565 as well as trying the machine and the version. */
3566 #ifndef OS2
3567 add_prefix (&exec_prefixes, standard_exec_prefix, "GCC",
3568 PREFIX_PRIORITY_LAST, 1, warn_std_ptr);
3569 add_prefix (&exec_prefixes, standard_exec_prefix, "BINUTILS",
3570 PREFIX_PRIORITY_LAST, 2, warn_std_ptr);
3571 add_prefix (&exec_prefixes, standard_exec_prefix_1, "BINUTILS",
3572 PREFIX_PRIORITY_LAST, 2, warn_std_ptr);
3573 #endif
3575 add_prefix (&startfile_prefixes, standard_exec_prefix, "BINUTILS",
3576 PREFIX_PRIORITY_LAST, 1, warn_std_ptr);
3577 add_prefix (&startfile_prefixes, standard_exec_prefix_1, "BINUTILS",
3578 PREFIX_PRIORITY_LAST, 1, warn_std_ptr);
3580 tooldir_prefix = concat (tooldir_base_prefix, spec_machine,
3581 dir_separator_str, NULL);
3583 /* If tooldir is relative, base it on exec_prefixes. A relative
3584 tooldir lets us move the installed tree as a unit.
3586 If GCC_EXEC_PREFIX is defined, then we want to add two relative
3587 directories, so that we can search both the user specified directory
3588 and the standard place. */
3590 if (!IS_ABSOLUTE_PATHNAME (tooldir_prefix))
3592 if (gcc_exec_prefix)
3594 char *gcc_exec_tooldir_prefix
3595 = concat (gcc_exec_prefix, spec_machine, dir_separator_str,
3596 spec_version, dir_separator_str, tooldir_prefix, NULL);
3598 add_prefix (&exec_prefixes,
3599 concat (gcc_exec_tooldir_prefix, "bin",
3600 dir_separator_str, NULL),
3601 NULL_PTR, PREFIX_PRIORITY_LAST, 0, NULL_PTR);
3602 add_prefix (&startfile_prefixes,
3603 concat (gcc_exec_tooldir_prefix, "lib",
3604 dir_separator_str, NULL),
3605 NULL_PTR, PREFIX_PRIORITY_LAST, 0, NULL_PTR);
3608 tooldir_prefix = concat (standard_exec_prefix, spec_machine,
3609 dir_separator_str, spec_version,
3610 dir_separator_str, tooldir_prefix, NULL);
3613 add_prefix (&exec_prefixes,
3614 concat (tooldir_prefix, "bin", dir_separator_str, NULL),
3615 "BINUTILS", PREFIX_PRIORITY_LAST, 0, NULL_PTR);
3616 add_prefix (&startfile_prefixes,
3617 concat (tooldir_prefix, "lib", dir_separator_str, NULL),
3618 "BINUTILS", PREFIX_PRIORITY_LAST, 0, NULL_PTR);
3620 /* More prefixes are enabled in main, after we read the specs file
3621 and determine whether this is cross-compilation or not. */
3623 /* Then create the space for the vectors and scan again. */
3625 switches = ((struct switchstr *)
3626 xmalloc ((n_switches + 1) * sizeof (struct switchstr)));
3627 infiles = (struct infile *) xmalloc ((n_infiles + 1) * sizeof (struct infile));
3628 n_switches = 0;
3629 n_infiles = 0;
3630 last_language_n_infiles = -1;
3632 /* This, time, copy the text of each switch and store a pointer
3633 to the copy in the vector of switches.
3634 Store all the infiles in their vector. */
3636 for (i = 1; i < argc; i++)
3638 /* Just skip the switches that were handled by the preceding loop. */
3639 #ifdef MODIFY_TARGET_NAME
3640 is_modify_target_name = 0;
3642 for (j = 0; j < sizeof modify_target / sizeof modify_target[0]; j++)
3643 if (! strcmp (argv[i], modify_target[j].sw))
3644 is_modify_target_name = 1;
3646 if (is_modify_target_name)
3648 else
3649 #endif
3650 if (! strncmp (argv[i], "-Wa,", 4))
3652 else if (! strncmp (argv[i], "-Wp,", 4))
3654 else if (! strcmp (argv[i], "-pass-exit-codes"))
3656 else if (! strcmp (argv[i], "-print-search-dirs"))
3658 else if (! strcmp (argv[i], "-print-libgcc-file-name"))
3660 else if (! strncmp (argv[i], "-print-file-name=", 17))
3662 else if (! strncmp (argv[i], "-print-prog-name=", 17))
3664 else if (! strcmp (argv[i], "-print-multi-lib"))
3666 else if (! strcmp (argv[i], "-print-multi-directory"))
3668 else if (strcmp (argv[i], "-ftarget-help") == 0)
3670 /* Create a dummy input file, so that we can pass --target-help on to
3671 the various sub-processes. */
3672 infiles[n_infiles].language = "c";
3673 infiles[n_infiles++].name = "target-dummy";
3675 /* Preserve the --target-help switch so that it can be caught by
3676 the cc1 spec string. */
3677 switches[n_switches].part1 = "--target-help";
3678 switches[n_switches].args = 0;
3679 switches[n_switches].live_cond = SWITCH_OK;
3680 switches[n_switches].validated = 0;
3682 n_switches++;
3684 else if (strcmp (argv[i], "-fhelp") == 0)
3686 if (verbose_flag)
3688 /* Create a dummy input file, so that we can pass --help on to
3689 the various sub-processes. */
3690 infiles[n_infiles].language = "c";
3691 infiles[n_infiles++].name = "help-dummy";
3693 /* Preserve the --help switch so that it can be caught by the
3694 cc1 spec string. */
3695 switches[n_switches].part1 = "--help";
3696 switches[n_switches].args = 0;
3697 switches[n_switches].live_cond = SWITCH_OK;
3698 switches[n_switches].validated = 0;
3700 n_switches++;
3703 else if (argv[i][0] == '+' && argv[i][1] == 'e')
3705 /* Compensate for the +e options to the C++ front-end;
3706 they're there simply for cfront call-compatibility. We do
3707 some magic in default_compilers to pass them down properly.
3708 Note we deliberately start at the `+' here, to avoid passing
3709 -e0 or -e1 down into the linker. */
3710 switches[n_switches].part1 = &argv[i][0];
3711 switches[n_switches].args = 0;
3712 switches[n_switches].live_cond = SWITCH_OK;
3713 switches[n_switches].validated = 0;
3714 n_switches++;
3716 else if (strncmp (argv[i], "-Wl,", 4) == 0)
3718 int prev, j;
3719 /* Split the argument at commas. */
3720 prev = 4;
3721 for (j = 4; argv[i][j]; j++)
3722 if (argv[i][j] == ',')
3724 infiles[n_infiles].language = "*";
3725 infiles[n_infiles++].name
3726 = save_string (argv[i] + prev, j - prev);
3727 prev = j + 1;
3729 /* Record the part after the last comma. */
3730 infiles[n_infiles].language = "*";
3731 infiles[n_infiles++].name = argv[i] + prev;
3733 else if (strcmp (argv[i], "-Xlinker") == 0)
3735 infiles[n_infiles].language = "*";
3736 infiles[n_infiles++].name = argv[++i];
3738 else if (strcmp (argv[i], "-l") == 0)
3739 { /* POSIX allows separation of -l and the lib arg;
3740 canonicalize by concatenating -l with its arg */
3741 infiles[n_infiles].language = "*";
3742 infiles[n_infiles++].name = concat ("-l", argv[++i], NULL);
3744 else if (strncmp (argv[i], "-l", 2) == 0)
3746 infiles[n_infiles].language = "*";
3747 infiles[n_infiles++].name = argv[i];
3749 else if (strcmp (argv[i], "-specs") == 0)
3750 i++;
3751 else if (strncmp (argv[i], "-specs=", 7) == 0)
3753 else if (strcmp (argv[i], "-time") == 0)
3755 else if ((save_temps_flag || report_times)
3756 && strcmp (argv[i], "-pipe") == 0)
3758 /* -save-temps overrides -pipe, so that temp files are produced */
3759 if (save_temps_flag)
3760 error ("Warning: -pipe ignored because -save-temps specified");
3761 /* -time overrides -pipe because we can't get correct stats when
3762 multiple children are running at once. */
3763 else if (report_times)
3764 error ("Warning: -pipe ignored because -time specified");
3766 else if (argv[i][0] == '-' && argv[i][1] != 0)
3768 const char *p = &argv[i][1];
3769 int c = *p;
3771 if (c == 'x')
3773 if (p[1] == 0 && i + 1 == argc)
3774 fatal ("argument to `-x' is missing");
3775 if (p[1] == 0)
3776 spec_lang = argv[++i];
3777 else
3778 spec_lang = p + 1;
3779 if (! strcmp (spec_lang, "none"))
3780 /* Suppress the warning if -xnone comes after the last input
3781 file, because alternate command interfaces like g++ might
3782 find it useful to place -xnone after each input file. */
3783 spec_lang = 0;
3784 else
3785 last_language_n_infiles = n_infiles;
3786 continue;
3788 switches[n_switches].part1 = p;
3789 /* Deal with option arguments in separate argv elements. */
3790 if ((SWITCH_TAKES_ARG (c) > (p[1] != 0))
3791 || WORD_SWITCH_TAKES_ARG (p))
3793 int j = 0;
3794 int n_args = WORD_SWITCH_TAKES_ARG (p);
3796 if (n_args == 0)
3798 /* Count only the option arguments in separate argv elements. */
3799 n_args = SWITCH_TAKES_ARG (c) - (p[1] != 0);
3801 if (i + n_args >= argc)
3802 fatal ("argument to `-%s' is missing", p);
3803 switches[n_switches].args
3804 = (const char **) xmalloc ((n_args + 1) * sizeof(const char *));
3805 while (j < n_args)
3806 switches[n_switches].args[j++] = argv[++i];
3807 /* Null-terminate the vector. */
3808 switches[n_switches].args[j] = 0;
3810 else if (strchr (switches_need_spaces, c))
3812 /* On some systems, ld cannot handle some options without
3813 a space. So split the option from its argument. */
3814 char *part1 = (char *) xmalloc (2);
3815 char *tmp;
3816 part1[0] = c;
3817 part1[1] = '\0';
3819 switches[n_switches].part1 = part1;
3820 switches[n_switches].args
3821 = (const char **) xmalloc (2 * sizeof (const char *));
3822 switches[n_switches].args[0] = tmp = xmalloc (strlen (p));
3823 strcpy (tmp, &p[1]);
3824 switches[n_switches].args[1] = 0;
3826 else
3827 switches[n_switches].args = 0;
3829 switches[n_switches].live_cond = SWITCH_OK;
3830 switches[n_switches].validated = 0;
3831 switches[n_switches].ordering = 0;
3832 /* These are always valid, since gcc.c itself understands it. */
3833 if (!strcmp (p, "save-temps")
3834 || !strcmp (p, "static-libgcc")
3835 || !strcmp (p, "shared-libgcc"))
3836 switches[n_switches].validated = 1;
3837 else
3839 char ch = switches[n_switches].part1[0];
3840 if (ch == 'V' || ch == 'b' || ch == 'B')
3841 switches[n_switches].validated = 1;
3843 n_switches++;
3845 else
3847 #ifdef HAVE_TARGET_OBJECT_SUFFIX
3848 argv[i] = convert_filename (argv[i], 0);
3849 #endif
3851 if (strcmp (argv[i], "-") != 0 && access (argv[i], F_OK) < 0)
3853 perror_with_name (argv[i]);
3854 error_count++;
3856 else
3858 infiles[n_infiles].language = spec_lang;
3859 infiles[n_infiles++].name = argv[i];
3864 if (n_infiles == last_language_n_infiles && spec_lang != 0)
3865 error ("Warning: `-x %s' after last input file has no effect", spec_lang);
3867 switches[n_switches].part1 = 0;
3868 infiles[n_infiles].name = 0;
3871 /* Process a spec string, accumulating and running commands. */
3873 /* These variables describe the input file name.
3874 input_file_number is the index on outfiles of this file,
3875 so that the output file name can be stored for later use by %o.
3876 input_basename is the start of the part of the input file
3877 sans all directory names, and basename_length is the number
3878 of characters starting there excluding the suffix .c or whatever. */
3880 const char *input_filename;
3881 static int input_file_number;
3882 size_t input_filename_length;
3883 static int basename_length;
3884 static int suffixed_basename_length;
3885 static const char *input_basename;
3886 static const char *input_suffix;
3888 /* The compiler used to process the current input file. */
3889 static struct compiler *input_file_compiler;
3891 /* These are variables used within do_spec and do_spec_1. */
3893 /* Nonzero if an arg has been started and not yet terminated
3894 (with space, tab or newline). */
3895 static int arg_going;
3897 /* Nonzero means %d or %g has been seen; the next arg to be terminated
3898 is a temporary file name. */
3899 static int delete_this_arg;
3901 /* Nonzero means %w has been seen; the next arg to be terminated
3902 is the output file name of this compilation. */
3903 static int this_is_output_file;
3905 /* Nonzero means %s has been seen; the next arg to be terminated
3906 is the name of a library file and we should try the standard
3907 search dirs for it. */
3908 static int this_is_library_file;
3910 /* Nonzero means that the input of this command is coming from a pipe. */
3911 static int input_from_pipe;
3913 /* Nonnull means substitute this for any suffix when outputting a switches
3914 arguments. */
3915 static const char *suffix_subst;
3917 /* Process the spec SPEC and run the commands specified therein.
3918 Returns 0 if the spec is successfully processed; -1 if failed. */
3921 do_spec (spec)
3922 const char *spec;
3924 int value;
3926 clear_args ();
3927 arg_going = 0;
3928 delete_this_arg = 0;
3929 this_is_output_file = 0;
3930 this_is_library_file = 0;
3931 input_from_pipe = 0;
3932 suffix_subst = NULL;
3934 value = do_spec_1 (spec, 0, NULL_PTR);
3936 /* Force out any unfinished command.
3937 If -pipe, this forces out the last command if it ended in `|'. */
3938 if (value == 0)
3940 if (argbuf_index > 0 && !strcmp (argbuf[argbuf_index - 1], "|"))
3941 argbuf_index--;
3943 if (argbuf_index > 0)
3944 value = execute ();
3947 return value;
3950 /* Process the sub-spec SPEC as a portion of a larger spec.
3951 This is like processing a whole spec except that we do
3952 not initialize at the beginning and we do not supply a
3953 newline by default at the end.
3954 INSWITCH nonzero means don't process %-sequences in SPEC;
3955 in this case, % is treated as an ordinary character.
3956 This is used while substituting switches.
3957 INSWITCH nonzero also causes SPC not to terminate an argument.
3959 Value is zero unless a line was finished
3960 and the command on that line reported an error. */
3962 static int
3963 do_spec_1 (spec, inswitch, soft_matched_part)
3964 const char *spec;
3965 int inswitch;
3966 const char *soft_matched_part;
3968 register const char *p = spec;
3969 register int c;
3970 int i;
3971 const char *string;
3972 int value;
3974 while ((c = *p++))
3975 /* If substituting a switch, treat all chars like letters.
3976 Otherwise, NL, SPC, TAB and % are special. */
3977 switch (inswitch ? 'a' : c)
3979 case '\n':
3980 /* End of line: finish any pending argument,
3981 then run the pending command if one has been started. */
3982 if (arg_going)
3984 obstack_1grow (&obstack, 0);
3985 string = obstack_finish (&obstack);
3986 if (this_is_library_file)
3987 string = find_file (string);
3988 store_arg (string, delete_this_arg, this_is_output_file);
3989 if (this_is_output_file)
3990 outfiles[input_file_number] = string;
3992 arg_going = 0;
3994 if (argbuf_index > 0 && !strcmp (argbuf[argbuf_index - 1], "|"))
3996 for (i = 0; i < n_switches; i++)
3997 if (!strcmp (switches[i].part1, "pipe"))
3998 break;
4000 /* A `|' before the newline means use a pipe here,
4001 but only if -pipe was specified.
4002 Otherwise, execute now and don't pass the `|' as an arg. */
4003 if (i < n_switches)
4005 input_from_pipe = 1;
4006 switches[i].validated = 1;
4007 break;
4009 else
4010 argbuf_index--;
4013 if (argbuf_index > 0)
4015 value = execute ();
4016 if (value)
4017 return value;
4019 /* Reinitialize for a new command, and for a new argument. */
4020 clear_args ();
4021 arg_going = 0;
4022 delete_this_arg = 0;
4023 this_is_output_file = 0;
4024 this_is_library_file = 0;
4025 input_from_pipe = 0;
4026 break;
4028 case '|':
4029 /* End any pending argument. */
4030 if (arg_going)
4032 obstack_1grow (&obstack, 0);
4033 string = obstack_finish (&obstack);
4034 if (this_is_library_file)
4035 string = find_file (string);
4036 store_arg (string, delete_this_arg, this_is_output_file);
4037 if (this_is_output_file)
4038 outfiles[input_file_number] = string;
4041 /* Use pipe */
4042 obstack_1grow (&obstack, c);
4043 arg_going = 1;
4044 break;
4046 case '\t':
4047 case ' ':
4048 /* Space or tab ends an argument if one is pending. */
4049 if (arg_going)
4051 obstack_1grow (&obstack, 0);
4052 string = obstack_finish (&obstack);
4053 if (this_is_library_file)
4054 string = find_file (string);
4055 store_arg (string, delete_this_arg, this_is_output_file);
4056 if (this_is_output_file)
4057 outfiles[input_file_number] = string;
4059 /* Reinitialize for a new argument. */
4060 arg_going = 0;
4061 delete_this_arg = 0;
4062 this_is_output_file = 0;
4063 this_is_library_file = 0;
4064 break;
4066 case '%':
4067 switch (c = *p++)
4069 case 0:
4070 fatal ("Invalid specification! Bug in cc.");
4072 case 'b':
4073 obstack_grow (&obstack, input_basename, basename_length);
4074 arg_going = 1;
4075 break;
4077 case 'B':
4078 obstack_grow (&obstack, input_basename, suffixed_basename_length);
4079 arg_going = 1;
4080 break;
4082 case 'd':
4083 delete_this_arg = 2;
4084 break;
4086 /* Dump out the directories specified with LIBRARY_PATH,
4087 followed by the absolute directories
4088 that we search for startfiles. */
4089 case 'D':
4091 struct prefix_list *pl = startfile_prefixes.plist;
4092 size_t bufsize = 100;
4093 char *buffer = (char *) xmalloc (bufsize);
4094 int idx;
4096 for (; pl; pl = pl->next)
4098 #ifdef RELATIVE_PREFIX_NOT_LINKDIR
4099 /* Used on systems which record the specified -L dirs
4100 and use them to search for dynamic linking. */
4101 /* Relative directories always come from -B,
4102 and it is better not to use them for searching
4103 at run time. In particular, stage1 loses. */
4104 if (!IS_ABSOLUTE_PATHNAME (pl->prefix))
4105 continue;
4106 #endif
4107 /* Try subdirectory if there is one. */
4108 if (multilib_dir != NULL)
4110 if (machine_suffix)
4112 if (strlen (pl->prefix) + strlen (machine_suffix)
4113 >= bufsize)
4114 bufsize = (strlen (pl->prefix)
4115 + strlen (machine_suffix)) * 2 + 1;
4116 buffer = (char *) xrealloc (buffer, bufsize);
4117 strcpy (buffer, pl->prefix);
4118 strcat (buffer, machine_suffix);
4119 if (is_directory (buffer, multilib_dir, 1))
4121 do_spec_1 ("-L", 0, NULL_PTR);
4122 #ifdef SPACE_AFTER_L_OPTION
4123 do_spec_1 (" ", 0, NULL_PTR);
4124 #endif
4125 do_spec_1 (buffer, 1, NULL_PTR);
4126 do_spec_1 (multilib_dir, 1, NULL_PTR);
4127 /* Make this a separate argument. */
4128 do_spec_1 (" ", 0, NULL_PTR);
4131 if (!pl->require_machine_suffix)
4133 if (is_directory (pl->prefix, multilib_dir, 1))
4135 do_spec_1 ("-L", 0, NULL_PTR);
4136 #ifdef SPACE_AFTER_L_OPTION
4137 do_spec_1 (" ", 0, NULL_PTR);
4138 #endif
4139 do_spec_1 (pl->prefix, 1, NULL_PTR);
4140 do_spec_1 (multilib_dir, 1, NULL_PTR);
4141 /* Make this a separate argument. */
4142 do_spec_1 (" ", 0, NULL_PTR);
4146 if (machine_suffix)
4148 if (is_directory (pl->prefix, machine_suffix, 1))
4150 do_spec_1 ("-L", 0, NULL_PTR);
4151 #ifdef SPACE_AFTER_L_OPTION
4152 do_spec_1 (" ", 0, NULL_PTR);
4153 #endif
4154 do_spec_1 (pl->prefix, 1, NULL_PTR);
4155 /* Remove slash from machine_suffix. */
4156 if (strlen (machine_suffix) >= bufsize)
4157 bufsize = strlen (machine_suffix) * 2 + 1;
4158 buffer = (char *) xrealloc (buffer, bufsize);
4159 strcpy (buffer, machine_suffix);
4160 idx = strlen (buffer);
4161 if (IS_DIR_SEPARATOR (buffer[idx - 1]))
4162 buffer[idx - 1] = 0;
4163 do_spec_1 (buffer, 1, NULL_PTR);
4164 /* Make this a separate argument. */
4165 do_spec_1 (" ", 0, NULL_PTR);
4168 if (!pl->require_machine_suffix)
4170 if (is_directory (pl->prefix, "", 1))
4172 do_spec_1 ("-L", 0, NULL_PTR);
4173 #ifdef SPACE_AFTER_L_OPTION
4174 do_spec_1 (" ", 0, NULL_PTR);
4175 #endif
4176 /* Remove slash from pl->prefix. */
4177 if (strlen (pl->prefix) >= bufsize)
4178 bufsize = strlen (pl->prefix) * 2 + 1;
4179 buffer = (char *) xrealloc (buffer, bufsize);
4180 strcpy (buffer, pl->prefix);
4181 idx = strlen (buffer);
4182 if (IS_DIR_SEPARATOR (buffer[idx - 1]))
4183 buffer[idx - 1] = 0;
4184 do_spec_1 (buffer, 1, NULL_PTR);
4185 /* Make this a separate argument. */
4186 do_spec_1 (" ", 0, NULL_PTR);
4190 free (buffer);
4192 break;
4194 case 'e':
4195 /* %efoo means report an error with `foo' as error message
4196 and don't execute any more commands for this file. */
4198 const char *q = p;
4199 char *buf;
4200 while (*p != 0 && *p != '\n')
4201 p++;
4202 buf = (char *) alloca (p - q + 1);
4203 strncpy (buf, q, p - q);
4204 buf[p - q] = 0;
4205 error ("%s", buf);
4206 return -1;
4208 break;
4209 case 'n':
4210 /* %nfoo means report an notice with `foo' on stderr. */
4212 const char *q = p;
4213 char *buf;
4214 while (*p != 0 && *p != '\n')
4215 p++;
4216 buf = (char *) alloca (p - q + 1);
4217 strncpy (buf, q, p - q);
4218 buf[p - q] = 0;
4219 notice ("%s\n", buf);
4220 if (*p)
4221 p++;
4223 break;
4225 case 'j':
4227 struct stat st;
4229 /* If save_temps_flag is off, and the HOST_BIT_BUCKET is defined,
4230 and it is not a directory, and it is writable, use it.
4231 Otherwise, fall through and treat this like any other
4232 temporary file. */
4234 if ((!save_temps_flag)
4235 && (stat (HOST_BIT_BUCKET, &st) == 0) && (!S_ISDIR (st.st_mode))
4236 && (access (HOST_BIT_BUCKET, W_OK) == 0))
4238 obstack_grow (&obstack, HOST_BIT_BUCKET,
4239 strlen (HOST_BIT_BUCKET));
4240 delete_this_arg = 0;
4241 arg_going = 1;
4242 break;
4245 case 'g':
4246 case 'u':
4247 case 'U':
4248 if (save_temps_flag)
4250 obstack_grow (&obstack, input_basename, basename_length);
4251 delete_this_arg = 0;
4253 else
4255 struct temp_name *t;
4256 int suffix_length;
4257 const char *suffix = p;
4258 char *saved_suffix = NULL;
4260 while (*p == '.' || ISALPHA ((unsigned char) *p))
4261 p++;
4262 suffix_length = p - suffix;
4263 if (p[0] == '%' && p[1] == 'O')
4265 p += 2;
4266 /* We don't support extra suffix characters after %O. */
4267 if (*p == '.' || ISALPHA ((unsigned char) *p))
4268 abort ();
4269 if (suffix_length == 0)
4270 suffix = TARGET_OBJECT_SUFFIX;
4271 else
4273 saved_suffix
4274 = (char *) xmalloc (suffix_length
4275 + strlen (TARGET_OBJECT_SUFFIX));
4276 strncpy (saved_suffix, suffix, suffix_length);
4277 strcpy (saved_suffix + suffix_length,
4278 TARGET_OBJECT_SUFFIX);
4280 suffix_length += strlen (TARGET_OBJECT_SUFFIX);
4283 /* See if we already have an association of %g/%u/%U and
4284 suffix. */
4285 for (t = temp_names; t; t = t->next)
4286 if (t->length == suffix_length
4287 && strncmp (t->suffix, suffix, suffix_length) == 0
4288 && t->unique == (c != 'g'))
4289 break;
4291 /* Make a new association if needed. %u and %j require one. */
4292 if (t == 0 || c == 'u' || c == 'j')
4294 if (t == 0)
4296 t = (struct temp_name *) xmalloc (sizeof (struct temp_name));
4297 t->next = temp_names;
4298 temp_names = t;
4300 t->length = suffix_length;
4301 t->suffix = save_string (suffix, suffix_length);
4302 t->unique = (c != 'g');
4303 temp_filename = make_temp_file (t->suffix);
4304 temp_filename_length = strlen (temp_filename);
4305 t->filename = temp_filename;
4306 t->filename_length = temp_filename_length;
4309 if (saved_suffix)
4310 free (saved_suffix);
4312 obstack_grow (&obstack, t->filename, t->filename_length);
4313 delete_this_arg = 1;
4315 arg_going = 1;
4316 break;
4318 case 'i':
4319 obstack_grow (&obstack, input_filename, input_filename_length);
4320 arg_going = 1;
4321 break;
4323 case 'I':
4325 struct prefix_list *pl = include_prefixes.plist;
4327 if (gcc_exec_prefix)
4329 do_spec_1 ("-iprefix", 1, NULL_PTR);
4330 /* Make this a separate argument. */
4331 do_spec_1 (" ", 0, NULL_PTR);
4332 do_spec_1 (gcc_exec_prefix, 1, NULL_PTR);
4333 do_spec_1 (" ", 0, NULL_PTR);
4336 for (; pl; pl = pl->next)
4338 do_spec_1 ("-isystem", 1, NULL_PTR);
4339 /* Make this a separate argument. */
4340 do_spec_1 (" ", 0, NULL_PTR);
4341 do_spec_1 (pl->prefix, 1, NULL_PTR);
4342 do_spec_1 (" ", 0, NULL_PTR);
4345 break;
4347 case 'o':
4349 int max = n_infiles;
4350 max += lang_specific_extra_outfiles;
4352 for (i = 0; i < max; i++)
4353 if (outfiles[i])
4354 store_arg (outfiles[i], 0, 0);
4355 break;
4358 case 'O':
4359 obstack_grow (&obstack, TARGET_OBJECT_SUFFIX, strlen (TARGET_OBJECT_SUFFIX));
4360 arg_going = 1;
4361 break;
4363 case 's':
4364 this_is_library_file = 1;
4365 break;
4367 case 'w':
4368 this_is_output_file = 1;
4369 break;
4371 case 'W':
4373 int cur_index = argbuf_index;
4374 /* Handle the {...} following the %W. */
4375 if (*p != '{')
4376 abort ();
4377 p = handle_braces (p + 1);
4378 if (p == 0)
4379 return -1;
4380 /* If any args were output, mark the last one for deletion
4381 on failure. */
4382 if (argbuf_index != cur_index)
4383 record_temp_file (argbuf[argbuf_index - 1], 0, 1);
4384 break;
4387 /* %x{OPTION} records OPTION for %X to output. */
4388 case 'x':
4390 const char *p1 = p;
4391 char *string;
4393 /* Skip past the option value and make a copy. */
4394 if (*p != '{')
4395 abort ();
4396 while (*p++ != '}')
4398 string = save_string (p1 + 1, p - p1 - 2);
4400 /* See if we already recorded this option. */
4401 for (i = 0; i < n_linker_options; i++)
4402 if (! strcmp (string, linker_options[i]))
4404 free (string);
4405 return 0;
4408 /* This option is new; add it. */
4409 add_linker_option (string, strlen (string));
4411 break;
4413 /* Dump out the options accumulated previously using %x. */
4414 case 'X':
4415 for (i = 0; i < n_linker_options; i++)
4417 do_spec_1 (linker_options[i], 1, NULL_PTR);
4418 /* Make each accumulated option a separate argument. */
4419 do_spec_1 (" ", 0, NULL_PTR);
4421 break;
4423 /* Dump out the options accumulated previously using -Wa,. */
4424 case 'Y':
4425 for (i = 0; i < n_assembler_options; i++)
4427 do_spec_1 (assembler_options[i], 1, NULL_PTR);
4428 /* Make each accumulated option a separate argument. */
4429 do_spec_1 (" ", 0, NULL_PTR);
4431 break;
4433 /* Dump out the options accumulated previously using -Wp,. */
4434 case 'Z':
4435 for (i = 0; i < n_preprocessor_options; i++)
4437 do_spec_1 (preprocessor_options[i], 1, NULL_PTR);
4438 /* Make each accumulated option a separate argument. */
4439 do_spec_1 (" ", 0, NULL_PTR);
4441 break;
4443 /* Here are digits and numbers that just process
4444 a certain constant string as a spec. */
4446 case '1':
4447 value = do_spec_1 (cc1_spec, 0, NULL_PTR);
4448 if (value != 0)
4449 return value;
4450 break;
4452 case '2':
4453 value = do_spec_1 (cc1plus_spec, 0, NULL_PTR);
4454 if (value != 0)
4455 return value;
4456 break;
4458 case 'a':
4459 value = do_spec_1 (asm_spec, 0, NULL_PTR);
4460 if (value != 0)
4461 return value;
4462 break;
4464 case 'A':
4465 value = do_spec_1 (asm_final_spec, 0, NULL_PTR);
4466 if (value != 0)
4467 return value;
4468 break;
4470 case 'c':
4471 value = do_spec_1 (signed_char_spec, 0, NULL_PTR);
4472 if (value != 0)
4473 return value;
4474 break;
4476 case 'C':
4478 const char* spec
4479 = (input_file_compiler->cpp_spec
4480 ? input_file_compiler->cpp_spec
4481 : cpp_spec);
4482 value = do_spec_1 (spec, 0, NULL_PTR);
4483 if (value != 0)
4484 return value;
4486 break;
4488 case 'E':
4489 value = do_spec_1 (endfile_spec, 0, NULL_PTR);
4490 if (value != 0)
4491 return value;
4492 break;
4494 case 'l':
4495 value = do_spec_1 (link_spec, 0, NULL_PTR);
4496 if (value != 0)
4497 return value;
4498 break;
4500 case 'L':
4501 value = do_spec_1 (lib_spec, 0, NULL_PTR);
4502 if (value != 0)
4503 return value;
4504 break;
4506 case 'G':
4507 value = do_spec_1 (libgcc_spec, 0, NULL_PTR);
4508 if (value != 0)
4509 return value;
4510 break;
4512 case 'M':
4513 if (multilib_dir && strcmp (multilib_dir, ".") != 0)
4515 char *p;
4516 const char *q;
4517 size_t len;
4519 len = strlen (multilib_dir);
4520 obstack_blank (&obstack, len + 1);
4521 p = obstack_next_free (&obstack) - (len + 1);
4523 *p++ = '_';
4524 for (q = multilib_dir; *q ; ++q, ++p)
4525 *p = (IS_DIR_SEPARATOR (*q) ? '_' : *q);
4527 break;
4529 case 'p':
4531 char *x = (char *) alloca (strlen (cpp_predefines) + 1);
4532 char *buf = x;
4533 const char *y;
4535 /* Copy all of the -D options in CPP_PREDEFINES into BUF. */
4536 y = cpp_predefines;
4537 while (*y != 0)
4539 if (! strncmp (y, "-D", 2))
4540 /* Copy the whole option. */
4541 while (*y && *y != ' ' && *y != '\t')
4542 *x++ = *y++;
4543 else if (*y == ' ' || *y == '\t')
4544 /* Copy whitespace to the result. */
4545 *x++ = *y++;
4546 /* Don't copy other options. */
4547 else
4548 y++;
4551 *x = 0;
4553 value = do_spec_1 (buf, 0, NULL_PTR);
4554 if (value != 0)
4555 return value;
4557 break;
4559 case 'P':
4561 char *x = (char *) alloca (strlen (cpp_predefines) * 4 + 1);
4562 char *buf = x;
4563 const char *y;
4565 /* Copy all of CPP_PREDEFINES into BUF,
4566 but force them all into the reserved name space if they
4567 aren't already there. The reserved name space is all
4568 identifiers beginning with two underscores or with one
4569 underscore and a capital letter. We do the forcing by
4570 adding up to two underscores to the beginning and end
4571 of each symbol. e.g. mips, _mips, mips_, and _mips_ all
4572 become __mips__. */
4573 y = cpp_predefines;
4574 while (*y != 0)
4576 if (! strncmp (y, "-D", 2))
4578 int flag = 0;
4580 *x++ = *y++;
4581 *x++ = *y++;
4583 if (*y != '_'
4584 || (*(y + 1) != '_'
4585 && ! ISUPPER ((unsigned char) *(y + 1))))
4587 /* Stick __ at front of macro name. */
4588 if (*y != '_')
4589 *x++ = '_';
4590 *x++ = '_';
4591 /* Arrange to stick __ at the end as well. */
4592 flag = 1;
4595 /* Copy the macro name. */
4596 while (*y && *y != '=' && *y != ' ' && *y != '\t')
4597 *x++ = *y++;
4599 if (flag)
4601 if (x[-1] != '_')
4603 if (x[-2] != '_')
4604 *x++ = '_';
4605 *x++ = '_';
4609 /* Copy the value given, if any. */
4610 while (*y && *y != ' ' && *y != '\t')
4611 *x++ = *y++;
4613 else if (*y == ' ' || *y == '\t')
4614 /* Copy whitespace to the result. */
4615 *x++ = *y++;
4616 /* Don't copy -A options */
4617 else
4618 y++;
4620 *x++ = ' ';
4622 /* Copy all of CPP_PREDEFINES into BUF,
4623 but put __ after every -D. */
4624 y = cpp_predefines;
4625 while (*y != 0)
4627 if (! strncmp (y, "-D", 2))
4629 y += 2;
4631 if (*y != '_'
4632 || (*(y + 1) != '_'
4633 && ! ISUPPER ((unsigned char) *(y + 1))))
4635 /* Stick -D__ at front of macro name. */
4636 *x++ = '-';
4637 *x++ = 'D';
4638 if (*y != '_')
4639 *x++ = '_';
4640 *x++ = '_';
4642 /* Copy the macro name. */
4643 while (*y && *y != '=' && *y != ' ' && *y != '\t')
4644 *x++ = *y++;
4646 /* Copy the value given, if any. */
4647 while (*y && *y != ' ' && *y != '\t')
4648 *x++ = *y++;
4650 else
4652 /* Do not copy this macro - we have just done it before */
4653 while (*y && *y != ' ' && *y != '\t')
4654 y++;
4657 else if (*y == ' ' || *y == '\t')
4658 /* Copy whitespace to the result. */
4659 *x++ = *y++;
4660 /* Don't copy -A options. */
4661 else
4662 y++;
4664 *x++ = ' ';
4666 /* Copy all of the -A options in CPP_PREDEFINES into BUF. */
4667 y = cpp_predefines;
4668 while (*y != 0)
4670 if (! strncmp (y, "-A", 2))
4671 /* Copy the whole option. */
4672 while (*y && *y != ' ' && *y != '\t')
4673 *x++ = *y++;
4674 else if (*y == ' ' || *y == '\t')
4675 /* Copy whitespace to the result. */
4676 *x++ = *y++;
4677 /* Don't copy other options. */
4678 else
4679 y++;
4682 *x = 0;
4684 value = do_spec_1 (buf, 0, NULL_PTR);
4685 if (value != 0)
4686 return value;
4688 break;
4690 case 'S':
4691 value = do_spec_1 (startfile_spec, 0, NULL_PTR);
4692 if (value != 0)
4693 return value;
4694 break;
4696 /* Here we define characters other than letters and digits. */
4698 case '{':
4699 p = handle_braces (p);
4700 if (p == 0)
4701 return -1;
4702 break;
4704 case '%':
4705 obstack_1grow (&obstack, '%');
4706 break;
4708 case '.':
4710 unsigned len = 0;
4712 while (p[len] && p[len] != ' ' && p[len] != '%')
4713 len++;
4714 suffix_subst = save_string (p - 1, len + 1);
4715 p += len;
4717 break;
4719 case '*':
4720 if (soft_matched_part)
4722 do_spec_1 (soft_matched_part, 1, NULL_PTR);
4723 do_spec_1 (" ", 0, NULL_PTR);
4725 else
4726 /* Catch the case where a spec string contains something like
4727 '%{foo:%*}'. ie there is no * in the pattern on the left
4728 hand side of the :. */
4729 error ("Spec failure: '%%*' has not been initialised by pattern match");
4730 break;
4732 /* Process a string found as the value of a spec given by name.
4733 This feature allows individual machine descriptions
4734 to add and use their own specs.
4735 %[...] modifies -D options the way %P does;
4736 %(...) uses the spec unmodified. */
4737 case '[':
4738 error ("Warning: use of obsolete %%[ operator in specs");
4739 case '(':
4741 const char *name = p;
4742 struct spec_list *sl;
4743 int len;
4745 /* The string after the S/P is the name of a spec that is to be
4746 processed. */
4747 while (*p && *p != ')' && *p != ']')
4748 p++;
4750 /* See if it's in the list. */
4751 for (len = p - name, sl = specs; sl; sl = sl->next)
4752 if (sl->name_len == len && !strncmp (sl->name, name, len))
4754 name = *(sl->ptr_spec);
4755 #ifdef DEBUG_SPECS
4756 notice ("Processing spec %c%s%c, which is '%s'\n",
4757 c, sl->name, (c == '(') ? ')' : ']', name);
4758 #endif
4759 break;
4762 if (sl)
4764 if (c == '(')
4766 value = do_spec_1 (name, 0, NULL_PTR);
4767 if (value != 0)
4768 return value;
4770 else
4772 char *x = (char *) alloca (strlen (name) * 2 + 1);
4773 char *buf = x;
4774 const char *y = name;
4775 int flag = 0;
4777 /* Copy all of NAME into BUF, but put __ after
4778 every -D and at the end of each arg. */
4779 while (1)
4781 if (! strncmp (y, "-D", 2))
4783 *x++ = '-';
4784 *x++ = 'D';
4785 *x++ = '_';
4786 *x++ = '_';
4787 y += 2;
4788 flag = 1;
4789 continue;
4791 else if (flag
4792 && (*y == ' ' || *y == '\t' || *y == '='
4793 || *y == '}' || *y == 0))
4795 *x++ = '_';
4796 *x++ = '_';
4797 flag = 0;
4799 if (*y == 0)
4800 break;
4801 else
4802 *x++ = *y++;
4804 *x = 0;
4806 value = do_spec_1 (buf, 0, NULL_PTR);
4807 if (value != 0)
4808 return value;
4812 /* Discard the closing paren or bracket. */
4813 if (*p)
4814 p++;
4816 break;
4818 case 'v':
4820 int c1 = *p++; /* Select first or second version number. */
4821 const char *v = compiler_version;
4822 const char *q;
4823 static const char zeroc = '0';
4825 /* The format of the version string is
4826 ([^0-9]*-)?[0-9]+[.][0-9]+([.][0-9]+)?([- ].*)? */
4828 /* Ignore leading non-digits. i.e. "foo-" in "foo-2.7.2". */
4829 while (! ISDIGIT (*v))
4830 v++;
4831 if (v > compiler_version && v[-1] != '-')
4832 abort ();
4834 /* If desired, advance to second version number. */
4835 if (c1 >= '2')
4837 /* Set V after the first period. */
4838 while (ISDIGIT (*v))
4839 v++;
4840 if (*v != '.')
4841 abort ();
4842 v++;
4845 /* If desired, advance to third version number.
4846 But don't complain if it's not present */
4847 if (c1 == '3')
4849 /* Set V after the second period. */
4850 while (ISDIGIT (*v))
4851 v++;
4852 if ((*v != 0) && (*v != ' ') && (*v != '.') && (*v != '-'))
4853 abort ();
4854 if (*v != 0)
4855 v++;
4858 /* Set Q at the next period or at the end. */
4859 q = v;
4860 while (ISDIGIT (*q))
4861 q++;
4862 if (*q != 0 && q > v && *q != ' ' && *q != '.' && *q != '-')
4863 abort ();
4865 if (q > v)
4866 /* Put that part into the command. */
4867 obstack_grow (&obstack, v, q - v);
4868 else
4869 /* Default to "0" */
4870 obstack_grow (&obstack, &zeroc, 1);
4871 arg_going = 1;
4873 break;
4875 case '|':
4876 if (input_from_pipe)
4877 do_spec_1 ("-", 0, NULL_PTR);
4878 break;
4880 default:
4881 error ("Spec failure: Unrecognised spec option '%c'", c);
4882 break;
4884 break;
4886 case '\\':
4887 /* Backslash: treat next character as ordinary. */
4888 c = *p++;
4890 /* fall through */
4891 default:
4892 /* Ordinary character: put it into the current argument. */
4893 obstack_1grow (&obstack, c);
4894 arg_going = 1;
4897 /* End of string. */
4898 return 0;
4901 /* Return 0 if we call do_spec_1 and that returns -1. */
4903 static const char *
4904 handle_braces (p)
4905 register const char *p;
4907 const char *filter, *body = NULL, *endbody = NULL;
4908 int pipe_p = 0;
4909 int true_once = 0; /* If, in %{a|b:d}, at least one of a,b was seen. */
4910 int negate;
4911 int suffix;
4912 int include_blanks = 1;
4913 int elide_switch = 0;
4914 int ordered = 0;
4916 if (*p == '^')
4918 /* A '^' after the open-brace means to not give blanks before args. */
4919 include_blanks = 0;
4920 ++p;
4923 if (*p == '|')
4925 /* A `|' after the open-brace means,
4926 if the test fails, output a single minus sign rather than nothing.
4927 This is used in %{|!pipe:...}. */
4928 pipe_p = 1;
4929 ++p;
4932 if (*p == '<')
4934 /* A `<' after the open-brace means that the switch should be
4935 removed from the command-line. */
4936 elide_switch = 1;
4937 ++p;
4940 next_member:
4941 negate = suffix = 0;
4943 if (*p == '!')
4944 /* A `!' after the open-brace negates the condition:
4945 succeed if the specified switch is not present. */
4946 negate = 1, ++p;
4948 if (*p == '.')
4949 /* A `.' after the open-brace means test against the current suffix. */
4951 if (pipe_p)
4952 abort ();
4954 suffix = 1;
4955 ++p;
4958 if (elide_switch && (negate || pipe_p || suffix))
4960 /* It doesn't make sense to mix elision with other flags. We
4961 could fatal() here, but the standard seems to be to abort. */
4962 abort ();
4965 next_ampersand:
4966 filter = p;
4967 while (*p != ':' && *p != '}' && *p != '|' && *p != '&')
4968 p++;
4970 if (*p == '|' && (pipe_p || ordered))
4971 abort ();
4973 if (!body)
4975 if (*p != '}' && *p != '&')
4977 register int count = 1;
4978 register const char *q = p;
4980 while (*q++ != ':')
4981 continue;
4982 body = q;
4984 while (count > 0)
4986 if (*q == '{')
4987 count++;
4988 else if (*q == '}')
4989 count--;
4990 else if (*q == 0)
4991 abort ();
4992 q++;
4994 endbody = q;
4996 else
4997 body = p, endbody = p + 1;
5000 if (suffix)
5002 int found = (input_suffix != 0
5003 && (long) strlen (input_suffix) == (long) (p - filter)
5004 && strncmp (input_suffix, filter, p - filter) == 0);
5006 if (body[0] == '}')
5007 abort ();
5009 if (negate != found
5010 && do_spec_1 (save_string (body, endbody-body-1), 0, NULL_PTR) < 0)
5011 return 0;
5013 else if (p[-1] == '*' && (p[0] == '}' || p[0] == '&'))
5015 /* Substitute all matching switches as separate args. */
5016 register int i;
5018 for (i = 0; i < n_switches; i++)
5019 if (!strncmp (switches[i].part1, filter, p - 1 - filter)
5020 && check_live_switch (i, p - 1 - filter))
5022 if (elide_switch)
5024 switches[i].live_cond = SWITCH_IGNORE;
5025 switches[i].validated = 1;
5027 else
5028 ordered = 1, switches[i].ordering = 1;
5031 else
5033 /* Test for presence of the specified switch. */
5034 register int i;
5035 int present = 0;
5037 /* If name specified ends in *, as in {x*:...},
5038 check for %* and handle that case. */
5039 if (p[-1] == '*' && !negate)
5041 int substitution;
5042 const char *r = body;
5044 /* First see whether we have %*. */
5045 substitution = 0;
5046 while (r < endbody)
5048 if (*r == '%' && r[1] == '*')
5049 substitution = 1;
5050 r++;
5052 /* If we do, handle that case. */
5053 if (substitution)
5055 /* Substitute all matching switches as separate args.
5056 But do this by substituting for %*
5057 in the text that follows the colon. */
5059 unsigned hard_match_len = p - filter - 1;
5060 char *string = save_string (body, endbody - body - 1);
5062 for (i = 0; i < n_switches; i++)
5063 if (!strncmp (switches[i].part1, filter, hard_match_len)
5064 && check_live_switch (i, -1))
5066 do_spec_1 (string, 0, &switches[i].part1[hard_match_len]);
5067 /* Pass any arguments this switch has. */
5068 give_switch (i, 1, 1);
5069 suffix_subst = NULL;
5072 /* We didn't match. Try again. */
5073 if (*p++ == '|')
5074 goto next_member;
5075 return endbody;
5079 /* If name specified ends in *, as in {x*:...},
5080 check for presence of any switch name starting with x. */
5081 if (p[-1] == '*')
5083 for (i = 0; i < n_switches; i++)
5085 unsigned hard_match_len = p - filter - 1;
5087 if (!strncmp (switches[i].part1, filter, hard_match_len)
5088 && check_live_switch (i, hard_match_len))
5090 present = 1;
5091 break;
5095 /* Otherwise, check for presence of exact name specified. */
5096 else
5098 for (i = 0; i < n_switches; i++)
5100 if (!strncmp (switches[i].part1, filter, p - filter)
5101 && switches[i].part1[p - filter] == 0
5102 && check_live_switch (i, -1))
5104 present = 1;
5105 break;
5110 /* If it is as desired (present for %{s...}, absent for %{!s...})
5111 then substitute either the switch or the specified
5112 conditional text. */
5113 if (present != negate)
5115 if (elide_switch)
5117 switches[i].live_cond = SWITCH_IGNORE;
5118 switches[i].validated = 1;
5120 else if (ordered || *p == '&')
5121 ordered = 1, switches[i].ordering = 1;
5122 else if (*p == '}')
5123 give_switch (i, 0, include_blanks);
5124 else
5125 /* Even if many alternatives are matched, only output once. */
5126 true_once = 1;
5128 else if (pipe_p)
5130 /* Here if a %{|...} conditional fails: output a minus sign,
5131 which means "standard output" or "standard input". */
5132 do_spec_1 ("-", 0, NULL_PTR);
5133 return endbody;
5137 /* We didn't match; try again. */
5138 if (*p++ == '|')
5139 goto next_member;
5141 if (p[-1] == '&')
5143 body = 0;
5144 goto next_ampersand;
5147 if (ordered)
5149 int i;
5150 /* Doing this set of switches later preserves their command-line
5151 ordering. This is needed for e.g. -U, -D and -A. */
5152 for (i = 0; i < n_switches; i++)
5153 if (switches[i].ordering == 1)
5155 switches[i].ordering = 0;
5156 give_switch (i, 0, include_blanks);
5159 /* Process the spec just once, regardless of match count. */
5160 else if (true_once)
5162 if (do_spec_1 (save_string (body, endbody - body - 1),
5163 0, NULL_PTR) < 0)
5164 return 0;
5167 return endbody;
5170 /* Return 0 iff switch number SWITCHNUM is obsoleted by a later switch
5171 on the command line. PREFIX_LENGTH is the length of XXX in an {XXX*}
5172 spec, or -1 if either exact match or %* is used.
5174 A -O switch is obsoleted by a later -O switch. A -f, -m, or -W switch
5175 whose value does not begin with "no-" is obsoleted by the same value
5176 with the "no-", similarly for a switch with the "no-" prefix. */
5178 static int
5179 check_live_switch (switchnum, prefix_length)
5180 int switchnum;
5181 int prefix_length;
5183 const char *name = switches[switchnum].part1;
5184 int i;
5186 /* In the common case of {<at-most-one-letter>*}, a negating
5187 switch would always match, so ignore that case. We will just
5188 send the conflicting switches to the compiler phase. */
5189 if (prefix_length >= 0 && prefix_length <= 1)
5190 return 1;
5192 /* If we already processed this switch and determined if it was
5193 live or not, return our past determination. */
5194 if (switches[switchnum].live_cond != 0)
5195 return switches[switchnum].live_cond > 0;
5197 /* Now search for duplicate in a manner that depends on the name. */
5198 switch (*name)
5200 case 'O':
5201 for (i = switchnum + 1; i < n_switches; i++)
5202 if (switches[i].part1[0] == 'O')
5204 switches[switchnum].validated = 1;
5205 switches[switchnum].live_cond = SWITCH_FALSE;
5206 return 0;
5208 break;
5210 case 'W': case 'f': case 'm':
5211 if (! strncmp (name + 1, "no-", 3))
5213 /* We have Xno-YYY, search for XYYY. */
5214 for (i = switchnum + 1; i < n_switches; i++)
5215 if (switches[i].part1[0] == name[0]
5216 && ! strcmp (&switches[i].part1[1], &name[4]))
5218 switches[switchnum].validated = 1;
5219 switches[switchnum].live_cond = SWITCH_FALSE;
5220 return 0;
5223 else
5225 /* We have XYYY, search for Xno-YYY. */
5226 for (i = switchnum + 1; i < n_switches; i++)
5227 if (switches[i].part1[0] == name[0]
5228 && switches[i].part1[1] == 'n'
5229 && switches[i].part1[2] == 'o'
5230 && switches[i].part1[3] == '-'
5231 && !strcmp (&switches[i].part1[4], &name[1]))
5233 switches[switchnum].validated = 1;
5234 switches[switchnum].live_cond = SWITCH_FALSE;
5235 return 0;
5238 break;
5241 /* Otherwise the switch is live. */
5242 switches[switchnum].live_cond = SWITCH_LIVE;
5243 return 1;
5246 /* Pass a switch to the current accumulating command
5247 in the same form that we received it.
5248 SWITCHNUM identifies the switch; it is an index into
5249 the vector of switches gcc received, which is `switches'.
5250 This cannot fail since it never finishes a command line.
5252 If OMIT_FIRST_WORD is nonzero, then we omit .part1 of the argument.
5254 If INCLUDE_BLANKS is nonzero, then we include blanks before each argument
5255 of the switch. */
5257 static void
5258 give_switch (switchnum, omit_first_word, include_blanks)
5259 int switchnum;
5260 int omit_first_word;
5261 int include_blanks;
5263 if (switches[switchnum].live_cond == SWITCH_IGNORE)
5264 return;
5266 if (!omit_first_word)
5268 do_spec_1 ("-", 0, NULL_PTR);
5269 do_spec_1 (switches[switchnum].part1, 1, NULL_PTR);
5272 if (switches[switchnum].args != 0)
5274 const char **p;
5275 for (p = switches[switchnum].args; *p; p++)
5277 const char *arg = *p;
5279 if (include_blanks)
5280 do_spec_1 (" ", 0, NULL_PTR);
5281 if (suffix_subst)
5283 unsigned length = strlen (arg);
5285 while (length-- && !IS_DIR_SEPARATOR (arg[length]))
5286 if (arg[length] == '.')
5288 ((char *)arg)[length] = 0;
5289 break;
5291 do_spec_1 (arg, 1, NULL_PTR);
5292 if (!arg[length])
5294 ((char *)arg)[length] = '.';
5295 do_spec_1 (suffix_subst, 1, NULL_PTR);
5298 else
5299 do_spec_1 (arg, 1, NULL_PTR);
5303 do_spec_1 (" ", 0, NULL_PTR);
5304 switches[switchnum].validated = 1;
5307 /* Search for a file named NAME trying various prefixes including the
5308 user's -B prefix and some standard ones.
5309 Return the absolute file name found. If nothing is found, return NAME. */
5311 static const char *
5312 find_file (name)
5313 const char *name;
5315 char *newname;
5317 /* Try multilib_dir if it is defined. */
5318 if (multilib_dir != NULL)
5320 char *try;
5322 try = (char *) alloca (strlen (multilib_dir) + strlen (name) + 2);
5323 strcpy (try, multilib_dir);
5324 strcat (try, dir_separator_str);
5325 strcat (try, name);
5327 newname = find_a_file (&startfile_prefixes, try, R_OK);
5329 /* If we don't find it in the multi library dir, then fall
5330 through and look for it in the normal places. */
5331 if (newname != NULL)
5332 return newname;
5335 newname = find_a_file (&startfile_prefixes, name, R_OK);
5336 return newname ? newname : name;
5339 /* Determine whether a directory exists. If LINKER, return 0 for
5340 certain fixed names not needed by the linker. If not LINKER, it is
5341 only important to return 0 if the host machine has a small ARG_MAX
5342 limit. */
5344 static int
5345 is_directory (path1, path2, linker)
5346 const char *path1;
5347 const char *path2;
5348 int linker;
5350 int len1 = strlen (path1);
5351 int len2 = strlen (path2);
5352 char *path = (char *) alloca (3 + len1 + len2);
5353 char *cp;
5354 struct stat st;
5356 #ifndef SMALL_ARG_MAX
5357 if (! linker)
5358 return 1;
5359 #endif
5361 /* Construct the path from the two parts. Ensure the string ends with "/.".
5362 The resulting path will be a directory even if the given path is a
5363 symbolic link. */
5364 memcpy (path, path1, len1);
5365 memcpy (path + len1, path2, len2);
5366 cp = path + len1 + len2;
5367 if (!IS_DIR_SEPARATOR (cp[-1]))
5368 *cp++ = DIR_SEPARATOR;
5369 *cp++ = '.';
5370 *cp = '\0';
5372 /* Exclude directories that the linker is known to search. */
5373 if (linker
5374 && ((cp - path == 6
5375 && strcmp (path, concat (dir_separator_str, "lib",
5376 dir_separator_str, ".", NULL)) == 0)
5377 || (cp - path == 10
5378 && strcmp (path, concat (dir_separator_str, "usr",
5379 dir_separator_str, "lib",
5380 dir_separator_str, ".", NULL)) == 0)))
5381 return 0;
5383 return (stat (path, &st) >= 0 && S_ISDIR (st.st_mode));
5386 /* Set up the various global variables to indicate that we're processing
5387 the input file named FILENAME. */
5389 static void
5390 set_input (filename)
5391 const char *filename;
5393 register const char *p;
5395 input_filename = filename;
5396 input_filename_length = strlen (input_filename);
5398 input_basename = input_filename;
5399 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
5400 /* Skip drive name so 'x:foo' is handled properly. */
5401 if (input_basename[1] == ':')
5402 input_basename += 2;
5403 #endif
5404 for (p = input_basename; *p; p++)
5405 if (IS_DIR_SEPARATOR (*p))
5406 input_basename = p + 1;
5408 /* Find a suffix starting with the last period,
5409 and set basename_length to exclude that suffix. */
5410 basename_length = strlen (input_basename);
5411 suffixed_basename_length = basename_length;
5412 p = input_basename + basename_length;
5413 while (p != input_basename && *p != '.')
5414 --p;
5415 if (*p == '.' && p != input_basename)
5417 basename_length = p - input_basename;
5418 input_suffix = p + 1;
5420 else
5421 input_suffix = "";
5424 /* On fatal signals, delete all the temporary files. */
5426 static void
5427 fatal_error (signum)
5428 int signum;
5430 signal (signum, SIG_DFL);
5431 delete_failure_queue ();
5432 delete_temp_files ();
5433 /* Get the same signal again, this time not handled,
5434 so its normal effect occurs. */
5435 kill (getpid (), signum);
5438 extern int main PARAMS ((int, const char *const *));
5441 main (argc, argv)
5442 int argc;
5443 const char *const *argv;
5445 size_t i;
5446 int value;
5447 int linker_was_run = 0;
5448 char *explicit_link_files;
5449 char *specs_file;
5450 const char *p;
5451 struct user_specs *uptr;
5453 p = argv[0] + strlen (argv[0]);
5454 while (p != argv[0] && !IS_DIR_SEPARATOR (p[-1]))
5455 --p;
5456 programname = p;
5458 xmalloc_set_program_name (programname);
5460 #ifdef GCC_DRIVER_HOST_INITIALIZATION
5461 /* Perform host dependant initialization when needed. */
5462 GCC_DRIVER_HOST_INITIALIZATION;
5463 #endif
5465 /* LC_CTYPE determines the character set used by the terminal so it has be set
5466 to output messages correctly. */
5468 #ifdef HAVE_LC_MESSAGES
5469 setlocale (LC_CTYPE, "");
5470 setlocale (LC_MESSAGES, "");
5471 #else
5472 setlocale (LC_ALL, "");
5473 #endif
5475 (void) bindtextdomain (PACKAGE, localedir);
5476 (void) textdomain (PACKAGE);
5478 if (signal (SIGINT, SIG_IGN) != SIG_IGN)
5479 signal (SIGINT, fatal_error);
5480 #ifdef SIGHUP
5481 if (signal (SIGHUP, SIG_IGN) != SIG_IGN)
5482 signal (SIGHUP, fatal_error);
5483 #endif
5484 if (signal (SIGTERM, SIG_IGN) != SIG_IGN)
5485 signal (SIGTERM, fatal_error);
5486 #ifdef SIGPIPE
5487 if (signal (SIGPIPE, SIG_IGN) != SIG_IGN)
5488 signal (SIGPIPE, fatal_error);
5489 #endif
5490 #ifdef SIGCHLD
5491 /* We *MUST* set SIGCHLD to SIG_DFL so that the wait4() call will
5492 receive the signal. A different setting is inheritable */
5493 signal (SIGCHLD, SIG_DFL);
5494 #endif
5496 argbuf_length = 10;
5497 argbuf = (const char **) xmalloc (argbuf_length * sizeof (const char *));
5499 obstack_init (&obstack);
5501 /* Build multilib_select, et. al from the separate lines that make up each
5502 multilib selection. */
5504 const char *const *q = multilib_raw;
5505 int need_space;
5507 obstack_init (&multilib_obstack);
5508 while ((p = *q++) != (char *) 0)
5509 obstack_grow (&multilib_obstack, p, strlen (p));
5511 obstack_1grow (&multilib_obstack, 0);
5512 multilib_select = obstack_finish (&multilib_obstack);
5514 q = multilib_matches_raw;
5515 while ((p = *q++) != (char *) 0)
5516 obstack_grow (&multilib_obstack, p, strlen (p));
5518 obstack_1grow (&multilib_obstack, 0);
5519 multilib_matches = obstack_finish (&multilib_obstack);
5521 q = multilib_exclusions_raw;
5522 while ((p = *q++) != (char *) 0)
5523 obstack_grow (&multilib_obstack, p, strlen (p));
5525 obstack_1grow (&multilib_obstack, 0);
5526 multilib_exclusions = obstack_finish (&multilib_obstack);
5528 need_space = FALSE;
5529 for (i = 0; i < ARRAY_SIZE (multilib_defaults_raw); i++)
5531 if (need_space)
5532 obstack_1grow (&multilib_obstack, ' ');
5533 obstack_grow (&multilib_obstack,
5534 multilib_defaults_raw[i],
5535 strlen (multilib_defaults_raw[i]));
5536 need_space = TRUE;
5539 obstack_1grow (&multilib_obstack, 0);
5540 multilib_defaults = obstack_finish (&multilib_obstack);
5543 /* Set up to remember the pathname of gcc and any options
5544 needed for collect. We use argv[0] instead of programname because
5545 we need the complete pathname. */
5546 obstack_init (&collect_obstack);
5547 obstack_grow (&collect_obstack, "COLLECT_GCC=", sizeof ("COLLECT_GCC=") - 1);
5548 obstack_grow (&collect_obstack, argv[0], strlen (argv[0]) + 1);
5549 putenv (obstack_finish (&collect_obstack));
5551 #ifdef INIT_ENVIRONMENT
5552 /* Set up any other necessary machine specific environment variables. */
5553 putenv (INIT_ENVIRONMENT);
5554 #endif
5556 /* Make a table of what switches there are (switches, n_switches).
5557 Make a table of specified input files (infiles, n_infiles).
5558 Decode switches that are handled locally. */
5560 process_command (argc, argv);
5563 int first_time;
5565 /* Build COLLECT_GCC_OPTIONS to have all of the options specified to
5566 the compiler. */
5567 obstack_grow (&collect_obstack, "COLLECT_GCC_OPTIONS=",
5568 sizeof ("COLLECT_GCC_OPTIONS=") - 1);
5570 first_time = TRUE;
5571 for (i = 0; (int) i < n_switches; i++)
5573 const char *const *args;
5574 const char *p, *q;
5575 if (!first_time)
5576 obstack_grow (&collect_obstack, " ", 1);
5578 first_time = FALSE;
5579 obstack_grow (&collect_obstack, "'-", 2);
5580 q = switches[i].part1;
5581 while ((p = strchr (q, '\'')))
5583 obstack_grow (&collect_obstack, q, p - q);
5584 obstack_grow (&collect_obstack, "'\\''", 4);
5585 q = ++p;
5587 obstack_grow (&collect_obstack, q, strlen (q));
5588 obstack_grow (&collect_obstack, "'", 1);
5590 for (args = switches[i].args; args && *args; args++)
5592 obstack_grow (&collect_obstack, " '", 2);
5593 q = *args;
5594 while ((p = strchr (q, '\'')))
5596 obstack_grow (&collect_obstack, q, p - q);
5597 obstack_grow (&collect_obstack, "'\\''", 4);
5598 q = ++p;
5600 obstack_grow (&collect_obstack, q, strlen (q));
5601 obstack_grow (&collect_obstack, "'", 1);
5604 obstack_grow (&collect_obstack, "\0", 1);
5605 putenv (obstack_finish (&collect_obstack));
5608 /* Initialize the vector of specs to just the default.
5609 This means one element containing 0s, as a terminator. */
5611 compilers = (struct compiler *) xmalloc (sizeof default_compilers);
5612 memcpy ((char *) compilers, (char *) default_compilers,
5613 sizeof default_compilers);
5614 n_compilers = n_default_compilers;
5616 /* Read specs from a file if there is one. */
5618 machine_suffix = concat (spec_machine, dir_separator_str,
5619 spec_version, dir_separator_str, NULL);
5620 just_machine_suffix = concat (spec_machine, dir_separator_str, NULL);
5622 specs_file = find_a_file (&startfile_prefixes, "specs", R_OK);
5623 /* Read the specs file unless it is a default one. */
5624 if (specs_file != 0 && strcmp (specs_file, "specs"))
5625 read_specs (specs_file, TRUE);
5626 else
5627 init_spec ();
5629 /* We need to check standard_exec_prefix/just_machine_suffix/specs
5630 for any override of as, ld and libraries. */
5631 specs_file = (char *) alloca (strlen (standard_exec_prefix)
5632 + strlen (just_machine_suffix)
5633 + sizeof ("specs"));
5635 strcpy (specs_file, standard_exec_prefix);
5636 strcat (specs_file, just_machine_suffix);
5637 strcat (specs_file, "specs");
5638 if (access (specs_file, R_OK) == 0)
5639 read_specs (specs_file, TRUE);
5641 /* If not cross-compiling, look for startfiles in the standard places. */
5642 if (*cross_compile == '0')
5644 if (*md_exec_prefix)
5646 add_prefix (&exec_prefixes, md_exec_prefix, "GCC",
5647 PREFIX_PRIORITY_LAST, 0, NULL_PTR);
5648 add_prefix (&startfile_prefixes, md_exec_prefix, "GCC",
5649 PREFIX_PRIORITY_LAST, 0, NULL_PTR);
5652 if (*md_startfile_prefix)
5653 add_prefix (&startfile_prefixes, md_startfile_prefix, "GCC",
5654 PREFIX_PRIORITY_LAST, 0, NULL_PTR);
5656 if (*md_startfile_prefix_1)
5657 add_prefix (&startfile_prefixes, md_startfile_prefix_1, "GCC",
5658 PREFIX_PRIORITY_LAST, 0, NULL_PTR);
5660 /* If standard_startfile_prefix is relative, base it on
5661 standard_exec_prefix. This lets us move the installed tree
5662 as a unit. If GCC_EXEC_PREFIX is defined, base
5663 standard_startfile_prefix on that as well. */
5664 if (IS_ABSOLUTE_PATHNAME (standard_startfile_prefix))
5665 add_prefix (&startfile_prefixes, standard_startfile_prefix, "BINUTILS",
5666 PREFIX_PRIORITY_LAST, 0, NULL_PTR);
5667 else
5669 if (gcc_exec_prefix)
5670 add_prefix (&startfile_prefixes,
5671 concat (gcc_exec_prefix, machine_suffix,
5672 standard_startfile_prefix, NULL),
5673 NULL_PTR, PREFIX_PRIORITY_LAST, 0, NULL_PTR);
5674 add_prefix (&startfile_prefixes,
5675 concat (standard_exec_prefix,
5676 machine_suffix,
5677 standard_startfile_prefix, NULL),
5678 NULL_PTR, PREFIX_PRIORITY_LAST, 0, NULL_PTR);
5681 add_prefix (&startfile_prefixes, standard_startfile_prefix_1,
5682 "BINUTILS", PREFIX_PRIORITY_LAST, 0, NULL_PTR);
5683 add_prefix (&startfile_prefixes, standard_startfile_prefix_2,
5684 "BINUTILS", PREFIX_PRIORITY_LAST, 0, NULL_PTR);
5685 #if 0 /* Can cause surprises, and one can use -B./ instead. */
5686 add_prefix (&startfile_prefixes, "./", NULL_PTR,
5687 PREFIX_PRIORITY_LAST, 1, NULL_PTR);
5688 #endif
5690 else
5692 if (!IS_ABSOLUTE_PATHNAME (standard_startfile_prefix)
5693 && gcc_exec_prefix)
5694 add_prefix (&startfile_prefixes,
5695 concat (gcc_exec_prefix, machine_suffix,
5696 standard_startfile_prefix, NULL),
5697 "BINUTILS", PREFIX_PRIORITY_LAST, 0, NULL_PTR);
5700 /* Process any user specified specs in the order given on the command
5701 line. */
5702 for (uptr = user_specs_head; uptr; uptr = uptr->next)
5704 char *filename = find_a_file (&startfile_prefixes, uptr->filename, R_OK);
5705 read_specs (filename ? filename : uptr->filename, FALSE);
5708 /* If we have a GCC_EXEC_PREFIX envvar, modify it for cpp's sake. */
5709 if (gcc_exec_prefix)
5711 char *temp = (char *) xmalloc (strlen (gcc_exec_prefix)
5712 + strlen (spec_version)
5713 + strlen (spec_machine) + 3);
5714 strcpy (temp, gcc_exec_prefix);
5715 strcat (temp, spec_machine);
5716 strcat (temp, dir_separator_str);
5717 strcat (temp, spec_version);
5718 strcat (temp, dir_separator_str);
5719 gcc_exec_prefix = temp;
5722 /* Now we have the specs.
5723 Set the `valid' bits for switches that match anything in any spec. */
5725 validate_all_switches ();
5727 /* Now that we have the switches and the specs, set
5728 the subdirectory based on the options. */
5729 set_multilib_dir ();
5731 /* Warn about any switches that no pass was interested in. */
5733 for (i = 0; (int) i < n_switches; i++)
5734 if (! switches[i].validated)
5735 error ("unrecognized option `-%s'", switches[i].part1);
5737 /* Obey some of the options. */
5739 if (print_search_dirs)
5741 printf (_("install: %s%s\n"), standard_exec_prefix, machine_suffix);
5742 printf (_("programs: %s\n"), build_search_list (&exec_prefixes, "", 0));
5743 printf (_("libraries: %s\n"), build_search_list (&startfile_prefixes, "", 0));
5744 return (0);
5747 if (print_file_name)
5749 printf ("%s\n", find_file (print_file_name));
5750 return (0);
5753 if (print_prog_name)
5755 char *newname = find_a_file (&exec_prefixes, print_prog_name, X_OK);
5756 printf ("%s\n", (newname ? newname : print_prog_name));
5757 return (0);
5760 if (print_multi_lib)
5762 print_multilib_info ();
5763 return (0);
5766 if (print_multi_directory)
5768 if (multilib_dir == NULL)
5769 printf (".\n");
5770 else
5771 printf ("%s\n", multilib_dir);
5772 return (0);
5775 if (target_help_flag)
5777 /* Print if any target specific options.*/
5779 /* We do not exit here. Instead we have created a fake input file
5780 called 'target-dummy' which needs to be compiled, and we pass this
5781 on to the various sub-processes, along with the --target-help
5782 switch. */
5785 if (print_help_list)
5787 display_help ();
5789 if (! verbose_flag)
5791 printf (_("\nFor bug reporting instructions, please see:\n"));
5792 printf ("%s.\n", GCCBUGURL);
5794 return (0);
5797 /* We do not exit here. Instead we have created a fake input file
5798 called 'help-dummy' which needs to be compiled, and we pass this
5799 on the the various sub-processes, along with the --help switch. */
5802 if (verbose_flag)
5804 int n;
5806 notice ("Configured with: %s\n", configuration_arguments);
5808 notice ("Thread model: %s\n", thread_model);
5810 /* compiler_version is truncated at the first space when initialized
5811 from version string, so truncate version_string at the first space
5812 before comparing. */
5813 for (n = 0; version_string[n]; n++)
5814 if (version_string[n] == ' ')
5815 break;
5817 if (! strncmp (version_string, compiler_version, n)
5818 && compiler_version[n] == 0)
5819 notice ("gcc version %s\n", version_string);
5820 else
5821 notice ("gcc driver version %s executing gcc version %s\n",
5822 version_string, compiler_version);
5824 if (n_infiles == 0)
5825 return (0);
5828 if (n_infiles == added_libraries)
5829 fatal ("No input files");
5831 /* Make a place to record the compiler output file names
5832 that correspond to the input files. */
5834 i = n_infiles;
5835 i += lang_specific_extra_outfiles;
5836 outfiles = (const char **) xcalloc (i, sizeof (char *));
5838 /* Record which files were specified explicitly as link input. */
5840 explicit_link_files = xcalloc (1, n_infiles);
5842 for (i = 0; (int) i < n_infiles; i++)
5844 int this_file_error = 0;
5846 /* Tell do_spec what to substitute for %i. */
5848 input_file_number = i;
5849 set_input (infiles[i].name);
5851 /* Use the same thing in %o, unless cp->spec says otherwise. */
5853 outfiles[i] = input_filename;
5855 /* Figure out which compiler from the file's suffix. */
5857 input_file_compiler
5858 = lookup_compiler (infiles[i].name, input_filename_length,
5859 infiles[i].language);
5861 if (input_file_compiler)
5863 /* Ok, we found an applicable compiler. Run its spec. */
5865 if (input_file_compiler->spec[0] == '#')
5866 error ("%s: %s compiler not installed on this system",
5867 input_filename, &input_file_compiler->spec[1]);
5868 value = do_spec (input_file_compiler->spec);
5869 if (value < 0)
5870 this_file_error = 1;
5873 /* If this file's name does not contain a recognized suffix,
5874 record it as explicit linker input. */
5876 else
5877 explicit_link_files[i] = 1;
5879 /* Clear the delete-on-failure queue, deleting the files in it
5880 if this compilation failed. */
5882 if (this_file_error)
5884 delete_failure_queue ();
5885 error_count++;
5887 /* If this compilation succeeded, don't delete those files later. */
5888 clear_failure_queue ();
5891 /* Reset the output file name to the first input file name, for use
5892 with %b in LINK_SPEC on a target that prefers not to emit a.out
5893 by default. */
5894 if (n_infiles > 0)
5895 set_input (infiles[0].name);
5897 if (error_count == 0)
5899 /* Make sure INPUT_FILE_NUMBER points to first available open
5900 slot. */
5901 input_file_number = n_infiles;
5902 if (lang_specific_pre_link ())
5903 error_count++;
5906 /* Run ld to link all the compiler output files. */
5908 if (error_count == 0)
5910 int tmp = execution_count;
5912 /* We'll use ld if we can't find collect2. */
5913 if (! strcmp (linker_name_spec, "collect2"))
5915 char *s = find_a_file (&exec_prefixes, "collect2", X_OK);
5916 if (s == NULL)
5917 linker_name_spec = "ld";
5919 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
5920 for collect. */
5921 putenv_from_prefixes (&exec_prefixes, "COMPILER_PATH");
5922 putenv_from_prefixes (&startfile_prefixes, LIBRARY_PATH_ENV);
5924 value = do_spec (link_command_spec);
5925 if (value < 0)
5926 error_count = 1;
5927 linker_was_run = (tmp != execution_count);
5930 /* If options said don't run linker,
5931 complain about input files to be given to the linker. */
5933 if (! linker_was_run && error_count == 0)
5934 for (i = 0; (int) i < n_infiles; i++)
5935 if (explicit_link_files[i])
5936 error ("%s: linker input file unused because linking not done",
5937 outfiles[i]);
5939 /* Delete some or all of the temporary files we made. */
5941 if (error_count)
5942 delete_failure_queue ();
5943 delete_temp_files ();
5945 if (print_help_list)
5947 printf (("\nFor bug reporting instructions, please see:\n"));
5948 printf ("%s\n", GCCBUGURL);
5951 return (signal_count != 0 ? 2
5952 : error_count > 0 ? (pass_exit_codes ? greatest_status : 1)
5953 : 0);
5956 /* Find the proper compilation spec for the file name NAME,
5957 whose length is LENGTH. LANGUAGE is the specified language,
5958 or 0 if this file is to be passed to the linker. */
5960 static struct compiler *
5961 lookup_compiler (name, length, language)
5962 const char *name;
5963 size_t length;
5964 const char *language;
5966 struct compiler *cp;
5968 /* If this was specified by the user to be a linker input, indicate that. */
5969 if (language != 0 && language[0] == '*')
5970 return 0;
5972 /* Otherwise, look for the language, if one is spec'd. */
5973 if (language != 0)
5975 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
5976 if (cp->suffix[0] == '@' && !strcmp (cp->suffix + 1, language))
5977 return cp;
5979 error ("language %s not recognized", language);
5980 return 0;
5983 /* Look for a suffix. */
5984 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
5986 if (/* The suffix `-' matches only the file name `-'. */
5987 (!strcmp (cp->suffix, "-") && !strcmp (name, "-"))
5988 || (strlen (cp->suffix) < length
5989 /* See if the suffix matches the end of NAME. */
5990 && !strcmp (cp->suffix,
5991 name + length - strlen (cp->suffix))
5993 break;
5996 #if defined (OS2) ||defined (HAVE_DOS_BASED_FILE_SYSTEM)
5997 /* look again, but case-insensitively this time. */
5998 if (cp < compilers)
5999 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
6001 if (/* The suffix `-' matches only the file name `-'. */
6002 (!strcmp (cp->suffix, "-") && !strcmp (name, "-"))
6003 || (strlen (cp->suffix) < length
6004 /* See if the suffix matches the end of NAME. */
6005 && ((!strcmp (cp->suffix,
6006 name + length - strlen (cp->suffix))
6007 || !strpbrk (cp->suffix, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"))
6008 && !strcasecmp (cp->suffix,
6009 name + length - strlen (cp->suffix)))
6011 break;
6013 #endif
6015 if (cp >= compilers)
6017 if (cp->spec[0] != '@')
6018 /* A non-alias entry: return it. */
6019 return cp;
6021 /* An alias entry maps a suffix to a language.
6022 Search for the language; pass 0 for NAME and LENGTH
6023 to avoid infinite recursion if language not found. */
6024 return lookup_compiler (NULL_PTR, 0, cp->spec + 1);
6026 return 0;
6029 static char *
6030 save_string (s, len)
6031 const char *s;
6032 int len;
6034 register char *result = xmalloc (len + 1);
6036 memcpy (result, s, len);
6037 result[len] = 0;
6038 return result;
6041 void
6042 pfatal_with_name (name)
6043 const char *name;
6045 perror_with_name (name);
6046 delete_temp_files ();
6047 exit (1);
6050 static void
6051 perror_with_name (name)
6052 const char *name;
6054 error ("%s: %s", name, xstrerror (errno));
6057 static void
6058 pfatal_pexecute (errmsg_fmt, errmsg_arg)
6059 const char *errmsg_fmt;
6060 const char *errmsg_arg;
6062 if (errmsg_arg)
6064 int save_errno = errno;
6066 /* Space for trailing '\0' is in %s. */
6067 char *msg = xmalloc (strlen (errmsg_fmt) + strlen (errmsg_arg));
6068 sprintf (msg, errmsg_fmt, errmsg_arg);
6069 errmsg_fmt = msg;
6071 errno = save_errno;
6074 pfatal_with_name (errmsg_fmt);
6077 /* Output an error message and exit */
6079 void
6080 fancy_abort ()
6082 fatal ("Internal gcc abort.");
6085 /* Output an error message and exit */
6087 void
6088 fatal VPARAMS ((const char *msgid, ...))
6090 #ifndef ANSI_PROTOTYPES
6091 const char *msgid;
6092 #endif
6093 va_list ap;
6095 VA_START (ap, msgid);
6097 #ifndef ANSI_PROTOTYPES
6098 msgid = va_arg (ap, const char *);
6099 #endif
6101 fprintf (stderr, "%s: ", programname);
6102 vfprintf (stderr, _(msgid), ap);
6103 va_end (ap);
6104 fprintf (stderr, "\n");
6105 delete_temp_files ();
6106 exit (1);
6109 void
6110 error VPARAMS ((const char *msgid, ...))
6112 #ifndef ANSI_PROTOTYPES
6113 const char *msgid;
6114 #endif
6115 va_list ap;
6117 VA_START (ap, msgid);
6119 #ifndef ANSI_PROTOTYPES
6120 msgid = va_arg (ap, const char *);
6121 #endif
6123 fprintf (stderr, "%s: ", programname);
6124 vfprintf (stderr, _(msgid), ap);
6125 va_end (ap);
6127 fprintf (stderr, "\n");
6130 static void
6131 notice VPARAMS ((const char *msgid, ...))
6133 #ifndef ANSI_PROTOTYPES
6134 const char *msgid;
6135 #endif
6136 va_list ap;
6138 VA_START (ap, msgid);
6140 #ifndef ANSI_PROTOTYPES
6141 msgid = va_arg (ap, const char *);
6142 #endif
6144 vfprintf (stderr, _(msgid), ap);
6145 va_end (ap);
6148 static void
6149 validate_all_switches ()
6151 struct compiler *comp;
6152 register const char *p;
6153 register char c;
6154 struct spec_list *spec;
6156 for (comp = compilers; comp->spec; comp++)
6158 p = comp->spec;
6159 while ((c = *p++))
6160 if (c == '%' && *p == '{')
6161 /* We have a switch spec. */
6162 validate_switches (p + 1);
6165 /* Look through the linked list of specs read from the specs file. */
6166 for (spec = specs; spec; spec = spec->next)
6168 p = *(spec->ptr_spec);
6169 while ((c = *p++))
6170 if (c == '%' && *p == '{')
6171 /* We have a switch spec. */
6172 validate_switches (p + 1);
6175 p = link_command_spec;
6176 while ((c = *p++))
6177 if (c == '%' && *p == '{')
6178 /* We have a switch spec. */
6179 validate_switches (p + 1);
6182 /* Look at the switch-name that comes after START
6183 and mark as valid all supplied switches that match it. */
6185 static void
6186 validate_switches (start)
6187 const char *start;
6189 register const char *p = start;
6190 const char *filter;
6191 register int i;
6192 int suffix;
6194 if (*p == '|')
6195 ++p;
6197 next_member:
6198 if (*p == '!')
6199 ++p;
6201 suffix = 0;
6202 if (*p == '.')
6203 suffix = 1, ++p;
6205 filter = p;
6206 while (*p != ':' && *p != '}' && *p != '|' && *p != '&')
6207 p++;
6209 if (suffix)
6211 else if (p[-1] == '*')
6213 /* Mark all matching switches as valid. */
6214 for (i = 0; i < n_switches; i++)
6215 if (!strncmp (switches[i].part1, filter, p - filter - 1))
6216 switches[i].validated = 1;
6218 else
6220 /* Mark an exact matching switch as valid. */
6221 for (i = 0; i < n_switches; i++)
6223 if (!strncmp (switches[i].part1, filter, p - filter)
6224 && switches[i].part1[p - filter] == 0)
6225 switches[i].validated = 1;
6229 if (*p++ == '|' || p[-1] == '&')
6230 goto next_member;
6233 /* Check whether a particular argument was used. The first time we
6234 canonicalize the switches to keep only the ones we care about. */
6236 static int
6237 used_arg (p, len)
6238 const char *p;
6239 int len;
6241 struct mswitchstr
6243 const char *str;
6244 const char *replace;
6245 int len;
6246 int rep_len;
6249 static struct mswitchstr *mswitches;
6250 static int n_mswitches;
6251 int i, j;
6253 if (!mswitches)
6255 struct mswitchstr *matches;
6256 const char *q;
6257 int cnt = 0;
6259 /* Break multilib_matches into the component strings of string
6260 and replacement string. */
6261 for (q = multilib_matches; *q != '\0'; q++)
6262 if (*q == ';')
6263 cnt++;
6265 matches =
6266 (struct mswitchstr *) alloca ((sizeof (struct mswitchstr)) * cnt);
6267 i = 0;
6268 q = multilib_matches;
6269 while (*q != '\0')
6271 matches[i].str = q;
6272 while (*q != ' ')
6274 if (*q == '\0')
6275 abort ();
6276 q++;
6278 matches[i].len = q - matches[i].str;
6280 matches[i].replace = ++q;
6281 while (*q != ';' && *q != '\0')
6283 if (*q == ' ')
6284 abort ();
6285 q++;
6287 matches[i].rep_len = q - matches[i].replace;
6288 i++;
6289 if (*q == ';')
6290 q++;
6293 /* Now build a list of the replacement string for switches that we care
6294 about. Make sure we allocate at least one entry. This prevents
6295 xmalloc from calling fatal, and prevents us from re-executing this
6296 block of code. */
6297 mswitches
6298 = (struct mswitchstr *) xmalloc ((sizeof (struct mswitchstr))
6299 * (n_switches ? n_switches : 1));
6300 for (i = 0; i < n_switches; i++)
6302 int xlen = strlen (switches[i].part1);
6303 for (j = 0; j < cnt; j++)
6304 if (xlen == matches[j].len
6305 && ! strncmp (switches[i].part1, matches[j].str, xlen))
6307 mswitches[n_mswitches].str = matches[j].replace;
6308 mswitches[n_mswitches].len = matches[j].rep_len;
6309 mswitches[n_mswitches].replace = (char *) 0;
6310 mswitches[n_mswitches].rep_len = 0;
6311 n_mswitches++;
6312 break;
6317 for (i = 0; i < n_mswitches; i++)
6318 if (len == mswitches[i].len && ! strncmp (p, mswitches[i].str, len))
6319 return 1;
6321 return 0;
6324 static int
6325 default_arg (p, len)
6326 const char *p;
6327 int len;
6329 const char *start, *end;
6331 for (start = multilib_defaults; *start != '\0'; start = end + 1)
6333 while (*start == ' ' || *start == '\t')
6334 start++;
6336 if (*start == '\0')
6337 break;
6339 for (end = start + 1; *end != ' ' && *end != '\t' && *end != '\0'; end++)
6342 if ((end - start) == len && strncmp (p, start, len) == 0)
6343 return 1;
6345 if (*end == '\0')
6346 break;
6349 return 0;
6352 /* Work out the subdirectory to use based on the options. The format of
6353 multilib_select is a list of elements. Each element is a subdirectory
6354 name followed by a list of options followed by a semicolon. The format
6355 of multilib_exclusions is the same, but without the preceding
6356 directory. First gcc will check the exclusions, if none of the options
6357 beginning with an exclamation point are present, and all of the other
6358 options are present, then we will ignore this completely. Passing
6359 that, gcc will consider each multilib_select in turn using the same
6360 rules for matching the options. If a match is found, that subdirectory
6361 will be used. */
6363 static void
6364 set_multilib_dir ()
6366 const char *p;
6367 unsigned int this_path_len;
6368 const char *this_path, *this_arg;
6369 int not_arg;
6370 int ok;
6372 p = multilib_exclusions;
6373 while (*p != '\0')
6375 /* Ignore newlines. */
6376 if (*p == '\n')
6378 ++p;
6379 continue;
6382 /* Check the arguments. */
6383 ok = 1;
6384 while (*p != ';')
6386 if (*p == '\0')
6387 abort ();
6389 if (! ok)
6391 ++p;
6392 continue;
6395 this_arg = p;
6396 while (*p != ' ' && *p != ';')
6398 if (*p == '\0')
6399 abort ();
6400 ++p;
6403 if (*this_arg != '!')
6404 not_arg = 0;
6405 else
6407 not_arg = 1;
6408 ++this_arg;
6411 ok = used_arg (this_arg, p - this_arg);
6412 if (not_arg)
6413 ok = ! ok;
6415 if (*p == ' ')
6416 ++p;
6419 if (ok)
6420 return;
6422 ++p;
6425 p = multilib_select;
6426 while (*p != '\0')
6428 /* Ignore newlines. */
6429 if (*p == '\n')
6431 ++p;
6432 continue;
6435 /* Get the initial path. */
6436 this_path = p;
6437 while (*p != ' ')
6439 if (*p == '\0')
6440 abort ();
6441 ++p;
6443 this_path_len = p - this_path;
6445 /* Check the arguments. */
6446 ok = 1;
6447 ++p;
6448 while (*p != ';')
6450 if (*p == '\0')
6451 abort ();
6453 if (! ok)
6455 ++p;
6456 continue;
6459 this_arg = p;
6460 while (*p != ' ' && *p != ';')
6462 if (*p == '\0')
6463 abort ();
6464 ++p;
6467 if (*this_arg != '!')
6468 not_arg = 0;
6469 else
6471 not_arg = 1;
6472 ++this_arg;
6475 /* If this is a default argument, we can just ignore it.
6476 This is true even if this_arg begins with '!'. Beginning
6477 with '!' does not mean that this argument is necessarily
6478 inappropriate for this library: it merely means that
6479 there is a more specific library which uses this
6480 argument. If this argument is a default, we need not
6481 consider that more specific library. */
6482 if (! default_arg (this_arg, p - this_arg))
6484 ok = used_arg (this_arg, p - this_arg);
6485 if (not_arg)
6486 ok = ! ok;
6489 if (*p == ' ')
6490 ++p;
6493 if (ok)
6495 if (this_path_len != 1
6496 || this_path[0] != '.')
6498 char *new_multilib_dir = xmalloc (this_path_len + 1);
6499 strncpy (new_multilib_dir, this_path, this_path_len);
6500 new_multilib_dir[this_path_len] = '\0';
6501 multilib_dir = new_multilib_dir;
6503 break;
6506 ++p;
6510 /* Print out the multiple library subdirectory selection
6511 information. This prints out a series of lines. Each line looks
6512 like SUBDIRECTORY;@OPTION@OPTION, with as many options as is
6513 required. Only the desired options are printed out, the negative
6514 matches. The options are print without a leading dash. There are
6515 no spaces to make it easy to use the information in the shell.
6516 Each subdirectory is printed only once. This assumes the ordering
6517 generated by the genmultilib script. Also, we leave out ones that match
6518 the exclusions. */
6520 static void
6521 print_multilib_info ()
6523 const char *p = multilib_select;
6524 const char *last_path = 0, *this_path;
6525 int skip;
6526 unsigned int last_path_len = 0;
6528 while (*p != '\0')
6530 skip = 0;
6531 /* Ignore newlines. */
6532 if (*p == '\n')
6534 ++p;
6535 continue;
6538 /* Get the initial path. */
6539 this_path = p;
6540 while (*p != ' ')
6542 if (*p == '\0')
6543 abort ();
6544 ++p;
6547 /* Check for matches with the multilib_exclusions. We don't bother
6548 with the '!' in either list. If any of the exclusion rules match
6549 all of its options with the select rule, we skip it. */
6551 const char *e = multilib_exclusions;
6552 const char *this_arg;
6554 while (*e != '\0')
6556 int m = 1;
6557 /* Ignore newlines. */
6558 if (*e == '\n')
6560 ++e;
6561 continue;
6564 /* Check the arguments. */
6565 while (*e != ';')
6567 const char *q;
6568 int mp = 0;
6570 if (*e == '\0')
6571 abort ();
6573 if (! m)
6575 ++e;
6576 continue;
6579 this_arg = e;
6581 while (*e != ' ' && *e != ';')
6583 if (*e == '\0')
6584 abort ();
6585 ++e;
6588 q = p + 1;
6589 while (*q != ';')
6591 const char *arg;
6592 int len = e - this_arg;
6594 if (*q == '\0')
6595 abort ();
6597 arg = q;
6599 while (*q != ' ' && *q != ';')
6601 if (*q == '\0')
6602 abort ();
6603 ++q;
6606 if (! strncmp (arg, this_arg, (len < q - arg) ? q - arg : len) ||
6607 default_arg (this_arg, e - this_arg))
6609 mp = 1;
6610 break;
6613 if (*q == ' ')
6614 ++q;
6617 if (! mp)
6618 m = 0;
6620 if (*e == ' ')
6621 ++e;
6624 if (m)
6626 skip = 1;
6627 break;
6630 if (*e != '\0')
6631 ++e;
6635 if (! skip)
6637 /* If this is a duplicate, skip it. */
6638 skip = (last_path != 0 && (unsigned int) (p - this_path) == last_path_len
6639 && ! strncmp (last_path, this_path, last_path_len));
6641 last_path = this_path;
6642 last_path_len = p - this_path;
6645 /* If this directory requires any default arguments, we can skip
6646 it. We will already have printed a directory identical to
6647 this one which does not require that default argument. */
6648 if (! skip)
6650 const char *q;
6652 q = p + 1;
6653 while (*q != ';')
6655 const char *arg;
6657 if (*q == '\0')
6658 abort ();
6660 if (*q == '!')
6661 arg = NULL;
6662 else
6663 arg = q;
6665 while (*q != ' ' && *q != ';')
6667 if (*q == '\0')
6668 abort ();
6669 ++q;
6672 if (arg != NULL
6673 && default_arg (arg, q - arg))
6675 skip = 1;
6676 break;
6679 if (*q == ' ')
6680 ++q;
6684 if (! skip)
6686 const char *p1;
6688 for (p1 = last_path; p1 < p; p1++)
6689 putchar (*p1);
6690 putchar (';');
6693 ++p;
6694 while (*p != ';')
6696 int use_arg;
6698 if (*p == '\0')
6699 abort ();
6701 if (skip)
6703 ++p;
6704 continue;
6707 use_arg = *p != '!';
6709 if (use_arg)
6710 putchar ('@');
6712 while (*p != ' ' && *p != ';')
6714 if (*p == '\0')
6715 abort ();
6716 if (use_arg)
6717 putchar (*p);
6718 ++p;
6721 if (*p == ' ')
6722 ++p;
6725 if (! skip)
6727 /* If there are extra options, print them now. */
6728 if (multilib_extra && *multilib_extra)
6730 int print_at = TRUE;
6731 const char *q;
6733 for (q = multilib_extra; *q != '\0'; q++)
6735 if (*q == ' ')
6736 print_at = TRUE;
6737 else
6739 if (print_at)
6740 putchar ('@');
6741 putchar (*q);
6742 print_at = FALSE;
6747 putchar ('\n');
6750 ++p;