]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/gcc.c
re PR c++/44412 (Another bogus set-but-not-used warning)
[thirdparty/gcc.git] / gcc / gcc.c
CommitLineData
ed1f651b 1/* Compiler driver program that can handle many languages.
9218435e 2 Copyright (C) 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
d7fb0a6d
L
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
4 2010
c662432e 5 Free Software Foundation, Inc.
ed1f651b 6
1322177d 7This file is part of GCC.
ed1f651b 8
1322177d
LB
9GCC is free software; you can redistribute it and/or modify it under
10the terms of the GNU General Public License as published by the Free
9dcd6f09 11Software Foundation; either version 3, or (at your option) any later
1322177d 12version.
ed1f651b 13
1322177d
LB
14GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15WARRANTY; without even the implied warranty of MERCHANTABILITY or
16FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17for more details.
ed1f651b
RS
18
19You should have received a copy of the GNU General Public License
9dcd6f09 20along with GCC; see the file COPYING3. If not see
8a554c70 21<http://www.gnu.org/licenses/>. */
ed1f651b
RS
22
23/* This program is the user interface to the C compiler and possibly to
24other compilers. It is used because compilation is a complicated procedure
25which involves running several programs and passing temporary files between
26them, forwarding the users switches to those programs selectively,
27and deleting the temporary files at the end.
28
29CC recognizes how to compile each input file by suffixes in the file names.
30Once it knows which kind of compilation to perform, the procedure for
31compilation is specified by a string called a "spec". */
c5c76735 32
d991c721
BK
33/* A Short Introduction to Adding a Command-Line Option.
34
35 Before adding a command-line option, consider if it is really
36 necessary. Each additional command-line option adds complexity and
37 is difficult to remove in subsequent versions.
38
39 In the following, consider adding the command-line argument
40 `--bar'.
41
42 1. Each command-line option is specified in the specs file. The
43 notation is described below in the comment entitled "The Specs
44 Language". Read it.
45
46 2. In this file, add an entry to "option_map" equating the long
47 `--' argument version and any shorter, single letter version. Read
48 the comments in the declaration of "struct option_map" for an
49 explanation. Do not omit the first `-'.
50
51 3. Look in the "specs" file to determine which program or option
52 list should be given the argument, e.g., "cc1_options". Add the
53 appropriate syntax for the shorter option version to the
54 corresponding "const char *" entry in this file. Omit the first
55 `-' from the option. For example, use `-bar', rather than `--bar'.
56
57 4. If the argument takes an argument, e.g., `--baz argument1',
58 modify either DEFAULT_SWITCH_TAKES_ARG or
8ecf5a68 59 DEFAULT_WORD_SWITCH_TAKES_ARG in gcc.h. Omit the first `-'
d991c721
BK
60 from `--baz'.
61
62 5. Document the option in this file's display_help(). If the
63 option is passed to a subprogram, modify its corresponding
64 function, e.g., cppinit.c:print_help() or toplev.c:display_help(),
65 instead.
66
67 6. Compile and test. Make sure that your new specs file is being
68 read. For example, use a debugger to investigate the value of
69 "specs_file" in main(). */
70
e9a25f70 71#include "config.h"
670ee920 72#include "system.h"
4977bab6 73#include "coretypes.h"
1713a69f 74#include "multilib.h" /* before tm.h */
4977bab6 75#include "tm.h"
670ee920 76#include <signal.h>
798bdf70
BK
77#if ! defined( SIGCHLD ) && defined( SIGCLD )
78# define SIGCHLD SIGCLD
79#endif
ed5b9f96 80#include "xregex.h"
17248a6b 81#include "obstack.h"
ab87f8c8 82#include "intl.h"
460ee112 83#include "prefix.h"
9257393c 84#include "gcc.h"
6afbc885 85#include "diagnostic.h"
8a63621f 86#include "flags.h"
14c7833c 87#include "opts.h"
c10d53dd 88
2153915d
AO
89#ifdef HAVE_MMAP_FILE
90# include <sys/mman.h>
91# ifdef HAVE_MINCORE
92/* This is on Solaris. */
93# include <sys/types.h>
94# endif
95#endif
96
97#ifndef MAP_FAILED
98# define MAP_FAILED ((void *)-1)
99#endif
100
45936a85
DD
101/* By default there is no special suffix for target executables. */
102/* FIXME: when autoconf is fixed, remove the host check - dj */
103#if defined(TARGET_EXECUTABLE_SUFFIX) && defined(HOST_EXECUTABLE_SUFFIX)
104#define HAVE_TARGET_EXECUTABLE_SUFFIX
ed1f651b 105#endif
f6ec7e54 106
45936a85
DD
107/* By default there is no special suffix for host executables. */
108#ifdef HOST_EXECUTABLE_SUFFIX
109#define HAVE_HOST_EXECUTABLE_SUFFIX
f70165f6 110#else
45936a85
DD
111#define HOST_EXECUTABLE_SUFFIX ""
112#endif
113
114/* By default, the suffix for target object files is ".o". */
115#ifdef TARGET_OBJECT_SUFFIX
116#define HAVE_TARGET_OBJECT_SUFFIX
117#else
118#define TARGET_OBJECT_SUFFIX ".o"
ed7dae04
RK
119#endif
120
8b60264b 121static const char dir_separator_str[] = { DIR_SEPARATOR, 0 };
48ff801b 122
512b62fb
JM
123/* Most every one is fine with LIBRARY_PATH. For some, it conflicts. */
124#ifndef LIBRARY_PATH_ENV
125#define LIBRARY_PATH_ENV "LIBRARY_PATH"
126#endif
127
956d6950
JL
128#ifndef HAVE_KILL
129#define kill(p,s) raise(s)
130#endif
131
ed1f651b
RS
132/* If a stage of compilation returns an exit status >= 1,
133 compilation of that file ceases. */
134
135#define MIN_FATAL_STATUS 1
136
69927b59
NB
137/* Flag set by cppspec.c to 1. */
138int is_cpp_driver;
139
110abdbc 140/* Flag set to nonzero if an @file argument has been supplied to gcc. */
2091ff66
NF
141static bool at_file_supplied;
142
14a774a9
RK
143/* Flag saying to pass the greatest exit code returned by a sub-process
144 to the calling program. */
145static int pass_exit_codes;
146
f5fa9a5b
PE
147/* Definition of string containing the arguments given to configure. */
148#include "configargs.h"
149
2628b9d3
DE
150/* Flag saying to print the directories gcc will search through looking for
151 programs, libraries, etc. */
152
153static int print_search_dirs;
154
6a9e290e 155/* Flag saying to print the full filename of this file
2dcb563f
RS
156 as found through our usual search mechanism. */
157
878f32c3 158static const char *print_file_name = NULL;
6a9e290e 159
0f41302f 160/* As print_file_name, but search for executable file. */
6a9e290e 161
878f32c3 162static const char *print_prog_name = NULL;
2dcb563f 163
60103a34
DE
164/* Flag saying to print the relative path we'd use to
165 find libgcc.a given the current compiler flags. */
166
167static int print_multi_directory;
168
3def1397
VP
169static int print_sysroot;
170
5bbcd587
JJ
171/* Flag saying to print the relative path we'd use to
172 find OS libraries given the current compiler flags. */
173
174static int print_multi_os_directory;
175
60103a34
DE
176/* Flag saying to print the list of subdirectories and
177 compiler flags used to select them in a standard form. */
178
179static int print_multi_lib;
180
b8468bc7
NC
181/* Flag saying to print the command line options understood by gcc and its
182 sub-processes. */
183
184static int print_help_list;
185
41fd0f9b
RAE
186/* Flag saying to print the version of gcc and its sub-processes. */
187
188static int print_version;
189
14da6073
JM
190/* Flag saying to print the sysroot suffix used for searching for
191 headers. */
192
193static int print_sysroot_headers_suffix;
194
ed1f651b
RS
195/* Flag indicating whether we should print the command and arguments */
196
197static int verbose_flag;
198
99f78cdd
IR
199/* Flag indicating whether we should ONLY print the command and
200 arguments (like verbose_flag) without executing the command.
201 Displayed arguments are quoted so that the generated command
202 line is suitable for execution. This is intended for use in
203 shell scripts to capture the driver-generated command line. */
204static int verbose_only_flag;
205
c662432e 206/* Flag indicating how to print command line options of sub-processes. */
91606ce2 207
c662432e 208static int print_subprocess_help;
91606ce2 209
03c41c05
ZW
210/* Flag indicating whether we should report subprocess execution times
211 (if this is supported by the system - see pexecute.c). */
212
213static int report_times;
214
bdde878c
AO
215/* Whether we should report subprocess execution times to a file. */
216
217FILE *report_times_to_file = NULL;
218
4977bab6
ZW
219/* Nonzero means place this string before uses of /, so that include
220 and library files can be found in an alternate location. */
221
db720d9a 222#ifdef TARGET_SYSTEM_ROOT
4977bab6 223static const char *target_system_root = TARGET_SYSTEM_ROOT;
db720d9a
DJ
224#else
225static const char *target_system_root = 0;
226#endif
4977bab6 227
047d636f
DJ
228/* Nonzero means pass the updated target_system_root to the compiler. */
229
230static int target_system_root_changed;
231
e7f13528
GP
232/* Nonzero means append this string to target_system_root. */
233
234static const char *target_sysroot_suffix = 0;
235
236/* Nonzero means append this string to target_system_root for headers. */
237
238static const char *target_sysroot_hdrs_suffix = 0;
239
ed1f651b
RS
240/* Nonzero means write "temp" files in source directory
241 and use the source file's name in them, and don't delete them. */
242
14fdc613
MM
243static enum save_temps {
244 SAVE_TEMPS_NONE, /* no -save-temps */
245 SAVE_TEMPS_CWD, /* -save-temps in current directory */
246 SAVE_TEMPS_OBJ /* -save-temps in object directory */
247} save_temps_flag;
248
249/* Output file to use to get the object directory for -save-temps=obj */
250static char *save_temps_prefix = 0;
251static size_t save_temps_length = 0;
ed1f651b 252
0855eab7
CT
253/* Nonzero means pass multiple source files to the compiler at one time. */
254
255static int combine_flag = 0;
256
4977bab6
ZW
257/* Nonzero means use pipes to communicate between subprocesses.
258 Overridden by either of the above two flags. */
259
260static int use_pipes;
261
53117a2f 262/* The compiler version. */
ed1f651b 263
3b304f5b 264static const char *compiler_version;
53117a2f 265
1401cf37 266/* The target version. */
53117a2f 267
37a4aa31 268static const char *const spec_version = DEFAULT_TARGET_VERSION;
ed1f651b 269
1401cf37 270/* The target machine. */
ed1f651b 271
878f32c3 272static const char *spec_machine = DEFAULT_TARGET_MACHINE;
ed1f651b 273
004fd4d5
RS
274/* Nonzero if cross-compiling.
275 When -b is used, the value comes from the `specs' file. */
276
2989d30c 277#ifdef CROSS_DIRECTORY_STRUCTURE
3b304f5b 278static const char *cross_compile = "1";
004fd4d5 279#else
3b304f5b 280static const char *cross_compile = "0";
004fd4d5
RS
281#endif
282
dc36ec2c
RK
283#ifdef MODIFY_TARGET_NAME
284
285/* Information on how to alter the target name based on a command-line
286 switch. The only case we support now is simply appending or deleting a
287 string to or from the end of the first part of the configuration name. */
288
24b97832
ILT
289enum add_del {ADD, DELETE};
290
0b5826ac 291static const struct modify_target
dc36ec2c 292{
8b60264b 293 const char *const sw;
24b97832 294 const enum add_del add_del;
8b60264b 295 const char *const str;
dc36ec2c
RK
296}
297modify_target[] = MODIFY_TARGET_NAME;
298#endif
589005ff 299
14a774a9
RK
300/* Greatest exit code of sub-processes that has been encountered up to
301 now. */
302static int greatest_status = 1;
303
ed1f651b
RS
304/* This is the obstack which we use to allocate many strings. */
305
306static struct obstack obstack;
307
b3865ca9 308/* This is the obstack to build an environment variable to pass to
6dc42e49 309 collect2 that describes all of the relevant switches of what to
b3865ca9
RS
310 pass the compiler in building the list of pointers to constructors
311 and destructors. */
312
313static struct obstack collect_obstack;
314
fe7df9c4
SP
315/* This is a list of a wrapper program and its arguments.
316 e.g. wrapper_string of "strace,-c"
317 will cause all programs to run as
318 strace -c program arguments
319 instead of just
320 program arguments */
321static const char *wrapper_string;
322
99360286
DE
323/* Forward declaration for prototypes. */
324struct path_prefix;
76391e5a 325struct prefix_list;
99360286 326
1d088dee
AJ
327static void init_spec (void);
328static void store_arg (const char *, int, int);
fe7df9c4 329static void insert_wrapper (const char *);
1d088dee
AJ
330static char *load_specs (const char *);
331static void read_specs (const char *, int);
332static void set_spec (const char *, const char *);
333static struct compiler *lookup_compiler (const char *, size_t, const char *);
00dcee0c
AM
334static char *build_search_list (const struct path_prefix *, const char *,
335 bool, bool);
e9c15f6e 336static void xputenv (const char *);
00dcee0c
AM
337static void putenv_from_prefixes (const struct path_prefix *, const char *,
338 bool);
1d088dee 339static int access_check (const char *, int);
00dcee0c 340static char *find_a_file (const struct path_prefix *, const char *, int, bool);
1d088dee 341static void add_prefix (struct path_prefix *, const char *, const char *,
1a5d37a1 342 int, int, int);
1d088dee 343static void add_sysrooted_prefix (struct path_prefix *, const char *,
1a5d37a1 344 const char *, int, int, int);
1d088dee
AJ
345static void translate_options (int *, const char *const **);
346static char *skip_whitespace (char *);
347static void delete_if_ordinary (const char *);
348static void delete_temp_files (void);
349static void delete_failure_queue (void);
350static void clear_failure_queue (void);
351static int check_live_switch (int, int);
352static const char *handle_braces (const char *);
353static inline bool input_suffix_matches (const char *, const char *);
354static inline bool switch_matches (const char *, const char *, int);
355static inline void mark_matching_switches (const char *, const char *, int);
356static inline void process_marked_switches (void);
357static const char *process_brace_body (const char *, const char *, const char *, int, int);
358static const struct spec_function *lookup_spec_function (const char *);
359static const char *eval_spec_function (const char *, const char *);
360static const char *handle_spec_function (const char *);
361static char *save_string (const char *, int);
362static void set_collect_gcc_options (void);
363static int do_spec_1 (const char *, int, const char *);
364static int do_spec_2 (const char *);
365static void do_option_spec (const char *, const char *);
366static void do_self_spec (const char *);
367static const char *find_file (const char *);
00dcee0c 368static int is_directory (const char *, bool);
1d088dee
AJ
369static const char *validate_switches (const char *);
370static void validate_all_switches (void);
371static inline void validate_switches_from_spec (const char *);
372static void give_switch (int, int);
373static int used_arg (const char *, int);
374static int default_arg (const char *, int);
375static void set_multilib_dir (void);
376static void print_multilib_info (void);
377static void perror_with_name (const char *);
1d088dee
AJ
378static void display_help (void);
379static void add_preprocessor_option (const char *, int);
380static void add_assembler_option (const char *, int);
381static void add_linker_option (const char *, int);
e451301f 382static void process_command (int, const char **);
1d088dee
AJ
383static int execute (void);
384static void alloc_args (void);
385static void clear_args (void);
2dec80c7 386static void fatal_signal (int);
328163dc 387#if defined(ENABLE_SHARED_LIBGCC) && !defined(REAL_LIBGCC_SPEC)
1d088dee
AJ
388static void init_gcc_specs (struct obstack *, const char *, const char *,
389 const char *);
6894579f 390#endif
40cdfca6 391#if defined(HAVE_TARGET_OBJECT_SUFFIX) || defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
1d088dee 392static const char *convert_filename (const char *, int, int);
40cdfca6 393#endif
f3226a90 394
30d8946b 395static const char *getenv_spec_function (int, const char **);
1d088dee
AJ
396static const char *if_exists_spec_function (int, const char **);
397static const char *if_exists_else_spec_function (int, const char **);
3dd53121 398static const char *replace_outfile_spec_function (int, const char **);
ed5b9f96 399static const char *version_compare_spec_function (int, const char **);
953ff289 400static const char *include_spec_function (int, const char **);
4adbd5dd 401static const char *find_file_spec_function (int, const char **);
a0f87454 402static const char *print_asm_header_spec_function (int, const char **);
2153915d
AO
403static const char *compare_debug_dump_opt_spec_function (int, const char **);
404static const char *compare_debug_self_opt_spec_function (int, const char **);
405static const char *compare_debug_auxbase_opt_spec_function (int, const char **);
ed1f651b 406\f
d991c721
BK
407/* The Specs Language
408
409Specs are strings containing lines, each of which (if not blank)
ed1f651b
RS
410is made up of a program name, and arguments separated by spaces.
411The program name must be exact and start from root, since no path
412is searched and it is unreliable to depend on the current working directory.
413Redirection of input or output is not supported; the subprograms must
414accept filenames saying what files to read and write.
415
416In addition, the specs can contain %-sequences to substitute variable text
417or for conditional text. Here is a table of all defined %-sequences.
418Note that spaces are not generated automatically around the results of
419expanding these sequences; therefore, you can concatenate them together
420or with constant text in a single argument.
421
422 %% substitute one % into the program name or argument.
423 %i substitute the name of the input file being processed.
424 %b substitute the basename of the input file being processed.
425 This is the substring up to (and not including) the last period
14fdc613 426 and not including the directory unless -save-temps was specified
3beb864c 427 to put temporaries in a different location.
ea414c97 428 %B same as %b, but include the file suffix (text after the last period).
dd75c292
CB
429 %gSUFFIX
430 substitute a file name that has suffix SUFFIX and is chosen
431 once per compilation, and mark the argument a la %d. To reduce
432 exposure to denial-of-service attacks, the file name is now
433 chosen in a way that is hard to predict even when previously
434 chosen file names are known. For example, `%g.s ... %g.o ... %g.s'
435 might turn into `ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s'. SUFFIX matches
a92dd235 436 the regexp "[.0-9A-Za-z]*%O"; "%O" is treated exactly as if it
a1d9074c
TT
437 had been pre-processed. Previously, %g was simply substituted
438 with a file name chosen once per compilation, without regard
439 to any appended suffix (which was therefore treated just like
440 ordinary text), making such attacks more likely to succeed.
4977bab6
ZW
441 %|SUFFIX
442 like %g, but if -pipe is in effect, expands simply to "-".
443 %mSUFFIX
444 like %g, but if -pipe is in effect, expands to nothing. (We have both
445 %| and %m to accommodate differences between system assemblers; see
446 the AS_NEEDS_DASH_FOR_PIPED_INPUT target macro.)
dd75c292
CB
447 %uSUFFIX
448 like %g, but generates a new temporary file name even if %uSUFFIX
449 was already seen.
450 %USUFFIX
451 substitutes the last file name generated with %uSUFFIX, generating a
452 new one if there is no such last file name. In the absence of any
453 %uSUFFIX, this is just like %gSUFFIX, except they don't share
454 the same suffix "space", so `%g.s ... %U.s ... %g.s ... %U.s'
455 would involve the generation of two distinct file names, one
456 for each `%g.s' and another for each `%U.s'. Previously, %U was
457 simply substituted with a file name chosen for the previous %u,
458 without regard to any appended suffix.
49009afd
JL
459 %jSUFFIX
460 substitutes the name of the HOST_BIT_BUCKET, if any, and if it is
461 writable, and if save-temps is off; otherwise, substitute the name
462 of a temporary file, just like %u. This temporary file is not
463 meant for communication between processes, but rather as a junk
464 disposal mechanism.
11972f66
NS
465 %.SUFFIX
466 substitutes .SUFFIX for the suffixes of a matched switch's args when
467 it is subsequently output with %*. SUFFIX is terminated by the next
468 space or %.
ed1f651b 469 %d marks the argument containing or following the %d as a
ee618c17 470 temporary file name, so that that file will be deleted if GCC exits
ed1f651b
RS
471 successfully. Unlike %g, this contributes no text to the argument.
472 %w marks the argument containing or following the %w as the
473 "output file" of this compilation. This puts the argument
474 into the sequence of arguments that %o will substitute later.
17211ab5 475 %V indicates that this compilation produces no "output file".
ed1f651b
RS
476 %W{...}
477 like %{...} but mark last argument supplied within
478 as a file to be deleted on failure.
479 %o substitutes the names of all the output files, with spaces
480 automatically placed around them. You should write spaces
481 around the %o as well or the results are undefined.
482 %o is for use in the specs for running the linker.
483 Input files whose names have no recognized suffix are not compiled
484 at all, but they are included among the output files, so they will
485 be linked.
dd75c292 486 %O substitutes the suffix for object files. Note that this is
a1d9074c
TT
487 handled specially when it immediately follows %g, %u, or %U
488 (with or without a suffix argument) because of the need for
489 those to form complete file names. The handling is such that
490 %O is treated exactly as if it had already been substituted,
491 except that %g, %u, and %U do not currently support additional
492 SUFFIX characters following %O as they would following, for
493 example, `.o'.
047d636f 494 %I Substitute any of -iprefix (made from GCC_EXEC_PREFIX), -isysroot
2b6dd222
JM
495 (made from TARGET_SYSTEM_ROOT), -isystem (made from COMPILER_PATH
496 and -B options) and -imultilib as necessary.
ed1f651b
RS
497 %s current argument is the name of a library or startup file of some sort.
498 Search for that file in a standard list of directories
499 and substitute the full name found.
500 %eSTR Print STR as an error message. STR is terminated by a newline.
501 Use this when inconsistent options are detected.
09da1532 502 %nSTR Print STR as a notice. STR is terminated by a newline.
ed1f651b
RS
503 %x{OPTION} Accumulate an option for %X.
504 %X Output the accumulated linker options specified by compilations.
c9ebacb8 505 %Y Output the accumulated assembler options specified by compilations.
57cb9b60 506 %Z Output the accumulated preprocessor options specified by compilations.
ed1f651b
RS
507 %a process ASM_SPEC as a spec.
508 This allows config.h to specify part of the spec for running as.
509 %A process ASM_FINAL_SPEC as a spec. A capital A is actually
510 used here. This can be used to run a post-processor after the
9ec36da5 511 assembler has done its job.
48ff801b 512 %D Dump out a -L option for each directory in startfile_prefixes.
60103a34 513 If multilib_dir is set, extra entries are generated with it affixed.
ed1f651b
RS
514 %l process LINK_SPEC as a spec.
515 %L process LIB_SPEC as a spec.
68d69835 516 %G process LIBGCC_SPEC as a spec.
380e5ca4
MM
517 %R Output the concatenation of target_system_root and
518 target_sysroot_suffix.
ed1f651b
RS
519 %S process STARTFILE_SPEC as a spec. A capital S is actually used here.
520 %E process ENDFILE_SPEC as a spec. A capital E is actually used here.
9db0819e 521 %C process CPP_SPEC as a spec.
ed1f651b
RS
522 %1 process CC1_SPEC as a spec.
523 %2 process CC1PLUS_SPEC as a spec.
524 %* substitute the variable part of a matched option. (See below.)
525 Note that each comma in the substituted string is replaced by
526 a single space.
4977bab6
ZW
527 %<S remove all occurrences of -S from the command line.
528 Note - this command is position dependent. % commands in the
529 spec string before this one will see -S, % commands in the
530 spec string after this one will not.
531 %<S* remove all occurrences of all switches beginning with -S from the
532 command line.
f3226a90
JT
533 %:function(args)
534 Call the named function FUNCTION, passing it ARGS. ARGS is
535 first processed as a nested spec string, then split into an
536 argument vector in the usual fashion. The function returns
537 a string which is processed as if it had appeared literally
538 as part of the current spec.
ee618c17 539 %{S} substitutes the -S switch, if that switch was given to GCC.
ed1f651b
RS
540 If that switch was not specified, this substitutes nothing.
541 Here S is a metasyntactic variable.
ee618c17 542 %{S*} substitutes all the switches specified to GCC whose names start
196a37f4 543 with -S. This is used for -o, -I, etc; switches that take
ee618c17 544 arguments. GCC considers `-o foo' as being one switch whose
ed1f651b
RS
545 name starts with `o'. %{o*} would substitute this text,
546 including the space; thus, two arguments would be generated.
196a37f4 547 %{S*&T*} likewise, but preserve order of S and T options (the order
1d088dee
AJ
548 of S and T in the spec is not significant). Can be any number
549 of ampersand-separated variables; for each the wild card is
550 optional. Useful for CPP as %{D*&U*&A*}.
4977bab6 551
ee618c17
BE
552 %{S:X} substitutes X, if the -S switch was given to GCC.
553 %{!S:X} substitutes X, if the -S switch was NOT given to GCC.
4977bab6 554 %{S*:X} substitutes X if one or more switches whose names start
ee618c17 555 with -S was given to GCC. Normally X is substituted only
4977bab6
ZW
556 once, no matter how many such switches appeared. However,
557 if %* appears somewhere in X, then X will be substituted
558 once for each matching switch, with the %* replaced by the
559 part of that switch that matched the '*'.
560 %{.S:X} substitutes X, if processing a file with suffix S.
561 %{!.S:X} substitutes X, if NOT processing a file with suffix S.
48137d59
GK
562 %{,S:X} substitutes X, if processing a file which will use spec S.
563 %{!,S:X} substitutes X, if NOT processing a file which will use spec S.
3beb864c 564
ee618c17 565 %{S|T:X} substitutes X if either -S or -T was given to GCC. This may be
48137d59
GK
566 combined with '!', '.', ',', and '*' as above binding stronger
567 than the OR.
4977bab6
ZW
568 If %* appears in X, all of the alternatives must be starred, and
569 only the first matching alternative is substituted.
ee618c17
BE
570 %{S:X; if S was given to GCC, substitutes X;
571 T:Y; else if T was given to GCC, substitutes Y;
4977bab6 572 :D} else substitutes D. There can be as many clauses as you need.
48137d59 573 This may be combined with '.', '!', ',', '|', and '*' as above.
4977bab6 574
b3865ca9 575 %(Spec) processes a specification defined in a specs file as *Spec:
4089dfab 576 %[Spec] as above, but put __ around -D arguments
ed1f651b 577
4977bab6 578The conditional text X in a %{S:X} or similar construct may contain
ed1f651b 579other nested % constructs or spaces, or even newlines. They are
4977bab6
ZW
580processed as usual, as described above. Trailing white space in X is
581ignored. White space may also appear anywhere on the left side of the
582colon in these constructs, except between . or * and the corresponding
583word.
ed1f651b 584
6c396fb5 585The -O, -f, -m, and -W switches are handled specifically in these
f5b0eb4e
RK
586constructs. If another value of -O or the negated form of a -f, -m, or
587-W switch is found later in the command line, the earlier switch
6c396fb5
RK
588value is ignored, except with {S*} where S is just one letter; this
589passes all matching options.
f5b0eb4e 590
9bf09437
RH
591The character | at the beginning of the predicate text is used to indicate
592that a command should be piped to the following command, but only if -pipe
593is specified.
ed1f651b 594
ee618c17 595Note that it is built into GCC which switches take arguments and which
ed1f651b
RS
596do not. You might think it would be useful to generalize this to
597allow each compiler's spec to say which switches take arguments. But
ee618c17 598this cannot be done in a consistent fashion. GCC cannot even decide
ed1f651b
RS
599which input files have been specified without knowing which switches
600take arguments, and it must know which input files to compile in order
601to tell which compilers to run.
602
ee618c17 603GCC also knows implicitly that arguments starting in `-l' are to be
ed1f651b
RS
604treated as compiler output files, and passed to the linker in their
605proper position among the other output files. */
606\f
0fef3fd0 607/* Define the macros used for specs %a, %l, %L, %S, %C, %1. */
ed1f651b
RS
608
609/* config.h can define ASM_SPEC to provide extra args to the assembler
610 or extra switch-translations. */
611#ifndef ASM_SPEC
612#define ASM_SPEC ""
613#endif
614
615/* config.h can define ASM_FINAL_SPEC to run a post processor after
616 the assembler has run. */
617#ifndef ASM_FINAL_SPEC
618#define ASM_FINAL_SPEC ""
619#endif
620
621/* config.h can define CPP_SPEC to provide extra args to the C preprocessor
622 or extra switch-translations. */
623#ifndef CPP_SPEC
624#define CPP_SPEC ""
625#endif
626
627/* config.h can define CC1_SPEC to provide extra args to cc1 and cc1plus
628 or extra switch-translations. */
629#ifndef CC1_SPEC
630#define CC1_SPEC ""
631#endif
632
633/* config.h can define CC1PLUS_SPEC to provide extra args to cc1plus
634 or extra switch-translations. */
635#ifndef CC1PLUS_SPEC
636#define CC1PLUS_SPEC ""
637#endif
638
639/* config.h can define LINK_SPEC to provide extra args to the linker
640 or extra switch-translations. */
641#ifndef LINK_SPEC
642#define LINK_SPEC ""
643#endif
644
645/* config.h can define LIB_SPEC to override the default libraries. */
646#ifndef LIB_SPEC
68d69835
JM
647#define LIB_SPEC "%{!shared:%{g*:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}}"
648#endif
649
6de9cd9a
DN
650/* mudflap specs */
651#ifndef MFWRAP_SPEC
652/* XXX: valid only for GNU ld */
653/* XXX: should exactly match hooks provided by libmudflap.a */
654#define MFWRAP_SPEC " %{static: %{fmudflap|fmudflapth: \
655 --wrap=malloc --wrap=free --wrap=calloc --wrap=realloc\
656 --wrap=mmap --wrap=munmap --wrap=alloca\
7544a87f 657} %{fmudflapth: --wrap=pthread_create\
6de9cd9a
DN
658}} %{fmudflap|fmudflapth: --wrap=main}"
659#endif
660#ifndef MFLIB_SPEC
7904f95f 661#define MFLIB_SPEC "%{fmudflap|fmudflapth: -export-dynamic}"
6de9cd9a
DN
662#endif
663
68d69835
JM
664/* config.h can define LIBGCC_SPEC to override how and when libgcc.a is
665 included. */
666#ifndef LIBGCC_SPEC
328163dc
MA
667#if defined(REAL_LIBGCC_SPEC)
668#define LIBGCC_SPEC REAL_LIBGCC_SPEC
57642751 669#elif defined(LINK_LIBGCC_SPECIAL_1)
68d69835 670/* Have gcc do the search for libgcc.a. */
ba2b7435 671#define LIBGCC_SPEC "libgcc.a%s"
68d69835 672#else
ba2b7435 673#define LIBGCC_SPEC "-lgcc"
68d69835 674#endif
ed1f651b
RS
675#endif
676
677/* config.h can define STARTFILE_SPEC to override the default crt0 files. */
678#ifndef STARTFILE_SPEC
679#define STARTFILE_SPEC \
adcb8d7d 680 "%{!shared:%{pg:gcrt0%O%s}%{!pg:%{p:mcrt0%O%s}%{!p:crt0%O%s}}}"
ed1f651b
RS
681#endif
682
bb9da768 683/* config.h can define SWITCHES_NEED_SPACES to control which options
7d6ce94a
MM
684 require spaces between the option and the argument.
685
686 We define SWITCHES_NEED_SPACES to include "o" by default. This
687 causes "-ofoo.o" to be split into "-o foo.o" during the initial
688 processing of the command-line, before being seen by the specs
689 machinery. This makes sure we record "foo.o" as the temporary file
690 to be deleted in the case of error, rather than "-ofoo.o". */
ed1f651b 691#ifndef SWITCHES_NEED_SPACES
7d6ce94a 692#define SWITCHES_NEED_SPACES "o"
ed1f651b
RS
693#endif
694
695/* config.h can define ENDFILE_SPEC to override the default crtn files. */
696#ifndef ENDFILE_SPEC
697#define ENDFILE_SPEC ""
698#endif
699
10da1131
BM
700#ifndef LINKER_NAME
701#define LINKER_NAME "collect2"
702#endif
703
c8aea42c
PB
704#ifdef HAVE_AS_DEBUG_PREFIX_MAP
705#define ASM_MAP " %{fdebug-prefix-map=*:--debug-prefix-map %*}"
706#else
707#define ASM_MAP ""
708#endif
709
5f0e9ea2
GK
710/* Define ASM_DEBUG_SPEC to be a spec suitable for translating '-g'
711 to the assembler. */
712#ifndef ASM_DEBUG_SPEC
b2ace8a4
JJ
713# if defined(DBX_DEBUGGING_INFO) && defined(DWARF2_DEBUGGING_INFO) \
714 && defined(HAVE_AS_GDWARF2_DEBUG_FLAG) && defined(HAVE_AS_GSTABS_DEBUG_FLAG)
c8aea42c
PB
715# define ASM_DEBUG_SPEC \
716 (PREFERRED_DEBUGGING_TYPE == DBX_DEBUG \
c7b94907
MM
717 ? "%{!g0:%{gdwarf-2*:--gdwarf2}%{!gdwarf-2*:%{g*:--gstabs}}}" ASM_MAP \
718 : "%{!g0:%{gstabs*:--gstabs}%{!gstabs*:%{g*:--gdwarf2}}}" ASM_MAP)
b2ace8a4
JJ
719# else
720# if defined(DBX_DEBUGGING_INFO) && defined(HAVE_AS_GSTABS_DEBUG_FLAG)
c7b94907 721# define ASM_DEBUG_SPEC "%{g*:%{!g0:--gstabs}}" ASM_MAP
b2ace8a4
JJ
722# endif
723# if defined(DWARF2_DEBUGGING_INFO) && defined(HAVE_AS_GDWARF2_DEBUG_FLAG)
c7b94907 724# define ASM_DEBUG_SPEC "%{g*:%{!g0:--gdwarf2}}" ASM_MAP
5f0e9ea2 725# endif
5f0e9ea2
GK
726# endif
727#endif
8a63621f
JJ
728#ifndef ASM_DEBUG_SPEC
729# define ASM_DEBUG_SPEC ""
730#endif
5f0e9ea2 731
ea414c97
ZW
732/* Here is the spec for running the linker, after compiling all files. */
733
bbd7687d
DM
734/* This is overridable by the target in case they need to specify the
735 -lgcc and -lc order specially, yet not require them to override all
736 of LINK_COMMAND_SPEC. */
737#ifndef LINK_GCC_C_SEQUENCE_SPEC
738#define LINK_GCC_C_SEQUENCE_SPEC "%G %L %G"
739#endif
740
77008252
JJ
741#ifndef LINK_SSP_SPEC
742#ifdef TARGET_LIBC_PROVIDES_SSP
743#define LINK_SSP_SPEC "%{fstack-protector:}"
744#else
ec92bd4b 745#define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all:-lssp_nonshared -lssp}"
77008252
JJ
746#endif
747#endif
748
24a4dd31
JJ
749#ifndef LINK_PIE_SPEC
750#ifdef HAVE_LD_PIE
751#define LINK_PIE_SPEC "%{pie:-pie} "
752#else
753#define LINK_PIE_SPEC "%{pie:} "
754#endif
755#endif
756
cd533689
PP
757#ifndef LINK_BUILDID_SPEC
758# if defined(HAVE_LD_BUILDID) && defined(ENABLE_LD_BUILDID)
759# define LINK_BUILDID_SPEC "%{!r:--build-id} "
760# endif
761#endif
762
763
ea414c97
ZW
764/* -u* was put back because both BSD and SysV seem to support it. */
765/* %{static:} simply prevents an error message if the target machine
766 doesn't handle -static. */
767/* We want %{T*} after %{L*} and %D so that it can be used to specify linker
768 scripts which exist in user specified directories, or in standard
769 directories. */
d7f09764
DN
770/* We pass any -flto and -fwhopr flags on to the linker, which is expected
771 to understand them. In practice, this means it had better be collect2. */
ea414c97
ZW
772#ifndef LINK_COMMAND_SPEC
773#define LINK_COMMAND_SPEC "\
774%{!fsyntax-only:%{!c:%{!M:%{!MM:%{!E:%{!S:\
d7f09764 775 %(linker) \
da18ea94 776 %{fuse-linker-plugin: \
d7f09764
DN
777 -plugin %(linker_plugin_file) \
778 -plugin-opt=%(lto_wrapper) \
5cd0e96b 779 -plugin-opt=-fresolution=%u.res \
d7f09764 780 %{static|static-libgcc:-plugin-opt=-pass-through=%(lto_libgcc)} \
d520c7fb 781 %{static:-plugin-opt=-pass-through=-lc} \
d7f09764 782 } \
c04b6b38 783 %{flto} %{fwhopr*} %l " LINK_PIE_SPEC \
d7f09764 784 "%X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} %{r}\
24a4dd31 785 %{s} %{t} %{u*} %{x} %{z} %{Z} %{!A:%{!nostdlib:%{!nostartfiles:%S}}}\
8beb0d9e 786 %{static:} %{L*} %(mfwrap) %(link_libgcc) %o\
daf49354 787 %{fopenmp|ftree-parallelize-loops=*:%:include(libgomp.spec)%(link_gomp)} %(mflib)\
a123d175 788 %{fprofile-arcs|fprofile-generate*|coverage:-lgcov}\
9714c911 789 %{!nostdlib:%{!nodefaultlibs:%(link_ssp) %(link_gcc_c_sequence)}}\
ea414c97
ZW
790 %{!A:%{!nostdlib:%{!nostartfiles:%E}}} %{T*} }}}}}}"
791#endif
792
793#ifndef LINK_LIBGCC_SPEC
57642751
DJ
794/* Generate -L options for startfile prefix list. */
795# define LINK_LIBGCC_SPEC "%D"
ea414c97
ZW
796#endif
797
343f59d9
AM
798#ifndef STARTFILE_PREFIX_SPEC
799# define STARTFILE_PREFIX_SPEC ""
800#endif
801
380e5ca4
MM
802#ifndef SYSROOT_SPEC
803# define SYSROOT_SPEC "--sysroot=%R"
804#endif
805
e7f13528
GP
806#ifndef SYSROOT_SUFFIX_SPEC
807# define SYSROOT_SUFFIX_SPEC ""
808#endif
809
810#ifndef SYSROOT_HEADERS_SUFFIX_SPEC
811# define SYSROOT_HEADERS_SUFFIX_SPEC ""
812#endif
813
81bca2f5 814static const char *asm_debug;
3b304f5b 815static const char *cpp_spec = CPP_SPEC;
3b304f5b
ZW
816static const char *cc1_spec = CC1_SPEC;
817static const char *cc1plus_spec = CC1PLUS_SPEC;
bbd7687d 818static const char *link_gcc_c_sequence_spec = LINK_GCC_C_SEQUENCE_SPEC;
77008252 819static const char *link_ssp_spec = LINK_SSP_SPEC;
3b304f5b
ZW
820static const char *asm_spec = ASM_SPEC;
821static const char *asm_final_spec = ASM_FINAL_SPEC;
822static const char *link_spec = LINK_SPEC;
823static const char *lib_spec = LIB_SPEC;
6de9cd9a
DN
824static const char *mfwrap_spec = MFWRAP_SPEC;
825static const char *mflib_spec = MFLIB_SPEC;
953ff289 826static const char *link_gomp_spec = "";
3b304f5b
ZW
827static const char *libgcc_spec = LIBGCC_SPEC;
828static const char *endfile_spec = ENDFILE_SPEC;
829static const char *startfile_spec = STARTFILE_SPEC;
830static const char *switches_need_spaces = SWITCHES_NEED_SPACES;
831static const char *linker_name_spec = LINKER_NAME;
d7f09764
DN
832static const char *linker_plugin_file_spec = "";
833static const char *lto_wrapper_spec = "";
834static const char *lto_gcc_spec = "";
835static const char *lto_libgcc_spec = "";
ea414c97
ZW
836static const char *link_command_spec = LINK_COMMAND_SPEC;
837static const char *link_libgcc_spec = LINK_LIBGCC_SPEC;
343f59d9 838static const char *startfile_prefix_spec = STARTFILE_PREFIX_SPEC;
380e5ca4 839static const char *sysroot_spec = SYSROOT_SPEC;
e7f13528
GP
840static const char *sysroot_suffix_spec = SYSROOT_SUFFIX_SPEC;
841static const char *sysroot_hdrs_suffix_spec = SYSROOT_HEADERS_SUFFIX_SPEC;
ea414c97
ZW
842
843/* Standard options to cpp, cc1, and as, to reduce duplication in specs.
844 There should be no need to override these in target dependent files,
845 but we need to copy them to the specs file so that newer versions
846 of the GCC driver can correctly drive older tool chains with the
847 appropriate -B options. */
848
e5f5feea
NB
849/* When cpplib handles traditional preprocessing, get rid of this, and
850 call cc1 (or cc1obj in objc/lang-specs.h) from the main specs so
851 that we default the front end language better. */
ea414c97 852static const char *trad_capable_cpp =
017acb41 853"cc1 -E %{traditional|ftraditional|traditional-cpp:-traditional-cpp}";
ea414c97 854
4ca1256f
NB
855/* We don't wrap .d files in %W{} since a missing .d file, and
856 therefore no dependency entry, confuses make into thinking a .o
857 file that happens to exist is up-to-date. */
ffdeea47 858static const char *cpp_unique_options =
9cc54940 859"%{!Q:-quiet} %{nostdinc*} %{C} %{CC} %{v} %{I*&F*} %{P} %I\
4ca1256f
NB
860 %{MD:-MD %{!o:%b.d}%{o*:%.d%*}}\
861 %{MMD:-MMD %{!o:%b.d}%{o*:%.d%*}}\
862 %{M} %{MM} %{MF*} %{MG} %{MP} %{MQ*} %{MT*}\
3dfe046f 863 %{!E:%{!M:%{!MM:%{!MT:%{!MQ:%{MD|MMD:%{o*:-MQ %*}}}}}}}\
3a610de8 864 %{remap} %{g3|ggdb3|gstabs3|gcoff3|gxcoff3|gvms3:-dD}\
4adbd5dd 865 %{!iplugindir*:%{fplugin*:-iplugindir=%:find-file(plugin)}}\
3a610de8 866 %{H} %C %{D*&U*&A*} %{i*} %Z %i\
6de9cd9a
DN
867 %{fmudflap:-D_MUDFLAP -include mf-runtime.h}\
868 %{fmudflapth:-D_MUDFLAP -D_MUDFLAPTH -include mf-runtime.h}\
56cd5b95 869 %{E|M|MM:%W{o*}}";
ffdeea47
JJ
870
871/* This contains cpp options which are common with cc1_options and are passed
059ba716
CD
872 only when preprocessing only to avoid duplication. We pass the cc1 spec
873 options to the preprocessor so that it the cc1 spec may manipulate
874 options used to set target flags. Those special target flags settings may
875 in turn cause preprocessor symbols to be defined specially. */
ffdeea47 876static const char *cpp_options =
740ca4b2 877"%(cpp_unique_options) %1 %{m*} %{std*&ansi&trigraphs} %{W*&pedantic*} %{w}\
09828811 878 %{f*} %{g*:%{!g0:%{g*} %{!fno-working-directory:-fworking-directory}}} %{O*}\
14fdc613 879 %{undef} %{save-temps*:-fpch-preprocess}";
ea414c97 880
8b968bd1
MW
881/* This contains cpp options which are not passed when the preprocessor
882 output will be used by another program. */
883static const char *cpp_debug_options = "%{d*}";
884
708bceb7 885/* NB: This is shared amongst all front-ends, except for Ada. */
ea414c97
ZW
886static const char *cc1_options =
887"%{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
4adbd5dd 888 %{!iplugindir*:%{fplugin*:-iplugindir=%:find-file(plugin)}}\
d7fb0a6d 889 %1 %{!Q:-quiet} %{!dumpbase:-dumpbase %B} %{d*} %{m*} %{a*}\
2153915d
AO
890 %{fcompare-debug-second:%:compare-debug-auxbase-opt(%b)} \
891 %{!fcompare-debug-second:%{c|S:%{o*:-auxbase-strip %*}%{!o*:-auxbase %b}}}%{!c:%{!S:-auxbase %b}} \
740ca4b2 892 %{g*} %{O*} %{W*&pedantic*} %{w} %{std*&ansi&trigraphs}\
3df89291 893 %{v:-version} %{pg:-p} %{p} %{f*} %{undef}\
c47af4b7 894 %{Qn:-fno-ident} %{--help:--help}\
91606ce2 895 %{--target-help:--target-help}\
c662432e 896 %{--help=*:--help=%(VALUE)}\
49009afd 897 %{!fsyntax-only:%{S:%W{o*}%{!o*:-o %b.s}}}\
6de9cd9a 898 %{fsyntax-only:-o %j} %{-param*}\
ee4c708e
BE
899 %{fmudflap|fmudflapth:-fno-builtin -fno-merge-constants}\
900 %{coverage:-fprofile-arcs -ftest-coverage}";
ea414c97
ZW
901
902static const char *asm_options =
dc60b775
CD
903"%{--target-help:%:print-asm-header()} "
904#if HAVE_GNU_AS
905/* If GNU AS is used, then convert -w (no warnings), -I, and -v
906 to the assembler equivalents. */
907"%{v} %{w:-W} %{I*} "
908#endif
909"%a %Y %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}";
ffd86336 910
5a8e2650 911static const char *invoke_as =
4977bab6 912#ifdef AS_NEEDS_DASH_FOR_PIPED_INPUT
d7f09764
DN
913"%{!fwpa:\
914 %{fcompare-debug=*|fdump-final-insns=*:%:compare-debug-dump-opt()}\
915 %{!S:-o %|.s |\n as %(asm_options) %|.s %A }\
916 }";
4977bab6 917#else
d7f09764
DN
918"%{!fwpa:\
919 %{fcompare-debug=*|fdump-final-insns=*:%:compare-debug-dump-opt()}\
920 %{!S:-o %|.s |\n as %(asm_options) %m.s %A }\
921 }";
4977bab6 922#endif
5a8e2650 923
ffd86336 924/* Some compilers have limits on line lengths, and the multilib_select
961b7009
MM
925 and/or multilib_matches strings can be very long, so we build them at
926 run time. */
ffd86336 927static struct obstack multilib_obstack;
3b304f5b
ZW
928static const char *multilib_select;
929static const char *multilib_matches;
930static const char *multilib_defaults;
931static const char *multilib_exclusions;
961b7009
MM
932
933/* Check whether a particular argument is a default argument. */
934
935#ifndef MULTILIB_DEFAULTS
936#define MULTILIB_DEFAULTS { "" }
937#endif
938
d25a45d4 939static const char *const multilib_defaults_raw[] = MULTILIB_DEFAULTS;
ed1f651b 940
db36994b
RS
941#ifndef DRIVER_SELF_SPECS
942#define DRIVER_SELF_SPECS ""
943#endif
944
953ff289
DN
945/* Adding -fopenmp should imply pthreads. This is particularly important
946 for targets that use different start files and suchlike. */
947#ifndef GOMP_SELF_SPECS
daf49354 948#define GOMP_SELF_SPECS "%{fopenmp|ftree-parallelize-loops=*: -pthread}"
953ff289
DN
949#endif
950
951static const char *const driver_self_specs[] = {
b5b8b0ac 952 "%{fdump-final-insns:-fdump-final-insns=.} %<fdump-final-insns",
e11ddaf5 953 DRIVER_SELF_SPECS, CONFIGURE_SPECS, GOMP_SELF_SPECS
953ff289 954};
db36994b 955
7816bea0
DJ
956#ifndef OPTION_DEFAULT_SPECS
957#define OPTION_DEFAULT_SPECS { "", "" }
958#endif
959
960struct default_spec
961{
962 const char *name;
963 const char *spec;
964};
965
966static const struct default_spec
967 option_default_specs[] = { OPTION_DEFAULT_SPECS };
968
3ac63d94
NC
969struct user_specs
970{
d9ac3a07 971 struct user_specs *next;
878f32c3 972 const char *filename;
d9ac3a07
MM
973};
974
975static struct user_specs *user_specs_head, *user_specs_tail;
976
815cf875
RK
977#ifndef SWITCH_TAKES_ARG
978#define SWITCH_TAKES_ARG(CHAR) DEFAULT_SWITCH_TAKES_ARG(CHAR)
ed1f651b
RS
979#endif
980
3b39b94f
ILT
981#ifndef WORD_SWITCH_TAKES_ARG
982#define WORD_SWITCH_TAKES_ARG(STR) DEFAULT_WORD_SWITCH_TAKES_ARG (STR)
ed1f651b
RS
983#endif
984\f
45936a85 985#ifdef HAVE_TARGET_EXECUTABLE_SUFFIX
88117d44
NC
986/* This defines which switches stop a full compilation. */
987#define DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR) \
1b5bc8e9 988 ((CHAR) == 'c' || (CHAR) == 'S' || (CHAR) == 'E')
88117d44
NC
989
990#ifndef SWITCH_CURTAILS_COMPILATION
991#define SWITCH_CURTAILS_COMPILATION(CHAR) \
992 DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR)
993#endif
994#endif
995
ed1f651b
RS
996/* Record the mapping from file suffixes for compilation specs. */
997
998struct compiler
999{
878f32c3 1000 const char *suffix; /* Use this compiler for input files
ed1f651b 1001 whose names end in this suffix. */
ec32609a 1002
ea414c97 1003 const char *spec; /* To use this compiler, run this spec. */
a9374841
MM
1004
1005 const char *cpp_spec; /* If non-NULL, substitute this spec
1006 for `%C', rather than the usual
1007 cpp_spec. */
1ea7e6ad 1008 const int combinable; /* If nonzero, compiler can deal with
0855eab7 1009 multiple source files at once (IMA). */
1ea7e6ad 1010 const int needs_preprocessing; /* If nonzero, source files need to
0855eab7 1011 be run through a preprocessor. */
ed1f651b
RS
1012};
1013
1014/* Pointer to a vector of `struct compiler' that gives the spec for
1015 compiling a file, based on its suffix.
1016 A file that does not end in any of these suffixes will be passed
1017 unchanged to the loader and nothing else will be done to it.
1018
1019 An entry containing two 0s is used to terminate the vector.
1020
1021 If multiple entries match a file, the last matching one is used. */
1022
1023static struct compiler *compilers;
1024
1025/* Number of entries in `compilers', not counting the null terminator. */
1026
1027static int n_compilers;
1028
1029/* The default list of file name suffixes and their compilation specs. */
1030
5e65297b 1031static const struct compiler default_compilers[] =
ed1f651b 1032{
4689ad58 1033 /* Add lists of suffixes of known languages here. If those languages
e9a25f70
JL
1034 were not present when we built the driver, we will hit these copies
1035 and be given a more meaningful error than "file not used since
4689ad58 1036 linking is not done". */
0855eab7 1037 {".m", "#Objective-C", 0, 0, 0}, {".mi", "#Objective-C", 0, 0, 0},
ad8c162b
ZL
1038 {".mm", "#Objective-C++", 0, 0, 0}, {".M", "#Objective-C++", 0, 0, 0},
1039 {".mii", "#Objective-C++", 0, 0, 0},
7904f95f
EC
1040 {".cc", "#C++", 0, 0, 0}, {".cxx", "#C++", 0, 0, 0},
1041 {".cpp", "#C++", 0, 0, 0}, {".cp", "#C++", 0, 0, 0},
0855eab7
CT
1042 {".c++", "#C++", 0, 0, 0}, {".C", "#C++", 0, 0, 0},
1043 {".CPP", "#C++", 0, 0, 0}, {".ii", "#C++", 0, 0, 0},
1044 {".ads", "#Ada", 0, 0, 0}, {".adb", "#Ada", 0, 0, 0},
3135ce84
FXC
1045 {".f", "#Fortran", 0, 0, 0}, {".F", "#Fortran", 0, 0, 0},
1046 {".for", "#Fortran", 0, 0, 0}, {".FOR", "#Fortran", 0, 0, 0},
1047 {".ftn", "#Fortran", 0, 0, 0}, {".FTN", "#Fortran", 0, 0, 0},
1048 {".fpp", "#Fortran", 0, 0, 0}, {".FPP", "#Fortran", 0, 0, 0},
1049 {".f90", "#Fortran", 0, 0, 0}, {".F90", "#Fortran", 0, 0, 0},
1050 {".f95", "#Fortran", 0, 0, 0}, {".F95", "#Fortran", 0, 0, 0},
1051 {".f03", "#Fortran", 0, 0, 0}, {".F03", "#Fortran", 0, 0, 0},
1052 {".f08", "#Fortran", 0, 0, 0}, {".F08", "#Fortran", 0, 0, 0},
0855eab7
CT
1053 {".r", "#Ratfor", 0, 0, 0},
1054 {".p", "#Pascal", 0, 0, 0}, {".pas", "#Pascal", 0, 0, 0},
1055 {".java", "#Java", 0, 0, 0}, {".class", "#Java", 0, 0, 0},
1056 {".zip", "#Java", 0, 0, 0}, {".jar", "#Java", 0, 0, 0},
4689ad58 1057 /* Next come the entries for C. */
0855eab7 1058 {".c", "@c", 0, 1, 1},
ed1f651b 1059 {"@c",
5a8e2650 1060 /* cc1 has an integrated ISO C preprocessor. We should invoke the
f458d1d5 1061 external preprocessor if -save-temps is given. */
f749a36b 1062 "%{E|M|MM:%(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)}\
5a8e2650 1063 %{!E:%{!M:%{!MM:\
f458d1d5
ZW
1064 %{traditional|ftraditional:\
1065%eGNU C no longer supports -traditional without -E}\
0855eab7 1066 %{!combine:\
14fdc613
MM
1067 %{save-temps*|traditional-cpp|no-integrated-cpp:%(trad_capable_cpp) \
1068 %(cpp_options) -o %{save-temps*:%b.i} %{!save-temps*:%g.i} \n\
1069 cc1 -fpreprocessed %{save-temps*:%b.i} %{!save-temps*:%g.i} \
0de12fcc 1070 %(cc1_options)}\
14fdc613 1071 %{!save-temps*:%{!traditional-cpp:%{!no-integrated-cpp:\
8a035a6b 1072 cc1 %(cpp_unique_options) %(cc1_options)}}}\
0855eab7
CT
1073 %{!fsyntax-only:%(invoke_as)}} \
1074 %{combine:\
14fdc613
MM
1075 %{save-temps*|traditional-cpp|no-integrated-cpp:%(trad_capable_cpp) \
1076 %(cpp_options) -o %{save-temps*:%b.i} %{!save-temps*:%g.i}}\
1077 %{!save-temps*:%{!traditional-cpp:%{!no-integrated-cpp:\
0855eab7
CT
1078 cc1 %(cpp_unique_options) %(cc1_options)}}\
1079 %{!fsyntax-only:%(invoke_as)}}}}}}", 0, 1, 1},
ed1f651b 1080 {"-",
6ba40dd7 1081 "%{!E:%e-E or -x required when input is from standard input}\
0855eab7
CT
1082 %(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)", 0, 0, 0},
1083 {".h", "@c-header", 0, 0, 0},
ed1f651b 1084 {"@c-header",
17211ab5
GK
1085 /* cc1 has an integrated ISO C preprocessor. We should invoke the
1086 external preprocessor if -save-temps is given. */
1087 "%{E|M|MM:%(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)}\
1088 %{!E:%{!M:%{!MM:\
14fdc613
MM
1089 %{save-temps*|traditional-cpp|no-integrated-cpp:%(trad_capable_cpp) \
1090 %(cpp_options) -o %{save-temps*:%b.i} %{!save-temps*:%g.i} \n\
1091 cc1 -fpreprocessed %{save-temps*:%b.i} %{!save-temps*:%g.i} \
0de12fcc 1092 %(cc1_options)\
9cc54940
AC
1093 %{!fdump-ada-spec*:-o %g.s %{!o*:--output-pch=%i.gch}\
1094 %W{o*:--output-pch=%*}}%V}\
14fdc613 1095 %{!save-temps*:%{!traditional-cpp:%{!no-integrated-cpp:\
17211ab5 1096 cc1 %(cpp_unique_options) %(cc1_options)\
9cc54940
AC
1097 %{!fdump-ada-spec*:-o %g.s %{!o*:--output-pch=%i.gch}\
1098 %W{o*:--output-pch=%*}}%V}}}}}}", 0, 0, 0},
0855eab7 1099 {".i", "@cpp-output", 0, 1, 0},
ed1f651b 1100 {"@cpp-output",
2a782c52 1101 "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0, 1, 0},
0855eab7 1102 {".s", "@assembler", 0, 1, 0},
ed1f651b 1103 {"@assembler",
0855eab7 1104 "%{!M:%{!MM:%{!E:%{!S:as %(asm_debug) %(asm_options) %i %A }}}}", 0, 1, 0},
55b8093e 1105 {".sx", "@assembler-with-cpp", 0, 1, 0},
0855eab7 1106 {".S", "@assembler-with-cpp", 0, 1, 0},
ed1f651b 1107 {"@assembler-with-cpp",
4977bab6 1108#ifdef AS_NEEDS_DASH_FOR_PIPED_INPUT
2710d6d7 1109 "%(trad_capable_cpp) -lang-asm %(cpp_options) -fno-directives-only\
8b968bd1 1110 %{E|M|MM:%(cpp_debug_options)}\
4977bab6
ZW
1111 %{!M:%{!MM:%{!E:%{!S:-o %|.s |\n\
1112 as %(asm_debug) %(asm_options) %|.s %A }}}}"
1113#else
2710d6d7 1114 "%(trad_capable_cpp) -lang-asm %(cpp_options) -fno-directives-only\
4977bab6
ZW
1115 %{E|M|MM:%(cpp_debug_options)}\
1116 %{!M:%{!MM:%{!E:%{!S:-o %|.s |\n\
1117 as %(asm_debug) %(asm_options) %m.s %A }}}}"
1118#endif
0855eab7 1119 , 0, 1, 0},
1d088dee 1120
1346ae41 1121#include "specs.h"
f9da5064 1122 /* Mark end of table. */
0855eab7 1123 {0, 0, 0, 0, 0}
ed1f651b
RS
1124};
1125
1126/* Number of elements in default_compilers, not counting the terminator. */
1127
ca7558fc 1128static const int n_default_compilers = ARRAY_SIZE (default_compilers) - 1;
ed1f651b 1129
ed1f651b 1130/* A vector of options to give to the linker.
368dfd3a 1131 These options are accumulated by %x,
ed1f651b
RS
1132 and substituted into the linker command with %X. */
1133static int n_linker_options;
1134static char **linker_options;
c9ebacb8
RS
1135
1136/* A vector of options to give to the assembler.
1137 These options are accumulated by -Wa,
57cb9b60 1138 and substituted into the assembler command with %Y. */
c9ebacb8
RS
1139static int n_assembler_options;
1140static char **assembler_options;
57cb9b60
JW
1141
1142/* A vector of options to give to the preprocessor.
1143 These options are accumulated by -Wp,
1144 and substituted into the preprocessor command with %Z. */
1145static int n_preprocessor_options;
1146static char **preprocessor_options;
ed1f651b 1147\f
f2faf549
RS
1148/* Define how to map long options into short ones. */
1149
1150/* This structure describes one mapping. */
1151struct option_map
1152{
1153 /* The long option's name. */
8b60264b 1154 const char *const name;
f2faf549 1155 /* The equivalent short option. */
8b60264b 1156 const char *const equivalent;
f2faf549
RS
1157 /* Argument info. A string of flag chars; NULL equals no options.
1158 a => argument required.
1159 o => argument optional.
1160 j => join argument to equivalent, making one word.
92bd6bdc 1161 * => require other text after NAME as an argument. */
8b60264b 1162 const char *const arg_info;
f2faf549
RS
1163};
1164
1165/* This is the table of mappings. Mappings are tried sequentially
1166 for each option encountered; the first one that matches, wins. */
1167
8b60264b 1168static const struct option_map option_map[] =
f2faf549 1169 {
92bd6bdc
RK
1170 {"--all-warnings", "-Wall", 0},
1171 {"--ansi", "-ansi", 0},
1172 {"--assemble", "-S", 0},
1173 {"--assert", "-A", "a"},
645278bc 1174 {"--classpath", "-fclasspath=", "aj"},
c26a6db8
PB
1175 {"--bootclasspath", "-fbootclasspath=", "aj"},
1176 {"--CLASSPATH", "-fclasspath=", "aj"},
0855eab7 1177 {"--combine", "-combine", 0},
92bd6bdc 1178 {"--comments", "-C", 0},
477cdac7 1179 {"--comments-in-macros", "-CC", 0},
f2faf549 1180 {"--compile", "-c", 0},
92bd6bdc 1181 {"--debug", "-g", "oj"},
5a570ade 1182 {"--define-macro", "-D", "aj"},
92bd6bdc 1183 {"--dependencies", "-M", 0},
f2faf549 1184 {"--dump", "-d", "a"},
92bd6bdc 1185 {"--dumpbase", "-dumpbase", "a"},
d7fb0a6d 1186 {"--dumpdir", "-dumpdir", "a"},
e89f2821 1187 {"--encoding", "-fencoding=", "aj"},
f2faf549 1188 {"--entry", "-e", 0},
92bd6bdc 1189 {"--extra-warnings", "-W", 0},
e89f2821 1190 {"--extdirs", "-fextdirs=", "aj"},
92bd6bdc
RK
1191 {"--for-assembler", "-Wa", "a"},
1192 {"--for-linker", "-Xlinker", "a"},
1193 {"--force-link", "-u", "a"},
ee4c708e 1194 {"--coverage", "-coverage", 0},
f2faf549 1195 {"--imacros", "-imacros", "a"},
92bd6bdc
RK
1196 {"--include", "-include", "a"},
1197 {"--include-barrier", "-I-", 0},
5a570ade 1198 {"--include-directory", "-I", "aj"},
f2faf549 1199 {"--include-directory-after", "-idirafter", "a"},
92bd6bdc 1200 {"--include-prefix", "-iprefix", "a"},
f2faf549 1201 {"--include-with-prefix", "-iwithprefix", "a"},
8b3d0251
RS
1202 {"--include-with-prefix-before", "-iwithprefixbefore", "a"},
1203 {"--include-with-prefix-after", "-iwithprefix", "a"},
92bd6bdc
RK
1204 {"--language", "-x", "a"},
1205 {"--library-directory", "-L", "a"},
f2faf549 1206 {"--machine", "-m", "aj"},
92bd6bdc 1207 {"--machine-", "-m", "*j"},
ba0c638e 1208 {"--no-canonical-prefixes", "-no-canonical-prefixes", 0},
8a035a6b 1209 {"--no-integrated-cpp", "-no-integrated-cpp", 0},
92bd6bdc
RK
1210 {"--no-line-commands", "-P", 0},
1211 {"--no-precompiled-includes", "-noprecomp", 0},
f2faf549
RS
1212 {"--no-standard-includes", "-nostdinc", 0},
1213 {"--no-standard-libraries", "-nostdlib", 0},
f2faf549 1214 {"--no-warnings", "-w", 0},
f2faf549 1215 {"--optimize", "-O", "oj"},
92bd6bdc 1216 {"--output", "-o", "a"},
36696297 1217 {"--output-class-directory", "-foutput-class-dir=", "ja"},
d991c721 1218 {"--param", "--param", "a"},
87a72581 1219 {"--pass-exit-codes", "-pass-exit-codes", 0},
f2faf549
RS
1220 {"--pedantic", "-pedantic", 0},
1221 {"--pedantic-errors", "-pedantic-errors", 0},
24a4dd31 1222 {"--pie", "-pie", 0},
92bd6bdc
RK
1223 {"--pipe", "-pipe", 0},
1224 {"--prefix", "-B", "a"},
1225 {"--preprocess", "-E", 0},
2628b9d3 1226 {"--print-search-dirs", "-print-search-dirs", 0},
6a9e290e 1227 {"--print-file-name", "-print-file-name=", "aj"},
92bd6bdc
RK
1228 {"--print-libgcc-file-name", "-print-libgcc-file-name", 0},
1229 {"--print-missing-file-dependencies", "-MG", 0},
60103a34
DE
1230 {"--print-multi-lib", "-print-multi-lib", 0},
1231 {"--print-multi-directory", "-print-multi-directory", 0},
5bbcd587 1232 {"--print-multi-os-directory", "-print-multi-os-directory", 0},
92bd6bdc 1233 {"--print-prog-name", "-print-prog-name=", "aj"},
3def1397 1234 {"--print-sysroot", "-print-sysroot", 0},
14da6073 1235 {"--print-sysroot-headers-suffix", "-print-sysroot-headers-suffix", 0},
92bd6bdc
RK
1236 {"--profile", "-p", 0},
1237 {"--profile-blocks", "-a", 0},
1238 {"--quiet", "-q", 0},
50cb2154 1239 {"--resource", "-fcompile-resource=", "aj"},
92bd6bdc 1240 {"--save-temps", "-save-temps", 0},
f2faf549 1241 {"--shared", "-shared", 0},
92bd6bdc 1242 {"--silent", "-q", 0},
d9ac3a07 1243 {"--specs", "-specs=", "aj"},
92bd6bdc 1244 {"--static", "-static", 0},
6f4d7222 1245 {"--std", "-std=", "aj"},
f2faf549 1246 {"--symbolic", "-symbolic", 0},
7904f95f 1247 {"--sysroot", "--sysroot=", "aj"},
03c41c05 1248 {"--time", "-time", 0},
92bd6bdc
RK
1249 {"--trace-includes", "-H", 0},
1250 {"--traditional", "-traditional", 0},
1251 {"--traditional-cpp", "-traditional-cpp", 0},
1252 {"--trigraphs", "-trigraphs", 0},
5a570ade 1253 {"--undefine-macro", "-U", "aj"},
92bd6bdc
RK
1254 {"--user-dependencies", "-MM", 0},
1255 {"--verbose", "-v", 0},
92bd6bdc
RK
1256 {"--warn-", "-W", "*j"},
1257 {"--write-dependencies", "-MD", 0},
1258 {"--write-user-dependencies", "-MMD", 0},
f2faf549
RS
1259 {"--", "-f", "*j"}
1260 };
1261\f
0259b07a
DD
1262
1263#ifdef TARGET_OPTION_TRANSLATE_TABLE
8b60264b
KG
1264static const struct {
1265 const char *const option_found;
1266 const char *const replacements;
0259b07a
DD
1267} target_option_translations[] =
1268{
1269 TARGET_OPTION_TRANSLATE_TABLE,
1270 { 0, 0 }
1271};
1272#endif
1273
f2faf549
RS
1274/* Translate the options described by *ARGCP and *ARGVP.
1275 Make a new vector and store it back in *ARGVP,
fa10beec 1276 and store its length in *ARGCP. */
f2faf549
RS
1277
1278static void
1d088dee 1279translate_options (int *argcp, const char *const **argvp)
f2faf549 1280{
e51712db 1281 int i;
f2faf549 1282 int argc = *argcp;
37620334 1283 const char *const *argv = *argvp;
0259b07a 1284 int newvsize = (argc + 2) * 2 * sizeof (const char *);
e1e4cdc4 1285 const char **newv = XNEWVAR (const char *, newvsize);
f2faf549
RS
1286 int newindex = 0;
1287
1288 i = 0;
1289 newv[newindex++] = argv[i++];
1290
1291 while (i < argc)
1292 {
0259b07a
DD
1293#ifdef TARGET_OPTION_TRANSLATE_TABLE
1294 int tott_idx;
1295
1296 for (tott_idx = 0;
1297 target_option_translations[tott_idx].option_found;
1298 tott_idx++)
1299 {
1300 if (strcmp (target_option_translations[tott_idx].option_found,
1301 argv[i]) == 0)
1302 {
1303 int spaces = 1;
1304 const char *sp;
1305 char *np;
1306
1307 for (sp = target_option_translations[tott_idx].replacements;
1308 *sp; sp++)
1309 {
1310 if (*sp == ' ')
1311 spaces ++;
1312 }
1313
1314 newvsize += spaces * sizeof (const char *);
5ead67f6 1315 newv = XRESIZEVAR (const char *, newv, newvsize);
0259b07a
DD
1316
1317 sp = target_option_translations[tott_idx].replacements;
cb6edbcb 1318 np = xstrdup (sp);
0259b07a
DD
1319
1320 while (1)
1321 {
1322 while (*np == ' ')
1323 np++;
1324 if (*np == 0)
1325 break;
1326 newv[newindex++] = np;
1327 while (*np != ' ' && *np)
1328 np++;
1329 if (*np == 0)
1330 break;
1331 *np++ = 0;
1332 }
1333
1334 i ++;
1335 break;
1336 }
1337 }
1338 if (target_option_translations[tott_idx].option_found)
1339 continue;
1340#endif
1341
f2faf549
RS
1342 /* Translate -- options. */
1343 if (argv[i][0] == '-' && argv[i][1] == '-')
1344 {
e51712db 1345 size_t j;
f2faf549 1346 /* Find a mapping that applies to this option. */
b6a1cbae 1347 for (j = 0; j < ARRAY_SIZE (option_map); j++)
f2faf549 1348 {
85066503
MH
1349 size_t optlen = strlen (option_map[j].name);
1350 size_t arglen = strlen (argv[i]);
1351 size_t complen = arglen > optlen ? optlen : arglen;
878f32c3 1352 const char *arginfo = option_map[j].arg_info;
cc198f10
RS
1353
1354 if (arginfo == 0)
1355 arginfo = "";
92bd6bdc 1356
f2faf549
RS
1357 if (!strncmp (argv[i], option_map[j].name, complen))
1358 {
878f32c3 1359 const char *arg = 0;
f2faf549 1360
92bd6bdc
RK
1361 if (arglen < optlen)
1362 {
e51712db 1363 size_t k;
b6a1cbae 1364 for (k = j + 1; k < ARRAY_SIZE (option_map); k++)
92bd6bdc
RK
1365 if (strlen (option_map[k].name) >= arglen
1366 && !strncmp (argv[i], option_map[k].name, arglen))
1367 {
1f978f5f 1368 error ("ambiguous abbreviation %s", argv[i]);
92bd6bdc
RK
1369 break;
1370 }
1371
b6a1cbae 1372 if (k != ARRAY_SIZE (option_map))
92bd6bdc
RK
1373 break;
1374 }
1375
1376 if (arglen > optlen)
f2faf549
RS
1377 {
1378 /* If the option has an argument, accept that. */
1379 if (argv[i][optlen] == '=')
1380 arg = argv[i] + optlen + 1;
92bd6bdc
RK
1381
1382 /* If this mapping requires extra text at end of name,
f2faf549 1383 accept that as "argument". */
9473c522 1384 else if (strchr (arginfo, '*') != 0)
f2faf549 1385 arg = argv[i] + optlen;
92bd6bdc 1386
f2faf549
RS
1387 /* Otherwise, extra text at end means mismatch.
1388 Try other mappings. */
1389 else
1390 continue;
1391 }
92bd6bdc 1392
9473c522 1393 else if (strchr (arginfo, '*') != 0)
92bd6bdc 1394 {
9e637a26 1395 error ("incomplete '%s' option", option_map[j].name);
92bd6bdc
RK
1396 break;
1397 }
f2faf549
RS
1398
1399 /* Handle arguments. */
9473c522 1400 if (strchr (arginfo, 'a') != 0)
f2faf549
RS
1401 {
1402 if (arg == 0)
1403 {
1404 if (i + 1 == argc)
92bd6bdc 1405 {
9e637a26 1406 error ("missing argument to '%s' option",
92bd6bdc
RK
1407 option_map[j].name);
1408 break;
1409 }
1410
f2faf549
RS
1411 arg = argv[++i];
1412 }
1413 }
9473c522 1414 else if (strchr (arginfo, '*') != 0)
fff26804 1415 ;
9473c522 1416 else if (strchr (arginfo, 'o') == 0)
f2faf549
RS
1417 {
1418 if (arg != 0)
9e637a26 1419 error ("extraneous argument to '%s' option",
f2faf549
RS
1420 option_map[j].name);
1421 arg = 0;
1422 }
1423
1424 /* Store the translation as one argv elt or as two. */
9473c522 1425 if (arg != 0 && strchr (arginfo, 'j') != 0)
6aa62cff 1426 newv[newindex++] = concat (option_map[j].equivalent, arg,
d4f2852f 1427 NULL);
f2faf549
RS
1428 else if (arg != 0)
1429 {
1430 newv[newindex++] = option_map[j].equivalent;
1431 newv[newindex++] = arg;
1432 }
1433 else
1434 newv[newindex++] = option_map[j].equivalent;
1435
1436 break;
1437 }
1438 }
1439 i++;
1440 }
92bd6bdc 1441
f2faf549
RS
1442 /* Handle old-fashioned options--just copy them through,
1443 with their arguments. */
1444 else if (argv[i][0] == '-')
1445 {
878f32c3 1446 const char *p = argv[i] + 1;
f2faf549
RS
1447 int c = *p;
1448 int nskip = 1;
1449
1450 if (SWITCH_TAKES_ARG (c) > (p[1] != 0))
1451 nskip += SWITCH_TAKES_ARG (c) - (p[1] != 0);
1452 else if (WORD_SWITCH_TAKES_ARG (p))
1453 nskip += WORD_SWITCH_TAKES_ARG (p);
63826d5b 1454 else if ((c == 'B' || c == 'b' || c == 'x')
fb99c21c
JW
1455 && p[1] == 0)
1456 nskip += 1;
1457 else if (! strcmp (p, "Xlinker"))
1458 nskip += 1;
4977bab6
ZW
1459 else if (! strcmp (p, "Xpreprocessor"))
1460 nskip += 1;
1461 else if (! strcmp (p, "Xassembler"))
1462 nskip += 1;
f2faf549 1463
e184d694
JW
1464 /* Watch out for an option at the end of the command line that
1465 is missing arguments, and avoid skipping past the end of the
1466 command line. */
1467 if (nskip + i > argc)
1468 nskip = argc - i;
1469
f2faf549
RS
1470 while (nskip > 0)
1471 {
1472 newv[newindex++] = argv[i++];
1473 nskip--;
1474 }
1475 }
1476 else
1477 /* Ordinary operands, or +e options. */
1478 newv[newindex++] = argv[i++];
1479 }
1480
1481 newv[newindex] = 0;
1482
1483 *argvp = newv;
1484 *argcp = newindex;
1485}
1486\f
ed1f651b 1487static char *
1d088dee 1488skip_whitespace (char *p)
ed1f651b
RS
1489{
1490 while (1)
1491 {
1492 /* A fully-blank line is a delimiter in the SPEC file and shouldn't
1493 be considered whitespace. */
1494 if (p[0] == '\n' && p[1] == '\n' && p[2] == '\n')
1495 return p + 1;
1496 else if (*p == '\n' || *p == ' ' || *p == '\t')
1497 p++;
1498 else if (*p == '#')
1499 {
d25a45d4
KH
1500 while (*p != '\n')
1501 p++;
ed1f651b
RS
1502 p++;
1503 }
1504 else
1505 break;
1506 }
1507
1508 return p;
1509}
2296d164
RK
1510/* Structures to keep track of prefixes to try when looking for files. */
1511
1512struct prefix_list
1513{
8060c8ee 1514 const char *prefix; /* String to prepend to the path. */
2296d164
RK
1515 struct prefix_list *next; /* Next in linked list. */
1516 int require_machine_suffix; /* Don't use without machine_suffix. */
1517 /* 2 means try both machine_suffix and just_machine_suffix. */
5bbcd587
JJ
1518 int priority; /* Sort key - priority within list. */
1519 int os_multilib; /* 1 if OS multilib scheme should be used,
1520 0 for GCC multilib scheme. */
2296d164
RK
1521};
1522
1523struct path_prefix
1524{
1525 struct prefix_list *plist; /* List of prefixes to try */
1526 int max_len; /* Max length of a prefix in PLIST */
1527 const char *name; /* Name of this list (used in config stuff) */
1528};
1529
1530/* List of prefixes to try when looking for executables. */
1531
1532static struct path_prefix exec_prefixes = { 0, 0, "exec" };
1533
1534/* List of prefixes to try when looking for startup (crt0) files. */
1535
1536static struct path_prefix startfile_prefixes = { 0, 0, "startfile" };
1537
1538/* List of prefixes to try when looking for include files. */
1539
1540static struct path_prefix include_prefixes = { 0, 0, "include" };
1541
1542/* Suffix to attach to directories searched for commands.
1543 This looks like `MACHINE/VERSION/'. */
1544
1545static const char *machine_suffix = 0;
1546
1547/* Suffix to attach to directories searched for commands.
1548 This is just `MACHINE/'. */
1549
1550static const char *just_machine_suffix = 0;
1551
1552/* Adjusted value of GCC_EXEC_PREFIX envvar. */
1553
1554static const char *gcc_exec_prefix;
1555
a8ee6e2d
GK
1556/* Adjusted value of standard_libexec_prefix. */
1557
1558static const char *gcc_libexec_prefix;
1559
2296d164
RK
1560/* Default prefixes to attach to command names. */
1561
656c7a3a
AL
1562#ifndef STANDARD_STARTFILE_PREFIX_1
1563#define STANDARD_STARTFILE_PREFIX_1 "/lib/"
1564#endif
1565#ifndef STANDARD_STARTFILE_PREFIX_2
1566#define STANDARD_STARTFILE_PREFIX_2 "/usr/lib/"
1567#endif
7904f95f 1568
2989d30c 1569#ifdef CROSS_DIRECTORY_STRUCTURE /* Don't use these prefixes for a cross compiler. */
2296d164
RK
1570#undef MD_EXEC_PREFIX
1571#undef MD_STARTFILE_PREFIX
1572#undef MD_STARTFILE_PREFIX_1
1573#endif
1574
1575/* If no prefixes defined, use the null string, which will disable them. */
1576#ifndef MD_EXEC_PREFIX
1577#define MD_EXEC_PREFIX ""
1578#endif
1579#ifndef MD_STARTFILE_PREFIX
1580#define MD_STARTFILE_PREFIX ""
1581#endif
1582#ifndef MD_STARTFILE_PREFIX_1
1583#define MD_STARTFILE_PREFIX_1 ""
1584#endif
1585
f4c0a303
CD
1586/* These directories are locations set at configure-time based on the
1587 --prefix option provided to configure. Their initializers are
1588 defined in Makefile.in. These paths are not *directly* used when
1589 gcc_exec_prefix is set because, in that case, we know where the
1590 compiler has been installed, and use paths relative to that
1591 location instead. */
27c38fbe 1592static const char *const standard_exec_prefix = STANDARD_EXEC_PREFIX;
f4c0a303
CD
1593static const char *const standard_libexec_prefix = STANDARD_LIBEXEC_PREFIX;
1594static const char *const standard_bindir_prefix = STANDARD_BINDIR_PREFIX;
1595static const char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
1596
1597/* For native compilers, these are well-known paths containing
1598 components that may be provided by the system. For cross
1599 compilers, these paths are not used. */
2296d164 1600static const char *md_exec_prefix = MD_EXEC_PREFIX;
2296d164
RK
1601static const char *md_startfile_prefix = MD_STARTFILE_PREFIX;
1602static const char *md_startfile_prefix_1 = MD_STARTFILE_PREFIX_1;
c662432e 1603static const char *const standard_startfile_prefix_1
656c7a3a
AL
1604 = STANDARD_STARTFILE_PREFIX_1;
1605static const char *const standard_startfile_prefix_2
1606 = STANDARD_STARTFILE_PREFIX_2;
2296d164 1607
f4c0a303
CD
1608/* A relative path to be used in finding the location of tools
1609 relative to the driver. */
27c38fbe 1610static const char *const tooldir_base_prefix = TOOLDIR_BASE_PREFIX;
a8ee6e2d 1611
2296d164
RK
1612/* Subdirectory to use for locating libraries. Set by
1613 set_multilib_dir based on the compilation options. */
1614
1615static const char *multilib_dir;
5bbcd587
JJ
1616
1617/* Subdirectory to use for locating libraries in OS conventions. Set by
1618 set_multilib_dir based on the compilation options. */
1619
1620static const char *multilib_os_dir;
ed1f651b 1621\f
0f41302f 1622/* Structure to keep track of the specs that have been defined so far.
4089dfab
JL
1623 These are accessed using %(specname) or %[specname] in a compiler
1624 or link spec. */
ed1f651b
RS
1625
1626struct spec_list
1627{
79aff5ac
MM
1628 /* The following 2 fields must be first */
1629 /* to allow EXTRA_SPECS to be initialized */
3b304f5b
ZW
1630 const char *name; /* name of the spec. */
1631 const char *ptr; /* available ptr if no static pointer */
79aff5ac
MM
1632
1633 /* The following fields are not initialized */
1634 /* by EXTRA_SPECS */
3b304f5b 1635 const char **ptr_spec; /* pointer to the spec itself. */
79aff5ac
MM
1636 struct spec_list *next; /* Next spec in linked list. */
1637 int name_len; /* length of the name */
1638 int alloc_p; /* whether string was allocated */
ed1f651b
RS
1639};
1640
79aff5ac 1641#define INIT_STATIC_SPEC(NAME,PTR) \
6496a589 1642{ NAME, NULL, PTR, (struct spec_list *) 0, sizeof (NAME) - 1, 0 }
79aff5ac 1643
3ac63d94
NC
1644/* List of statically defined specs. */
1645static struct spec_list static_specs[] =
1646{
79aff5ac 1647 INIT_STATIC_SPEC ("asm", &asm_spec),
5f0e9ea2 1648 INIT_STATIC_SPEC ("asm_debug", &asm_debug),
79aff5ac 1649 INIT_STATIC_SPEC ("asm_final", &asm_final_spec),
ea414c97 1650 INIT_STATIC_SPEC ("asm_options", &asm_options),
5a8e2650 1651 INIT_STATIC_SPEC ("invoke_as", &invoke_as),
79aff5ac 1652 INIT_STATIC_SPEC ("cpp", &cpp_spec),
ea414c97 1653 INIT_STATIC_SPEC ("cpp_options", &cpp_options),
8b968bd1 1654 INIT_STATIC_SPEC ("cpp_debug_options", &cpp_debug_options),
ffdeea47 1655 INIT_STATIC_SPEC ("cpp_unique_options", &cpp_unique_options),
ea414c97 1656 INIT_STATIC_SPEC ("trad_capable_cpp", &trad_capable_cpp),
79aff5ac 1657 INIT_STATIC_SPEC ("cc1", &cc1_spec),
ea414c97 1658 INIT_STATIC_SPEC ("cc1_options", &cc1_options),
79aff5ac 1659 INIT_STATIC_SPEC ("cc1plus", &cc1plus_spec),
bbd7687d 1660 INIT_STATIC_SPEC ("link_gcc_c_sequence", &link_gcc_c_sequence_spec),
77008252 1661 INIT_STATIC_SPEC ("link_ssp", &link_ssp_spec),
79aff5ac
MM
1662 INIT_STATIC_SPEC ("endfile", &endfile_spec),
1663 INIT_STATIC_SPEC ("link", &link_spec),
1664 INIT_STATIC_SPEC ("lib", &lib_spec),
6de9cd9a
DN
1665 INIT_STATIC_SPEC ("mfwrap", &mfwrap_spec),
1666 INIT_STATIC_SPEC ("mflib", &mflib_spec),
953ff289 1667 INIT_STATIC_SPEC ("link_gomp", &link_gomp_spec),
79aff5ac
MM
1668 INIT_STATIC_SPEC ("libgcc", &libgcc_spec),
1669 INIT_STATIC_SPEC ("startfile", &startfile_spec),
1670 INIT_STATIC_SPEC ("switches_need_spaces", &switches_need_spaces),
79aff5ac
MM
1671 INIT_STATIC_SPEC ("cross_compile", &cross_compile),
1672 INIT_STATIC_SPEC ("version", &compiler_version),
1673 INIT_STATIC_SPEC ("multilib", &multilib_select),
1674 INIT_STATIC_SPEC ("multilib_defaults", &multilib_defaults),
1675 INIT_STATIC_SPEC ("multilib_extra", &multilib_extra),
1676 INIT_STATIC_SPEC ("multilib_matches", &multilib_matches),
0a8d6618 1677 INIT_STATIC_SPEC ("multilib_exclusions", &multilib_exclusions),
5bbcd587 1678 INIT_STATIC_SPEC ("multilib_options", &multilib_options),
10da1131 1679 INIT_STATIC_SPEC ("linker", &linker_name_spec),
d7f09764
DN
1680 INIT_STATIC_SPEC ("linker_plugin_file", &linker_plugin_file_spec),
1681 INIT_STATIC_SPEC ("lto_wrapper", &lto_wrapper_spec),
1682 INIT_STATIC_SPEC ("lto_gcc", &lto_gcc_spec),
1683 INIT_STATIC_SPEC ("lto_libgcc", &lto_libgcc_spec),
ea414c97 1684 INIT_STATIC_SPEC ("link_libgcc", &link_libgcc_spec),
2296d164
RK
1685 INIT_STATIC_SPEC ("md_exec_prefix", &md_exec_prefix),
1686 INIT_STATIC_SPEC ("md_startfile_prefix", &md_startfile_prefix),
1687 INIT_STATIC_SPEC ("md_startfile_prefix_1", &md_startfile_prefix_1),
343f59d9 1688 INIT_STATIC_SPEC ("startfile_prefix_spec", &startfile_prefix_spec),
380e5ca4 1689 INIT_STATIC_SPEC ("sysroot_spec", &sysroot_spec),
e7f13528
GP
1690 INIT_STATIC_SPEC ("sysroot_suffix_spec", &sysroot_suffix_spec),
1691 INIT_STATIC_SPEC ("sysroot_hdrs_suffix_spec", &sysroot_hdrs_suffix_spec),
79aff5ac
MM
1692};
1693
1694#ifdef EXTRA_SPECS /* additional specs needed */
829245be 1695/* Structure to keep track of just the first two args of a spec_list.
3ac63d94 1696 That is all that the EXTRA_SPECS macro gives us. */
829245be
KG
1697struct spec_list_1
1698{
8b60264b
KG
1699 const char *const name;
1700 const char *const ptr;
829245be
KG
1701};
1702
8b60264b 1703static const struct spec_list_1 extra_specs_1[] = { EXTRA_SPECS };
d25a45d4 1704static struct spec_list *extra_specs = (struct spec_list *) 0;
79aff5ac
MM
1705#endif
1706
1707/* List of dynamically allocates specs that have been defined so far. */
1708
9218435e 1709static struct spec_list *specs = (struct spec_list *) 0;
79aff5ac 1710\f
f3226a90
JT
1711/* List of static spec functions. */
1712
1713static const struct spec_function static_spec_functions[] =
1714{
30d8946b 1715 { "getenv", getenv_spec_function },
f3226a90 1716 { "if-exists", if_exists_spec_function },
152a5a9c 1717 { "if-exists-else", if_exists_else_spec_function },
3dd53121 1718 { "replace-outfile", replace_outfile_spec_function },
ed5b9f96 1719 { "version-compare", version_compare_spec_function },
953ff289 1720 { "include", include_spec_function },
4adbd5dd 1721 { "find-file", find_file_spec_function },
a0f87454 1722 { "print-asm-header", print_asm_header_spec_function },
2153915d
AO
1723 { "compare-debug-dump-opt", compare_debug_dump_opt_spec_function },
1724 { "compare-debug-self-opt", compare_debug_self_opt_spec_function },
1725 { "compare-debug-auxbase-opt", compare_debug_auxbase_opt_spec_function },
fa959ce4
MM
1726#ifdef EXTRA_SPEC_FUNCTIONS
1727 EXTRA_SPEC_FUNCTIONS
1728#endif
f3226a90
JT
1729 { 0, 0 }
1730};
1731
1732static int processing_spec_function;
1733\f
049f6ec9
MM
1734/* Add appropriate libgcc specs to OBSTACK, taking into account
1735 various permutations of -shared-libgcc, -shared, and such. */
1736
328163dc 1737#if defined(ENABLE_SHARED_LIBGCC) && !defined(REAL_LIBGCC_SPEC)
8efcd34f
AM
1738
1739#ifndef USE_LD_AS_NEEDED
1740#define USE_LD_AS_NEEDED 0
1741#endif
1742
049f6ec9 1743static void
1d088dee
AJ
1744init_gcc_specs (struct obstack *obstack, const char *shared_name,
1745 const char *static_name, const char *eh_name)
049f6ec9 1746{
5c181756
AO
1747 char *buf;
1748
5e4f1974
AM
1749 buf = concat ("%{static|static-libgcc:", static_name, " ", eh_name, "}"
1750 "%{!static:%{!static-libgcc:"
8efcd34f 1751#if USE_LD_AS_NEEDED
5e4f1974
AM
1752 "%{!shared-libgcc:",
1753 static_name, " --as-needed ", shared_name, " --no-as-needed"
1754 "}"
1755 "%{shared-libgcc:",
1756 shared_name, "%{!shared: ", static_name, "}"
1757 "}"
765f1bf9 1758#else
5e4f1974
AM
1759 "%{!shared:"
1760 "%{!shared-libgcc:", static_name, " ", eh_name, "}"
1761 "%{shared-libgcc:", shared_name, " ", static_name, "}"
1762 "}"
275b60d6 1763#ifdef LINK_EH_SPEC
5e4f1974
AM
1764 "%{shared:"
1765 "%{shared-libgcc:", shared_name, "}"
1766 "%{!shared-libgcc:", static_name, "}"
1767 "}"
275b60d6 1768#else
5e4f1974 1769 "%{shared:", shared_name, "}"
765f1bf9 1770#endif
275b60d6 1771#endif
5e4f1974 1772 "}}", NULL);
5c181756
AO
1773
1774 obstack_grow (obstack, buf, strlen (buf));
1775 free (buf);
049f6ec9 1776}
6894579f 1777#endif /* ENABLE_SHARED_LIBGCC */
049f6ec9 1778
79aff5ac
MM
1779/* Initialize the specs lookup routines. */
1780
1781static void
7e51717c 1782init_spec (void)
79aff5ac 1783{
9218435e
KH
1784 struct spec_list *next = (struct spec_list *) 0;
1785 struct spec_list *sl = (struct spec_list *) 0;
79aff5ac
MM
1786 int i;
1787
1788 if (specs)
3ac63d94 1789 return; /* Already initialized. */
79aff5ac 1790
20df0482 1791 if (verbose_flag)
2dec80c7 1792 fnotice (stderr, "Using built-in specs.\n");
20df0482 1793
79aff5ac 1794#ifdef EXTRA_SPECS
e1e4cdc4 1795 extra_specs = XCNEWVEC (struct spec_list, ARRAY_SIZE (extra_specs_1));
9218435e 1796
b6a1cbae 1797 for (i = ARRAY_SIZE (extra_specs_1) - 1; i >= 0; i--)
03fc1620
JW
1798 {
1799 sl = &extra_specs[i];
829245be
KG
1800 sl->name = extra_specs_1[i].name;
1801 sl->ptr = extra_specs_1[i].ptr;
03fc1620
JW
1802 sl->next = next;
1803 sl->name_len = strlen (sl->name);
1804 sl->ptr_spec = &sl->ptr;
1805 next = sl;
1806 }
79aff5ac
MM
1807#endif
1808
b6a1cbae 1809 for (i = ARRAY_SIZE (static_specs) - 1; i >= 0; i--)
79aff5ac
MM
1810 {
1811 sl = &static_specs[i];
1812 sl->next = next;
1813 next = sl;
1814 }
1815
328163dc 1816#if defined(ENABLE_SHARED_LIBGCC) && !defined(REAL_LIBGCC_SPEC)
9db0819e
RH
1817 /* ??? If neither -shared-libgcc nor --static-libgcc was
1818 seen, then we should be making an educated guess. Some proposed
1819 heuristics for ELF include:
1820
1821 (1) If "-Wl,--export-dynamic", then it's a fair bet that the
1822 program will be doing dynamic loading, which will likely
1823 need the shared libgcc.
1824
1825 (2) If "-ldl", then it's also a fair bet that we're doing
1826 dynamic loading.
1827
1828 (3) For each ET_DYN we're linking against (either through -lfoo
1829 or /some/path/foo.so), check to see whether it or one of
ff7cc307 1830 its dependencies depends on a shared libgcc.
9db0819e
RH
1831
1832 (4) If "-shared"
1833
1834 If the runtime is fixed to look for program headers instead
1835 of calling __register_frame_info at all, for each object,
1836 use the shared libgcc if any EH symbol referenced.
1837
1838 If crtstuff is fixed to not invoke __register_frame_info
1839 automatically, for each object, use the shared libgcc if
1840 any non-empty unwind section found.
1841
1842 Doing any of this probably requires invoking an external program to
1843 do the actual object file scanning. */
1844 {
1845 const char *p = libgcc_spec;
1846 int in_sep = 1;
589005ff 1847
16757495 1848 /* Transform the extant libgcc_spec into one that uses the shared libgcc
9db0819e
RH
1849 when given the proper command line arguments. */
1850 while (*p)
1851 {
589005ff 1852 if (in_sep && *p == '-' && strncmp (p, "-lgcc", 5) == 0)
9db0819e 1853 {
049f6ec9 1854 init_gcc_specs (&obstack,
049f6ec9 1855 "-lgcc_s"
443728bb
L
1856#ifdef USE_LIBUNWIND_EXCEPTIONS
1857 " -lunwind"
4977bab6 1858#endif
348d71c7
JW
1859 ,
1860 "-lgcc",
1861 "-lgcc_eh"
4977bab6 1862#ifdef USE_LIBUNWIND_EXCEPTIONS
7e9d8517
L
1863# ifdef HAVE_LD_STATIC_DYNAMIC
1864 " %{!static:-Bstatic} -lunwind %{!static:-Bdynamic}"
1865# else
4977bab6 1866 " -lunwind"
7e9d8517 1867# endif
9db0819e 1868#endif
348d71c7
JW
1869 );
1870
ba2b7435 1871 p += 5;
9db0819e
RH
1872 in_sep = 0;
1873 }
ba2b7435 1874 else if (in_sep && *p == 'l' && strncmp (p, "libgcc.a%s", 10) == 0)
9db0819e
RH
1875 {
1876 /* Ug. We don't know shared library extensions. Hope that
1877 systems that use this form don't do shared libraries. */
049f6ec9 1878 init_gcc_specs (&obstack,
4e8d0554 1879 "-lgcc_s",
275b60d6 1880 "libgcc.a%s",
aedec8dd
JW
1881 "libgcc_eh.a%s"
1882#ifdef USE_LIBUNWIND_EXCEPTIONS
1883 " -lunwind"
1884#endif
1885 );
ba2b7435 1886 p += 10;
9db0819e
RH
1887 in_sep = 0;
1888 }
1889 else
1890 {
1891 obstack_1grow (&obstack, *p);
1892 in_sep = (*p == ' ');
1893 p += 1;
1894 }
1895 }
1896
1897 obstack_1grow (&obstack, '\0');
7973fd2a 1898 libgcc_spec = XOBFINISH (&obstack, const char *);
9db0819e
RH
1899 }
1900#endif
c64688ae
RH
1901#ifdef USE_AS_TRADITIONAL_FORMAT
1902 /* Prepend "--traditional-format" to whatever asm_spec we had before. */
1903 {
8b60264b 1904 static const char tf[] = "--traditional-format ";
c64688ae
RH
1905 obstack_grow (&obstack, tf, sizeof(tf) - 1);
1906 obstack_grow0 (&obstack, asm_spec, strlen (asm_spec));
7973fd2a 1907 asm_spec = XOBFINISH (&obstack, const char *);
c64688ae
RH
1908 }
1909#endif
cd533689
PP
1910
1911#if defined LINK_EH_SPEC || defined LINK_BUILDID_SPEC
1912# ifdef LINK_BUILDID_SPEC
1913 /* Prepend LINK_BUILDID_SPEC to whatever link_spec we had before. */
1914 obstack_grow (&obstack, LINK_BUILDID_SPEC, sizeof(LINK_BUILDID_SPEC) - 1);
1915# endif
1916# ifdef LINK_EH_SPEC
275b60d6
JJ
1917 /* Prepend LINK_EH_SPEC to whatever link_spec we had before. */
1918 obstack_grow (&obstack, LINK_EH_SPEC, sizeof(LINK_EH_SPEC) - 1);
cd533689 1919# endif
275b60d6 1920 obstack_grow0 (&obstack, link_spec, strlen (link_spec));
7973fd2a 1921 link_spec = XOBFINISH (&obstack, const char *);
275b60d6 1922#endif
9db0819e 1923
79aff5ac
MM
1924 specs = sl;
1925}
ed1f651b
RS
1926\f
1927/* Change the value of spec NAME to SPEC. If SPEC is empty, then the spec is
1928 removed; If the spec starts with a + then SPEC is added to the end of the
0f41302f 1929 current spec. */
ed1f651b
RS
1930
1931static void
1d088dee 1932set_spec (const char *name, const char *spec)
ed1f651b
RS
1933{
1934 struct spec_list *sl;
3b304f5b 1935 const char *old_spec;
79aff5ac
MM
1936 int name_len = strlen (name);
1937 int i;
1938
3ac63d94 1939 /* If this is the first call, initialize the statically allocated specs. */
20df0482
MM
1940 if (!specs)
1941 {
9218435e 1942 struct spec_list *next = (struct spec_list *) 0;
b6a1cbae 1943 for (i = ARRAY_SIZE (static_specs) - 1; i >= 0; i--)
20df0482
MM
1944 {
1945 sl = &static_specs[i];
1946 sl->next = next;
1947 next = sl;
1948 }
1949 specs = sl;
1950 }
1951
3ac63d94 1952 /* See if the spec already exists. */
ed1f651b 1953 for (sl = specs; sl; sl = sl->next)
79aff5ac 1954 if (name_len == sl->name_len && !strcmp (sl->name, name))
ed1f651b
RS
1955 break;
1956
1957 if (!sl)
1958 {
3ac63d94 1959 /* Not found - make it. */
5ed6ace5 1960 sl = XNEW (struct spec_list);
ad85216e 1961 sl->name = xstrdup (name);
79aff5ac
MM
1962 sl->name_len = name_len;
1963 sl->ptr_spec = &sl->ptr;
1964 sl->alloc_p = 0;
1965 *(sl->ptr_spec) = "";
ed1f651b
RS
1966 sl->next = specs;
1967 specs = sl;
1968 }
1969
79aff5ac 1970 old_spec = *(sl->ptr_spec);
e51712db 1971 *(sl->ptr_spec) = ((spec[0] == '+' && ISSPACE ((unsigned char)spec[1]))
d4f2852f 1972 ? concat (old_spec, spec + 1, NULL)
ad85216e 1973 : xstrdup (spec));
841faeed 1974
20df0482
MM
1975#ifdef DEBUG_SPECS
1976 if (verbose_flag)
2dec80c7 1977 fnotice (stderr, "Setting spec %s to '%s'\n\n", name, *(sl->ptr_spec));
20df0482
MM
1978#endif
1979
3ac63d94 1980 /* Free the old spec. */
79aff5ac 1981 if (old_spec && sl->alloc_p)
b1d5455a 1982 free (CONST_CAST(char *, old_spec));
79aff5ac
MM
1983
1984 sl->alloc_p = 1;
ed1f651b
RS
1985}
1986\f
1987/* Accumulate a command (program name and args), and run it. */
1988
1989/* Vector of pointers to arguments in the current line of specifications. */
1990
fbd40359 1991static const char **argbuf;
ed1f651b
RS
1992
1993/* Number of elements allocated in argbuf. */
1994
1995static int argbuf_length;
1996
1997/* Number of elements in argbuf currently in use (containing args). */
1998
1999static int argbuf_index;
2000
0855eab7
CT
2001/* Position in the argbuf array containing the name of the output file
2002 (the value associated with the "-o" flag). */
2003
2004static int have_o_argbuf_index = 0;
2005
1b5bc8e9 2006/* Were the options -c, -S or -E passed. */
af41c57d
AP
2007static int have_c = 0;
2008
2009/* Was the option -o passed. */
2010static int have_o = 0;
2011
49009afd
JL
2012/* This is the list of suffixes and codes (%g/%u/%U/%j) and the associated
2013 temp file. If the HOST_BIT_BUCKET is used for %j, no entry is made for
2014 it here. */
fb266030
TW
2015
2016static struct temp_name {
878f32c3 2017 const char *suffix; /* suffix associated with the code. */
fb266030
TW
2018 int length; /* strlen (suffix). */
2019 int unique; /* Indicates whether %g or %u/%U was used. */
878f32c3 2020 const char *filename; /* associated filename. */
fb266030
TW
2021 int filename_length; /* strlen (filename). */
2022 struct temp_name *next;
2023} *temp_names;
39d45901 2024
ed1f651b
RS
2025/* Number of commands executed so far. */
2026
2027static int execution_count;
2028
3b9b4d3f
RS
2029/* Number of commands that exited with a signal. */
2030
2031static int signal_count;
ed1f651b 2032\f
f3226a90
JT
2033/* Allocate the argument vector. */
2034
2035static void
7e51717c 2036alloc_args (void)
f3226a90
JT
2037{
2038 argbuf_length = 10;
5ed6ace5 2039 argbuf = XNEWVEC (const char *, argbuf_length);
f3226a90
JT
2040}
2041
ed1f651b
RS
2042/* Clear out the vector of arguments (after a command is executed). */
2043
2044static void
1d088dee 2045clear_args (void)
ed1f651b
RS
2046{
2047 argbuf_index = 0;
2048}
2049
2050/* Add one argument to the vector at the end.
2051 This is done when a space is seen or at the end of the line.
2052 If DELETE_ALWAYS is nonzero, the arg is a filename
2053 and the file should be deleted eventually.
2054 If DELETE_FAILURE is nonzero, the arg is a filename
2055 and the file should be deleted if this compilation fails. */
2056
2057static void
1d088dee 2058store_arg (const char *arg, int delete_always, int delete_failure)
ed1f651b
RS
2059{
2060 if (argbuf_index + 1 == argbuf_length)
e1e4cdc4 2061 argbuf = XRESIZEVEC (const char *, argbuf, (argbuf_length *= 2));
ed1f651b
RS
2062
2063 argbuf[argbuf_index++] = arg;
2064 argbuf[argbuf_index] = 0;
2065
0855eab7
CT
2066 if (strcmp (arg, "-o") == 0)
2067 have_o_argbuf_index = argbuf_index;
ed1f651b 2068 if (delete_always || delete_failure)
d6205185
RG
2069 {
2070 const char *p;
2071 /* If the temporary file we should delete is specified as
2072 part of a joined argument extract the filename. */
2073 if (arg[0] == '-'
2074 && (p = strrchr (arg, '=')))
2075 arg = p + 1;
2076 record_temp_file (arg, delete_always, delete_failure);
2077 }
ed1f651b
RS
2078}
2079\f
ff7cc307 2080/* Load specs from a file name named FILENAME, replacing occurrences of
9218435e 2081 various different types of line-endings, \r\n, \n\r and just \r, with
b633b6c0 2082 a single \n. */
20df0482 2083
d25a45d4 2084static char *
1d088dee 2085load_specs (const char *filename)
20df0482
MM
2086{
2087 int desc;
2088 int readlen;
2089 struct stat statbuf;
2090 char *buffer;
b633b6c0
MK
2091 char *buffer_p;
2092 char *specs;
2093 char *specs_p;
20df0482
MM
2094
2095 if (verbose_flag)
2dec80c7 2096 fnotice (stderr, "Reading specs from %s\n", filename);
20df0482
MM
2097
2098 /* Open and stat the file. */
2099 desc = open (filename, O_RDONLY, 0);
2100 if (desc < 0)
2101 pfatal_with_name (filename);
2102 if (stat (filename, &statbuf) < 0)
2103 pfatal_with_name (filename);
2104
2105 /* Read contents of file into BUFFER. */
5ed6ace5 2106 buffer = XNEWVEC (char, statbuf.st_size + 1);
20df0482
MM
2107 readlen = read (desc, buffer, (unsigned) statbuf.st_size);
2108 if (readlen < 0)
2109 pfatal_with_name (filename);
2110 buffer[readlen] = 0;
2111 close (desc);
2112
5ed6ace5 2113 specs = XNEWVEC (char, readlen + 1);
b633b6c0
MK
2114 specs_p = specs;
2115 for (buffer_p = buffer; buffer_p && *buffer_p; buffer_p++)
2116 {
2117 int skip = 0;
2118 char c = *buffer_p;
2119 if (c == '\r')
d25a45d4
KH
2120 {
2121 if (buffer_p > buffer && *(buffer_p - 1) == '\n') /* \n\r */
b633b6c0 2122 skip = 1;
d25a45d4 2123 else if (*(buffer_p + 1) == '\n') /* \r\n */
b633b6c0
MK
2124 skip = 1;
2125 else /* \r */
2126 c = '\n';
2127 }
2128 if (! skip)
2129 *specs_p++ = c;
2130 }
2131 *specs_p = '\0';
2132
2133 free (buffer);
2134 return (specs);
2135}
2136
2137/* Read compilation specs from a file named FILENAME,
2138 replacing the default ones.
2139
2140 A suffix which starts with `*' is a definition for
2141 one of the machine-specific sub-specs. The "suffix" should be
0fef3fd0 2142 *asm, *cc1, *cpp, *link, *startfile, etc.
b633b6c0
MK
2143 The corresponding spec is stored in asm_spec, etc.,
2144 rather than in the `compilers' vector.
2145
2146 Anything invalid in the file is a fatal error. */
2147
2148static void
1d088dee 2149read_specs (const char *filename, int main_p)
b633b6c0
MK
2150{
2151 char *buffer;
b3694847 2152 char *p;
b633b6c0
MK
2153
2154 buffer = load_specs (filename);
2155
20df0482
MM
2156 /* Scan BUFFER for specs, putting them in the vector. */
2157 p = buffer;
2158 while (1)
2159 {
2160 char *suffix;
2161 char *spec;
2162 char *in, *out, *p1, *p2, *p3;
2163
2164 /* Advance P in BUFFER to the next nonblank nocomment line. */
2165 p = skip_whitespace (p);
2166 if (*p == 0)
2167 break;
2168
2169 /* Is this a special command that starts with '%'? */
2170 /* Don't allow this for the main specs file, since it would
2171 encourage people to overwrite it. */
2172 if (*p == '%' && !main_p)
2173 {
2174 p1 = p;
e9a25f70
JL
2175 while (*p && *p != '\n')
2176 p++;
2177
d25a45d4
KH
2178 /* Skip '\n'. */
2179 p++;
20df0482 2180
d25a45d4 2181 if (!strncmp (p1, "%include", sizeof ("%include") - 1)
e9a25f70
JL
2182 && (p1[sizeof "%include" - 1] == ' '
2183 || p1[sizeof "%include" - 1] == '\t'))
20df0482
MM
2184 {
2185 char *new_filename;
2186
2187 p1 += sizeof ("%include");
e9a25f70
JL
2188 while (*p1 == ' ' || *p1 == '\t')
2189 p1++;
20df0482
MM
2190
2191 if (*p1++ != '<' || p[-2] != '>')
2dec80c7
JM
2192 fatal_error ("specs %%include syntax malformed after "
2193 "%ld characters",
2194 (long) (p1 - buffer + 1));
20df0482
MM
2195
2196 p[-2] = '\0';
00dcee0c 2197 new_filename = find_a_file (&startfile_prefixes, p1, R_OK, true);
20df0482
MM
2198 read_specs (new_filename ? new_filename : p1, FALSE);
2199 continue;
2200 }
e9a25f70
JL
2201 else if (!strncmp (p1, "%include_noerr", sizeof "%include_noerr" - 1)
2202 && (p1[sizeof "%include_noerr" - 1] == ' '
2203 || p1[sizeof "%include_noerr" - 1] == '\t'))
20df0482
MM
2204 {
2205 char *new_filename;
2206
e9a25f70 2207 p1 += sizeof "%include_noerr";
d25a45d4
KH
2208 while (*p1 == ' ' || *p1 == '\t')
2209 p1++;
20df0482
MM
2210
2211 if (*p1++ != '<' || p[-2] != '>')
2dec80c7
JM
2212 fatal_error ("specs %%include syntax malformed after "
2213 "%ld characters",
2214 (long) (p1 - buffer + 1));
20df0482
MM
2215
2216 p[-2] = '\0';
00dcee0c 2217 new_filename = find_a_file (&startfile_prefixes, p1, R_OK, true);
20df0482
MM
2218 if (new_filename)
2219 read_specs (new_filename, FALSE);
2220 else if (verbose_flag)
2dec80c7 2221 fnotice (stderr, "could not find specs file %s\n", p1);
20df0482
MM
2222 continue;
2223 }
e9a25f70
JL
2224 else if (!strncmp (p1, "%rename", sizeof "%rename" - 1)
2225 && (p1[sizeof "%rename" - 1] == ' '
2226 || p1[sizeof "%rename" - 1] == '\t'))
20df0482
MM
2227 {
2228 int name_len;
2229 struct spec_list *sl;
169ce44d 2230 struct spec_list *newsl;
20df0482 2231
169ce44d 2232 /* Get original name. */
e9a25f70
JL
2233 p1 += sizeof "%rename";
2234 while (*p1 == ' ' || *p1 == '\t')
2235 p1++;
2236
9218435e 2237 if (! ISALPHA ((unsigned char) *p1))
2dec80c7
JM
2238 fatal_error ("specs %%rename syntax malformed after "
2239 "%ld characters",
2240 (long) (p1 - buffer));
20df0482
MM
2241
2242 p2 = p1;
9218435e 2243 while (*p2 && !ISSPACE ((unsigned char) *p2))
e9a25f70
JL
2244 p2++;
2245
20df0482 2246 if (*p2 != ' ' && *p2 != '\t')
2dec80c7
JM
2247 fatal_error ("specs %%rename syntax malformed after "
2248 "%ld characters",
2249 (long) (p2 - buffer));
20df0482
MM
2250
2251 name_len = p2 - p1;
2252 *p2++ = '\0';
e9a25f70
JL
2253 while (*p2 == ' ' || *p2 == '\t')
2254 p2++;
2255
9218435e 2256 if (! ISALPHA ((unsigned char) *p2))
2dec80c7
JM
2257 fatal_error ("specs %%rename syntax malformed after "
2258 "%ld characters",
2259 (long) (p2 - buffer));
20df0482 2260
d25a45d4 2261 /* Get new spec name. */
20df0482 2262 p3 = p2;
9218435e 2263 while (*p3 && !ISSPACE ((unsigned char) *p3))
e9a25f70
JL
2264 p3++;
2265
d25a45d4 2266 if (p3 != p - 1)
2dec80c7
JM
2267 fatal_error ("specs %%rename syntax malformed after "
2268 "%ld characters",
2269 (long) (p3 - buffer));
20df0482
MM
2270 *p3 = '\0';
2271
2272 for (sl = specs; sl; sl = sl->next)
2273 if (name_len == sl->name_len && !strcmp (sl->name, p1))
2274 break;
2275
2276 if (!sl)
2dec80c7 2277 fatal_error ("specs %s spec was not found to be renamed", p1);
20df0482 2278
e9a25f70 2279 if (strcmp (p1, p2) == 0)
20df0482
MM
2280 continue;
2281
169ce44d
NC
2282 for (newsl = specs; newsl; newsl = newsl->next)
2283 if (strcmp (newsl->name, p2) == 0)
2dec80c7
JM
2284 fatal_error ("%s: attempt to rename spec '%s' to "
2285 "already defined spec '%s'",
169ce44d
NC
2286 filename, p1, p2);
2287
20df0482
MM
2288 if (verbose_flag)
2289 {
2dec80c7 2290 fnotice (stderr, "rename spec %s to %s\n", p1, p2);
20df0482 2291#ifdef DEBUG_SPECS
2dec80c7 2292 fnotice (stderr, "spec is '%s'\n\n", *(sl->ptr_spec));
20df0482
MM
2293#endif
2294 }
2295
2296 set_spec (p2, *(sl->ptr_spec));
2297 if (sl->alloc_p)
b1d5455a 2298 free (CONST_CAST (char *, *(sl->ptr_spec)));
20df0482
MM
2299
2300 *(sl->ptr_spec) = "";
2301 sl->alloc_p = 0;
2302 continue;
2303 }
2304 else
2dec80c7
JM
2305 fatal_error ("specs unknown %% command after %ld characters",
2306 (long) (p1 - buffer));
20df0482
MM
2307 }
2308
2309 /* Find the colon that should end the suffix. */
2310 p1 = p;
e9a25f70
JL
2311 while (*p1 && *p1 != ':' && *p1 != '\n')
2312 p1++;
2313
20df0482
MM
2314 /* The colon shouldn't be missing. */
2315 if (*p1 != ':')
2dec80c7
JM
2316 fatal_error ("specs file malformed after %ld characters",
2317 (long) (p1 - buffer));
e9a25f70 2318
20df0482
MM
2319 /* Skip back over trailing whitespace. */
2320 p2 = p1;
e9a25f70
JL
2321 while (p2 > buffer && (p2[-1] == ' ' || p2[-1] == '\t'))
2322 p2--;
2323
20df0482
MM
2324 /* Copy the suffix to a string. */
2325 suffix = save_string (p, p2 - p);
2326 /* Find the next line. */
2327 p = skip_whitespace (p1 + 1);
2328 if (p[1] == 0)
2dec80c7
JM
2329 fatal_error ("specs file malformed after %ld characters",
2330 (long) (p - buffer));
e9a25f70 2331
20df0482 2332 p1 = p;
bbeb7b65
JW
2333 /* Find next blank line or end of string. */
2334 while (*p1 && !(*p1 == '\n' && (p1[1] == '\n' || p1[1] == '\0')))
e9a25f70
JL
2335 p1++;
2336
20df0482
MM
2337 /* Specs end at the blank line and do not include the newline. */
2338 spec = save_string (p, p1 - p);
2339 p = p1;
2340
2341 /* Delete backslash-newline sequences from the spec. */
2342 in = spec;
2343 out = spec;
2344 while (*in != 0)
2345 {
2346 if (in[0] == '\\' && in[1] == '\n')
2347 in += 2;
2348 else if (in[0] == '#')
e9a25f70
JL
2349 while (*in && *in != '\n')
2350 in++;
2351
20df0482
MM
2352 else
2353 *out++ = *in++;
2354 }
2355 *out = 0;
2356
2357 if (suffix[0] == '*')
2358 {
2359 if (! strcmp (suffix, "*link_command"))
2360 link_command_spec = spec;
2361 else
2362 set_spec (suffix + 1, spec);
2363 }
2364 else
2365 {
2366 /* Add this pair to the vector. */
2367 compilers
e1e4cdc4 2368 = XRESIZEVEC (struct compiler, compilers, n_compilers + 2);
e9a25f70 2369
20df0482 2370 compilers[n_compilers].suffix = suffix;
ea414c97 2371 compilers[n_compilers].spec = spec;
20df0482 2372 n_compilers++;
9257393c 2373 memset (&compilers[n_compilers], 0, sizeof compilers[n_compilers]);
20df0482
MM
2374 }
2375
2376 if (*suffix == 0)
2377 link_command_spec = spec;
2378 }
2379
2380 if (link_command_spec == 0)
2dec80c7 2381 fatal_error ("spec file has no spec for linking");
20df0482
MM
2382}
2383\f
ed1f651b
RS
2384/* Record the names of temporary files we tell compilers to write,
2385 and delete them at the end of the run. */
2386
aa34f42c
RG
2387/* This is the common prefix we use to make temp file names.
2388 It is chosen once for each run of this program.
2389 It is substituted into a spec by %g or %j.
2390 Thus, all temp file names contain this prefix.
2391 In practice, all temp file names start with this prefix.
2392
2393 This prefix comes from the envvar TMPDIR if it is defined;
2394 otherwise, from the P_tmpdir macro if that is defined;
2395 otherwise, in /usr/tmp or /tmp;
2396 or finally the current directory if all else fails. */
2397
2398static const char *temp_filename;
2399
2400/* Length of the prefix. */
2401
2402static int temp_filename_length;
2403
ed1f651b
RS
2404/* Define the list of temporary files to delete. */
2405
2406struct temp_file
2407{
878f32c3 2408 const char *name;
ed1f651b
RS
2409 struct temp_file *next;
2410};
2411
2412/* Queue of files to delete on success or failure of compilation. */
2413static struct temp_file *always_delete_queue;
2414/* Queue of files to delete on failure of compilation. */
2415static struct temp_file *failure_delete_queue;
2416
2417/* Record FILENAME as a file to be deleted automatically.
2418 ALWAYS_DELETE nonzero means delete it if all compilation succeeds;
2419 otherwise delete it in any case.
2420 FAIL_DELETE nonzero means delete it if a compilation step fails;
2421 otherwise delete it in any case. */
2422
d991c721 2423void
1d088dee 2424record_temp_file (const char *filename, int always_delete, int fail_delete)
ed1f651b 2425{
b3694847 2426 char *const name = xstrdup (filename);
ed1f651b
RS
2427
2428 if (always_delete)
2429 {
b3694847 2430 struct temp_file *temp;
ed1f651b
RS
2431 for (temp = always_delete_queue; temp; temp = temp->next)
2432 if (! strcmp (name, temp->name))
2433 goto already1;
e9a25f70 2434
5ed6ace5 2435 temp = XNEW (struct temp_file);
ed1f651b
RS
2436 temp->next = always_delete_queue;
2437 temp->name = name;
2438 always_delete_queue = temp;
e9a25f70 2439
ed1f651b
RS
2440 already1:;
2441 }
2442
2443 if (fail_delete)
2444 {
b3694847 2445 struct temp_file *temp;
ed1f651b
RS
2446 for (temp = failure_delete_queue; temp; temp = temp->next)
2447 if (! strcmp (name, temp->name))
2448 goto already2;
e9a25f70 2449
5ed6ace5 2450 temp = XNEW (struct temp_file);
ed1f651b
RS
2451 temp->next = failure_delete_queue;
2452 temp->name = name;
2453 failure_delete_queue = temp;
e9a25f70 2454
ed1f651b
RS
2455 already2:;
2456 }
2457}
2458
2459/* Delete all the temporary files whose names we previously recorded. */
2460
8fd58397
DR
2461#ifndef DELETE_IF_ORDINARY
2462#define DELETE_IF_ORDINARY(NAME,ST,VERBOSE_FLAG) \
2463do \
2464 { \
2465 if (stat (NAME, &ST) >= 0 && S_ISREG (ST.st_mode)) \
2466 if (unlink (NAME) < 0) \
2467 if (VERBOSE_FLAG) \
2468 perror_with_name (NAME); \
2469 } while (0)
2470#endif
2471
d5ea2ac4 2472static void
1d088dee 2473delete_if_ordinary (const char *name)
d5ea2ac4
RK
2474{
2475 struct stat st;
2476#ifdef DEBUG
2477 int i, c;
2478
2479 printf ("Delete %s? (y or n) ", name);
2480 fflush (stdout);
2481 i = getchar ();
2482 if (i != '\n')
e9a25f70
JL
2483 while ((c = getchar ()) != '\n' && c != EOF)
2484 ;
2485
d5ea2ac4
RK
2486 if (i == 'y' || i == 'Y')
2487#endif /* DEBUG */
8fd58397 2488 DELETE_IF_ORDINARY (name, st, verbose_flag);
d5ea2ac4
RK
2489}
2490
ed1f651b 2491static void
1d088dee 2492delete_temp_files (void)
ed1f651b 2493{
b3694847 2494 struct temp_file *temp;
ed1f651b
RS
2495
2496 for (temp = always_delete_queue; temp; temp = temp->next)
d5ea2ac4 2497 delete_if_ordinary (temp->name);
ed1f651b
RS
2498 always_delete_queue = 0;
2499}
2500
2501/* Delete all the files to be deleted on error. */
2502
2503static void
1d088dee 2504delete_failure_queue (void)
ed1f651b 2505{
b3694847 2506 struct temp_file *temp;
ed1f651b
RS
2507
2508 for (temp = failure_delete_queue; temp; temp = temp->next)
d5ea2ac4 2509 delete_if_ordinary (temp->name);
ed1f651b
RS
2510}
2511
2512static void
1d088dee 2513clear_failure_queue (void)
ed1f651b
RS
2514{
2515 failure_delete_queue = 0;
2516}
b3865ca9 2517\f
00dcee0c
AM
2518/* Call CALLBACK for each path in PATHS, breaking out early if CALLBACK
2519 returns non-NULL.
2520 If DO_MULTI is true iterate over the paths twice, first with multilib
2521 suffix then without, otherwise iterate over the paths once without
2522 adding a multilib suffix. When DO_MULTI is true, some attempt is made
2523 to avoid visiting the same path twice, but we could do better. For
2524 instance, /usr/lib/../lib is considered different from /usr/lib.
2525 At least EXTRA_SPACE chars past the end of the path passed to
2526 CALLBACK are available for use by the callback.
2527 CALLBACK_INFO allows extra parameters to be passed to CALLBACK.
2528
2529 Returns the value returned by CALLBACK. */
2530
2531static void *
2532for_each_path (const struct path_prefix *paths,
2533 bool do_multi,
2534 size_t extra_space,
2535 void *(*callback) (char *, void *),
2536 void *callback_info)
b3865ca9 2537{
00dcee0c
AM
2538 struct prefix_list *pl;
2539 const char *multi_dir = NULL;
2540 const char *multi_os_dir = NULL;
2541 const char *multi_suffix;
2542 const char *just_multi_suffix;
2543 char *path = NULL;
2544 void *ret = NULL;
2545 bool skip_multi_dir = false;
2546 bool skip_multi_os_dir = false;
2547
2548 multi_suffix = machine_suffix;
2549 just_multi_suffix = just_machine_suffix;
2550 if (do_multi && multilib_dir && strcmp (multilib_dir, ".") != 0)
b3865ca9 2551 {
00dcee0c
AM
2552 multi_dir = concat (multilib_dir, dir_separator_str, NULL);
2553 multi_suffix = concat (multi_suffix, multi_dir, NULL);
2554 just_multi_suffix = concat (just_multi_suffix, multi_dir, NULL);
2555 }
2556 if (do_multi && multilib_os_dir && strcmp (multilib_os_dir, ".") != 0)
2557 multi_os_dir = concat (multilib_os_dir, dir_separator_str, NULL);
b3865ca9 2558
00dcee0c
AM
2559 while (1)
2560 {
2561 size_t multi_dir_len = 0;
2562 size_t multi_os_dir_len = 0;
2563 size_t suffix_len;
2564 size_t just_suffix_len;
2565 size_t len;
2566
2567 if (multi_dir)
2568 multi_dir_len = strlen (multi_dir);
2569 if (multi_os_dir)
2570 multi_os_dir_len = strlen (multi_os_dir);
2571 suffix_len = strlen (multi_suffix);
2572 just_suffix_len = strlen (just_multi_suffix);
2573
2574 if (path == NULL)
b3865ca9 2575 {
00dcee0c
AM
2576 len = paths->max_len + extra_space + 1;
2577 if (suffix_len > multi_os_dir_len)
2578 len += suffix_len;
2579 else
2580 len += multi_os_dir_len;
5ed6ace5 2581 path = XNEWVEC (char, len);
b3865ca9
RS
2582 }
2583
00dcee0c 2584 for (pl = paths->plist; pl != 0; pl = pl->next)
ae04227b 2585 {
00dcee0c
AM
2586 len = strlen (pl->prefix);
2587 memcpy (path, pl->prefix, len);
9218435e 2588
00dcee0c
AM
2589 /* Look first in MACHINE/VERSION subdirectory. */
2590 if (!skip_multi_dir)
2591 {
2592 memcpy (path + len, multi_suffix, suffix_len + 1);
2593 ret = callback (path, callback_info);
2594 if (ret)
2595 break;
2596 }
2597
2598 /* Some paths are tried with just the machine (ie. target)
2599 subdir. This is used for finding as, ld, etc. */
2600 if (!skip_multi_dir
2601 && pl->require_machine_suffix == 2)
2602 {
2603 memcpy (path + len, just_multi_suffix, just_suffix_len + 1);
2604 ret = callback (path, callback_info);
2605 if (ret)
2606 break;
2607 }
2608
2609 /* Now try the base path. */
2610 if (!pl->require_machine_suffix
2611 && !(pl->os_multilib ? skip_multi_os_dir : skip_multi_dir))
2612 {
2613 const char *this_multi;
2614 size_t this_multi_len;
2615
2616 if (pl->os_multilib)
2617 {
2618 this_multi = multi_os_dir;
2619 this_multi_len = multi_os_dir_len;
2620 }
2621 else
2622 {
2623 this_multi = multi_dir;
2624 this_multi_len = multi_dir_len;
2625 }
2626
2627 if (this_multi_len)
2628 memcpy (path + len, this_multi, this_multi_len + 1);
2629 else
2630 path[len] = '\0';
2631
2632 ret = callback (path, callback_info);
2633 if (ret)
2634 break;
2635 }
ae04227b 2636 }
00dcee0c
AM
2637 if (pl)
2638 break;
ae04227b 2639
00dcee0c
AM
2640 if (multi_dir == NULL && multi_os_dir == NULL)
2641 break;
b3865ca9 2642
00dcee0c
AM
2643 /* Run through the paths again, this time without multilibs.
2644 Don't repeat any we have already seen. */
2645 if (multi_dir)
2646 {
b1d5455a 2647 free (CONST_CAST (char *, multi_dir));
00dcee0c 2648 multi_dir = NULL;
b1d5455a 2649 free (CONST_CAST (char *, multi_suffix));
00dcee0c 2650 multi_suffix = machine_suffix;
b1d5455a 2651 free (CONST_CAST (char *, just_multi_suffix));
00dcee0c 2652 just_multi_suffix = just_machine_suffix;
b3865ca9 2653 }
00dcee0c
AM
2654 else
2655 skip_multi_dir = true;
2656 if (multi_os_dir)
2657 {
b1d5455a 2658 free (CONST_CAST (char *, multi_os_dir));
00dcee0c
AM
2659 multi_os_dir = NULL;
2660 }
2661 else
2662 skip_multi_os_dir = true;
2663 }
2664
2665 if (multi_dir)
2666 {
b1d5455a
KG
2667 free (CONST_CAST (char *, multi_dir));
2668 free (CONST_CAST (char *, multi_suffix));
2669 free (CONST_CAST (char *, just_multi_suffix));
b3865ca9 2670 }
00dcee0c 2671 if (multi_os_dir)
b1d5455a 2672 free (CONST_CAST (char *, multi_os_dir));
00dcee0c
AM
2673 if (ret != path)
2674 free (path);
2675 return ret;
2676}
2677
2678/* Callback for build_search_list. Adds path to obstack being built. */
2679
2680struct add_to_obstack_info {
2681 struct obstack *ob;
2682 bool check_dir;
2683 bool first_time;
2684};
2685
2686static void *
2687add_to_obstack (char *path, void *data)
2688{
e1e4cdc4 2689 struct add_to_obstack_info *info = (struct add_to_obstack_info *) data;
00dcee0c
AM
2690
2691 if (info->check_dir && !is_directory (path, false))
2692 return NULL;
2693
2694 if (!info->first_time)
2695 obstack_1grow (info->ob, PATH_SEPARATOR);
2696
2697 obstack_grow (info->ob, path, strlen (path));
2698
2699 info->first_time = false;
2700 return NULL;
2701}
2702
47d33318
FXC
2703/* Add or change the value of an environment variable, outputting the
2704 change to standard error if in verbose mode. */
2705static void
e9c15f6e 2706xputenv (const char *string)
47d33318
FXC
2707{
2708 if (verbose_flag)
2dec80c7 2709 fnotice (stderr, "%s\n", string);
e9c15f6e 2710 putenv (CONST_CAST (char *, string));
47d33318
FXC
2711}
2712
00dcee0c
AM
2713/* Build a list of search directories from PATHS.
2714 PREFIX is a string to prepend to the list.
2715 If CHECK_DIR_P is true we ensure the directory exists.
2716 If DO_MULTI is true, multilib paths are output first, then
2717 non-multilib paths.
2718 This is used mostly by putenv_from_prefixes so we use `collect_obstack'.
2719 It is also used by the --print-search-dirs flag. */
2720
2721static char *
2722build_search_list (const struct path_prefix *paths, const char *prefix,
2723 bool check_dir, bool do_multi)
2724{
2725 struct add_to_obstack_info info;
2726
2727 info.ob = &collect_obstack;
2728 info.check_dir = check_dir;
2729 info.first_time = true;
2730
2731 obstack_grow (&collect_obstack, prefix, strlen (prefix));
2732 obstack_1grow (&collect_obstack, '=');
2733
2734 for_each_path (paths, do_multi, 0, add_to_obstack, &info);
e9a25f70 2735
3ae7de4e 2736 obstack_1grow (&collect_obstack, '\0');
7973fd2a 2737 return XOBFINISH (&collect_obstack, char *);
b3865ca9
RS
2738}
2739
0f41302f
MS
2740/* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
2741 for collect. */
2628b9d3
DE
2742
2743static void
00dcee0c
AM
2744putenv_from_prefixes (const struct path_prefix *paths, const char *env_var,
2745 bool do_multi)
2628b9d3 2746{
47d33318 2747 xputenv (build_search_list (paths, env_var, true, do_multi));
2628b9d3 2748}
ed1f651b 2749\f
ca606201
ILT
2750/* Check whether NAME can be accessed in MODE. This is like access,
2751 except that it never considers directories to be executable. */
2752
2753static int
1d088dee 2754access_check (const char *name, int mode)
ca606201
ILT
2755{
2756 if (mode == X_OK)
2757 {
2758 struct stat st;
2759
2760 if (stat (name, &st) < 0
2761 || S_ISDIR (st.st_mode))
2762 return -1;
2763 }
2764
2765 return access (name, mode);
2766}
2767
00dcee0c
AM
2768/* Callback for find_a_file. Appends the file name to the directory
2769 path. If the resulting file exists in the right mode, return the
2770 full pathname to the file. */
2771
2772struct file_at_path_info {
2773 const char *name;
2774 const char *suffix;
2775 int name_len;
2776 int suffix_len;
2777 int mode;
2778};
2779
2780static void *
2781file_at_path (char *path, void *data)
2782{
e1e4cdc4 2783 struct file_at_path_info *info = (struct file_at_path_info *) data;
00dcee0c
AM
2784 size_t len = strlen (path);
2785
2786 memcpy (path + len, info->name, info->name_len);
2787 len += info->name_len;
2788
2789 /* Some systems have a suffix for executable files.
2790 So try appending that first. */
2791 if (info->suffix_len)
2792 {
2793 memcpy (path + len, info->suffix, info->suffix_len + 1);
2794 if (access_check (path, info->mode) == 0)
2795 return path;
2796 }
2797
2798 path[len] = '\0';
2799 if (access_check (path, info->mode) == 0)
2800 return path;
2801
2802 return NULL;
2803}
2804
ed1f651b 2805/* Search for NAME using the prefix list PREFIXES. MODE is passed to
00dcee0c
AM
2806 access to check permissions. If DO_MULTI is true, search multilib
2807 paths then non-multilib paths, otherwise do not search multilib paths.
0f41302f 2808 Return 0 if not found, otherwise return its name, allocated with malloc. */
ed1f651b
RS
2809
2810static char *
00dcee0c
AM
2811find_a_file (const struct path_prefix *pprefix, const char *name, int mode,
2812 bool do_multi)
ed1f651b 2813{
00dcee0c 2814 struct file_at_path_info info;
ed1f651b 2815
ab339d62 2816#ifdef DEFAULT_ASSEMBLER
c5c0b3d9 2817 if (! strcmp (name, "as") && access (DEFAULT_ASSEMBLER, mode) == 0)
ad85216e 2818 return xstrdup (DEFAULT_ASSEMBLER);
ab339d62
AO
2819#endif
2820
2821#ifdef DEFAULT_LINKER
ad85216e
KG
2822 if (! strcmp(name, "ld") && access (DEFAULT_LINKER, mode) == 0)
2823 return xstrdup (DEFAULT_LINKER);
ab339d62
AO
2824#endif
2825
ed1f651b
RS
2826 /* Determine the filename to execute (special case for absolute paths). */
2827
3dce1408 2828 if (IS_ABSOLUTE_PATH (name))
ed1f651b 2829 {
ab339d62 2830 if (access (name, mode) == 0)
00dcee0c 2831 return xstrdup (name);
460dcab4 2832
00dcee0c
AM
2833 return NULL;
2834 }
460dcab4 2835
00dcee0c
AM
2836 info.name = name;
2837 info.suffix = (mode & X_OK) != 0 ? HOST_EXECUTABLE_SUFFIX : "";
2838 info.name_len = strlen (info.name);
2839 info.suffix_len = strlen (info.suffix);
2840 info.mode = mode;
ed1f651b 2841
e1e4cdc4
KG
2842 return (char*) for_each_path (pprefix, do_multi,
2843 info.name_len + info.suffix_len,
2844 file_at_path, &info);
ed1f651b
RS
2845}
2846
922a4beb 2847/* Ranking of prefixes in the sort list. -B prefixes are put before
9218435e 2848 all others. */
922a4beb
AC
2849
2850enum path_prefix_priority
2851{
2852 PREFIX_PRIORITY_B_OPT,
2853 PREFIX_PRIORITY_LAST
2854};
2855
fbe5a4a6 2856/* Add an entry for PREFIX in PLIST. The PLIST is kept in ascending
922a4beb
AC
2857 order according to PRIORITY. Within each PRIORITY, new entries are
2858 appended.
ed1f651b
RS
2859
2860 If WARN is nonzero, we will warn if no file is found
2861 through this prefix. WARN should point to an int
ae04227b
CH
2862 which will be set to 1 if this entry is used.
2863
e9a25f70
JL
2864 COMPONENT is the value to be passed to update_path.
2865
ae04227b
CH
2866 REQUIRE_MACHINE_SUFFIX is 1 if this prefix can't be used without
2867 the complete value of machine_suffix.
2868 2 means try both machine_suffix and just_machine_suffix. */
ed1f651b
RS
2869
2870static void
1d088dee
AJ
2871add_prefix (struct path_prefix *pprefix, const char *prefix,
2872 const char *component, /* enum prefix_priority */ int priority,
1a5d37a1 2873 int require_machine_suffix, int os_multilib)
ed1f651b
RS
2874{
2875 struct prefix_list *pl, **prev;
2876 int len;
2877
922a4beb
AC
2878 for (prev = &pprefix->plist;
2879 (*prev) != NULL && (*prev)->priority <= priority;
2880 prev = &(*prev)->next)
2881 ;
ed1f651b 2882
f9da5064 2883 /* Keep track of the longest prefix. */
ed1f651b 2884
e9a25f70 2885 prefix = update_path (prefix, component);
ed1f651b
RS
2886 len = strlen (prefix);
2887 if (len > pprefix->max_len)
2888 pprefix->max_len = len;
2889
5ed6ace5 2890 pl = XNEW (struct prefix_list);
51c04256 2891 pl->prefix = prefix;
ed1f651b 2892 pl->require_machine_suffix = require_machine_suffix;
922a4beb 2893 pl->priority = priority;
5bbcd587 2894 pl->os_multilib = os_multilib;
ed1f651b 2895
f9da5064 2896 /* Insert after PREV. */
922a4beb
AC
2897 pl->next = (*prev);
2898 (*prev) = pl;
ed1f651b 2899}
4977bab6
ZW
2900
2901/* Same as add_prefix, but prepending target_system_root to prefix. */
f4c0a303 2902/* The target_system_root prefix has been relocated by gcc_exec_prefix. */
4977bab6 2903static void
1d088dee
AJ
2904add_sysrooted_prefix (struct path_prefix *pprefix, const char *prefix,
2905 const char *component,
2906 /* enum prefix_priority */ int priority,
1a5d37a1 2907 int require_machine_suffix, int os_multilib)
4977bab6 2908{
3dce1408 2909 if (!IS_ABSOLUTE_PATH (prefix))
2dec80c7 2910 fatal_error ("system path '%s' is not absolute", prefix);
4977bab6
ZW
2911
2912 if (target_system_root)
2913 {
e7f13528
GP
2914 if (target_sysroot_suffix)
2915 prefix = concat (target_sysroot_suffix, prefix, NULL);
4977bab6 2916 prefix = concat (target_system_root, prefix, NULL);
e7f13528 2917
4977bab6
ZW
2918 /* We have to override this because GCC's notion of sysroot
2919 moves along with GCC. */
2920 component = "GCC";
2921 }
2922
2923 add_prefix (pprefix, prefix, component, priority,
1a5d37a1 2924 require_machine_suffix, os_multilib);
4977bab6 2925}
ed1f651b
RS
2926\f
2927/* Execute the command specified by the arguments on the current line of spec.
2928 When using pipes, this includes several piped-together commands
2929 with `|' between them.
2930
2931 Return 0 if successful, -1 if failed. */
2932
2933static int
1d088dee 2934execute (void)
ed1f651b
RS
2935{
2936 int i;
2937 int n_commands; /* # of command. */
2938 char *string;
054e88a8 2939 struct pex_obj *pex;
ed1f651b 2940 struct command
d25a45d4
KH
2941 {
2942 const char *prog; /* program name. */
2943 const char **argv; /* vector of args. */
d25a45d4 2944 };
ed1f651b
RS
2945
2946 struct command *commands; /* each command buffer with above info. */
2947
3b5edfee 2948 gcc_assert (!processing_spec_function);
f3226a90 2949
fe7df9c4
SP
2950 if (wrapper_string)
2951 {
2952 string = find_a_file (&exec_prefixes, argbuf[0], X_OK, false);
2953 argbuf[0] = (string) ? string : argbuf[0];
2954 insert_wrapper (wrapper_string);
2955 }
2956
ed1f651b
RS
2957 /* Count # of piped commands. */
2958 for (n_commands = 1, i = 0; i < argbuf_index; i++)
2959 if (strcmp (argbuf[i], "|") == 0)
2960 n_commands++;
2961
2962 /* Get storage for each command. */
e1e4cdc4 2963 commands = (struct command *) alloca (n_commands * sizeof (struct command));
ed1f651b
RS
2964
2965 /* Split argbuf into its separate piped processes,
2966 and record info about each one.
2967 Also search for the programs that are to be run. */
2968
2969 commands[0].prog = argbuf[0]; /* first command. */
2970 commands[0].argv = &argbuf[0];
b8698a0f 2971
fe7df9c4
SP
2972 if (!wrapper_string)
2973 {
2974 string = find_a_file (&exec_prefixes, commands[0].prog, X_OK, false);
2975 commands[0].argv[0] = (string) ? string : commands[0].argv[0];
2976 }
ed1f651b
RS
2977
2978 for (n_commands = 1, i = 0; i < argbuf_index; i++)
2979 if (strcmp (argbuf[i], "|") == 0)
2980 { /* each command. */
6405c0ec 2981#if defined (__MSDOS__) || defined (OS2) || defined (VMS)
2dec80c7 2982 fatal_error ("-pipe not supported");
ed1f651b
RS
2983#endif
2984 argbuf[i] = 0; /* termination of command args. */
2985 commands[n_commands].prog = argbuf[i + 1];
2986 commands[n_commands].argv = &argbuf[i + 1];
5bbcd587 2987 string = find_a_file (&exec_prefixes, commands[n_commands].prog,
00dcee0c 2988 X_OK, false);
ed1f651b
RS
2989 if (string)
2990 commands[n_commands].argv[0] = string;
2991 n_commands++;
2992 }
2993
2994 argbuf[argbuf_index] = 0;
2995
2996 /* If -v, print what we are about to do, and maybe query. */
2997
b3865ca9 2998 if (verbose_flag)
ed1f651b 2999 {
b8468bc7
NC
3000 /* For help listings, put a blank line between sub-processes. */
3001 if (print_help_list)
3002 fputc ('\n', stderr);
9218435e 3003
ed1f651b 3004 /* Print each piped command as a separate line. */
d25a45d4 3005 for (i = 0; i < n_commands; i++)
ed1f651b 3006 {
37620334 3007 const char *const *j;
ed1f651b 3008
589005ff
KH
3009 if (verbose_only_flag)
3010 {
99f78cdd
IR
3011 for (j = commands[i].argv; *j; j++)
3012 {
88f92c0f 3013 const char *p;
99f78cdd 3014 for (p = *j; *p; ++p)
09b201fc
JJ
3015 if (!ISALNUM ((unsigned char) *p)
3016 && *p != '_' && *p != '/' && *p != '-' && *p != '.')
3017 break;
3018 if (*p || !*j)
99f78cdd 3019 {
09b201fc
JJ
3020 fprintf (stderr, " \"");
3021 for (p = *j; *p; ++p)
3022 {
3023 if (*p == '"' || *p == '\\' || *p == '$')
3024 fputc ('\\', stderr);
3025 fputc (*p, stderr);
3026 }
3027 fputc ('"', stderr);
99f78cdd 3028 }
09b201fc
JJ
3029 else
3030 fprintf (stderr, " %s", *j);
99f78cdd 3031 }
589005ff
KH
3032 }
3033 else
99f78cdd
IR
3034 for (j = commands[i].argv; *j; j++)
3035 fprintf (stderr, " %s", *j);
ed1f651b
RS
3036
3037 /* Print a pipe symbol after all but the last command. */
3038 if (i + 1 != n_commands)
3039 fprintf (stderr, " |");
3040 fprintf (stderr, "\n");
3041 }
3042 fflush (stderr);
99f78cdd 3043 if (verbose_only_flag != 0)
6a40fb21
AP
3044 {
3045 /* verbose_only_flag should act as if the spec was
3046 executed, so increment execution_count before
ba228239 3047 returning. This prevents spurious warnings about
6a40fb21
AP
3048 unused linker input files, etc. */
3049 execution_count++;
3050 return 0;
3051 }
ed1f651b 3052#ifdef DEBUG
2dec80c7 3053 fnotice (stderr, "\nGo ahead? (y or n) ");
ed1f651b
RS
3054 fflush (stderr);
3055 i = getchar ();
3056 if (i != '\n')
e9a25f70
JL
3057 while (getchar () != '\n')
3058 ;
3059
ed1f651b
RS
3060 if (i != 'y' && i != 'Y')
3061 return 0;
3062#endif /* DEBUG */
3063 }
3064
414d23ae 3065#ifdef ENABLE_VALGRIND_CHECKING
fbe5a4a6 3066 /* Run the each command through valgrind. To simplify prepending the
414d23ae
HPN
3067 path to valgrind and the option "-q" (for quiet operation unless
3068 something triggers), we allocate a separate argv array. */
3069
3070 for (i = 0; i < n_commands; i++)
3071 {
3072 const char **argv;
3073 int argc;
3074 int j;
3075
3076 for (argc = 0; commands[i].argv[argc] != NULL; argc++)
3077 ;
3078
63ab5b8c 3079 argv = XALLOCAVEC (const char *, argc + 3);
414d23ae
HPN
3080
3081 argv[0] = VALGRIND_PATH;
3082 argv[1] = "-q";
3083 for (j = 2; j < argc + 2; j++)
3084 argv[j] = commands[i].argv[j - 2];
3085 argv[j] = NULL;
3086
3087 commands[i].argv = argv;
3088 commands[i].prog = argv[0];
3089 }
3090#endif
3091
ed1f651b
RS
3092 /* Run each piped subprocess. */
3093
bdde878c
AO
3094 pex = pex_init (PEX_USE_PIPES | ((report_times || report_times_to_file)
3095 ? PEX_RECORD_TIMES : 0),
6afbc885 3096 progname, temp_filename);
054e88a8
ILT
3097 if (pex == NULL)
3098 pfatal_with_name (_("pex_init failed"));
3099
ed1f651b
RS
3100 for (i = 0; i < n_commands; i++)
3101 {
054e88a8
ILT
3102 const char *errmsg;
3103 int err;
fbd40359 3104 const char *string = commands[i].argv[0];
ed1f651b 3105
054e88a8
ILT
3106 errmsg = pex_run (pex,
3107 ((i + 1 == n_commands ? PEX_LAST : 0)
3108 | (string == commands[i].prog ? PEX_SEARCH : 0)),
b1d5455a 3109 string, CONST_CAST (char **, commands[i].argv),
054e88a8
ILT
3110 NULL, NULL, &err);
3111 if (errmsg != NULL)
3112 {
3113 if (err == 0)
2dec80c7 3114 fatal_error (errmsg);
054e88a8
ILT
3115 else
3116 {
3117 errno = err;
3118 pfatal_with_name (errmsg);
3119 }
3120 }
ed1f651b
RS
3121
3122 if (string != commands[i].prog)
b1d5455a 3123 free (CONST_CAST (char *, string));
ed1f651b
RS
3124 }
3125
3126 execution_count++;
3127
054e88a8 3128 /* Wait for all the subprocesses to finish. */
ed1f651b
RS
3129
3130 {
054e88a8
ILT
3131 int *statuses;
3132 struct pex_time *times = NULL;
ed1f651b
RS
3133 int ret_code = 0;
3134
e1e4cdc4 3135 statuses = (int *) alloca (n_commands * sizeof (int));
054e88a8
ILT
3136 if (!pex_get_status (pex, n_commands, statuses))
3137 pfatal_with_name (_("failed to get exit status"));
3138
bdde878c 3139 if (report_times || report_times_to_file)
ed1f651b 3140 {
e1e4cdc4 3141 times = (struct pex_time *) alloca (n_commands * sizeof (struct pex_time));
054e88a8
ILT
3142 if (!pex_get_times (pex, n_commands, times))
3143 pfatal_with_name (_("failed to get process times"));
3144 }
ed1f651b 3145
054e88a8 3146 pex_free (pex);
ed1f651b 3147
054e88a8
ILT
3148 for (i = 0; i < n_commands; ++i)
3149 {
3150 int status = statuses[i];
03c41c05 3151
054e88a8
ILT
3152 if (WIFSIGNALED (status))
3153 {
c334349b 3154#ifdef SIGPIPE
054e88a8
ILT
3155 /* SIGPIPE is a special case. It happens in -pipe mode
3156 when the compiler dies before the preprocessor is done,
3157 or the assembler dies before the compiler is done.
3158 There's generally been an error already, and this is
3159 just fallout. So don't generate another error unless
3160 we would otherwise have succeeded. */
3161 if (WTERMSIG (status) == SIGPIPE
3162 && (signal_count || greatest_status >= MIN_FATAL_STATUS))
eeac616e
VR
3163 {
3164 signal_count++;
3165 ret_code = -1;
3166 }
054e88a8
ILT
3167 else
3168#endif
6afbc885
JM
3169 internal_error ("%s (program %s)",
3170 strsignal (WTERMSIG (status)), commands[i].prog);
054e88a8
ILT
3171 }
3172 else if (WIFEXITED (status)
3173 && WEXITSTATUS (status) >= MIN_FATAL_STATUS)
3174 {
3175 if (WEXITSTATUS (status) > greatest_status)
3176 greatest_status = WEXITSTATUS (status);
3177 ret_code = -1;
3178 }
3179
bdde878c 3180 if (report_times || report_times_to_file)
054e88a8
ILT
3181 {
3182 struct pex_time *pt = &times[i];
3183 double ut, st;
3184
3185 ut = ((double) pt->user_seconds
3186 + (double) pt->user_microseconds / 1.0e6);
3187 st = ((double) pt->system_seconds
3188 + (double) pt->system_microseconds / 1.0e6);
3189
3190 if (ut + st != 0)
bdde878c
AO
3191 {
3192 if (report_times)
2dec80c7
JM
3193 fnotice (stderr, "# %s %.2f %.2f\n",
3194 commands[i].prog, ut, st);
bdde878c
AO
3195
3196 if (report_times_to_file)
3197 {
3198 int c = 0;
3199 const char *const *j;
3200
3201 fprintf (report_times_to_file, "%g %g", ut, st);
3202
3203 for (j = &commands[i].prog; *j; j = &commands[i].argv[++c])
3204 {
3205 const char *p;
3206 for (p = *j; *p; ++p)
3207 if (*p == '"' || *p == '\\' || *p == '$'
3208 || ISSPACE (*p))
3209 break;
3210
3211 if (*p)
3212 {
3213 fprintf (report_times_to_file, " \"");
3214 for (p = *j; *p; ++p)
3215 {
3216 if (*p == '"' || *p == '\\' || *p == '$')
3217 fputc ('\\', report_times_to_file);
3218 fputc (*p, report_times_to_file);
3219 }
3220 fputc ('"', report_times_to_file);
3221 }
3222 else
3223 fprintf (report_times_to_file, " %s", *j);
3224 }
3225
3226 fputc ('\n', report_times_to_file);
3227 }
3228 }
054e88a8 3229 }
ed1f651b 3230 }
054e88a8 3231
ed1f651b
RS
3232 return ret_code;
3233 }
3234}
3235\f
3236/* Find all the switches given to us
3237 and make a vector describing them.
3238 The elements of the vector are strings, one per switch given.
3239 If a switch uses following arguments, then the `part1' field
3240 is the switch itself and the `args' field
3241 is a null-terminated vector containing the following arguments.
3371362c
L
3242 Bits in the `live_cond' field are:
3243 SWITCH_LIVE to indicate this switch is true in a conditional spec.
3244 SWITCH_FALSE to indicate this switch is overridden by a later switch.
3245 SWITCH_IGNORE to indicate this switch should be ignored (used in %<S).
94b90527
JJ
3246 SWITCH_IGNORE_PERMANENTLY to indicate this switch should be ignored
3247 in all do_spec calls afterwards. Used for %<S from self specs.
ab87f8c8 3248 The `validated' field is nonzero if any spec has looked at this switch;
ed1f651b
RS
3249 if it remains zero at the end of the run, it must be meaningless. */
3250
94b90527
JJ
3251#define SWITCH_LIVE 0x1
3252#define SWITCH_FALSE 0x2
3253#define SWITCH_IGNORE 0x4
3254#define SWITCH_IGNORE_PERMANENTLY 0x8
8097c429 3255
ed1f651b
RS
3256struct switchstr
3257{
878f32c3 3258 const char *part1;
fbd40359 3259 const char **args;
3371362c 3260 unsigned int live_cond;
196a37f4
NB
3261 unsigned char validated;
3262 unsigned char ordering;
ed1f651b
RS
3263};
3264
3265static struct switchstr *switches;
3266
3267static int n_switches;
3268
2153915d
AO
3269/* Set to zero if -fcompare-debug is disabled, positive if it's
3270 enabled and we're running the first compilation, negative if it's
3271 enabled and we're running the second compilation. For most of the
3272 time, it's in the range -1..1, but it can be temporarily set to 2
3273 or 3 to indicate that the -fcompare-debug flags didn't come from
3274 the command-line, but rather from the GCC_COMPARE_DEBUG environment
3275 variable, until a synthesized -fcompare-debug flag is added to the
3276 command line. */
3277int compare_debug;
3278
3279/* Set to nonzero if we've seen the -fcompare-debug-second flag. */
3280int compare_debug_second;
3281
3282/* Set to the flags that should be passed to the second compilation in
3283 a -fcompare-debug compilation. */
3284const char *compare_debug_opt;
3285
3286static struct switchstr *switches_debug_check[2];
3287
3288static int n_switches_debug_check[2];
3289
3290static char *debug_check_temp_file[2];
3291
817a8255
EC
3292/* Language is one of three things:
3293
3294 1) The name of a real programming language.
3295 2) NULL, indicating that no one has figured out
3296 what it is yet.
3297 3) '*', indicating that the file should be passed
3298 to the linker. */
ed1f651b
RS
3299struct infile
3300{
878f32c3
KG
3301 const char *name;
3302 const char *language;
0855eab7
CT
3303 struct compiler *incompiler;
3304 bool compiled;
3305 bool preprocessed;
ed1f651b
RS
3306};
3307
3308/* Also a vector of input files specified. */
3309
3310static struct infile *infiles;
3311
3a5a9edc 3312int n_infiles;
ed1f651b 3313
d1bd0ded
GK
3314/* True if multiple input files are being compiled to a single
3315 assembly file. */
3316
3317static bool combine_inputs;
3318
08dc830e 3319/* This counts the number of libraries added by lang_specific_driver, so that
a2a05b0a
JW
3320 we can tell if there were any user supplied any files or libraries. */
3321
3322static int added_libraries;
3323
ed1f651b
RS
3324/* And a vector of corresponding output files is made up later. */
3325
3a5a9edc 3326const char **outfiles;
853e0b2d 3327\f
45936a85 3328#if defined(HAVE_TARGET_OBJECT_SUFFIX) || defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
853e0b2d
RK
3329
3330/* Convert NAME to a new name if it is the standard suffix. DO_EXE
a9657ce8
DR
3331 is true if we should look for an executable suffix. DO_OBJ
3332 is true if we should look for an object suffix. */
853e0b2d 3333
40cdfca6 3334static const char *
1d088dee
AJ
3335convert_filename (const char *name, int do_exe ATTRIBUTE_UNUSED,
3336 int do_obj ATTRIBUTE_UNUSED)
853e0b2d 3337{
40cdfca6 3338#if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
853e0b2d 3339 int i;
40cdfca6 3340#endif
87e690e2
MK
3341 int len;
3342
3343 if (name == NULL)
3344 return NULL;
9218435e 3345
87e690e2 3346 len = strlen (name);
853e0b2d 3347
45936a85
DD
3348#ifdef HAVE_TARGET_OBJECT_SUFFIX
3349 /* Convert x.o to x.obj if TARGET_OBJECT_SUFFIX is ".obj". */
a9657ce8 3350 if (do_obj && len > 2
853e0b2d
RK
3351 && name[len - 2] == '.'
3352 && name[len - 1] == 'o')
3353 {
bdc5ed93 3354 obstack_grow (&obstack, name, len - 2);
45936a85 3355 obstack_grow0 (&obstack, TARGET_OBJECT_SUFFIX, strlen (TARGET_OBJECT_SUFFIX));
7973fd2a 3356 name = XOBFINISH (&obstack, const char *);
853e0b2d
RK
3357 }
3358#endif
3359
45936a85 3360#if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
853e0b2d
RK
3361 /* If there is no filetype, make it the executable suffix (which includes
3362 the "."). But don't get confused if we have just "-o". */
45936a85 3363 if (! do_exe || TARGET_EXECUTABLE_SUFFIX[0] == 0 || (len == 2 && name[0] == '-'))
853e0b2d
RK
3364 return name;
3365
e0040a8e 3366 for (i = len - 1; i >= 0; i--)
509781a4 3367 if (IS_DIR_SEPARATOR (name[i]))
e0040a8e
RK
3368 break;
3369
3370 for (i++; i < len; i++)
853e0b2d
RK
3371 if (name[i] == '.')
3372 return name;
3373
3374 obstack_grow (&obstack, name, len);
5d9669fd
RK
3375 obstack_grow0 (&obstack, TARGET_EXECUTABLE_SUFFIX,
3376 strlen (TARGET_EXECUTABLE_SUFFIX));
7973fd2a 3377 name = XOBFINISH (&obstack, const char *);
853e0b2d
RK
3378#endif
3379
3380 return name;
3381}
3382#endif
b8468bc7
NC
3383\f
3384/* Display the command line switches accepted by gcc. */
3385static void
1d088dee 3386display_help (void)
b8468bc7 3387{
6afbc885 3388 printf (_("Usage: %s [options] file...\n"), progname);
5e4adfba 3389 fputs (_("Options:\n"), stdout);
b8468bc7 3390
5e4adfba
PT
3391 fputs (_(" -pass-exit-codes Exit with highest error code from a phase\n"), stdout);
3392 fputs (_(" --help Display this information\n"), stdout);
91606ce2 3393 fputs (_(" --target-help Display target specific command line options\n"), stdout);
0631b69f 3394 fputs (_(" --help={target|optimizers|warnings|params|[^]{joined|separate|undocumented}}[,...]\n"), stdout);
c662432e 3395 fputs (_(" Display specific types of command line options\n"), stdout);
b8468bc7 3396 if (! verbose_flag)
5e4adfba 3397 fputs (_(" (Use '-v --help' to display command line options of sub-processes)\n"), stdout);
1156c176 3398 fputs (_(" --version Display compiler version information\n"), stdout);
5e4adfba
PT
3399 fputs (_(" -dumpspecs Display all of the built in spec strings\n"), stdout);
3400 fputs (_(" -dumpversion Display the version of the compiler\n"), stdout);
3401 fputs (_(" -dumpmachine Display the compiler's target processor\n"), stdout);
3402 fputs (_(" -print-search-dirs Display the directories in the compiler's search path\n"), stdout);
3403 fputs (_(" -print-libgcc-file-name Display the name of the compiler's companion library\n"), stdout);
3404 fputs (_(" -print-file-name=<lib> Display the full path to library <lib>\n"), stdout);
3405 fputs (_(" -print-prog-name=<prog> Display the full path to compiler component <prog>\n"), stdout);
3406 fputs (_(" -print-multi-directory Display the root directory for versions of libgcc\n"), stdout);
3407 fputs (_("\
3408 -print-multi-lib Display the mapping between command line options and\n\
3409 multiple library search directories\n"), stdout);
5bbcd587 3410 fputs (_(" -print-multi-os-directory Display the relative path to OS libraries\n"), stdout);
3def1397 3411 fputs (_(" -print-sysroot Display the target libraries directory\n"), stdout);
14da6073 3412 fputs (_(" -print-sysroot-headers-suffix Display the sysroot suffix used to find headers\n"), stdout);
5e4adfba
PT
3413 fputs (_(" -Wa,<options> Pass comma-separated <options> on to the assembler\n"), stdout);
3414 fputs (_(" -Wp,<options> Pass comma-separated <options> on to the preprocessor\n"), stdout);
3415 fputs (_(" -Wl,<options> Pass comma-separated <options> on to the linker\n"), stdout);
4977bab6
ZW
3416 fputs (_(" -Xassembler <arg> Pass <arg> on to the assembler\n"), stdout);
3417 fputs (_(" -Xpreprocessor <arg> Pass <arg> on to the preprocessor\n"), stdout);
5e4adfba 3418 fputs (_(" -Xlinker <arg> Pass <arg> on to the linker\n"), stdout);
0855eab7 3419 fputs (_(" -combine Pass multiple source files to compiler at once\n"), stdout);
5e4adfba 3420 fputs (_(" -save-temps Do not delete intermediate files\n"), stdout);
14fdc613 3421 fputs (_(" -save-temps=<arg> Do not delete intermediate files\n"), stdout);
ba0c638e
SB
3422 fputs (_("\
3423 -no-canonical-prefixes Do not canonicalize paths when building relative\n\
3424 prefixes to other gcc components\n"), stdout);
5e4adfba
PT
3425 fputs (_(" -pipe Use pipes rather than intermediate files\n"), stdout);
3426 fputs (_(" -time Time the execution of each subprocess\n"), stdout);
b0287a90 3427 fputs (_(" -specs=<file> Override built-in specs with the contents of <file>\n"), stdout);
5e4adfba 3428 fputs (_(" -std=<standard> Assume that the input sources are for <standard>\n"), stdout);
160633c6
MM
3429 fputs (_("\
3430 --sysroot=<directory> Use <directory> as the root directory for headers\n\
b3cccd58 3431 and libraries\n"), stdout);
5e4adfba 3432 fputs (_(" -B <directory> Add <directory> to the compiler's search paths\n"), stdout);
5e4adfba 3433 fputs (_(" -v Display the programs invoked by the compiler\n"), stdout);
99f78cdd 3434 fputs (_(" -### Like -v but options quoted and commands not executed\n"), stdout);
5e4adfba
PT
3435 fputs (_(" -E Preprocess only; do not compile, assemble or link\n"), stdout);
3436 fputs (_(" -S Compile only; do not assemble or link\n"), stdout);
3437 fputs (_(" -c Compile and assemble, but do not link\n"), stdout);
3438 fputs (_(" -o <file> Place the output into <file>\n"), stdout);
3439 fputs (_("\
3440 -x <language> Specify the language of the following input files\n\
8e854b76 3441 Permissible languages include: c c++ assembler none\n\
1737c953 3442 'none' means revert to the default behavior of\n\
5e4adfba
PT
3443 guessing the language based on the file's extension\n\
3444"), stdout);
3445
0c386769 3446 printf (_("\
d991c721
BK
3447\nOptions starting with -g, -f, -m, -O, -W, or --param are automatically\n\
3448 passed on to the various sub-processes invoked by %s. In order to pass\n\
3449 other options on to these processes the -W<letter> options must be used.\n\
6afbc885 3450"), progname);
b8468bc7
NC
3451
3452 /* The rest of the options are displayed by invocations of the various
3453 sub-processes. */
3454}
3455
9218435e 3456static void
1d088dee 3457add_preprocessor_option (const char *option, int len)
9218435e 3458{
878f32c3 3459 n_preprocessor_options++;
9218435e 3460
878f32c3 3461 if (! preprocessor_options)
5ed6ace5 3462 preprocessor_options = XNEWVEC (char *, n_preprocessor_options);
878f32c3 3463 else
e1e4cdc4
KG
3464 preprocessor_options = XRESIZEVEC (char *, preprocessor_options,
3465 n_preprocessor_options);
9218435e 3466
878f32c3
KG
3467 preprocessor_options [n_preprocessor_options - 1] =
3468 save_string (option, len);
40f943dd 3469}
9218435e
KH
3470
3471static void
1d088dee 3472add_assembler_option (const char *option, int len)
878f32c3
KG
3473{
3474 n_assembler_options++;
3475
3476 if (! assembler_options)
5ed6ace5 3477 assembler_options = XNEWVEC (char *, n_assembler_options);
878f32c3 3478 else
e1e4cdc4
KG
3479 assembler_options = XRESIZEVEC (char *, assembler_options,
3480 n_assembler_options);
878f32c3
KG
3481
3482 assembler_options [n_assembler_options - 1] = save_string (option, len);
b8468bc7 3483}
9218435e
KH
3484
3485static void
1d088dee 3486add_linker_option (const char *option, int len)
878f32c3
KG
3487{
3488 n_linker_options++;
3489
3490 if (! linker_options)
5ed6ace5 3491 linker_options = XNEWVEC (char *, n_linker_options);
878f32c3 3492 else
3beb864c 3493 linker_options = XRESIZEVEC (char *, linker_options, n_linker_options);
878f32c3
KG
3494
3495 linker_options [n_linker_options - 1] = save_string (option, len);
40f943dd 3496}
853e0b2d 3497\f
ed1f651b
RS
3498/* Create the vector `switches' and its contents.
3499 Store its length in `n_switches'. */
3500
3501static void
e451301f 3502process_command (int argc, const char **argv)
ed1f651b 3503{
b3694847 3504 int i;
878f32c3
KG
3505 const char *temp;
3506 char *temp1;
fbd40359 3507 const char *spec_lang = 0;
ed1f651b 3508 int last_language_n_infiles;
3a265431 3509 int lang_n_infiles = 0;
dc36ec2c
RK
3510#ifdef MODIFY_TARGET_NAME
3511 int is_modify_target_name;
1832d326 3512 unsigned int j;
dc36ec2c 3513#endif
f4c0a303 3514 const char *tooldir_prefix;
ba0c638e
SB
3515 char *(*get_relative_prefix) (const char *, const char *,
3516 const char *) = NULL;
ed1f651b 3517
2f8dd115 3518 GET_ENVIRONMENT (gcc_exec_prefix, "GCC_EXEC_PREFIX");
8eebb258 3519
ed1f651b
RS
3520 n_switches = 0;
3521 n_infiles = 0;
a2a05b0a 3522 added_libraries = 0;
2484b6d2 3523
53117a2f
RK
3524 /* Figure compiler version from version string. */
3525
9218435e 3526 compiler_version = temp1 = xstrdup (version_string);
ad85216e 3527
878f32c3 3528 for (; *temp1; ++temp1)
53117a2f 3529 {
878f32c3 3530 if (*temp1 == ' ')
53117a2f 3531 {
878f32c3 3532 *temp1 = '\0';
53117a2f
RK
3533 break;
3534 }
3535 }
ed1f651b 3536
ba0c638e
SB
3537 /* Convert new-style -- options to old-style. */
3538 translate_options (&argc,
3539 CONST_CAST2 (const char *const **, const char ***,
3540 &argv));
3541
ba0c638e
SB
3542 /* Handle any -no-canonical-prefixes flag early, to assign the function
3543 that builds relative prefixes. This function creates default search
3544 paths that are needed later in normal option handling. */
3545
3546 for (i = 1; i < argc; i++)
3547 {
3548 if (! strcmp (argv[i], "-no-canonical-prefixes"))
3549 {
3550 get_relative_prefix = make_relative_prefix_ignore_links;
3551 break;
3552 }
3553 }
3554 if (! get_relative_prefix)
3555 get_relative_prefix = make_relative_prefix;
3556
0deb20df
TT
3557 /* Set up the default search paths. If there is no GCC_EXEC_PREFIX,
3558 see if we can create it from the pathname specified in argv[0]. */
3559
a8ee6e2d 3560 gcc_libexec_prefix = standard_libexec_prefix;
0deb20df
TT
3561#ifndef VMS
3562 /* FIXME: make_relative_prefix doesn't yet work for VMS. */
3563 if (!gcc_exec_prefix)
3564 {
ba0c638e
SB
3565 gcc_exec_prefix = get_relative_prefix (argv[0],
3566 standard_bindir_prefix,
3567 standard_exec_prefix);
3568 gcc_libexec_prefix = get_relative_prefix (argv[0],
3569 standard_bindir_prefix,
3570 standard_libexec_prefix);
0deb20df 3571 if (gcc_exec_prefix)
47d33318 3572 xputenv (concat ("GCC_EXEC_PREFIX=", gcc_exec_prefix, NULL));
0deb20df 3573 }
a8ee6e2d 3574 else
c7370b83
JM
3575 {
3576 /* make_relative_prefix requires a program name, but
3577 GCC_EXEC_PREFIX is typically a directory name with a trailing
3578 / (which is ignored by make_relative_prefix), so append a
3579 program name. */
3580 char *tmp_prefix = concat (gcc_exec_prefix, "gcc", NULL);
ba0c638e
SB
3581 gcc_libexec_prefix = get_relative_prefix (tmp_prefix,
3582 standard_exec_prefix,
3583 standard_libexec_prefix);
f4c0a303
CD
3584
3585 /* The path is unrelocated, so fallback to the original setting. */
3586 if (!gcc_libexec_prefix)
3587 gcc_libexec_prefix = standard_libexec_prefix;
3588
c7370b83
JM
3589 free (tmp_prefix);
3590 }
a8ee6e2d 3591#else
0deb20df 3592#endif
f4c0a303
CD
3593 /* From this point onward, gcc_exec_prefix is non-null if the toolchain
3594 is relocated. The toolchain was either relocated using GCC_EXEC_PREFIX
3595 or an automatically created GCC_EXEC_PREFIX from argv[0]. */
ed1f651b 3596
a288b143
AH
3597 /* Do language-specific adjustment/addition of flags. */
3598 lang_specific_driver (&argc,
3599 CONST_CAST2 (const char *const **, const char ***,
3600 &argv),
3601 &added_libraries);
3602
8eebb258 3603 if (gcc_exec_prefix)
ed1f651b 3604 {
6ed4bb9a 3605 int len = strlen (gcc_exec_prefix);
c5c0b3d9 3606
a8ee6e2d 3607 if (len > (int) sizeof ("/lib/gcc/") - 1
509781a4 3608 && (IS_DIR_SEPARATOR (gcc_exec_prefix[len-1])))
6ed4bb9a 3609 {
a8ee6e2d 3610 temp = gcc_exec_prefix + len - sizeof ("/lib/gcc/") + 1;
509781a4 3611 if (IS_DIR_SEPARATOR (*temp)
d25a45d4 3612 && strncmp (temp + 1, "lib", 3) == 0
509781a4 3613 && IS_DIR_SEPARATOR (temp[4])
c5ef564b 3614 && strncmp (temp + 5, "gcc", 3) == 0)
a8ee6e2d 3615 len -= sizeof ("/lib/gcc/") - 1;
6ed4bb9a
MM
3616 }
3617
3618 set_std_prefix (gcc_exec_prefix, len);
a8ee6e2d 3619 add_prefix (&exec_prefixes, gcc_libexec_prefix, "GCC",
1a5d37a1 3620 PREFIX_PRIORITY_LAST, 0, 0);
922a4beb 3621 add_prefix (&startfile_prefixes, gcc_exec_prefix, "GCC",
1a5d37a1 3622 PREFIX_PRIORITY_LAST, 0, 0);
ed1f651b
RS
3623 }
3624
3625 /* COMPILER_PATH and LIBRARY_PATH have values
3626 that are lists of directory names with colons. */
3627
2f8dd115 3628 GET_ENVIRONMENT (temp, "COMPILER_PATH");
ed1f651b
RS
3629 if (temp)
3630 {
878f32c3 3631 const char *startp, *endp;
e1e4cdc4 3632 char *nstore = (char *) alloca (strlen (temp) + 3);
ed1f651b
RS
3633
3634 startp = endp = temp;
3635 while (1)
3636 {
f6ec7e54 3637 if (*endp == PATH_SEPARATOR || *endp == 0)
ed1f651b 3638 {
d25a45d4 3639 strncpy (nstore, startp, endp - startp);
ed1f651b 3640 if (endp == startp)
d4f2852f 3641 strcpy (nstore, concat (".", dir_separator_str, NULL));
509781a4 3642 else if (!IS_DIR_SEPARATOR (endp[-1]))
ed1f651b 3643 {
d25a45d4
KH
3644 nstore[endp - startp] = DIR_SEPARATOR;
3645 nstore[endp - startp + 1] = 0;
ed1f651b
RS
3646 }
3647 else
d25a45d4 3648 nstore[endp - startp] = 0;
922a4beb 3649 add_prefix (&exec_prefixes, nstore, 0,
1a5d37a1 3650 PREFIX_PRIORITY_LAST, 0, 0);
76391e5a 3651 add_prefix (&include_prefixes, nstore, 0,
1a5d37a1 3652 PREFIX_PRIORITY_LAST, 0, 0);
ed1f651b
RS
3653 if (*endp == 0)
3654 break;
3655 endp = startp = endp + 1;
3656 }
3657 else
3658 endp++;
3659 }
3660 }
3661
2f8dd115 3662 GET_ENVIRONMENT (temp, LIBRARY_PATH_ENV);
fcc9ad83 3663 if (temp && *cross_compile == '0')
ed1f651b 3664 {
878f32c3 3665 const char *startp, *endp;
e1e4cdc4 3666 char *nstore = (char *) alloca (strlen (temp) + 3);
ed1f651b
RS
3667
3668 startp = endp = temp;
3669 while (1)
3670 {
f6ec7e54 3671 if (*endp == PATH_SEPARATOR || *endp == 0)
ed1f651b 3672 {
d25a45d4 3673 strncpy (nstore, startp, endp - startp);
ed1f651b 3674 if (endp == startp)
d4f2852f 3675 strcpy (nstore, concat (".", dir_separator_str, NULL));
509781a4 3676 else if (!IS_DIR_SEPARATOR (endp[-1]))
ed1f651b 3677 {
d25a45d4
KH
3678 nstore[endp - startp] = DIR_SEPARATOR;
3679 nstore[endp - startp + 1] = 0;
ed1f651b
RS
3680 }
3681 else
d25a45d4 3682 nstore[endp - startp] = 0;
6496a589 3683 add_prefix (&startfile_prefixes, nstore, NULL,
1a5d37a1 3684 PREFIX_PRIORITY_LAST, 0, 1);
ed1f651b
RS
3685 if (*endp == 0)
3686 break;
3687 endp = startp = endp + 1;
3688 }
3689 else
3690 endp++;
3691 }
3692 }
3693
3694 /* Use LPATH like LIBRARY_PATH (for the CMU build program). */
2f8dd115 3695 GET_ENVIRONMENT (temp, "LPATH");
fcc9ad83 3696 if (temp && *cross_compile == '0')
ed1f651b 3697 {
878f32c3 3698 const char *startp, *endp;
e1e4cdc4 3699 char *nstore = (char *) alloca (strlen (temp) + 3);
ed1f651b
RS
3700
3701 startp = endp = temp;
3702 while (1)
3703 {
f6ec7e54 3704 if (*endp == PATH_SEPARATOR || *endp == 0)
ed1f651b 3705 {
d25a45d4 3706 strncpy (nstore, startp, endp - startp);
ed1f651b 3707 if (endp == startp)
d4f2852f 3708 strcpy (nstore, concat (".", dir_separator_str, NULL));
509781a4 3709 else if (!IS_DIR_SEPARATOR (endp[-1]))
ed1f651b 3710 {
d25a45d4
KH
3711 nstore[endp - startp] = DIR_SEPARATOR;
3712 nstore[endp - startp + 1] = 0;
ed1f651b
RS
3713 }
3714 else
d25a45d4 3715 nstore[endp - startp] = 0;
6496a589 3716 add_prefix (&startfile_prefixes, nstore, NULL,
1a5d37a1 3717 PREFIX_PRIORITY_LAST, 0, 1);
ed1f651b
RS
3718 if (*endp == 0)
3719 break;
3720 endp = startp = endp + 1;
3721 }
3722 else
3723 endp++;
3724 }
3725 }
3726
3727 /* Scan argv twice. Here, the first time, just count how many switches
3728 there will be in their vector, and how many input files in theirs.
3729 Here we also parse the switches that cc itself uses (e.g. -v). */
3730
3731 for (i = 1; i < argc; i++)
3732 {
3733 if (! strcmp (argv[i], "-dumpspecs"))
3734 {
79aff5ac 3735 struct spec_list *sl;
03fc1620 3736 init_spec ();
79aff5ac
MM
3737 for (sl = specs; sl; sl = sl->next)
3738 printf ("*%s:\n%s\n\n", sl->name, *(sl->ptr_spec));
d25a45d4
KH
3739 if (link_command_spec)
3740 printf ("*link_command:\n%s\n\n", link_command_spec);
ed1f651b
RS
3741 exit (0);
3742 }
3743 else if (! strcmp (argv[i], "-dumpversion"))
3744 {
e5e809f4 3745 printf ("%s\n", spec_version);
ed1f651b
RS
3746 exit (0);
3747 }
9b783fc9
RK
3748 else if (! strcmp (argv[i], "-dumpmachine"))
3749 {
3750 printf ("%s\n", spec_machine);
d25a45d4 3751 exit (0);
9b783fc9 3752 }
3f595aa1
JM
3753 else if (strcmp (argv[i], "-fversion") == 0)
3754 {
3755 /* translate_options () has turned --version into -fversion. */
41fd0f9b
RAE
3756 print_version = 1;
3757
3758 /* We will be passing a dummy file on to the sub-processes. */
3759 n_infiles++;
3760 n_switches++;
3761
3762 /* CPP driver cannot obtain switch from cc1_options. */
3763 if (is_cpp_driver)
3764 add_preprocessor_option ("--version", strlen ("--version"));
3765 add_assembler_option ("--version", strlen ("--version"));
3766 add_linker_option ("--version", strlen ("--version"));
3f595aa1 3767 }
b8468bc7
NC
3768 else if (strcmp (argv[i], "-fhelp") == 0)
3769 {
3770 /* translate_options () has turned --help into -fhelp. */
3771 print_help_list = 1;
3772
3773 /* We will be passing a dummy file on to the sub-processes. */
3774 n_infiles++;
3775 n_switches++;
9218435e 3776
69927b59
NB
3777 /* CPP driver cannot obtain switch from cc1_options. */
3778 if (is_cpp_driver)
3779 add_preprocessor_option ("--help", 6);
b8468bc7
NC
3780 add_assembler_option ("--help", 6);
3781 add_linker_option ("--help", 6);
3782 }
c662432e
NC
3783 else if (strncmp (argv[i], "-fhelp=", 7) == 0)
3784 {
3785 /* translate_options () has turned --help into -fhelp. */
3786 print_subprocess_help = 2;
3787
3788 /* We will be passing a dummy file on to the sub-processes. */
3789 n_infiles++;
3790 n_switches++;
3791 }
91606ce2 3792 else if (strcmp (argv[i], "-ftarget-help") == 0)
589005ff
KH
3793 {
3794 /* translate_options() has turned --target-help into -ftarget-help. */
c662432e 3795 print_subprocess_help = 1;
91606ce2 3796
589005ff
KH
3797 /* We will be passing a dummy file on to the sub-processes. */
3798 n_infiles++;
3799 n_switches++;
91606ce2 3800
69927b59
NB
3801 /* CPP driver cannot obtain switch from cc1_options. */
3802 if (is_cpp_driver)
3803 add_preprocessor_option ("--target-help", 13);
589005ff
KH
3804 add_assembler_option ("--target-help", 13);
3805 add_linker_option ("--target-help", 13);
3806 }
14a774a9
RK
3807 else if (! strcmp (argv[i], "-pass-exit-codes"))
3808 {
3809 pass_exit_codes = 1;
3810 n_switches++;
3811 }
2628b9d3
DE
3812 else if (! strcmp (argv[i], "-print-search-dirs"))
3813 print_search_dirs = 1;
2dcb563f 3814 else if (! strcmp (argv[i], "-print-libgcc-file-name"))
2628b9d3 3815 print_file_name = "libgcc.a";
6a9e290e 3816 else if (! strncmp (argv[i], "-print-file-name=", 17))
2628b9d3 3817 print_file_name = argv[i] + 17;
6a9e290e 3818 else if (! strncmp (argv[i], "-print-prog-name=", 17))
2628b9d3 3819 print_prog_name = argv[i] + 17;
60103a34
DE
3820 else if (! strcmp (argv[i], "-print-multi-lib"))
3821 print_multi_lib = 1;
3822 else if (! strcmp (argv[i], "-print-multi-directory"))
3823 print_multi_directory = 1;
3def1397
VP
3824 else if (! strcmp (argv[i], "-print-sysroot"))
3825 print_sysroot = 1;
5bbcd587
JJ
3826 else if (! strcmp (argv[i], "-print-multi-os-directory"))
3827 print_multi_os_directory = 1;
14da6073
JM
3828 else if (! strcmp (argv[i], "-print-sysroot-headers-suffix"))
3829 print_sysroot_headers_suffix = 1;
2153915d
AO
3830 else if (! strcmp (argv[i], "-fcompare-debug-second"))
3831 {
3832 compare_debug_second = 1;
3833 n_switches++;
3834 }
3835 else if (! strcmp (argv[i], "-fno-compare-debug"))
3836 {
3837 argv[i] = "-fcompare-debug=";
3838 goto compare_debug_with_arg;
3839 }
3840 else if (! strcmp (argv[i], "-fcompare-debug"))
3841 {
3842 argv[i] = "-fcompare-debug=-gtoggle";
3843 goto compare_debug_with_arg;
3844 }
3845#define OPT "-fcompare-debug="
3846 else if (! strncmp (argv[i], OPT, sizeof (OPT) - 1))
3847 {
3848 const char *opt;
3849 compare_debug_with_arg:
3850 opt = argv[i] + sizeof (OPT) - 1;
3851#undef OPT
3852 if (*opt)
3853 compare_debug = 1;
3854 else
3855 compare_debug = -1;
3856 if (compare_debug < 0)
3857 compare_debug_opt = NULL;
3858 else
3859 compare_debug_opt = opt;
3860 n_switches++;
3861 }
c9ebacb8
RS
3862 else if (! strncmp (argv[i], "-Wa,", 4))
3863 {
3864 int prev, j;
3865 /* Pass the rest of this option to the assembler. */
3866
c9ebacb8
RS
3867 /* Split the argument at commas. */
3868 prev = 4;
3869 for (j = 4; argv[i][j]; j++)
3870 if (argv[i][j] == ',')
3871 {
b8468bc7 3872 add_assembler_option (argv[i] + prev, j - prev);
c9ebacb8
RS
3873 prev = j + 1;
3874 }
9218435e 3875
c9ebacb8 3876 /* Record the part after the last comma. */
b8468bc7 3877 add_assembler_option (argv[i] + prev, j - prev);
c9ebacb8 3878 }
57cb9b60
JW
3879 else if (! strncmp (argv[i], "-Wp,", 4))
3880 {
3881 int prev, j;
3882 /* Pass the rest of this option to the preprocessor. */
3883
57cb9b60
JW
3884 /* Split the argument at commas. */
3885 prev = 4;
3886 for (j = 4; argv[i][j]; j++)
3887 if (argv[i][j] == ',')
3888 {
b8468bc7 3889 add_preprocessor_option (argv[i] + prev, j - prev);
57cb9b60
JW
3890 prev = j + 1;
3891 }
9218435e 3892
57cb9b60 3893 /* Record the part after the last comma. */
b8468bc7 3894 add_preprocessor_option (argv[i] + prev, j - prev);
57cb9b60 3895 }
301a5c0b 3896 else if (argv[i][0] == '+' && argv[i][1] == 'e')
f2faf549 3897 /* The +e options to the C++ front-end. */
301a5c0b 3898 n_switches++;
368dfd3a 3899 else if (strncmp (argv[i], "-Wl,", 4) == 0)
9b226f90
TG
3900 {
3901 int j;
3902 /* Split the argument at commas. */
3903 for (j = 3; argv[i][j]; j++)
3904 n_infiles += (argv[i][j] == ',');
3905 }
368dfd3a
TG
3906 else if (strcmp (argv[i], "-Xlinker") == 0)
3907 {
3908 if (i + 1 == argc)
2dec80c7 3909 fatal_error ("argument to '-Xlinker' is missing");
368dfd3a 3910
4275c4c4
JS
3911 n_infiles++;
3912 i++;
3913 }
4977bab6
ZW
3914 else if (strcmp (argv[i], "-Xpreprocessor") == 0)
3915 {
3916 if (i + 1 == argc)
2dec80c7 3917 fatal_error ("argument to '-Xpreprocessor' is missing");
4977bab6
ZW
3918
3919 add_preprocessor_option (argv[i+1], strlen (argv[i+1]));
3920 }
3921 else if (strcmp (argv[i], "-Xassembler") == 0)
3922 {
3923 if (i + 1 == argc)
2dec80c7 3924 fatal_error ("argument to '-Xassembler' is missing");
4977bab6
ZW
3925
3926 add_assembler_option (argv[i+1], strlen (argv[i+1]));
3927 }
4275c4c4
JS
3928 else if (strcmp (argv[i], "-l") == 0)
3929 {
3930 if (i + 1 == argc)
2dec80c7 3931 fatal_error ("argument to '-l' is missing");
4275c4c4 3932
368dfd3a
TG
3933 n_infiles++;
3934 i++;
3935 }
3936 else if (strncmp (argv[i], "-l", 2) == 0)
3937 n_infiles++;
3a265431
DE
3938 else if (strcmp (argv[i], "-save-temps") == 0)
3939 {
14fdc613
MM
3940 save_temps_flag = SAVE_TEMPS_CWD;
3941 n_switches++;
3942 }
3943 else if (strncmp (argv[i], "-save-temps=", 12) == 0)
3944 {
3a265431 3945 n_switches++;
14fdc613
MM
3946 if (strcmp (argv[i]+12, "cwd") == 0)
3947 save_temps_flag = SAVE_TEMPS_CWD;
3948 else if (strcmp (argv[i]+12, "obj") == 0
3949 || strcmp (argv[i]+12, "object") == 0)
3950 save_temps_flag = SAVE_TEMPS_OBJ;
3951 else
2dec80c7 3952 fatal_error ("'%s' is an unknown -save-temps option", argv[i]);
3a265431 3953 }
ba0c638e
SB
3954 else if (strcmp (argv[i], "-no-canonical-prefixes") == 0)
3955 /* Already handled as a special case, so ignored here. */
3956 ;
0855eab7
CT
3957 else if (strcmp (argv[i], "-combine") == 0)
3958 {
3959 combine_flag = 1;
3960 n_switches++;
3961 }
d9ac3a07
MM
3962 else if (strcmp (argv[i], "-specs") == 0)
3963 {
5ed6ace5 3964 struct user_specs *user = XNEW (struct user_specs);
d9ac3a07 3965 if (++i >= argc)
2dec80c7 3966 fatal_error ("argument to '-specs' is missing");
d9ac3a07 3967
9218435e 3968 user->next = (struct user_specs *) 0;
d9ac3a07
MM
3969 user->filename = argv[i];
3970 if (user_specs_tail)
3971 user_specs_tail->next = user;
3972 else
3973 user_specs_head = user;
3974 user_specs_tail = user;
3975 }
3976 else if (strncmp (argv[i], "-specs=", 7) == 0)
3977 {
5ed6ace5 3978 struct user_specs *user = XNEW (struct user_specs);
d9ac3a07 3979 if (strlen (argv[i]) == 7)
2dec80c7 3980 fatal_error ("argument to '-specs=' is missing");
d9ac3a07 3981
9218435e 3982 user->next = (struct user_specs *) 0;
d25a45d4 3983 user->filename = argv[i] + 7;
d9ac3a07
MM
3984 if (user_specs_tail)
3985 user_specs_tail->next = user;
3986 else
3987 user_specs_head = user;
3988 user_specs_tail = user;
3989 }
03c41c05
ZW
3990 else if (strcmp (argv[i], "-time") == 0)
3991 report_times = 1;
bdde878c
AO
3992 else if (strncmp (argv[i], "-time=", sizeof ("-time=") - 1) == 0)
3993 {
3994 if (report_times_to_file)
3995 fclose (report_times_to_file);
3996 report_times_to_file = fopen (argv[i] + sizeof ("-time=") - 1, "a");
3997 }
4977bab6
ZW
3998 else if (strcmp (argv[i], "-pipe") == 0)
3999 {
4000 /* -pipe has to go into the switches array as well as
4001 setting a flag. */
4002 use_pipes = 1;
4003 n_switches++;
4004 }
fe7df9c4
SP
4005 else if (strcmp (argv[i], "-wrapper") == 0)
4006 {
4007 if (++i >= argc)
2dec80c7 4008 fatal_error ("argument to '-wrapper' is missing");
fe7df9c4
SP
4009
4010 wrapper_string = argv[i];
4011 n_switches++;
4012 n_switches++;
4013 }
99f78cdd
IR
4014 else if (strcmp (argv[i], "-###") == 0)
4015 {
4016 /* This is similar to -v except that there is no execution
4017 of the commands and the echoed arguments are quoted. It
4018 is intended for use in shell scripts to capture the
4019 driver-generated command line. */
4020 verbose_only_flag++;
4021 verbose_flag++;
4022 }
368dfd3a 4023 else if (argv[i][0] == '-' && argv[i][1] != 0)
ed1f651b 4024 {
b3694847
SS
4025 const char *p = &argv[i][1];
4026 int c = *p;
ed1f651b
RS
4027
4028 switch (c)
4029 {
ed1f651b
RS
4030 case 'B':
4031 {
fbd40359 4032 const char *value;
07804c3b
NC
4033 int len;
4034
ed1f651b 4035 if (p[1] == 0 && i + 1 == argc)
2dec80c7 4036 fatal_error ("argument to '-B' is missing");
ed1f651b
RS
4037 if (p[1] == 0)
4038 value = argv[++i];
4039 else
4040 value = p + 1;
07804c3b
NC
4041
4042 len = strlen (value);
4043
4044 /* Catch the case where the user has forgotten to append a
cc712abf 4045 directory separator to the path. Note, they may be using
07804c3b
NC
4046 -B to add an executable name prefix, eg "i386-elf-", in
4047 order to distinguish between multiple installations of
4048 GCC in the same directory. Hence we must check to see
4049 if appending a directory separator actually makes a
4050 valid directory name. */
4051 if (! IS_DIR_SEPARATOR (value [len - 1])
00dcee0c 4052 && is_directory (value, false))
07804c3b 4053 {
5ed6ace5 4054 char *tmp = XNEWVEC (char, len + 2);
bbed13b1
KG
4055 strcpy (tmp, value);
4056 tmp[len] = DIR_SEPARATOR;
4057 tmp[++ len] = 0;
4058 value = tmp;
07804c3b 4059 }
589005ff 4060
6496a589 4061 add_prefix (&exec_prefixes, value, NULL,
1a5d37a1 4062 PREFIX_PRIORITY_B_OPT, 0, 0);
6496a589 4063 add_prefix (&startfile_prefixes, value, NULL,
1a5d37a1 4064 PREFIX_PRIORITY_B_OPT, 0, 0);
76391e5a 4065 add_prefix (&include_prefixes, value, NULL,
1a5d37a1 4066 PREFIX_PRIORITY_B_OPT, 0, 0);
d25a45d4 4067 n_switches++;
ed1f651b
RS
4068 }
4069 break;
4070
4071 case 'v': /* Print our subcommands and print versions. */
ed1f651b 4072 n_switches++;
8436fe35
RS
4073 /* If they do anything other than exactly `-v', don't set
4074 verbose_flag; rather, continue on to give the error. */
4075 if (p[1] != 0)
4076 break;
4077 verbose_flag++;
ed1f651b
RS
4078 break;
4079
88117d44 4080 case 'S':
3a265431 4081 case 'c':
1b5bc8e9 4082 case 'E':
3a265431 4083 if (p[1] == 0)
ed1f651b 4084 {
3a265431 4085 have_c = 1;
8eebb258 4086 n_switches++;
ed1f651b
RS
4087 break;
4088 }
5fc08cad 4089 goto normal_switch;
f2cf3e1e 4090
f2cf3e1e 4091 case 'o':
af41c57d 4092 have_o = 1;
45936a85 4093#if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
88117d44
NC
4094 if (! have_c)
4095 {
4096 int skip;
9218435e 4097
1b5bc8e9 4098 /* Forward scan, just in case -S, -E or -c is specified
88117d44
NC
4099 after -o. */
4100 int j = i + 1;
4101 if (p[1] == 0)
4102 ++j;
4103 while (j < argc)
4104 {
4105 if (argv[j][0] == '-')
4106 {
4107 if (SWITCH_CURTAILS_COMPILATION (argv[j][1])
4108 && argv[j][2] == 0)
4109 {
4110 have_c = 1;
4111 break;
4112 }
caa297fe 4113 else if ((skip = SWITCH_TAKES_ARG (argv[j][1])))
88117d44 4114 j += skip - (argv[j][2] != 0);
caa297fe 4115 else if ((skip = WORD_SWITCH_TAKES_ARG (argv[j] + 1)))
88117d44
NC
4116 j += skip;
4117 }
4118 j++;
4119 }
4120 }
4121#endif
45936a85 4122#if defined(HAVE_TARGET_EXECUTABLE_SUFFIX) || defined(HAVE_TARGET_OBJECT_SUFFIX)
853e0b2d 4123 if (p[1] == 0)
a9657ce8 4124 argv[i + 1] = convert_filename (argv[i + 1], ! have_c, 0);
88117d44 4125 else
a9657ce8 4126 argv[i] = convert_filename (argv[i], ! have_c, 0);
853e0b2d 4127#endif
14fdc613 4128 /* Save the output name in case -save-temps=obj was used. */
9ef3b476
RM
4129 if ((p[1] == 0) && argv[i + 1])
4130 save_temps_prefix = xstrdup(argv[i + 1]);
4131 else
4132 save_temps_prefix = xstrdup(argv[i] + 1);
5fc08cad 4133 goto normal_switch;
f2cf3e1e 4134
ed1f651b 4135 default:
5fc08cad 4136 normal_switch:
dc36ec2c
RK
4137
4138#ifdef MODIFY_TARGET_NAME
4139 is_modify_target_name = 0;
4140
ca7558fc 4141 for (j = 0; j < ARRAY_SIZE (modify_target); j++)
dc36ec2c
RK
4142 if (! strcmp (argv[i], modify_target[j].sw))
4143 {
5ead67f6 4144 char *new_name = XNEWVEC (char, strlen (modify_target[j].str)
703ad42b 4145 + strlen (spec_machine));
dc36ec2c
RK
4146 const char *p, *r;
4147 char *q;
4148 int made_addition = 0;
4149
4150 is_modify_target_name = 1;
4151 for (p = spec_machine, q = new_name; *p != 0; )
4152 {
4153 if (modify_target[j].add_del == DELETE
4154 && (! strncmp (q, modify_target[j].str,
4155 strlen (modify_target[j].str))))
4156 p += strlen (modify_target[j].str);
4157 else if (modify_target[j].add_del == ADD
4158 && ! made_addition && *p == '-')
4159 {
4160 for (r = modify_target[j].str; *r != 0; )
4161 *q++ = *r++;
4162 made_addition = 1;
4163 }
4164
4165 *q++ = *p++;
4166 }
4167
4168 spec_machine = new_name;
4169 }
4170
4171 if (is_modify_target_name)
4172 break;
589005ff 4173#endif
dc36ec2c 4174
ed1f651b
RS
4175 n_switches++;
4176
4177 if (SWITCH_TAKES_ARG (c) > (p[1] != 0))
4178 i += SWITCH_TAKES_ARG (c) - (p[1] != 0);
4179 else if (WORD_SWITCH_TAKES_ARG (p))
4180 i += WORD_SWITCH_TAKES_ARG (p);
4181 }
4182 }
4183 else
3a265431
DE
4184 {
4185 n_infiles++;
4186 lang_n_infiles++;
4187 }
ed1f651b
RS
4188 }
4189
14fdc613
MM
4190 /* If -save-temps=obj and -o name, create the prefix to use for %b.
4191 Otherwise just make -save-temps=obj the same as -save-temps=cwd. */
4192 if (save_temps_flag == SAVE_TEMPS_OBJ && save_temps_prefix != NULL)
4193 {
4194 save_temps_length = strlen (save_temps_prefix);
4195 temp = strrchr (lbasename (save_temps_prefix), '.');
4196 if (temp)
4197 {
4198 save_temps_length -= strlen (temp);
4199 save_temps_prefix[save_temps_length] = '\0';
4200 }
4201
4202 }
4203 else if (save_temps_prefix != NULL)
4204 {
4205 free (save_temps_prefix);
4206 save_temps_prefix = NULL;
4207 }
4208
054e88a8 4209 if (save_temps_flag && use_pipes)
4977bab6
ZW
4210 {
4211 /* -save-temps overrides -pipe, so that temp files are produced */
4212 if (save_temps_flag)
2dec80c7 4213 warning (0, "-pipe ignored because -save-temps specified");
4977bab6
ZW
4214 use_pipes = 0;
4215 }
1d088dee 4216
2153915d
AO
4217 if (!compare_debug)
4218 {
4219 const char *gcd = getenv ("GCC_COMPARE_DEBUG");
4220
4221 if (gcd && gcd[0] == '-')
4222 {
4223 compare_debug = 2;
4224 compare_debug_opt = gcd;
4225 n_switches++;
4226 }
4227 else if (gcd && *gcd && strcmp (gcd, "0"))
4228 {
4229 compare_debug = 3;
4230 compare_debug_opt = "-gtoggle";
4231 n_switches++;
4232 }
4233 }
4234 else if (compare_debug < 0)
4235 {
4236 compare_debug = 0;
4237 gcc_assert (!compare_debug_opt);
4238 }
4239
f4c0a303
CD
4240 /* Set up the search paths. We add directories that we expect to
4241 contain GNU Toolchain components before directories specified by
4242 the machine description so that we will find GNU components (like
b8698a0f 4243 the GNU assembler) before those of the host system. */
ed1f651b 4244
f4c0a303
CD
4245 /* If we don't know where the toolchain has been installed, use the
4246 configured-in locations. */
4247 if (!gcc_exec_prefix)
4248 {
48ff801b 4249#ifndef OS2
f4c0a303
CD
4250 add_prefix (&exec_prefixes, standard_libexec_prefix, "GCC",
4251 PREFIX_PRIORITY_LAST, 1, 0);
4252 add_prefix (&exec_prefixes, standard_libexec_prefix, "BINUTILS",
4253 PREFIX_PRIORITY_LAST, 2, 0);
4254 add_prefix (&exec_prefixes, standard_exec_prefix, "BINUTILS",
4255 PREFIX_PRIORITY_LAST, 2, 0);
48ff801b 4256#endif
f4c0a303
CD
4257 add_prefix (&startfile_prefixes, standard_exec_prefix, "BINUTILS",
4258 PREFIX_PRIORITY_LAST, 1, 0);
4259 }
ed1f651b 4260
f4c0a303 4261 gcc_assert (!IS_ABSOLUTE_PATH (tooldir_base_prefix));
9218435e 4262 tooldir_prefix = concat (tooldir_base_prefix, spec_machine,
d4f2852f 4263 dir_separator_str, NULL);
c648ab8a 4264
f4c0a303
CD
4265 /* Look for tools relative to the location from which the driver is
4266 running, or, if that is not available, the configured prefix. */
4267 tooldir_prefix
4268 = concat (gcc_exec_prefix ? gcc_exec_prefix : standard_exec_prefix,
4269 spec_machine, dir_separator_str,
4270 spec_version, dir_separator_str, tooldir_prefix, NULL);
c648ab8a 4271
9218435e 4272 add_prefix (&exec_prefixes,
d4f2852f 4273 concat (tooldir_prefix, "bin", dir_separator_str, NULL),
1a5d37a1 4274 "BINUTILS", PREFIX_PRIORITY_LAST, 0, 0);
48ff801b 4275 add_prefix (&startfile_prefixes,
d4f2852f 4276 concat (tooldir_prefix, "lib", dir_separator_str, NULL),
1a5d37a1 4277 "BINUTILS", PREFIX_PRIORITY_LAST, 0, 1);
f18fd956 4278
047d636f
DJ
4279#if defined(TARGET_SYSTEM_ROOT_RELOCATABLE) && !defined(VMS)
4280 /* If the normal TARGET_SYSTEM_ROOT is inside of $exec_prefix,
4281 then consider it to relocate with the rest of the GCC installation
4282 if GCC_EXEC_PREFIX is set.
4283 ``make_relative_prefix'' is not compiled for VMS, so don't call it. */
4977bab6
ZW
4284 if (target_system_root && gcc_exec_prefix)
4285 {
ba0c638e
SB
4286 char *tmp_prefix = get_relative_prefix (argv[0],
4287 standard_bindir_prefix,
4288 target_system_root);
4977bab6 4289 if (tmp_prefix && access_check (tmp_prefix, F_OK) == 0)
047d636f
DJ
4290 {
4291 target_system_root = tmp_prefix;
4292 target_system_root_changed = 1;
4293 }
4977bab6 4294 }
047d636f 4295#endif
4977bab6 4296
004fd4d5
RS
4297 /* More prefixes are enabled in main, after we read the specs file
4298 and determine whether this is cross-compilation or not. */
ed1f651b 4299
ed1f651b
RS
4300 /* Then create the space for the vectors and scan again. */
4301
5ed6ace5
MD
4302 switches = XNEWVEC (struct switchstr, n_switches + 1);
4303 infiles = XNEWVEC (struct infile, n_infiles + 1);
ed1f651b
RS
4304 n_switches = 0;
4305 n_infiles = 0;
4306 last_language_n_infiles = -1;
4307
4308 /* This, time, copy the text of each switch and store a pointer
4309 to the copy in the vector of switches.
4310 Store all the infiles in their vector. */
4311
4312 for (i = 1; i < argc; i++)
4313 {
2ef32c88 4314 /* Just skip the switches that were handled by the preceding loop. */
dc36ec2c
RK
4315#ifdef MODIFY_TARGET_NAME
4316 is_modify_target_name = 0;
4317
ca7558fc 4318 for (j = 0; j < ARRAY_SIZE (modify_target); j++)
dc36ec2c
RK
4319 if (! strcmp (argv[i], modify_target[j].sw))
4320 is_modify_target_name = 1;
4321
4322 if (is_modify_target_name)
4323 ;
4324 else
4325#endif
368dfd3a 4326 if (! strncmp (argv[i], "-Wa,", 4))
2ef32c88 4327 ;
57cb9b60
JW
4328 else if (! strncmp (argv[i], "-Wp,", 4))
4329 ;
ba0c638e
SB
4330 else if (! strcmp (argv[i], "-no-canonical-prefixes"))
4331 ;
14a774a9
RK
4332 else if (! strcmp (argv[i], "-pass-exit-codes"))
4333 ;
2628b9d3
DE
4334 else if (! strcmp (argv[i], "-print-search-dirs"))
4335 ;
2dcb563f 4336 else if (! strcmp (argv[i], "-print-libgcc-file-name"))
2ef32c88 4337 ;
6a9e290e
RK
4338 else if (! strncmp (argv[i], "-print-file-name=", 17))
4339 ;
4340 else if (! strncmp (argv[i], "-print-prog-name=", 17))
4341 ;
60103a34
DE
4342 else if (! strcmp (argv[i], "-print-multi-lib"))
4343 ;
4344 else if (! strcmp (argv[i], "-print-multi-directory"))
4345 ;
3def1397
VP
4346 else if (! strcmp (argv[i], "-print-sysroot"))
4347 ;
5bbcd587
JJ
4348 else if (! strcmp (argv[i], "-print-multi-os-directory"))
4349 ;
14da6073
JM
4350 else if (! strcmp (argv[i], "-print-sysroot-headers-suffix"))
4351 ;
160633c6
MM
4352 else if (! strncmp (argv[i], "--sysroot=", strlen ("--sysroot=")))
4353 {
4354 target_system_root = argv[i] + strlen ("--sysroot=");
4355 target_system_root_changed = 1;
4356 }
cc6fc442
RS
4357 else if (argv[i][0] == '+' && argv[i][1] == 'e')
4358 {
4359 /* Compensate for the +e options to the C++ front-end;
a1c37766 4360 they're there simply for cfront call-compatibility. We do
cc6fc442
RS
4361 some magic in default_compilers to pass them down properly.
4362 Note we deliberately start at the `+' here, to avoid passing
4363 -e0 or -e1 down into the linker. */
4364 switches[n_switches].part1 = &argv[i][0];
4365 switches[n_switches].args = 0;
3371362c 4366 switches[n_switches].live_cond = 0;
ab87f8c8 4367 switches[n_switches].validated = 0;
cc6fc442
RS
4368 n_switches++;
4369 }
368dfd3a
TG
4370 else if (strncmp (argv[i], "-Wl,", 4) == 0)
4371 {
9b226f90
TG
4372 int prev, j;
4373 /* Split the argument at commas. */
4374 prev = 4;
4375 for (j = 4; argv[i][j]; j++)
4376 if (argv[i][j] == ',')
4377 {
e5e809f4 4378 infiles[n_infiles].language = "*";
9b226f90
TG
4379 infiles[n_infiles++].name
4380 = save_string (argv[i] + prev, j - prev);
4381 prev = j + 1;
4382 }
4383 /* Record the part after the last comma. */
e5e809f4 4384 infiles[n_infiles].language = "*";
9b226f90 4385 infiles[n_infiles++].name = argv[i] + prev;
368dfd3a
TG
4386 }
4387 else if (strcmp (argv[i], "-Xlinker") == 0)
4388 {
e5e809f4 4389 infiles[n_infiles].language = "*";
368dfd3a
TG
4390 infiles[n_infiles++].name = argv[++i];
4391 }
10bf9e8a
JW
4392 /* Xassembler and Xpreprocessor were already handled in the first argv
4393 scan, so all we need to do here is ignore them and their argument. */
4977bab6 4394 else if (strcmp (argv[i], "-Xassembler") == 0)
10bf9e8a 4395 i++;
4977bab6 4396 else if (strcmp (argv[i], "-Xpreprocessor") == 0)
10bf9e8a 4397 i++;
4275c4c4
JS
4398 else if (strcmp (argv[i], "-l") == 0)
4399 { /* POSIX allows separation of -l and the lib arg;
4400 canonicalize by concatenating -l with its arg */
4401 infiles[n_infiles].language = "*";
d4f2852f 4402 infiles[n_infiles++].name = concat ("-l", argv[++i], NULL);
4275c4c4 4403 }
368dfd3a
TG
4404 else if (strncmp (argv[i], "-l", 2) == 0)
4405 {
e5e809f4 4406 infiles[n_infiles].language = "*";
368dfd3a
TG
4407 infiles[n_infiles++].name = argv[i];
4408 }
fe7df9c4
SP
4409 else if (strcmp (argv[i], "-wrapper") == 0)
4410 i++;
d9ac3a07
MM
4411 else if (strcmp (argv[i], "-specs") == 0)
4412 i++;
4413 else if (strncmp (argv[i], "-specs=", 7) == 0)
4414 ;
03c41c05
ZW
4415 else if (strcmp (argv[i], "-time") == 0)
4416 ;
bdde878c
AO
4417 else if (strncmp (argv[i], "-time=", sizeof ("-time=") - 1) == 0)
4418 ;
99f78cdd
IR
4419 else if (strcmp (argv[i], "-###") == 0)
4420 ;
368dfd3a 4421 else if (argv[i][0] == '-' && argv[i][1] != 0)
ed1f651b 4422 {
fbd40359
ZW
4423 const char *p = &argv[i][1];
4424 int c = *p;
ed1f651b 4425
ed1f651b
RS
4426 if (c == 'x')
4427 {
4428 if (p[1] == 0 && i + 1 == argc)
2dec80c7 4429 fatal_error ("argument to '-x' is missing");
ed1f651b
RS
4430 if (p[1] == 0)
4431 spec_lang = argv[++i];
4432 else
4433 spec_lang = p + 1;
4434 if (! strcmp (spec_lang, "none"))
34dd3838
RK
4435 /* Suppress the warning if -xnone comes after the last input
4436 file, because alternate command interfaces like g++ might
4437 find it useful to place -xnone after each input file. */
ed1f651b
RS
4438 spec_lang = 0;
4439 else
4440 last_language_n_infiles = n_infiles;
4441 continue;
4442 }
4443 switches[n_switches].part1 = p;
4444 /* Deal with option arguments in separate argv elements. */
4445 if ((SWITCH_TAKES_ARG (c) > (p[1] != 0))
14553b75
RS
4446 || WORD_SWITCH_TAKES_ARG (p))
4447 {
4448 int j = 0;
4449 int n_args = WORD_SWITCH_TAKES_ARG (p);
ed1f651b 4450
14553b75
RS
4451 if (n_args == 0)
4452 {
4453 /* Count only the option arguments in separate argv elements. */
4454 n_args = SWITCH_TAKES_ARG (c) - (p[1] != 0);
4455 }
4456 if (i + n_args >= argc)
2dec80c7 4457 fatal_error ("argument to '-%s' is missing", p);
14553b75 4458 switches[n_switches].args
5ed6ace5 4459 = XNEWVEC (const char *, n_args + 1);
14553b75
RS
4460 while (j < n_args)
4461 switches[n_switches].args[j++] = argv[++i];
4462 /* Null-terminate the vector. */
4463 switches[n_switches].args[j] = 0;
ed1f651b 4464 }
9473c522 4465 else if (strchr (switches_need_spaces, c))
14553b75 4466 {
bb9da768
RK
4467 /* On some systems, ld cannot handle some options without
4468 a space. So split the option from its argument. */
5ed6ace5 4469 char *part1 = XNEWVEC (char, 2);
bb9da768
RK
4470 part1[0] = c;
4471 part1[1] = '\0';
9218435e 4472
bb9da768 4473 switches[n_switches].part1 = part1;
5ed6ace5 4474 switches[n_switches].args = XNEWVEC (const char *, 2);
cb6edbcb 4475 switches[n_switches].args[0] = xstrdup (p+1);
14553b75
RS
4476 switches[n_switches].args[1] = 0;
4477 }
4478 else
ed1f651b 4479 switches[n_switches].args = 0;
f5b0eb4e 4480
3371362c 4481 switches[n_switches].live_cond = 0;
ab87f8c8 4482 switches[n_switches].validated = 0;
9c1fcbfb 4483 switches[n_switches].ordering = 0;
86db887a 4484 /* These are always valid, since gcc.c itself understands the
6392bea6
IS
4485 first four, gfortranspec.c understands -static-libgfortran
4486 and g++spec.c understands -static-libstdc++ */
9db0819e
RH
4487 if (!strcmp (p, "save-temps")
4488 || !strcmp (p, "static-libgcc")
4977bab6 4489 || !strcmp (p, "shared-libgcc")
86db887a 4490 || !strcmp (p, "pipe")
6392bea6
IS
4491 || !strcmp (p, "static-libgfortran")
4492 || !strcmp (p, "static-libstdc++"))
ab87f8c8 4493 switches[n_switches].validated = 1;
d25a45d4
KH
4494 else
4495 {
4496 char ch = switches[n_switches].part1[0];
37a4aa31 4497 if (ch == 'B')
d25a45d4
KH
4498 switches[n_switches].validated = 1;
4499 }
ed1f651b
RS
4500 n_switches++;
4501 }
4502 else
4503 {
f68df07c 4504 const char *p = strrchr (argv[i], '@');
7e9dc421 4505 char *fname;
f68df07c
RG
4506 long offset;
4507 int consumed;
45936a85 4508#ifdef HAVE_TARGET_OBJECT_SUFFIX
a9657ce8 4509 argv[i] = convert_filename (argv[i], 0, access (argv[i], F_OK));
f70165f6 4510#endif
f68df07c
RG
4511 /* For LTO static archive support we handle input file
4512 specifications that are composed of a filename and
4513 an offset like FNAME@OFFSET. */
4514 if (p
4515 && p != argv[i]
4516 && sscanf (p, "@%li%n", &offset, &consumed) >= 1
4517 && strlen (p) == (unsigned int)consumed)
4518 {
7e9dc421
RG
4519 fname = (char *)xmalloc (p - argv[i] + 1);
4520 memcpy (fname, argv[i], p - argv[i]);
4521 fname[p - argv[i]] = '\0';
f68df07c
RG
4522 /* Only accept non-stdin and existing FNAME parts, otherwise
4523 try with the full name. */
4524 if (strcmp (fname, "-") == 0 || access (fname, F_OK) < 0)
4525 {
4526 free (fname);
4527 fname = xstrdup (argv[i]);
4528 }
4529 }
4530 else
4531 fname = xstrdup (argv[i]);
4532
7e9dc421 4533 if (strcmp (fname, "-") != 0 && access (fname, F_OK) < 0)
6afbc885 4534 perror_with_name (fname);
7e9dc421
RG
4535 else
4536 {
4537 infiles[n_infiles].language = spec_lang;
4538 infiles[n_infiles++].name = argv[i];
4539 }
4540
4541 free (fname);
ed1f651b
RS
4542 }
4543 }
4544
fa0d5369 4545 if (n_infiles == last_language_n_infiles && spec_lang != 0)
2dec80c7 4546 warning (0, "'-x %s' after last input file has no effect", spec_lang);
ed1f651b 4547
2153915d
AO
4548 if (compare_debug == 2 || compare_debug == 3)
4549 {
4550 switches[n_switches].part1 = concat ("fcompare-debug=",
4551 compare_debug_opt,
4552 NULL);
4553 switches[n_switches].args = 0;
4554 switches[n_switches].live_cond = 0;
4555 switches[n_switches].validated = 0;
4556 switches[n_switches].ordering = 0;
4557 n_switches++;
4558 compare_debug = 1;
4559 }
4560
69927b59 4561 /* Ensure we only invoke each subprocess once. */
41fd0f9b 4562 if (print_subprocess_help || print_help_list || print_version)
69927b59
NB
4563 {
4564 n_infiles = 1;
4565
c662432e
NC
4566 /* Create a dummy input file, so that we can pass
4567 the help option on to the various sub-processes. */
69927b59
NB
4568 infiles[0].language = "c";
4569 infiles[0].name = "help-dummy";
69927b59
NB
4570 }
4571
ed1f651b
RS
4572 switches[n_switches].part1 = 0;
4573 infiles[n_infiles].name = 0;
4574}
b856c15d 4575
4977bab6 4576/* Store switches not filtered out by %<S in spec in COLLECT_GCC_OPTIONS
b856c15d
RO
4577 and place that in the environment. */
4578
4579static void
1d088dee 4580set_collect_gcc_options (void)
b856c15d
RO
4581{
4582 int i;
4583 int first_time;
4584
4585 /* Build COLLECT_GCC_OPTIONS to have all of the options specified to
4586 the compiler. */
4587 obstack_grow (&collect_obstack, "COLLECT_GCC_OPTIONS=",
4588 sizeof ("COLLECT_GCC_OPTIONS=") - 1);
4589
4590 first_time = TRUE;
4591 for (i = 0; (int) i < n_switches; i++)
4592 {
4593 const char *const *args;
4594 const char *p, *q;
4595 if (!first_time)
4596 obstack_grow (&collect_obstack, " ", 1);
4597
4598 first_time = FALSE;
4599
4600 /* Ignore elided switches. */
3371362c 4601 if ((switches[i].live_cond & SWITCH_IGNORE) != 0)
b856c15d
RO
4602 continue;
4603
4604 obstack_grow (&collect_obstack, "'-", 2);
4605 q = switches[i].part1;
4606 while ((p = strchr (q, '\'')))
4607 {
4608 obstack_grow (&collect_obstack, q, p - q);
4609 obstack_grow (&collect_obstack, "'\\''", 4);
4610 q = ++p;
4611 }
4612 obstack_grow (&collect_obstack, q, strlen (q));
4613 obstack_grow (&collect_obstack, "'", 1);
4614
4615 for (args = switches[i].args; args && *args; args++)
4616 {
4617 obstack_grow (&collect_obstack, " '", 2);
4618 q = *args;
4619 while ((p = strchr (q, '\'')))
4620 {
4621 obstack_grow (&collect_obstack, q, p - q);
4622 obstack_grow (&collect_obstack, "'\\''", 4);
4623 q = ++p;
4624 }
4625 obstack_grow (&collect_obstack, q, strlen (q));
4626 obstack_grow (&collect_obstack, "'", 1);
4627 }
4628 }
4629 obstack_grow (&collect_obstack, "\0", 1);
47d33318 4630 xputenv (XOBFINISH (&collect_obstack, char *));
b856c15d 4631}
ed1f651b
RS
4632\f
4633/* Process a spec string, accumulating and running commands. */
4634
4635/* These variables describe the input file name.
4636 input_file_number is the index on outfiles of this file,
4637 so that the output file name can be stored for later use by %o.
4638 input_basename is the start of the part of the input file
4639 sans all directory names, and basename_length is the number
4640 of characters starting there excluding the suffix .c or whatever. */
4641
6afbc885 4642static const char *gcc_input_filename;
ed1f651b 4643static int input_file_number;
f271358e 4644size_t input_filename_length;
ed1f651b 4645static int basename_length;
ea414c97 4646static int suffixed_basename_length;
878f32c3
KG
4647static const char *input_basename;
4648static const char *input_suffix;
a9024779 4649#ifndef HOST_LACKS_INODE_NUMBERS
99f78cdd 4650static struct stat input_stat;
a9024779 4651#endif
99f78cdd 4652static int input_stat_set;
ed1f651b 4653
a9374841
MM
4654/* The compiler used to process the current input file. */
4655static struct compiler *input_file_compiler;
4656
ed1f651b
RS
4657/* These are variables used within do_spec and do_spec_1. */
4658
4659/* Nonzero if an arg has been started and not yet terminated
4660 (with space, tab or newline). */
4661static int arg_going;
4662
4663/* Nonzero means %d or %g has been seen; the next arg to be terminated
4664 is a temporary file name. */
4665static int delete_this_arg;
4666
4667/* Nonzero means %w has been seen; the next arg to be terminated
4668 is the output file name of this compilation. */
4669static int this_is_output_file;
4670
4671/* Nonzero means %s has been seen; the next arg to be terminated
4672 is the name of a library file and we should try the standard
4673 search dirs for it. */
4674static int this_is_library_file;
4675
3beb864c
NC
4676/* Nonzero means %T has been seen; the next arg to be terminated
4677 is the name of a linker script and we should try all of the
4678 standard search dirs for it. If it is found insert a --script
4679 command line switch and then substitute the full path in place,
4680 otherwise generate an error message. */
4681static int this_is_linker_script;
4682
a99bf70c
JW
4683/* Nonzero means that the input of this command is coming from a pipe. */
4684static int input_from_pipe;
4685
11972f66 4686/* Nonnull means substitute this for any suffix when outputting a switches
dc297297 4687 arguments. */
11972f66
NS
4688static const char *suffix_subst;
4689
13e7cedb
DH
4690/* If there is an argument being accumulated, terminate it and store it. */
4691
4692static void
4693end_going_arg (void)
4694{
4695 if (arg_going)
4696 {
4697 const char *string;
4698
4699 obstack_1grow (&obstack, 0);
4700 string = XOBFINISH (&obstack, const char *);
4701 if (this_is_library_file)
4702 string = find_file (string);
3beb864c
NC
4703 if (this_is_linker_script)
4704 {
4705 char * full_script_path = find_a_file (&startfile_prefixes, string, R_OK, true);
4706
4707 if (full_script_path == NULL)
4708 {
2dec80c7 4709 error ("unable to locate default linker script '%s' in the library search paths", string);
3beb864c
NC
4710 /* Script was not found on search path. */
4711 return;
4712 }
4713 store_arg ("--script", false, false);
4714 string = full_script_path;
4715 }
13e7cedb
DH
4716 store_arg (string, delete_this_arg, this_is_output_file);
4717 if (this_is_output_file)
4718 outfiles[input_file_number] = string;
4719 arg_going = 0;
4720 }
4721}
4722
fe7df9c4
SP
4723
4724/* Parse the WRAPPER string which is a comma separated list of the command line
4725 and insert them into the beginning of argbuf. */
4726
4727static void
4728insert_wrapper (const char *wrapper)
4729{
4730 int n = 0;
4731 int i;
4732 char *buf = xstrdup (wrapper);
4733 char *p = buf;
4734
4735 do
4736 {
4737 n++;
4738 while (*p == ',')
4739 p++;
4740 }
4741 while ((p = strchr (p, ',')) != NULL);
4742
4743 if (argbuf_index + n >= argbuf_length)
4744 {
4745 argbuf_length = argbuf_length * 2;
4746 while (argbuf_length < argbuf_index + n)
4747 argbuf_length *= 2;
e1e4cdc4 4748 argbuf = XRESIZEVEC (const char *, argbuf, argbuf_length);
fe7df9c4
SP
4749 }
4750 for (i = argbuf_index - 1; i >= 0; i--)
4751 argbuf[i + n] = argbuf[i];
4752
4753 i = 0;
4754 p = buf;
4755 do
4756 {
4757 while (*p == ',')
4758 {
4759 *p = 0;
4760 p++;
4761 }
4762 argbuf[i++] = p;
4763 }
4764 while ((p = strchr (p, ',')) != NULL);
4765 gcc_assert (i == n);
4766 argbuf_index += n;
4767}
4768
ed1f651b
RS
4769/* Process the spec SPEC and run the commands specified therein.
4770 Returns 0 if the spec is successfully processed; -1 if failed. */
4771
f271358e 4772int
1d088dee 4773do_spec (const char *spec)
ed1f651b
RS
4774{
4775 int value;
4776
343f59d9 4777 value = do_spec_2 (spec);
ed1f651b
RS
4778
4779 /* Force out any unfinished command.
4780 If -pipe, this forces out the last command if it ended in `|'. */
4781 if (value == 0)
4782 {
4783 if (argbuf_index > 0 && !strcmp (argbuf[argbuf_index - 1], "|"))
4784 argbuf_index--;
4785
b856c15d
RO
4786 set_collect_gcc_options ();
4787
ed1f651b
RS
4788 if (argbuf_index > 0)
4789 value = execute ();
4790 }
4791
4792 return value;
4793}
4794
343f59d9 4795static int
1d088dee 4796do_spec_2 (const char *spec)
343f59d9 4797{
6544fbcb
RS
4798 int result;
4799
343f59d9
AM
4800 clear_args ();
4801 arg_going = 0;
4802 delete_this_arg = 0;
4803 this_is_output_file = 0;
4804 this_is_library_file = 0;
3beb864c 4805 this_is_linker_script = 0;
343f59d9
AM
4806 input_from_pipe = 0;
4807 suffix_subst = NULL;
4808
6544fbcb
RS
4809 result = do_spec_1 (spec, 0, NULL);
4810
13e7cedb 4811 end_going_arg ();
6544fbcb
RS
4812
4813 return result;
343f59d9
AM
4814}
4815
db36994b 4816
7816bea0
DJ
4817/* Process the given spec string and add any new options to the end
4818 of the switches/n_switches array. */
4819
4820static void
1d088dee 4821do_option_spec (const char *name, const char *spec)
7816bea0
DJ
4822{
4823 unsigned int i, value_count, value_len;
4824 const char *p, *q, *value;
4825 char *tmp_spec, *tmp_spec_p;
4826
4827 if (configure_default_options[0].name == NULL)
4828 return;
4829
4830 for (i = 0; i < ARRAY_SIZE (configure_default_options); i++)
4831 if (strcmp (configure_default_options[i].name, name) == 0)
4832 break;
4833 if (i == ARRAY_SIZE (configure_default_options))
4834 return;
4835
4836 value = configure_default_options[i].value;
4837 value_len = strlen (value);
4838
4839 /* Compute the size of the final spec. */
4840 value_count = 0;
4841 p = spec;
4842 while ((p = strstr (p, "%(VALUE)")) != NULL)
4843 {
4844 p ++;
4845 value_count ++;
4846 }
4847
4848 /* Replace each %(VALUE) by the specified value. */
e1e4cdc4 4849 tmp_spec = (char *) alloca (strlen (spec) + 1
7816bea0
DJ
4850 + value_count * (value_len - strlen ("%(VALUE)")));
4851 tmp_spec_p = tmp_spec;
4852 q = spec;
4853 while ((p = strstr (q, "%(VALUE)")) != NULL)
4854 {
4855 memcpy (tmp_spec_p, q, p - q);
4856 tmp_spec_p = tmp_spec_p + (p - q);
4857 memcpy (tmp_spec_p, value, value_len);
4858 tmp_spec_p += value_len;
4859 q = p + strlen ("%(VALUE)");
4860 }
4861 strcpy (tmp_spec_p, q);
4862
4863 do_self_spec (tmp_spec);
4864}
4865
db36994b
RS
4866/* Process the given spec string and add any new options to the end
4867 of the switches/n_switches array. */
4868
4869static void
1d088dee 4870do_self_spec (const char *spec)
db36994b 4871{
94b90527
JJ
4872 int i;
4873
db36994b
RS
4874 do_spec_2 (spec);
4875 do_spec_1 (" ", 0, NULL);
4876
94b90527
JJ
4877 /* Mark %<S switches processed by do_self_spec to be ignored permanently.
4878 do_self_specs adds the replacements to switches array, so it shouldn't
4879 be processed afterwards. */
4880 for (i = 0; i < n_switches; i++)
4881 if ((switches[i].live_cond & SWITCH_IGNORE))
4882 switches[i].live_cond |= SWITCH_IGNORE_PERMANENTLY;
4883
db36994b
RS
4884 if (argbuf_index > 0)
4885 {
2153915d
AO
4886 switches = XRESIZEVEC (struct switchstr, switches,
4887 n_switches + argbuf_index + 1);
db36994b 4888
db36994b
RS
4889 for (i = 0; i < argbuf_index; i++)
4890 {
4891 struct switchstr *sw;
2153915d
AO
4892 const char *p = argbuf[i];
4893 int c = *p;
db36994b
RS
4894
4895 /* Each switch should start with '-'. */
2153915d 4896 if (c != '-')
2dec80c7 4897 fatal_error ("switch '%s' does not start with '-'", argbuf[i]);
db36994b 4898
2153915d
AO
4899 p++;
4900 c = *p;
4901
4902 sw = &switches[n_switches++];
4903 sw->part1 = p;
3371362c 4904 sw->live_cond = 0;
db36994b
RS
4905 sw->validated = 0;
4906 sw->ordering = 0;
2153915d
AO
4907
4908 /* Deal with option arguments in separate argv elements. */
4909 if ((SWITCH_TAKES_ARG (c) > (p[1] != 0))
4910 || WORD_SWITCH_TAKES_ARG (p))
4911 {
4912 int j = 0;
4913 int n_args = WORD_SWITCH_TAKES_ARG (p);
4914
4915 if (n_args == 0)
4916 {
4917 /* Count only the option arguments in separate argv elements. */
4918 n_args = SWITCH_TAKES_ARG (c) - (p[1] != 0);
4919 }
4920 if (i + n_args >= argbuf_index)
2dec80c7 4921 fatal_error ("argument to '-%s' is missing", p);
2153915d
AO
4922 sw->args
4923 = XNEWVEC (const char *, n_args + 1);
4924 while (j < n_args)
4925 sw->args[j++] = argbuf[++i];
4926 /* Null-terminate the vector. */
4927 sw->args[j] = 0;
4928 }
4929 else if (strchr (switches_need_spaces, c))
4930 {
4931 /* On some systems, ld cannot handle some options without
4932 a space. So split the option from its argument. */
4933 char *part1 = XNEWVEC (char, 2);
4934 part1[0] = c;
4935 part1[1] = '\0';
4936
4937 sw->part1 = part1;
4938 sw->args = XNEWVEC (const char *, 2);
4939 sw->args[0] = xstrdup (p+1);
4940 sw->args[1] = 0;
4941 }
4942 else
4943 sw->args = 0;
db36994b 4944 }
2153915d
AO
4945
4946 switches[n_switches].part1 = 0;
db36994b
RS
4947 }
4948}
4949
00dcee0c
AM
4950/* Callback for processing %D and %I specs. */
4951
4952struct spec_path_info {
4953 const char *option;
4954 const char *append;
4955 size_t append_len;
4956 bool omit_relative;
4957 bool separate_options;
4958};
4959
4960static void *
4961spec_path (char *path, void *data)
76391e5a 4962{
e1e4cdc4 4963 struct spec_path_info *info = (struct spec_path_info *) data;
00dcee0c
AM
4964 size_t len = 0;
4965 char save = 0;
76391e5a 4966
00dcee0c
AM
4967 if (info->omit_relative && !IS_ABSOLUTE_PATH (path))
4968 return NULL;
4969
4970 if (info->append_len != 0)
76391e5a 4971 {
00dcee0c
AM
4972 len = strlen (path);
4973 memcpy (path + len, info->append, info->append_len + 1);
76391e5a
PB
4974 }
4975
00dcee0c
AM
4976 if (!is_directory (path, true))
4977 return NULL;
76391e5a 4978
00dcee0c
AM
4979 do_spec_1 (info->option, 1, NULL);
4980 if (info->separate_options)
4981 do_spec_1 (" ", 0, NULL);
4982
4983 if (info->append_len == 0)
76391e5a 4984 {
00dcee0c
AM
4985 len = strlen (path);
4986 save = path[len - 1];
4987 if (IS_DIR_SEPARATOR (path[len - 1]))
4988 path[len - 1] = '\0';
76391e5a 4989 }
00dcee0c
AM
4990
4991 do_spec_1 (path, 1, NULL);
4992 do_spec_1 (" ", 0, NULL);
4993
4994 /* Must not damage the original path. */
4995 if (info->append_len == 0)
4996 path[len - 1] = save;
4997
4998 return NULL;
76391e5a
PB
4999}
5000
5a691e98
RAE
5001/* Create a temporary FILE with the contents of ARGV. Add @FILE to the
5002 argument list. */
5003
5004static void
5005create_at_file (char **argv)
5006{
5007 char *temp_file = make_temp_file ("");
5008 char *at_argument = concat ("@", temp_file, NULL);
5009 FILE *f = fopen (temp_file, "w");
5010 int status;
5011
5012 if (f == NULL)
2dec80c7
JM
5013 fatal_error ("could not open temporary response file %s",
5014 temp_file);
5a691e98
RAE
5015
5016 status = writeargv (argv, f);
5017
5018 if (status)
2dec80c7
JM
5019 fatal_error ("could not write to temporary response file %s",
5020 temp_file);
5a691e98
RAE
5021
5022 status = fclose (f);
5023
5024 if (EOF == status)
2dec80c7
JM
5025 fatal_error ("could not close temporary response file %s",
5026 temp_file);
5a691e98
RAE
5027
5028 store_arg (at_argument, 0, 0);
5029
5030 record_temp_file (temp_file, !save_temps_flag, !save_temps_flag);
5031}
5032
5033/* True if we should compile INFILE. */
5034
5035static bool
5036compile_input_file_p (struct infile *infile)
5037{
5038 if ((!infile->language) || (infile->language[0] != '*'))
5039 if (infile->incompiler == input_file_compiler)
5040 return true;
5041 return false;
5042}
5043
ed1f651b
RS
5044/* Process the sub-spec SPEC as a portion of a larger spec.
5045 This is like processing a whole spec except that we do
5046 not initialize at the beginning and we do not supply a
5047 newline by default at the end.
5048 INSWITCH nonzero means don't process %-sequences in SPEC;
5049 in this case, % is treated as an ordinary character.
5050 This is used while substituting switches.
5051 INSWITCH nonzero also causes SPC not to terminate an argument.
5052
5053 Value is zero unless a line was finished
5054 and the command on that line reported an error. */
5055
5056static int
1d088dee 5057do_spec_1 (const char *spec, int inswitch, const char *soft_matched_part)
ed1f651b 5058{
b3694847
SS
5059 const char *p = spec;
5060 int c;
ed1f651b 5061 int i;
3279bba6 5062 int value;
ed1f651b 5063
ededb2fc 5064 while ((c = *p++))
ed1f651b
RS
5065 /* If substituting a switch, treat all chars like letters.
5066 Otherwise, NL, SPC, TAB and % are special. */
5067 switch (inswitch ? 'a' : c)
5068 {
5069 case '\n':
13e7cedb 5070 end_going_arg ();
ed1f651b
RS
5071
5072 if (argbuf_index > 0 && !strcmp (argbuf[argbuf_index - 1], "|"))
5073 {
ed1f651b
RS
5074 /* A `|' before the newline means use a pipe here,
5075 but only if -pipe was specified.
5076 Otherwise, execute now and don't pass the `|' as an arg. */
4977bab6 5077 if (use_pipes)
ed1f651b 5078 {
a99bf70c 5079 input_from_pipe = 1;
ed1f651b
RS
5080 break;
5081 }
5082 else
5083 argbuf_index--;
5084 }
5085
b856c15d
RO
5086 set_collect_gcc_options ();
5087
ed1f651b
RS
5088 if (argbuf_index > 0)
5089 {
3279bba6 5090 value = execute ();
ed1f651b
RS
5091 if (value)
5092 return value;
5093 }
5094 /* Reinitialize for a new command, and for a new argument. */
5095 clear_args ();
5096 arg_going = 0;
5097 delete_this_arg = 0;
5098 this_is_output_file = 0;
5099 this_is_library_file = 0;
3beb864c 5100 this_is_linker_script = 0;
a99bf70c 5101 input_from_pipe = 0;
ed1f651b
RS
5102 break;
5103
5104 case '|':
13e7cedb 5105 end_going_arg ();
ed1f651b
RS
5106
5107 /* Use pipe */
5108 obstack_1grow (&obstack, c);
5109 arg_going = 1;
5110 break;
5111
5112 case '\t':
5113 case ' ':
13e7cedb
DH
5114 end_going_arg ();
5115
ed1f651b 5116 /* Reinitialize for a new argument. */
ed1f651b
RS
5117 delete_this_arg = 0;
5118 this_is_output_file = 0;
5119 this_is_library_file = 0;
3beb864c 5120 this_is_linker_script = 0;
ed1f651b
RS
5121 break;
5122
5123 case '%':
5124 switch (c = *p++)
5125 {
5126 case 0:
2dec80c7 5127 fatal_error ("spec '%s' invalid", spec);
ed1f651b
RS
5128
5129 case 'b':
14fdc613
MM
5130 if (save_temps_length)
5131 obstack_grow (&obstack, save_temps_prefix, save_temps_length);
5132 else
5133 obstack_grow (&obstack, input_basename, basename_length);
2153915d
AO
5134 if (compare_debug < 0)
5135 obstack_grow (&obstack, ".gk", 3);
ed1f651b
RS
5136 arg_going = 1;
5137 break;
5138
ea414c97 5139 case 'B':
14fdc613
MM
5140 if (save_temps_length)
5141 obstack_grow (&obstack, save_temps_prefix, save_temps_length);
5142 else
5143 obstack_grow (&obstack, input_basename, suffixed_basename_length);
2153915d
AO
5144 if (compare_debug < 0)
5145 obstack_grow (&obstack, ".gk", 3);
ea414c97
ZW
5146 arg_going = 1;
5147 break;
5148
ed1f651b
RS
5149 case 'd':
5150 delete_this_arg = 2;
5151 break;
5152
5153 /* Dump out the directories specified with LIBRARY_PATH,
004fd4d5
RS
5154 followed by the absolute directories
5155 that we search for startfiles. */
ed1f651b 5156 case 'D':
8cacec76 5157 {
00dcee0c 5158 struct spec_path_info info;
59014d0a 5159
00dcee0c
AM
5160 info.option = "-L";
5161 info.append_len = 0;
76391e5a 5162#ifdef RELATIVE_PREFIX_NOT_LINKDIR
00dcee0c
AM
5163 /* Used on systems which record the specified -L dirs
5164 and use them to search for dynamic linking.
5165 Relative directories always come from -B,
5166 and it is better not to use them for searching
5167 at run time. In particular, stage1 loses. */
5168 info.omit_relative = true;
76391e5a 5169#else
00dcee0c 5170 info.omit_relative = false;
004fd4d5 5171#endif
00dcee0c
AM
5172 info.separate_options = false;
5173
5174 for_each_path (&startfile_prefixes, true, 0, spec_path, &info);
8cacec76 5175 }
ed1f651b
RS
5176 break;
5177
5178 case 'e':
ab87f8c8 5179 /* %efoo means report an error with `foo' as error message
ed1f651b
RS
5180 and don't execute any more commands for this file. */
5181 {
878f32c3 5182 const char *q = p;
ed1f651b 5183 char *buf;
d25a45d4
KH
5184 while (*p != 0 && *p != '\n')
5185 p++;
e1e4cdc4 5186 buf = (char *) alloca (p - q + 1);
ed1f651b
RS
5187 strncpy (buf, q, p - q);
5188 buf[p - q] = 0;
5bc69b92 5189 error ("%s", _(buf));
ed1f651b
RS
5190 return -1;
5191 }
5192 break;
4a88a060 5193 case 'n':
09da1532 5194 /* %nfoo means report a notice with `foo' on stderr. */
4a88a060
JH
5195 {
5196 const char *q = p;
5197 char *buf;
5198 while (*p != 0 && *p != '\n')
5199 p++;
e1e4cdc4 5200 buf = (char *) alloca (p - q + 1);
4a88a060
JH
5201 strncpy (buf, q, p - q);
5202 buf[p - q] = 0;
2dec80c7 5203 inform (0, "%s", _(buf));
4a88a060
JH
5204 if (*p)
5205 p++;
5206 }
5207 break;
ed1f651b 5208
d25a45d4
KH
5209 case 'j':
5210 {
5211 struct stat st;
5212
4977bab6
ZW
5213 /* If save_temps_flag is off, and the HOST_BIT_BUCKET is
5214 defined, and it is not a directory, and it is
5215 writable, use it. Otherwise, treat this like any
5216 other temporary file. */
d25a45d4
KH
5217
5218 if ((!save_temps_flag)
5219 && (stat (HOST_BIT_BUCKET, &st) == 0) && (!S_ISDIR (st.st_mode))
5220 && (access (HOST_BIT_BUCKET, W_OK) == 0))
5221 {
5222 obstack_grow (&obstack, HOST_BIT_BUCKET,
5223 strlen (HOST_BIT_BUCKET));
5224 delete_this_arg = 0;
5225 arg_going = 1;
5226 break;
5227 }
5228 }
4977bab6
ZW
5229 goto create_temp_file;
5230 case '|':
5231 if (use_pipes)
5232 {
5233 obstack_1grow (&obstack, '-');
5234 delete_this_arg = 0;
5235 arg_going = 1;
5236
5237 /* consume suffix */
a92dd235 5238 while (*p == '.' || ISALNUM ((unsigned char) *p))
4977bab6
ZW
5239 p++;
5240 if (p[0] == '%' && p[1] == 'O')
5241 p += 2;
1d088dee 5242
4977bab6
ZW
5243 break;
5244 }
5245 goto create_temp_file;
5246 case 'm':
5247 if (use_pipes)
5248 {
5249 /* consume suffix */
a92dd235 5250 while (*p == '.' || ISALNUM ((unsigned char) *p))
4977bab6
ZW
5251 p++;
5252 if (p[0] == '%' && p[1] == 'O')
5253 p += 2;
1d088dee 5254
4977bab6
ZW
5255 break;
5256 }
5257 goto create_temp_file;
ed1f651b 5258 case 'g':
d887e808 5259 case 'u':
4401b31c 5260 case 'U':
4977bab6 5261 create_temp_file:
ed1f651b 5262 {
fb266030 5263 struct temp_name *t;
dd75c292 5264 int suffix_length;
878f32c3 5265 const char *suffix = p;
a1d9074c 5266 char *saved_suffix = NULL;
dd75c292 5267
a92dd235 5268 while (*p == '.' || ISALNUM ((unsigned char) *p))
a1d9074c
TT
5269 p++;
5270 suffix_length = p - suffix;
dd75c292
CB
5271 if (p[0] == '%' && p[1] == 'O')
5272 {
cbc54665 5273 p += 2;
dd75c292 5274 /* We don't support extra suffix characters after %O. */
a92dd235 5275 if (*p == '.' || ISALNUM ((unsigned char) *p))
2dec80c7 5276 fatal_error ("spec '%s' has invalid '%%0%c'", spec, *p);
a1d9074c 5277 if (suffix_length == 0)
45936a85 5278 suffix = TARGET_OBJECT_SUFFIX;
a1d9074c
TT
5279 else
5280 {
5281 saved_suffix
5ed6ace5 5282 = XNEWVEC (char, suffix_length
703ad42b 5283 + strlen (TARGET_OBJECT_SUFFIX));
a1d9074c
TT
5284 strncpy (saved_suffix, suffix, suffix_length);
5285 strcpy (saved_suffix + suffix_length,
45936a85 5286 TARGET_OBJECT_SUFFIX);
a1d9074c 5287 }
45936a85 5288 suffix_length += strlen (TARGET_OBJECT_SUFFIX);
dd75c292 5289 }
589005ff 5290
2153915d
AO
5291 if (compare_debug < 0)
5292 {
5293 suffix = concat (".gk", suffix, NULL);
5294 suffix_length += 3;
5295 }
5296
14fdc613
MM
5297 /* If -save-temps=obj and -o were specified, use that for the
5298 temp file. */
5299 if (save_temps_length)
5300 {
5301 char *tmp;
5302 temp_filename_length
5303 = save_temps_length + suffix_length + 1;
5304 tmp = (char *) alloca (temp_filename_length);
5305 memcpy (tmp, save_temps_prefix, save_temps_length);
5306 memcpy (tmp + save_temps_length, suffix, suffix_length);
5307 tmp[save_temps_length + suffix_length] = '\0';
5308 temp_filename = save_string (tmp,
5309 temp_filename_length + 1);
5310 obstack_grow (&obstack, temp_filename,
5311 temp_filename_length);
5312 arg_going = 1;
5313 delete_this_arg = 0;
5314 break;
5315 }
5316
6afbc885 5317 /* If the gcc_input_filename has the same suffix specified
99f78cdd
IR
5318 for the %g, %u, or %U, and -save-temps is specified,
5319 we could end up using that file as an intermediate
5320 thus clobbering the user's source file (.e.g.,
5321 gcc -save-temps foo.s would clobber foo.s with the
5322 output of cpp0). So check for this condition and
5323 generate a temp file as the intermediate. */
589005ff 5324
99f78cdd
IR
5325 if (save_temps_flag)
5326 {
6ea2b70d 5327 char *tmp;
14fdc613
MM
5328 temp_filename_length = basename_length + suffix_length + 1;
5329 tmp = (char *) alloca (temp_filename_length);
5330 memcpy (tmp, input_basename, basename_length);
5331 memcpy (tmp + basename_length, suffix, suffix_length);
5332 tmp[basename_length + suffix_length] = '\0';
6ea2b70d 5333 temp_filename = tmp;
14fdc613 5334
6afbc885 5335 if (strcmp (temp_filename, gcc_input_filename) != 0)
99f78cdd 5336 {
a9024779 5337#ifndef HOST_LACKS_INODE_NUMBERS
1d088dee 5338 struct stat st_temp;
589005ff 5339
1d088dee
AJ
5340 /* Note, set_input() resets input_stat_set to 0. */
5341 if (input_stat_set == 0)
5342 {
6afbc885
JM
5343 input_stat_set = stat (gcc_input_filename,
5344 &input_stat);
1d088dee
AJ
5345 if (input_stat_set >= 0)
5346 input_stat_set = 1;
5347 }
589005ff 5348
6afbc885 5349 /* If we have the stat for the gcc_input_filename
1d088dee
AJ
5350 and we can do the stat for the temp_filename
5351 then the they could still refer to the same
5352 file if st_dev/st_ino's are the same. */
99f78cdd
IR
5353 if (input_stat_set != 1
5354 || stat (temp_filename, &st_temp) < 0
5355 || input_stat.st_dev != st_temp.st_dev
5356 || input_stat.st_ino != st_temp.st_ino)
a9024779
DS
5357#else
5358 /* Just compare canonical pathnames. */
6afbc885 5359 char* input_realname = lrealpath (gcc_input_filename);
a9024779
DS
5360 char* temp_realname = lrealpath (temp_filename);
5361 bool files_differ = strcmp (input_realname, temp_realname);
5362 free (input_realname);
5363 free (temp_realname);
7904f95f 5364 if (files_differ)
a9024779 5365#endif
589005ff 5366 {
99f78cdd
IR
5367 temp_filename = save_string (temp_filename,
5368 temp_filename_length + 1);
5369 obstack_grow (&obstack, temp_filename,
1d088dee 5370 temp_filename_length);
99f78cdd 5371 arg_going = 1;
d2dff06b 5372 delete_this_arg = 0;
99f78cdd
IR
5373 break;
5374 }
5375 }
5376 }
fb266030
TW
5377
5378 /* See if we already have an association of %g/%u/%U and
5379 suffix. */
5380 for (t = temp_names; t; t = t->next)
dd75c292
CB
5381 if (t->length == suffix_length
5382 && strncmp (t->suffix, suffix, suffix_length) == 0
95456d43 5383 && t->unique == (c == 'u' || c == 'U' || c == 'j'))
fb266030
TW
5384 break;
5385
2297fdf1
TT
5386 /* Make a new association if needed. %u and %j
5387 require one. */
49009afd 5388 if (t == 0 || c == 'u' || c == 'j')
fb266030
TW
5389 {
5390 if (t == 0)
5391 {
e1e4cdc4 5392 t = XNEW (struct temp_name);
fb266030
TW
5393 t->next = temp_names;
5394 temp_names = t;
5395 }
dd75c292 5396 t->length = suffix_length;
2297fdf1
TT
5397 if (saved_suffix)
5398 {
5399 t->suffix = saved_suffix;
5400 saved_suffix = NULL;
5401 }
5402 else
5403 t->suffix = save_string (suffix, suffix_length);
95456d43 5404 t->unique = (c == 'u' || c == 'U' || c == 'j');
dd75c292 5405 temp_filename = make_temp_file (t->suffix);
6aa62cff 5406 temp_filename_length = strlen (temp_filename);
fb266030
TW
5407 t->filename = temp_filename;
5408 t->filename_length = temp_filename_length;
5409 }
5410
a1d9074c
TT
5411 if (saved_suffix)
5412 free (saved_suffix);
5413
fb266030 5414 obstack_grow (&obstack, t->filename, t->filename_length);
b9490a6e 5415 delete_this_arg = 1;
ed1f651b
RS
5416 }
5417 arg_going = 1;
5418 break;
5419
5420 case 'i':
d1bd0ded
GK
5421 if (combine_inputs)
5422 {
5a691e98
RAE
5423 if (at_file_supplied)
5424 {
5425 /* We are going to expand `%i' to `@FILE', where FILE
5426 is a newly-created temporary filename. The filenames
5427 that would usually be expanded in place of %o will be
5428 written to the temporary file. */
5429 char **argv;
5430 int n_files = 0;
5431 int j;
5432
5433 for (i = 0; i < n_infiles; i++)
5434 if (compile_input_file_p (&infiles[i]))
5435 n_files++;
5436
5437 argv = (char **) alloca (sizeof (char *) * (n_files + 1));
5438
5439 /* Copy the strings over. */
5440 for (i = 0, j = 0; i < n_infiles; i++)
5441 if (compile_input_file_p (&infiles[i]))
5442 {
5443 argv[j] = CONST_CAST (char *, infiles[i].name);
5444 infiles[i].compiled = true;
5445 j++;
5446 }
5447 argv[j] = NULL;
5448
5449 create_at_file (argv);
5450 }
5451 else
5452 for (i = 0; (int) i < n_infiles; i++)
5453 if (compile_input_file_p (&infiles[i]))
0855eab7
CT
5454 {
5455 store_arg (infiles[i].name, 0, 0);
5456 infiles[i].compiled = true;
5457 }
d1bd0ded
GK
5458 }
5459 else
5460 {
6afbc885
JM
5461 obstack_grow (&obstack, gcc_input_filename,
5462 input_filename_length);
d1bd0ded
GK
5463 arg_going = 1;
5464 }
ed1f651b
RS
5465 break;
5466
8eebb258 5467 case 'I':
2d879387 5468 {
00dcee0c 5469 struct spec_path_info info;
2d879387 5470
2b6dd222
JM
5471 if (multilib_dir)
5472 {
5473 do_spec_1 ("-imultilib", 1, NULL);
5474 /* Make this a separate argument. */
5475 do_spec_1 (" ", 0, NULL);
5476 do_spec_1 (multilib_dir, 1, NULL);
5477 do_spec_1 (" ", 0, NULL);
5478 }
5479
2d879387
JW
5480 if (gcc_exec_prefix)
5481 {
6496a589 5482 do_spec_1 ("-iprefix", 1, NULL);
2d879387 5483 /* Make this a separate argument. */
6496a589
KG
5484 do_spec_1 (" ", 0, NULL);
5485 do_spec_1 (gcc_exec_prefix, 1, NULL);
5486 do_spec_1 (" ", 0, NULL);
2d879387
JW
5487 }
5488
e7f13528
GP
5489 if (target_system_root_changed ||
5490 (target_system_root && target_sysroot_hdrs_suffix))
047d636f
DJ
5491 {
5492 do_spec_1 ("-isysroot", 1, NULL);
5493 /* Make this a separate argument. */
5494 do_spec_1 (" ", 0, NULL);
5495 do_spec_1 (target_system_root, 1, NULL);
e7f13528
GP
5496 if (target_sysroot_hdrs_suffix)
5497 do_spec_1 (target_sysroot_hdrs_suffix, 1, NULL);
047d636f
DJ
5498 do_spec_1 (" ", 0, NULL);
5499 }
5500
00dcee0c
AM
5501 info.option = "-isystem";
5502 info.append = "include";
5503 info.append_len = strlen (info.append);
5504 info.omit_relative = false;
5505 info.separate_options = true;
5506
5507 for_each_path (&include_prefixes, false, info.append_len,
5508 spec_path, &info);
f686ec05
JM
5509
5510 info.append = "include-fixed";
14da6073
JM
5511 if (*sysroot_hdrs_suffix_spec)
5512 info.append = concat (info.append, dir_separator_str,
5513 multilib_dir, NULL);
f686ec05
JM
5514 info.append_len = strlen (info.append);
5515 for_each_path (&include_prefixes, false, info.append_len,
5516 spec_path, &info);
2d879387 5517 }
8eebb258
RS
5518 break;
5519
ed1f651b 5520 case 'o':
15c5edb9
TT
5521 {
5522 int max = n_infiles;
15c5edb9 5523 max += lang_specific_extra_outfiles;
08dc830e 5524
2091ff66
NF
5525 if (HAVE_GNU_LD && at_file_supplied)
5526 {
5527 /* We are going to expand `%o' to `@FILE', where FILE
5528 is a newly-created temporary filename. The filenames
5529 that would usually be expanded in place of %o will be
5530 written to the temporary file. */
5531
2091ff66 5532 char **argv;
5a691e98 5533 int n_files, j;
2091ff66
NF
5534
5535 /* Convert OUTFILES into a form suitable for writeargv. */
5536
5537 /* Determine how many are non-NULL. */
5538 for (n_files = 0, i = 0; i < max; i++)
5539 n_files += outfiles[i] != NULL;
5540
e1e4cdc4 5541 argv = (char **) alloca (sizeof (char *) * (n_files + 1));
2091ff66
NF
5542
5543 /* Copy the strings over. */
5544 for (i = 0, j = 0; i < max; i++)
5545 if (outfiles[i])
5546 {
b1d5455a 5547 argv[j] = CONST_CAST (char *, outfiles[i]);
2091ff66
NF
5548 j++;
5549 }
5550 argv[j] = NULL;
5551
5a691e98 5552 create_at_file (argv);
2091ff66
NF
5553 }
5554 else
5555 for (i = 0; i < max; i++)
5556 if (outfiles[i])
5557 store_arg (outfiles[i], 0, 0);
15c5edb9
TT
5558 break;
5559 }
ed1f651b 5560
ed7dae04 5561 case 'O':
45936a85 5562 obstack_grow (&obstack, TARGET_OBJECT_SUFFIX, strlen (TARGET_OBJECT_SUFFIX));
ed7dae04
RK
5563 arg_going = 1;
5564 break;
5565
ed1f651b
RS
5566 case 's':
5567 this_is_library_file = 1;
5568 break;
5569
3beb864c
NC
5570 case 'T':
5571 this_is_linker_script = 1;
5572 break;
5573
17211ab5
GK
5574 case 'V':
5575 outfiles[input_file_number] = NULL;
5576 break;
5577
ed1f651b
RS
5578 case 'w':
5579 this_is_output_file = 1;
5580 break;
5581
5582 case 'W':
5583 {
ed846da3 5584 int cur_index = argbuf_index;
ed1f651b
RS
5585 /* Handle the {...} following the %W. */
5586 if (*p != '{')
2dec80c7 5587 fatal_error ("spec '%s' has invalid '%%W%c", spec, *p);
ed1f651b
RS
5588 p = handle_braces (p + 1);
5589 if (p == 0)
5590 return -1;
13e7cedb 5591 end_going_arg ();
ed1f651b
RS
5592 /* If any args were output, mark the last one for deletion
5593 on failure. */
ed846da3 5594 if (argbuf_index != cur_index)
ed1f651b
RS
5595 record_temp_file (argbuf[argbuf_index - 1], 0, 1);
5596 break;
5597 }
5598
5599 /* %x{OPTION} records OPTION for %X to output. */
5600 case 'x':
5601 {
878f32c3 5602 const char *p1 = p;
ed1f651b
RS
5603 char *string;
5604
5605 /* Skip past the option value and make a copy. */
5606 if (*p != '{')
2dec80c7 5607 fatal_error ("spec '%s' has invalid '%%x%c'", spec, *p);
ed1f651b
RS
5608 while (*p++ != '}')
5609 ;
5610 string = save_string (p1 + 1, p - p1 - 2);
5611
5612 /* See if we already recorded this option. */
5613 for (i = 0; i < n_linker_options; i++)
5614 if (! strcmp (string, linker_options[i]))
5615 {
5616 free (string);
5617 return 0;
5618 }
5619
5620 /* This option is new; add it. */
b8468bc7 5621 add_linker_option (string, strlen (string));
ed1f651b
RS
5622 }
5623 break;
5624
368dfd3a 5625 /* Dump out the options accumulated previously using %x. */
ed1f651b
RS
5626 case 'X':
5627 for (i = 0; i < n_linker_options; i++)
5628 {
6496a589 5629 do_spec_1 (linker_options[i], 1, NULL);
ed1f651b 5630 /* Make each accumulated option a separate argument. */
6496a589 5631 do_spec_1 (" ", 0, NULL);
ed1f651b
RS
5632 }
5633 break;
5634
c9ebacb8
RS
5635 /* Dump out the options accumulated previously using -Wa,. */
5636 case 'Y':
5637 for (i = 0; i < n_assembler_options; i++)
5638 {
6496a589 5639 do_spec_1 (assembler_options[i], 1, NULL);
c9ebacb8 5640 /* Make each accumulated option a separate argument. */
6496a589 5641 do_spec_1 (" ", 0, NULL);
c9ebacb8
RS
5642 }
5643 break;
5644
57cb9b60
JW
5645 /* Dump out the options accumulated previously using -Wp,. */
5646 case 'Z':
5647 for (i = 0; i < n_preprocessor_options; i++)
5648 {
6496a589 5649 do_spec_1 (preprocessor_options[i], 1, NULL);
57cb9b60 5650 /* Make each accumulated option a separate argument. */
6496a589 5651 do_spec_1 (" ", 0, NULL);
57cb9b60
JW
5652 }
5653 break;
5654
ed1f651b
RS
5655 /* Here are digits and numbers that just process
5656 a certain constant string as a spec. */
5657
5658 case '1':
6496a589 5659 value = do_spec_1 (cc1_spec, 0, NULL);
3279bba6
RS
5660 if (value != 0)
5661 return value;
ed1f651b
RS
5662 break;
5663
5664 case '2':
6496a589 5665 value = do_spec_1 (cc1plus_spec, 0, NULL);
3279bba6
RS
5666 if (value != 0)
5667 return value;
ed1f651b
RS
5668 break;
5669
5670 case 'a':
6496a589 5671 value = do_spec_1 (asm_spec, 0, NULL);
3279bba6
RS
5672 if (value != 0)
5673 return value;
ed1f651b
RS
5674 break;
5675
5676 case 'A':
6496a589 5677 value = do_spec_1 (asm_final_spec, 0, NULL);
3279bba6
RS
5678 if (value != 0)
5679 return value;
ed1f651b
RS
5680 break;
5681
ed1f651b 5682 case 'C':
a9374841 5683 {
83182544 5684 const char *const spec
589005ff
KH
5685 = (input_file_compiler->cpp_spec
5686 ? input_file_compiler->cpp_spec
a9374841 5687 : cpp_spec);
6496a589 5688 value = do_spec_1 (spec, 0, NULL);
a9374841
MM
5689 if (value != 0)
5690 return value;
5691 }
ed1f651b
RS
5692 break;
5693
5694 case 'E':
6496a589 5695 value = do_spec_1 (endfile_spec, 0, NULL);
3279bba6
RS
5696 if (value != 0)
5697 return value;
ed1f651b
RS
5698 break;
5699
5700 case 'l':
6496a589 5701 value = do_spec_1 (link_spec, 0, NULL);
3279bba6
RS
5702 if (value != 0)
5703 return value;
ed1f651b
RS
5704 break;
5705
5706 case 'L':
6496a589 5707 value = do_spec_1 (lib_spec, 0, NULL);
3279bba6
RS
5708 if (value != 0)
5709 return value;
ed1f651b
RS
5710 break;
5711
68d69835 5712 case 'G':
6496a589 5713 value = do_spec_1 (libgcc_spec, 0, NULL);
68d69835
JM
5714 if (value != 0)
5715 return value;
5716 break;
5717
4977bab6
ZW
5718 case 'R':
5719 /* We assume there is a directory
5720 separator at the end of this string. */
5721 if (target_system_root)
1d088dee
AJ
5722 {
5723 obstack_grow (&obstack, target_system_root,
e7f13528
GP
5724 strlen (target_system_root));
5725 if (target_sysroot_suffix)
1d088dee 5726 obstack_grow (&obstack, target_sysroot_suffix,
e7f13528
GP
5727 strlen (target_sysroot_suffix));
5728 }
4977bab6
ZW
5729 break;
5730
ed1f651b 5731 case 'S':
6496a589 5732 value = do_spec_1 (startfile_spec, 0, NULL);
3279bba6
RS
5733 if (value != 0)
5734 return value;
ed1f651b
RS
5735 break;
5736
5737 /* Here we define characters other than letters and digits. */
5738
5739 case '{':
5740 p = handle_braces (p);
5741 if (p == 0)
5742 return -1;
5743 break;
5744
f3226a90
JT
5745 case ':':
5746 p = handle_spec_function (p);
5747 if (p == 0)
5748 return -1;
5749 break;
5750
ed1f651b
RS
5751 case '%':
5752 obstack_1grow (&obstack, '%');
5753 break;
5754
589005ff
KH
5755 case '.':
5756 {
5757 unsigned len = 0;
11972f66 5758
589005ff
KH
5759 while (p[len] && p[len] != ' ' && p[len] != '%')
5760 len++;
5761 suffix_subst = save_string (p - 1, len + 1);
5762 p += len;
5763 }
11972f66 5764 break;
589005ff 5765
4977bab6
ZW
5766 /* Henceforth ignore the option(s) matching the pattern
5767 after the %<. */
5768 case '<':
5769 {
5770 unsigned len = 0;
5771 int have_wildcard = 0;
5772 int i;
5773
5774 while (p[len] && p[len] != ' ' && p[len] != '\t')
5775 len++;
5776
5777 if (p[len-1] == '*')
5778 have_wildcard = 1;
5779
5780 for (i = 0; i < n_switches; i++)
5781 if (!strncmp (switches[i].part1, p, len - have_wildcard)
5782 && (have_wildcard || switches[i].part1[len] == '\0'))
5783 {
3371362c 5784 switches[i].live_cond |= SWITCH_IGNORE;
4977bab6
ZW
5785 switches[i].validated = 1;
5786 }
5787
5788 p += len;
5789 }
5790 break;
5791
ed1f651b 5792 case '*':
3ac63d94
NC
5793 if (soft_matched_part)
5794 {
6496a589
KG
5795 do_spec_1 (soft_matched_part, 1, NULL);
5796 do_spec_1 (" ", 0, NULL);
3ac63d94
NC
5797 }
5798 else
5799 /* Catch the case where a spec string contains something like
454ff5cb 5800 '%{foo:%*}'. i.e. there is no * in the pattern on the left
3ac63d94 5801 hand side of the :. */
1737c953 5802 error ("spec failure: '%%*' has not been initialized by pattern match");
ed1f651b
RS
5803 break;
5804
5805 /* Process a string found as the value of a spec given by name.
5806 This feature allows individual machine descriptions
4089dfab
JL
5807 to add and use their own specs.
5808 %[...] modifies -D options the way %P does;
5809 %(...) uses the spec unmodified. */
5810 case '[':
2dec80c7 5811 warning (0, "use of obsolete %%[ operator in specs");
ed1f651b 5812 case '(':
ed1f651b 5813 {
878f32c3 5814 const char *name = p;
ed1f651b
RS
5815 struct spec_list *sl;
5816 int len;
5817
5818 /* The string after the S/P is the name of a spec that is to be
0f41302f 5819 processed. */
4089dfab 5820 while (*p && *p != ')' && *p != ']')
ed1f651b
RS
5821 p++;
5822
3ac63d94 5823 /* See if it's in the list. */
ed1f651b 5824 for (len = p - name, sl = specs; sl; sl = sl->next)
79aff5ac 5825 if (sl->name_len == len && !strncmp (sl->name, name, len))
ed1f651b 5826 {
79aff5ac 5827 name = *(sl->ptr_spec);
20df0482 5828#ifdef DEBUG_SPECS
2dec80c7 5829 fnotice (stderr, "Processing spec %c%s%c, which is '%s'\n",
ab87f8c8 5830 c, sl->name, (c == '(') ? ')' : ']', name);
20df0482 5831#endif
ed1f651b
RS
5832 break;
5833 }
5834
5835 if (sl)
5836 {
4089dfab
JL
5837 if (c == '(')
5838 {
6496a589 5839 value = do_spec_1 (name, 0, NULL);
4089dfab
JL
5840 if (value != 0)
5841 return value;
5842 }
5843 else
5844 {
e1e4cdc4 5845 char *x = (char *) alloca (strlen (name) * 2 + 1);
4089dfab 5846 char *buf = x;
878f32c3 5847 const char *y = name;
4089dfab
JL
5848 int flag = 0;
5849
5850 /* Copy all of NAME into BUF, but put __ after
3ac63d94 5851 every -D and at the end of each arg. */
4089dfab
JL
5852 while (1)
5853 {
5854 if (! strncmp (y, "-D", 2))
5855 {
5856 *x++ = '-';
5857 *x++ = 'D';
5858 *x++ = '_';
5859 *x++ = '_';
5860 y += 2;
5861 flag = 1;
5862 continue;
5863 }
d25a45d4
KH
5864 else if (flag
5865 && (*y == ' ' || *y == '\t' || *y == '='
5866 || *y == '}' || *y == 0))
4089dfab
JL
5867 {
5868 *x++ = '_';
5869 *x++ = '_';
5870 flag = 0;
5871 }
d25a45d4 5872 if (*y == 0)
4089dfab
JL
5873 break;
5874 else
5875 *x++ = *y++;
5876 }
5877 *x = 0;
5878
6496a589 5879 value = do_spec_1 (buf, 0, NULL);
4089dfab
JL
5880 if (value != 0)
5881 return value;
5882 }
ed1f651b 5883 }
b3865ca9 5884
4089dfab 5885 /* Discard the closing paren or bracket. */
b3865ca9
RS
5886 if (*p)
5887 p++;
ed1f651b
RS
5888 }
5889 break;
5890
5891 default:
1737c953 5892 error ("spec failure: unrecognized spec option '%c'", c);
3ac63d94 5893 break;
ed1f651b
RS
5894 }
5895 break;
5896
5897 case '\\':
5898 /* Backslash: treat next character as ordinary. */
5899 c = *p++;
5900
938d968e 5901 /* Fall through. */
ed1f651b
RS
5902 default:
5903 /* Ordinary character: put it into the current argument. */
5904 obstack_1grow (&obstack, c);
5905 arg_going = 1;
5906 }
5907
f3226a90
JT
5908 /* End of string. If we are processing a spec function, we need to
5909 end any pending argument. */
13e7cedb
DH
5910 if (processing_spec_function)
5911 end_going_arg ();
f3226a90 5912
d25a45d4 5913 return 0;
ed1f651b
RS
5914}
5915
f3226a90
JT
5916/* Look up a spec function. */
5917
5918static const struct spec_function *
1d088dee 5919lookup_spec_function (const char *name)
f3226a90 5920{
f3226a90 5921 const struct spec_function *sf;
f3226a90 5922
4c360e1f
RE
5923 for (sf = static_spec_functions; sf->name != NULL; sf++)
5924 if (strcmp (sf->name, name) == 0)
5925 return sf;
f3226a90
JT
5926
5927 return NULL;
5928}
5929
5930/* Evaluate a spec function. */
5931
5932static const char *
1d088dee 5933eval_spec_function (const char *func, const char *args)
f3226a90
JT
5934{
5935 const struct spec_function *sf;
5936 const char *funcval;
5937
5938 /* Saved spec processing context. */
5939 int save_argbuf_index;
5940 int save_argbuf_length;
5941 const char **save_argbuf;
5942
5943 int save_arg_going;
5944 int save_delete_this_arg;
5945 int save_this_is_output_file;
5946 int save_this_is_library_file;
5947 int save_input_from_pipe;
3beb864c 5948 int save_this_is_linker_script;
f3226a90
JT
5949 const char *save_suffix_subst;
5950
5951
5952 sf = lookup_spec_function (func);
5953 if (sf == NULL)
2dec80c7 5954 fatal_error ("unknown spec function '%s'", func);
f3226a90
JT
5955
5956 /* Push the spec processing context. */
5957 save_argbuf_index = argbuf_index;
5958 save_argbuf_length = argbuf_length;
5959 save_argbuf = argbuf;
5960
5961 save_arg_going = arg_going;
5962 save_delete_this_arg = delete_this_arg;
5963 save_this_is_output_file = this_is_output_file;
5964 save_this_is_library_file = this_is_library_file;
3beb864c 5965 save_this_is_linker_script = this_is_linker_script;
f3226a90
JT
5966 save_input_from_pipe = input_from_pipe;
5967 save_suffix_subst = suffix_subst;
5968
5969 /* Create a new spec processing context, and build the function
5970 arguments. */
5971
5972 alloc_args ();
5973 if (do_spec_2 (args) < 0)
2dec80c7 5974 fatal_error ("error in args to spec function '%s'", func);
f3226a90
JT
5975
5976 /* argbuf_index is an index for the next argument to be inserted, and
5977 so contains the count of the args already inserted. */
5978
5979 funcval = (*sf->func) (argbuf_index, argbuf);
5980
5981 /* Pop the spec processing context. */
5982 argbuf_index = save_argbuf_index;
5983 argbuf_length = save_argbuf_length;
5984 free (argbuf);
5985 argbuf = save_argbuf;
5986
5987 arg_going = save_arg_going;
5988 delete_this_arg = save_delete_this_arg;
5989 this_is_output_file = save_this_is_output_file;
5990 this_is_library_file = save_this_is_library_file;
3beb864c 5991 this_is_linker_script = save_this_is_linker_script;
f3226a90
JT
5992 input_from_pipe = save_input_from_pipe;
5993 suffix_subst = save_suffix_subst;
5994
5995 return funcval;
5996}
5997
5998/* Handle a spec function call of the form:
5999
6000 %:function(args)
6001
6002 ARGS is processed as a spec in a separate context and split into an
6003 argument vector in the normal fashion. The function returns a string
6004 containing a spec which we then process in the caller's context, or
6005 NULL if no processing is required. */
6006
6007static const char *
1d088dee 6008handle_spec_function (const char *p)
f3226a90
JT
6009{
6010 char *func, *args;
6011 const char *endp, *funcval;
6012 int count;
6013
6014 processing_spec_function++;
6015
6016 /* Get the function name. */
6017 for (endp = p; *endp != '\0'; endp++)
6018 {
6019 if (*endp == '(') /* ) */
6020 break;
6021 /* Only allow [A-Za-z0-9], -, and _ in function names. */
6022 if (!ISALNUM (*endp) && !(*endp == '-' || *endp == '_'))
2dec80c7 6023 fatal_error ("malformed spec function name");
f3226a90
JT
6024 }
6025 if (*endp != '(') /* ) */
2dec80c7 6026 fatal_error ("no arguments for spec function");
f3226a90
JT
6027 func = save_string (p, endp - p);
6028 p = ++endp;
6029
6030 /* Get the arguments. */
6031 for (count = 0; *endp != '\0'; endp++)
6032 {
6033 /* ( */
6034 if (*endp == ')')
6035 {
6036 if (count == 0)
6037 break;
6038 count--;
6039 }
6040 else if (*endp == '(') /* ) */
6041 count++;
6042 }
6043 /* ( */
6044 if (*endp != ')')
2dec80c7 6045 fatal_error ("malformed spec function arguments");
f3226a90
JT
6046 args = save_string (p, endp - p);
6047 p = ++endp;
6048
6049 /* p now points to just past the end of the spec function expression. */
6050
6051 funcval = eval_spec_function (func, args);
6052 if (funcval != NULL && do_spec_1 (funcval, 0, NULL) < 0)
6053 p = NULL;
6054
6055 free (func);
6056 free (args);
6057
6058 processing_spec_function--;
6059
6060 return p;
6061}
6062
4977bab6
ZW
6063/* Inline subroutine of handle_braces. Returns true if the current
6064 input suffix matches the atom bracketed by ATOM and END_ATOM. */
6065static inline bool
1d088dee 6066input_suffix_matches (const char *atom, const char *end_atom)
4977bab6
ZW
6067{
6068 return (input_suffix
6069 && !strncmp (input_suffix, atom, end_atom - atom)
6070 && input_suffix[end_atom - atom] == '\0');
6071}
ed1f651b 6072
48137d59
GK
6073/* Subroutine of handle_braces. Returns true if the current
6074 input file's spec name matches the atom bracketed by ATOM and END_ATOM. */
6075static bool
6076input_spec_matches (const char *atom, const char *end_atom)
6077{
6078 return (input_file_compiler
6079 && input_file_compiler->suffix
6080 && input_file_compiler->suffix[0] != '\0'
6081 && !strncmp (input_file_compiler->suffix + 1, atom,
6082 end_atom - atom)
6083 && input_file_compiler->suffix[end_atom - atom + 1] == '\0');
6084}
6085
953ff289 6086/* Subroutine of handle_braces. Returns true if a switch
4977bab6
ZW
6087 matching the atom bracketed by ATOM and END_ATOM appeared on the
6088 command line. */
953ff289 6089static bool
1d088dee 6090switch_matches (const char *atom, const char *end_atom, int starred)
ed1f651b 6091{
4977bab6
ZW
6092 int i;
6093 int len = end_atom - atom;
6094 int plen = starred ? len : -1;
ed1f651b 6095
4977bab6
ZW
6096 for (i = 0; i < n_switches; i++)
6097 if (!strncmp (switches[i].part1, atom, len)
6098 && (starred || switches[i].part1[len] == '\0')
6099 && check_live_switch (i, plen))
6100 return true;
8097c429 6101
4977bab6
ZW
6102 return false;
6103}
ed1f651b 6104
4977bab6
ZW
6105/* Inline subroutine of handle_braces. Mark all of the switches which
6106 match ATOM (extends to END_ATOM; STARRED indicates whether there
6107 was a star after the atom) for later processing. */
6108static inline void
1d088dee 6109mark_matching_switches (const char *atom, const char *end_atom, int starred)
4977bab6
ZW
6110{
6111 int i;
6112 int len = end_atom - atom;
6113 int plen = starred ? len : -1;
6114
6115 for (i = 0; i < n_switches; i++)
6116 if (!strncmp (switches[i].part1, atom, len)
6117 && (starred || switches[i].part1[len] == '\0')
6118 && check_live_switch (i, plen))
6119 switches[i].ordering = 1;
6120}
9bf09437 6121
4977bab6
ZW
6122/* Inline subroutine of handle_braces. Process all the currently
6123 marked switches through give_switch, and clear the marks. */
6124static inline void
1d088dee 6125process_marked_switches (void)
4977bab6
ZW
6126{
6127 int i;
ed1f651b 6128
4977bab6
ZW
6129 for (i = 0; i < n_switches; i++)
6130 if (switches[i].ordering == 1)
6131 {
6132 switches[i].ordering = 0;
6133 give_switch (i, 0);
6134 }
6135}
ed1f651b 6136
4977bab6
ZW
6137/* Handle a %{ ... } construct. P points just inside the leading {.
6138 Returns a pointer one past the end of the brace block, or 0
6139 if we call do_spec_1 and that returns -1. */
ed1f651b 6140
4977bab6 6141static const char *
1d088dee 6142handle_braces (const char *p)
4977bab6
ZW
6143{
6144 const char *atom, *end_atom;
6145 const char *d_atom = NULL, *d_end_atom = NULL;
3b5edfee 6146 const char *orig = p;
8097c429 6147
4977bab6 6148 bool a_is_suffix;
48137d59 6149 bool a_is_spectype;
4977bab6
ZW
6150 bool a_is_starred;
6151 bool a_is_negated;
6152 bool a_matched;
9bf09437 6153
4977bab6
ZW
6154 bool a_must_be_last = false;
6155 bool ordered_set = false;
6156 bool disjunct_set = false;
6157 bool disj_matched = false;
6158 bool disj_starred = true;
6159 bool n_way_choice = false;
6160 bool n_way_matched = false;
6161
6162#define SKIP_WHITE() do { while (*p == ' ' || *p == '\t') p++; } while (0)
9bf09437 6163
4977bab6 6164 do
ed1f651b 6165 {
4977bab6 6166 if (a_must_be_last)
3b5edfee 6167 goto invalid;
9bf09437 6168
4977bab6 6169 /* Scan one "atom" (S in the description above of %{}, possibly
48137d59
GK
6170 with '!', '.', '@', ',', or '*' modifiers). */
6171 a_matched = false;
6172 a_is_suffix = false;
6173 a_is_starred = false;
6174 a_is_negated = false;
6175 a_is_spectype = false;
9218435e 6176
4977bab6
ZW
6177 SKIP_WHITE();
6178 if (*p == '!')
6179 p++, a_is_negated = true;
ed1f651b 6180
4977bab6
ZW
6181 SKIP_WHITE();
6182 if (*p == '.')
6183 p++, a_is_suffix = true;
48137d59
GK
6184 else if (*p == ',')
6185 p++, a_is_spectype = true;
ed1f651b 6186
4977bab6
ZW
6187 atom = p;
6188 while (ISIDNUM(*p) || *p == '-' || *p == '+' || *p == '='
cde26509 6189 || *p == ',' || *p == '.' || *p == '@')
4977bab6
ZW
6190 p++;
6191 end_atom = p;
ed1f651b 6192
4977bab6
ZW
6193 if (*p == '*')
6194 p++, a_is_starred = 1;
196a37f4 6195
4977bab6 6196 SKIP_WHITE();
3b5edfee 6197 switch (*p)
4977bab6 6198 {
3b5edfee 6199 case '&': case '}':
4977bab6
ZW
6200 /* Substitute the switch(es) indicated by the current atom. */
6201 ordered_set = true;
6202 if (disjunct_set || n_way_choice || a_is_negated || a_is_suffix
48137d59 6203 || a_is_spectype || atom == end_atom)
3b5edfee 6204 goto invalid;
ed1f651b 6205
4977bab6
ZW
6206 mark_matching_switches (atom, end_atom, a_is_starred);
6207
6208 if (*p == '}')
6209 process_marked_switches ();
3b5edfee
NS
6210 break;
6211
6212 case '|': case ':':
4977bab6
ZW
6213 /* Substitute some text if the current atom appears as a switch
6214 or suffix. */
6215 disjunct_set = true;
6216 if (ordered_set)
3b5edfee 6217 goto invalid;
ed1f651b 6218
4977bab6 6219 if (atom == end_atom)
ed1f651b 6220 {
4977bab6 6221 if (!n_way_choice || disj_matched || *p == '|'
b8698a0f 6222 || a_is_negated || a_is_suffix || a_is_spectype
48137d59 6223 || a_is_starred)
3b5edfee 6224 goto invalid;
4977bab6
ZW
6225
6226 /* An empty term may appear as the last choice of an
6227 N-way choice set; it means "otherwise". */
6228 a_must_be_last = true;
6229 disj_matched = !n_way_matched;
6230 disj_starred = false;
ed1f651b 6231 }
4977bab6 6232 else
ed1f651b 6233 {
48137d59
GK
6234 if ((a_is_suffix || a_is_spectype) && a_is_starred)
6235 goto invalid;
3beb864c 6236
48137d59
GK
6237 if (!a_is_starred)
6238 disj_starred = false;
6239
6240 /* Don't bother testing this atom if we already have a
6241 match. */
6242 if (!disj_matched && !n_way_matched)
6243 {
6244 if (a_is_suffix)
6245 a_matched = input_suffix_matches (atom, end_atom);
6246 else if (a_is_spectype)
6247 a_matched = input_spec_matches (atom, end_atom);
6248 else
6249 a_matched = switch_matches (atom, end_atom, a_is_starred);
3beb864c 6250
48137d59
GK
6251 if (a_matched != a_is_negated)
6252 {
6253 disj_matched = true;
6254 d_atom = atom;
6255 d_end_atom = end_atom;
6256 }
6257 }
ed1f651b 6258 }
ed1f651b 6259
4977bab6 6260 if (*p == ':')
ed1f651b 6261 {
4977bab6
ZW
6262 /* Found the body, that is, the text to substitute if the
6263 current disjunction matches. */
6264 p = process_brace_body (p + 1, d_atom, d_end_atom, disj_starred,
6265 disj_matched && !n_way_matched);
6266 if (p == 0)
6267 return 0;
ed1f651b 6268
4977bab6
ZW
6269 /* If we have an N-way choice, reset state for the next
6270 disjunction. */
6271 if (*p == ';')
ed1f651b 6272 {
4977bab6
ZW
6273 n_way_choice = true;
6274 n_way_matched |= disj_matched;
6275 disj_matched = false;
6276 disj_starred = true;
6277 d_atom = d_end_atom = NULL;
ed1f651b
RS
6278 }
6279 }
3b5edfee
NS
6280 break;
6281
6282 default:
6283 goto invalid;
ed1f651b 6284 }
4977bab6
ZW
6285 }
6286 while (*p++ != '}');
ed1f651b 6287
4977bab6 6288 return p;
7904f95f 6289
3b5edfee 6290 invalid:
2dec80c7 6291 fatal_error ("braced spec '%s' is invalid at '%c'", orig, *p);
7904f95f 6292
4977bab6
ZW
6293#undef SKIP_WHITE
6294}
6295
6296/* Subroutine of handle_braces. Scan and process a brace substitution body
6297 (X in the description of %{} syntax). P points one past the colon;
6298 ATOM and END_ATOM bracket the first atom which was found to be true
6299 (present) in the current disjunction; STARRED indicates whether all
6300 the atoms in the current disjunction were starred (for syntax validation);
6301 MATCHED indicates whether the disjunction matched or not, and therefore
6302 whether or not the body is to be processed through do_spec_1 or just
6303 skipped. Returns a pointer to the closing } or ;, or 0 if do_spec_1
6304 returns -1. */
6305
6306static const char *
1d088dee
AJ
6307process_brace_body (const char *p, const char *atom, const char *end_atom,
6308 int starred, int matched)
4977bab6
ZW
6309{
6310 const char *body, *end_body;
6311 unsigned int nesting_level;
6312 bool have_subst = false;
6313
6314 /* Locate the closing } or ;, honoring nested braces.
6315 Trim trailing whitespace. */
6316 body = p;
6317 nesting_level = 1;
6318 for (;;)
6319 {
6320 if (*p == '{')
6321 nesting_level++;
6322 else if (*p == '}')
ed1f651b 6323 {
4977bab6
ZW
6324 if (!--nesting_level)
6325 break;
ed1f651b 6326 }
4977bab6
ZW
6327 else if (*p == ';' && nesting_level == 1)
6328 break;
6329 else if (*p == '%' && p[1] == '*' && nesting_level == 1)
6330 have_subst = true;
6331 else if (*p == '\0')
3b5edfee 6332 goto invalid;
4977bab6 6333 p++;
ed1f651b 6334 }
1d088dee 6335
4977bab6
ZW
6336 end_body = p;
6337 while (end_body[-1] == ' ' || end_body[-1] == '\t')
6338 end_body--;
ed1f651b 6339
4977bab6 6340 if (have_subst && !starred)
3b5edfee 6341 goto invalid;
9bf09437 6342
4977bab6 6343 if (matched)
196a37f4 6344 {
4977bab6
ZW
6345 /* Copy the substitution body to permanent storage and execute it.
6346 If have_subst is false, this is a simple matter of running the
6347 body through do_spec_1... */
6348 char *string = save_string (body, end_body - body);
6349 if (!have_subst)
6350 {
6351 if (do_spec_1 (string, 0, NULL) < 0)
6352 return 0;
6353 }
6354 else
6355 {
6356 /* ... but if have_subst is true, we have to process the
6357 body once for each matching switch, with %* set to the
6358 variant part of the switch. */
6359 unsigned int hard_match_len = end_atom - atom;
6360 int i;
196a37f4 6361
4977bab6
ZW
6362 for (i = 0; i < n_switches; i++)
6363 if (!strncmp (switches[i].part1, atom, hard_match_len)
6364 && check_live_switch (i, hard_match_len))
6365 {
6366 if (do_spec_1 (string, 0,
6367 &switches[i].part1[hard_match_len]) < 0)
6368 return 0;
6369 /* Pass any arguments this switch has. */
6370 give_switch (i, 1);
6371 suffix_subst = NULL;
6372 }
6373 }
10ebf5fe
NB
6374 }
6375
4977bab6 6376 return p;
3b5edfee
NS
6377
6378 invalid:
2dec80c7 6379 fatal_error ("braced spec body '%s' is invalid", body);
ed1f651b 6380}
f5b0eb4e 6381\f
6c396fb5
RK
6382/* Return 0 iff switch number SWITCHNUM is obsoleted by a later switch
6383 on the command line. PREFIX_LENGTH is the length of XXX in an {XXX*}
6384 spec, or -1 if either exact match or %* is used.
f5b0eb4e
RK
6385
6386 A -O switch is obsoleted by a later -O switch. A -f, -m, or -W switch
6387 whose value does not begin with "no-" is obsoleted by the same value
6388 with the "no-", similarly for a switch with the "no-" prefix. */
6389
6390static int
1d088dee 6391check_live_switch (int switchnum, int prefix_length)
f5b0eb4e 6392{
878f32c3 6393 const char *name = switches[switchnum].part1;
f5b0eb4e
RK
6394 int i;
6395
2153915d
AO
6396 /* If we already processed this switch and determined if it was
6397 live or not, return our past determination. */
6398 if (switches[switchnum].live_cond != 0)
6399 return ((switches[switchnum].live_cond & SWITCH_LIVE) != 0
6400 && (switches[switchnum].live_cond & SWITCH_FALSE) == 0
94b90527
JJ
6401 && (switches[switchnum].live_cond & SWITCH_IGNORE_PERMANENTLY)
6402 == 0);
2153915d 6403
6c396fb5 6404 /* In the common case of {<at-most-one-letter>*}, a negating
f5b0eb4e
RK
6405 switch would always match, so ignore that case. We will just
6406 send the conflicting switches to the compiler phase. */
6c396fb5 6407 if (prefix_length >= 0 && prefix_length <= 1)
f5b0eb4e
RK
6408 return 1;
6409
f5b0eb4e
RK
6410 /* Now search for duplicate in a manner that depends on the name. */
6411 switch (*name)
6412 {
6413 case 'O':
d25a45d4
KH
6414 for (i = switchnum + 1; i < n_switches; i++)
6415 if (switches[i].part1[0] == 'O')
6416 {
6417 switches[switchnum].validated = 1;
6418 switches[switchnum].live_cond = SWITCH_FALSE;
6419 return 0;
6420 }
f5b0eb4e 6421 break;
ed1f651b 6422
f5b0eb4e 6423 case 'W': case 'f': case 'm':
6c396fb5 6424 if (! strncmp (name + 1, "no-", 3))
f5b0eb4e 6425 {
0f41302f 6426 /* We have Xno-YYY, search for XYYY. */
f5b0eb4e
RK
6427 for (i = switchnum + 1; i < n_switches; i++)
6428 if (switches[i].part1[0] == name[0]
6429 && ! strcmp (&switches[i].part1[1], &name[4]))
d25a45d4
KH
6430 {
6431 switches[switchnum].validated = 1;
6432 switches[switchnum].live_cond = SWITCH_FALSE;
6433 return 0;
6434 }
f5b0eb4e
RK
6435 }
6436 else
6437 {
6438 /* We have XYYY, search for Xno-YYY. */
6439 for (i = switchnum + 1; i < n_switches; i++)
6440 if (switches[i].part1[0] == name[0]
6441 && switches[i].part1[1] == 'n'
6442 && switches[i].part1[2] == 'o'
6443 && switches[i].part1[3] == '-'
6444 && !strcmp (&switches[i].part1[4], &name[1]))
d25a45d4
KH
6445 {
6446 switches[switchnum].validated = 1;
6447 switches[switchnum].live_cond = SWITCH_FALSE;
6448 return 0;
6449 }
f5b0eb4e
RK
6450 }
6451 break;
6452 }
6453
6454 /* Otherwise the switch is live. */
3371362c 6455 switches[switchnum].live_cond |= SWITCH_LIVE;
f5b0eb4e
RK
6456 return 1;
6457}
6458\f
ed1f651b
RS
6459/* Pass a switch to the current accumulating command
6460 in the same form that we received it.
6461 SWITCHNUM identifies the switch; it is an index into
6462 the vector of switches gcc received, which is `switches'.
6463 This cannot fail since it never finishes a command line.
6464
4977bab6 6465 If OMIT_FIRST_WORD is nonzero, then we omit .part1 of the argument. */
ed1f651b
RS
6466
6467static void
1d088dee 6468give_switch (int switchnum, int omit_first_word)
ed1f651b 6469{
3371362c 6470 if ((switches[switchnum].live_cond & SWITCH_IGNORE) != 0)
8097c429
TT
6471 return;
6472
ed1f651b
RS
6473 if (!omit_first_word)
6474 {
6496a589
KG
6475 do_spec_1 ("-", 0, NULL);
6476 do_spec_1 (switches[switchnum].part1, 1, NULL);
ed1f651b 6477 }
1ba9a487 6478
ed1f651b
RS
6479 if (switches[switchnum].args != 0)
6480 {
fbd40359 6481 const char **p;
ed1f651b
RS
6482 for (p = switches[switchnum].args; *p; p++)
6483 {
11972f66
NS
6484 const char *arg = *p;
6485
4977bab6 6486 do_spec_1 (" ", 0, NULL);
11972f66
NS
6487 if (suffix_subst)
6488 {
6489 unsigned length = strlen (arg);
e65677af 6490 int dot = 0;
11972f66
NS
6491
6492 while (length-- && !IS_DIR_SEPARATOR (arg[length]))
6493 if (arg[length] == '.')
6494 {
b1d5455a 6495 (CONST_CAST(char *, arg))[length] = 0;
e65677af 6496 dot = 1;
11972f66
NS
6497 break;
6498 }
6496a589 6499 do_spec_1 (arg, 1, NULL);
e65677af 6500 if (dot)
b1d5455a 6501 (CONST_CAST(char *, arg))[length] = '.';
e65677af 6502 do_spec_1 (suffix_subst, 1, NULL);
11972f66
NS
6503 }
6504 else
6496a589 6505 do_spec_1 (arg, 1, NULL);
ed1f651b
RS
6506 }
6507 }
1ba9a487 6508
6496a589 6509 do_spec_1 (" ", 0, NULL);
ab87f8c8 6510 switches[switchnum].validated = 1;
ed1f651b
RS
6511}
6512\f
6513/* Search for a file named NAME trying various prefixes including the
6514 user's -B prefix and some standard ones.
6515 Return the absolute file name found. If nothing is found, return NAME. */
6516
878f32c3 6517static const char *
1d088dee 6518find_file (const char *name)
ed1f651b 6519{
00dcee0c 6520 char *newname = find_a_file (&startfile_prefixes, name, R_OK, true);
ed1f651b
RS
6521 return newname ? newname : name;
6522}
6523
0ad5835e 6524/* Determine whether a directory exists. If LINKER, return 0 for
00dcee0c 6525 certain fixed names not needed by the linker. */
ed1f651b
RS
6526
6527static int
00dcee0c 6528is_directory (const char *path1, bool linker)
ed1f651b 6529{
00dcee0c
AM
6530 int len1;
6531 char *path;
ed1f651b
RS
6532 char *cp;
6533 struct stat st;
6534
00dcee0c
AM
6535 /* Ensure the string ends with "/.". The resulting path will be a
6536 directory even if the given path is a symbolic link. */
6537 len1 = strlen (path1);
e1e4cdc4 6538 path = (char *) alloca (3 + len1);
7e2231e7 6539 memcpy (path, path1, len1);
00dcee0c 6540 cp = path + len1;
509781a4 6541 if (!IS_DIR_SEPARATOR (cp[-1]))
48ff801b 6542 *cp++ = DIR_SEPARATOR;
ed1f651b
RS
6543 *cp++ = '.';
6544 *cp = '\0';
6545
6546 /* Exclude directories that the linker is known to search. */
0ad5835e 6547 if (linker
00dcee0c 6548 && IS_DIR_SEPARATOR (path[0])
48ff801b 6549 && ((cp - path == 6
00dcee0c 6550 && strncmp (path + 1, "lib", 3) == 0)
48ff801b 6551 || (cp - path == 10
00dcee0c
AM
6552 && strncmp (path + 1, "usr", 3) == 0
6553 && IS_DIR_SEPARATOR (path[4])
6554 && strncmp (path + 5, "lib", 3) == 0)))
ed1f651b
RS
6555 return 0;
6556
6557 return (stat (path, &st) >= 0 && S_ISDIR (st.st_mode));
6558}
512b62fb
JM
6559
6560/* Set up the various global variables to indicate that we're processing
6561 the input file named FILENAME. */
6562
b856c15d 6563void
1d088dee 6564set_input (const char *filename)
512b62fb 6565{
b3694847 6566 const char *p;
512b62fb 6567
6afbc885
JM
6568 gcc_input_filename = filename;
6569 input_filename_length = strlen (gcc_input_filename);
6570 input_basename = lbasename (gcc_input_filename);
512b62fb
JM
6571
6572 /* Find a suffix starting with the last period,
6573 and set basename_length to exclude that suffix. */
6574 basename_length = strlen (input_basename);
ea414c97 6575 suffixed_basename_length = basename_length;
512b62fb 6576 p = input_basename + basename_length;
d25a45d4
KH
6577 while (p != input_basename && *p != '.')
6578 --p;
512b62fb
JM
6579 if (*p == '.' && p != input_basename)
6580 {
6581 basename_length = p - input_basename;
6582 input_suffix = p + 1;
6583 }
6584 else
6585 input_suffix = "";
589005ff 6586
99f78cdd 6587 /* If a spec for 'g', 'u', or 'U' is seen with -save-temps then
6afbc885 6588 we will need to do a stat on the gcc_input_filename. The
99f78cdd
IR
6589 INPUT_STAT_SET signals that the stat is needed. */
6590 input_stat_set = 0;
512b62fb 6591}
ed1f651b
RS
6592\f
6593/* On fatal signals, delete all the temporary files. */
6594
6595static void
2dec80c7 6596fatal_signal (int signum)
ed1f651b
RS
6597{
6598 signal (signum, SIG_DFL);
6599 delete_failure_queue ();
6600 delete_temp_files ();
6601 /* Get the same signal again, this time not handled,
6602 so its normal effect occurs. */
6603 kill (getpid (), signum);
6604}
6605
2153915d
AO
6606/* Compare the contents of the two files named CMPFILE[0] and
6607 CMPFILE[1]. Return zero if they're identical, nonzero
6608 otherwise. */
6609
6610static int
6611compare_files (char *cmpfile[])
6612{
6613 int ret = 0;
6614 FILE *temp[2] = { NULL, NULL };
6615 int i;
6616
6617#if HAVE_MMAP_FILE
6618 {
6619 size_t length[2];
6620 void *map[2] = { NULL, NULL };
6621
6622 for (i = 0; i < 2; i++)
6623 {
6624 struct stat st;
6625
6626 if (stat (cmpfile[i], &st) < 0 || !S_ISREG (st.st_mode))
6627 {
6628 error ("%s: could not determine length of compare-debug file %s",
6afbc885 6629 gcc_input_filename, cmpfile[i]);
2153915d
AO
6630 ret = 1;
6631 break;
6632 }
6633
6634 length[i] = st.st_size;
6635 }
6636
6637 if (!ret && length[0] != length[1])
6638 {
6afbc885 6639 error ("%s: -fcompare-debug failure (length)", gcc_input_filename);
2153915d
AO
6640 ret = 1;
6641 }
6642
6643 if (!ret)
6644 for (i = 0; i < 2; i++)
6645 {
6646 int fd = open (cmpfile[i], O_RDONLY);
6647 if (fd < 0)
6648 {
6649 error ("%s: could not open compare-debug file %s",
6afbc885 6650 gcc_input_filename, cmpfile[i]);
2153915d
AO
6651 ret = 1;
6652 break;
6653 }
6654
6655 map[i] = mmap (NULL, length[i], PROT_READ, MAP_PRIVATE, fd, 0);
6656 close (fd);
6657
6658 if (map[i] == (void *) MAP_FAILED)
6659 {
6660 ret = -1;
6661 break;
6662 }
6663 }
6664
6665 if (!ret)
6666 {
6667 if (memcmp (map[0], map[1], length[0]) != 0)
6668 {
6afbc885 6669 error ("%s: -fcompare-debug failure", gcc_input_filename);
2153915d
AO
6670 ret = 1;
6671 }
6672 }
6673
6674 for (i = 0; i < 2; i++)
6675 if (map[i])
e7aae3e8 6676 munmap ((caddr_t) map[i], length[i]);
2153915d
AO
6677
6678 if (ret >= 0)
6679 return ret;
6680
6681 ret = 0;
6682 }
6683#endif
6684
6685 for (i = 0; i < 2; i++)
6686 {
6687 temp[i] = fopen (cmpfile[i], "r");
6688 if (!temp[i])
6689 {
6690 error ("%s: could not open compare-debug file %s",
6afbc885 6691 gcc_input_filename, cmpfile[i]);
2153915d
AO
6692 ret = 1;
6693 break;
6694 }
6695 }
6696
6697 if (!ret && temp[0] && temp[1])
6698 for (;;)
6699 {
6700 int c0, c1;
6701 c0 = fgetc (temp[0]);
6702 c1 = fgetc (temp[1]);
6703
6704 if (c0 != c1)
6705 {
6706 error ("%s: -fcompare-debug failure",
6afbc885 6707 gcc_input_filename);
2153915d
AO
6708 ret = 1;
6709 break;
6710 }
6711
6712 if (c0 == EOF)
6713 break;
6714 }
6715
6716 for (i = 1; i >= 0; i--)
6717 {
6718 if (temp[i])
6719 fclose (temp[i]);
6720 }
6721
6722 return ret;
6723}
6724
07a3df01 6725extern int main (int, char **);
a8f227e7 6726
ed1f651b 6727int
07a3df01 6728main (int argc, char **argv)
ed1f651b 6729{
ea414c97 6730 size_t i;
ed1f651b 6731 int value;
ed1f651b 6732 int linker_was_run = 0;
0855eab7 6733 int lang_n_infiles = 0;
17211ab5 6734 int num_linker_inputs = 0;
ed1f651b
RS
6735 char *explicit_link_files;
6736 char *specs_file;
878f32c3 6737 const char *p;
d9ac3a07 6738 struct user_specs *uptr;
2091ff66 6739 char **old_argv = argv;
ed1f651b 6740
b481444e
JJ
6741 /* Initialize here, not in definition. The IRIX 6 O32 cc sometimes chokes
6742 on ?: in file-scope variable initializations. */
6743 asm_debug = ASM_DEBUG_SPEC;
6744
afcd8a02 6745 p = argv[0] + strlen (argv[0]);
509781a4
ME
6746 while (p != argv[0] && !IS_DIR_SEPARATOR (p[-1]))
6747 --p;
6afbc885 6748 progname = p;
ed1f651b 6749
6afbc885 6750 xmalloc_set_program_name (progname);
e1a132c6 6751
9d530538
MM
6752 expandargv (&argc, &argv);
6753
2091ff66
NF
6754 /* Determine if any expansions were made. */
6755 if (argv != old_argv)
6756 at_file_supplied = true;
6757
14c7833c
L
6758 prune_options (&argc, &argv);
6759
93284395 6760#ifdef GCC_DRIVER_HOST_INITIALIZATION
ff7cc307 6761 /* Perform host dependent initialization when needed. */
93284395
ME
6762 GCC_DRIVER_HOST_INITIALIZATION;
6763#endif
6764
98a3dad4 6765 /* Unlock the stdio streams. */
2653bb0c 6766 unlock_std_streams ();
98a3dad4 6767
191bf464 6768 gcc_init_libintl ();
ab87f8c8 6769
6afbc885
JM
6770 diagnostic_initialize (global_dc, 0);
6771 if (atexit (delete_temp_files) != 0)
6772 fatal_error ("atexit failed");
6773
ed1f651b 6774 if (signal (SIGINT, SIG_IGN) != SIG_IGN)
2dec80c7 6775 signal (SIGINT, fatal_signal);
2a353d3a 6776#ifdef SIGHUP
ed1f651b 6777 if (signal (SIGHUP, SIG_IGN) != SIG_IGN)
2dec80c7 6778 signal (SIGHUP, fatal_signal);
2a353d3a 6779#endif
ed1f651b 6780 if (signal (SIGTERM, SIG_IGN) != SIG_IGN)
2dec80c7 6781 signal (SIGTERM, fatal_signal);
ed1f651b
RS
6782#ifdef SIGPIPE
6783 if (signal (SIGPIPE, SIG_IGN) != SIG_IGN)
2dec80c7 6784 signal (SIGPIPE, fatal_signal);
ed1f651b 6785#endif
798bdf70 6786#ifdef SIGCHLD
0bf679a3
BK
6787 /* We *MUST* set SIGCHLD to SIG_DFL so that the wait4() call will
6788 receive the signal. A different setting is inheritable */
6789 signal (SIGCHLD, SIG_DFL);
798bdf70 6790#endif
ed1f651b 6791
f3226a90
JT
6792 /* Allocate the argument vector. */
6793 alloc_args ();
ed1f651b
RS
6794
6795 obstack_init (&obstack);
6796
961b7009
MM
6797 /* Build multilib_select, et. al from the separate lines that make up each
6798 multilib selection. */
ffd86336 6799 {
3b304f5b 6800 const char *const *q = multilib_raw;
961b7009 6801 int need_space;
ffd86336
JW
6802
6803 obstack_init (&multilib_obstack);
0f41302f 6804 while ((p = *q++) != (char *) 0)
ffd86336
JW
6805 obstack_grow (&multilib_obstack, p, strlen (p));
6806
6807 obstack_1grow (&multilib_obstack, 0);
7973fd2a 6808 multilib_select = XOBFINISH (&multilib_obstack, const char *);
961b7009
MM
6809
6810 q = multilib_matches_raw;
6811 while ((p = *q++) != (char *) 0)
6812 obstack_grow (&multilib_obstack, p, strlen (p));
6813
6814 obstack_1grow (&multilib_obstack, 0);
7973fd2a 6815 multilib_matches = XOBFINISH (&multilib_obstack, const char *);
961b7009 6816
0a8d6618
BC
6817 q = multilib_exclusions_raw;
6818 while ((p = *q++) != (char *) 0)
d25a45d4 6819 obstack_grow (&multilib_obstack, p, strlen (p));
0a8d6618
BC
6820
6821 obstack_1grow (&multilib_obstack, 0);
7973fd2a 6822 multilib_exclusions = XOBFINISH (&multilib_obstack, const char *);
9218435e 6823
961b7009 6824 need_space = FALSE;
b6a1cbae 6825 for (i = 0; i < ARRAY_SIZE (multilib_defaults_raw); i++)
961b7009
MM
6826 {
6827 if (need_space)
6828 obstack_1grow (&multilib_obstack, ' ');
6829 obstack_grow (&multilib_obstack,
6830 multilib_defaults_raw[i],
6831 strlen (multilib_defaults_raw[i]));
6832 need_space = TRUE;
6833 }
6834
6835 obstack_1grow (&multilib_obstack, 0);
7973fd2a 6836 multilib_defaults = XOBFINISH (&multilib_obstack, const char *);
ffd86336
JW
6837 }
6838
8faf4a68
JW
6839#ifdef INIT_ENVIRONMENT
6840 /* Set up any other necessary machine specific environment variables. */
47d33318 6841 xputenv (INIT_ENVIRONMENT);
8faf4a68
JW
6842#endif
6843
ed1f651b
RS
6844 /* Make a table of what switches there are (switches, n_switches).
6845 Make a table of specified input files (infiles, n_infiles).
6846 Decode switches that are handled locally. */
6847
67165eb3 6848 process_command (argc, CONST_CAST2 (const char **, char **, argv));
ed1f651b
RS
6849
6850 /* Initialize the vector of specs to just the default.
6851 This means one element containing 0s, as a terminator. */
6852
e1e4cdc4 6853 compilers = XNEWVAR (struct compiler, sizeof default_compilers);
703ad42b 6854 memcpy (compilers, default_compilers, sizeof default_compilers);
ed1f651b
RS
6855 n_compilers = n_default_compilers;
6856
6857 /* Read specs from a file if there is one. */
6858
6aa62cff 6859 machine_suffix = concat (spec_machine, dir_separator_str,
d4f2852f
KG
6860 spec_version, dir_separator_str, NULL);
6861 just_machine_suffix = concat (spec_machine, dir_separator_str, NULL);
ed1f651b 6862
00dcee0c 6863 specs_file = find_a_file (&startfile_prefixes, "specs", R_OK, true);
ed1f651b
RS
6864 /* Read the specs file unless it is a default one. */
6865 if (specs_file != 0 && strcmp (specs_file, "specs"))
20df0482
MM
6866 read_specs (specs_file, TRUE);
6867 else
6868 init_spec ();
841faeed 6869
5bb67e36 6870 /* We need to check standard_exec_prefix/just_machine_suffix/specs
3ac63d94 6871 for any override of as, ld and libraries. */
e1e4cdc4 6872 specs_file = (char *) alloca (strlen (standard_exec_prefix)
703ad42b 6873 + strlen (just_machine_suffix) + sizeof ("specs"));
5bb67e36
RK
6874
6875 strcpy (specs_file, standard_exec_prefix);
6876 strcat (specs_file, just_machine_suffix);
6877 strcat (specs_file, "specs");
6878 if (access (specs_file, R_OK) == 0)
6879 read_specs (specs_file, TRUE);
9218435e 6880
7816bea0
DJ
6881 /* Process any configure-time defaults specified for the command line
6882 options, via OPTION_DEFAULT_SPECS. */
6883 for (i = 0; i < ARRAY_SIZE (option_default_specs); i++)
6884 do_option_spec (option_default_specs[i].name,
6885 option_default_specs[i].spec);
6886
3bd6d4c4
AO
6887 /* Process DRIVER_SELF_SPECS, adding any new options to the end
6888 of the command line. */
6889
6890 for (i = 0; i < ARRAY_SIZE (driver_self_specs); i++)
6891 do_self_spec (driver_self_specs[i]);
6892
2153915d
AO
6893 if (compare_debug)
6894 {
6895 enum save_temps save;
6896
6897 if (!compare_debug_second)
6898 {
6899 n_switches_debug_check[1] = n_switches;
6900 switches_debug_check[1] = XDUPVEC (struct switchstr, switches,
6901 n_switches + 1);
6902
6903 do_self_spec ("%:compare-debug-self-opt()");
6904 n_switches_debug_check[0] = n_switches;
6905 switches_debug_check[0] = switches;
6906
6907 n_switches = n_switches_debug_check[1];
6908 switches = switches_debug_check[1];
6909 }
6910
6911 /* Avoid crash when computing %j in this early. */
6912 save = save_temps_flag;
6913 save_temps_flag = SAVE_TEMPS_NONE;
6914
6915 compare_debug = -compare_debug;
6916 do_self_spec ("%:compare-debug-self-opt()");
6917
6918 save_temps_flag = save;
6919
6920 if (!compare_debug_second)
6921 {
6922 n_switches_debug_check[1] = n_switches;
6923 switches_debug_check[1] = switches;
6924 compare_debug = -compare_debug;
6925 n_switches = n_switches_debug_check[0];
6926 switches = switches_debug_check[0];
6927 }
6928 }
6929
4977bab6
ZW
6930 /* If not cross-compiling, look for executables in the standard
6931 places. */
6932 if (*cross_compile == '0')
004fd4d5 6933 {
2296d164
RK
6934 if (*md_exec_prefix)
6935 {
6936 add_prefix (&exec_prefixes, md_exec_prefix, "GCC",
1a5d37a1 6937 PREFIX_PRIORITY_LAST, 0, 0);
2296d164 6938 }
4977bab6
ZW
6939 }
6940
71c0e7fc 6941 /* Process sysroot_suffix_spec. */
e7f13528
GP
6942 if (*sysroot_suffix_spec != 0
6943 && do_spec_2 (sysroot_suffix_spec) == 0)
6944 {
6945 if (argbuf_index > 1)
ab532386 6946 error ("spec failure: more than one arg to SYSROOT_SUFFIX_SPEC");
e7f13528
GP
6947 else if (argbuf_index == 1)
6948 target_sysroot_suffix = xstrdup (argbuf[argbuf_index -1]);
6949 }
6950
380e5ca4
MM
6951#ifdef HAVE_LD_SYSROOT
6952 /* Pass the --sysroot option to the linker, if it supports that. If
6953 there is a sysroot_suffix_spec, it has already been processed by
6954 this point, so target_system_root really is the system root we
6955 should be using. */
6956 if (target_system_root)
6957 {
6958 obstack_grow (&obstack, "%(sysroot_spec) ", strlen ("%(sysroot_spec) "));
6959 obstack_grow0 (&obstack, link_spec, strlen (link_spec));
7973fd2a 6960 set_spec ("link", XOBFINISH (&obstack, const char *));
380e5ca4
MM
6961 }
6962#endif
6963
71c0e7fc 6964 /* Process sysroot_hdrs_suffix_spec. */
e7f13528
GP
6965 if (*sysroot_hdrs_suffix_spec != 0
6966 && do_spec_2 (sysroot_hdrs_suffix_spec) == 0)
6967 {
6968 if (argbuf_index > 1)
ab532386 6969 error ("spec failure: more than one arg to SYSROOT_HEADERS_SUFFIX_SPEC");
e7f13528
GP
6970 else if (argbuf_index == 1)
6971 target_sysroot_hdrs_suffix = xstrdup (argbuf[argbuf_index -1]);
6972 }
6973
4977bab6
ZW
6974 /* Look for startfiles in the standard places. */
6975 if (*startfile_prefix_spec != 0
6976 && do_spec_2 (startfile_prefix_spec) == 0
6977 && do_spec_1 (" ", 0, NULL) == 0)
6978 {
6979 int ndx;
6980 for (ndx = 0; ndx < argbuf_index; ndx++)
6981 add_sysrooted_prefix (&startfile_prefixes, argbuf[ndx], "BINUTILS",
1a5d37a1 6982 PREFIX_PRIORITY_LAST, 0, 1);
4977bab6
ZW
6983 }
6984 /* We should eventually get rid of all these and stick to
6985 startfile_prefix_spec exclusively. */
6986 else if (*cross_compile == '0' || target_system_root)
6987 {
2296d164 6988 if (*md_startfile_prefix)
4977bab6 6989 add_sysrooted_prefix (&startfile_prefixes, md_startfile_prefix,
1a5d37a1 6990 "GCC", PREFIX_PRIORITY_LAST, 0, 1);
004fd4d5 6991
2296d164 6992 if (*md_startfile_prefix_1)
4977bab6 6993 add_sysrooted_prefix (&startfile_prefixes, md_startfile_prefix_1,
1a5d37a1 6994 "GCC", PREFIX_PRIORITY_LAST, 0, 1);
607a4f7d 6995
4dbc7773
ILT
6996 /* If standard_startfile_prefix is relative, base it on
6997 standard_exec_prefix. This lets us move the installed tree
6998 as a unit. If GCC_EXEC_PREFIX is defined, base
0d037580
DJ
6999 standard_startfile_prefix on that as well.
7000
7001 If the prefix is relative, only search it for native compilers;
7002 otherwise we will search a directory containing host libraries. */
3dce1408 7003 if (IS_ABSOLUTE_PATH (standard_startfile_prefix))
4977bab6
ZW
7004 add_sysrooted_prefix (&startfile_prefixes,
7005 standard_startfile_prefix, "BINUTILS",
1a5d37a1 7006 PREFIX_PRIORITY_LAST, 0, 1);
0d037580 7007 else if (*cross_compile == '0')
4dbc7773 7008 {
48ff801b 7009 add_prefix (&startfile_prefixes,
b8698a0f
L
7010 concat (gcc_exec_prefix
7011 ? gcc_exec_prefix : standard_exec_prefix,
7012 machine_suffix,
d4f2852f 7013 standard_startfile_prefix, NULL),
1a5d37a1 7014 NULL, PREFIX_PRIORITY_LAST, 0, 1);
9218435e 7015 }
4dbc7773 7016
f4c0a303
CD
7017 /* Sysrooted prefixes are relocated because target_system_root is
7018 also relocated by gcc_exec_prefix. */
656c7a3a
AL
7019 if (*standard_startfile_prefix_1)
7020 add_sysrooted_prefix (&startfile_prefixes,
7021 standard_startfile_prefix_1, "BINUTILS",
1a5d37a1 7022 PREFIX_PRIORITY_LAST, 0, 1);
656c7a3a
AL
7023 if (*standard_startfile_prefix_2)
7024 add_sysrooted_prefix (&startfile_prefixes,
7025 standard_startfile_prefix_2, "BINUTILS",
1a5d37a1 7026 PREFIX_PRIORITY_LAST, 0, 1);
004fd4d5 7027 }
343f59d9 7028
8607048d
TT
7029 /* Process any user specified specs in the order given on the command
7030 line. */
7031 for (uptr = user_specs_head; uptr; uptr = uptr->next)
7032 {
5bbcd587 7033 char *filename = find_a_file (&startfile_prefixes, uptr->filename,
00dcee0c 7034 R_OK, true);
8607048d
TT
7035 read_specs (filename ? filename : uptr->filename, FALSE);
7036 }
7037
e8601ecb
JW
7038 /* If we have a GCC_EXEC_PREFIX envvar, modify it for cpp's sake. */
7039 if (gcc_exec_prefix)
cb6edbcb
KG
7040 gcc_exec_prefix = concat (gcc_exec_prefix, spec_machine, dir_separator_str,
7041 spec_version, dir_separator_str, NULL);
004fd4d5 7042
ed1f651b
RS
7043 /* Now we have the specs.
7044 Set the `valid' bits for switches that match anything in any spec. */
7045
7046 validate_all_switches ();
7047
60103a34
DE
7048 /* Now that we have the switches and the specs, set
7049 the subdirectory based on the options. */
7050 set_multilib_dir ();
7051
d7f09764 7052 /* Set up to remember the pathname of gcc and any options
6afbc885 7053 needed for collect. We use argv[0] instead of progname because
d7f09764
DN
7054 we need the complete pathname. */
7055 obstack_init (&collect_obstack);
7056 obstack_grow (&collect_obstack, "COLLECT_GCC=", sizeof ("COLLECT_GCC=") - 1);
7057 obstack_grow (&collect_obstack, argv[0], strlen (argv[0]) + 1);
7058 xputenv (XOBFINISH (&collect_obstack, char *));
7059
7060 /* Set up to remember the pathname of the lto wrapper. */
7061
7062 lto_wrapper_spec = find_a_file (&exec_prefixes, "lto-wrapper", X_OK, false);
7063 if (lto_wrapper_spec)
7064 {
7065 obstack_init (&collect_obstack);
7066 obstack_grow (&collect_obstack, "COLLECT_LTO_WRAPPER=",
7067 sizeof ("COLLECT_LTO_WRAPPER=") - 1);
7068 obstack_grow (&collect_obstack, lto_wrapper_spec,
7069 strlen (lto_wrapper_spec) + 1);
7070 xputenv (XOBFINISH (&collect_obstack, char *));
7071 }
7072
ed1f651b
RS
7073 /* Warn about any switches that no pass was interested in. */
7074
d25a45d4 7075 for (i = 0; (int) i < n_switches; i++)
ab87f8c8 7076 if (! switches[i].validated)
9e637a26 7077 error ("unrecognized option '-%s'", switches[i].part1);
ed1f651b 7078
6a9e290e
RK
7079 /* Obey some of the options. */
7080
2628b9d3
DE
7081 if (print_search_dirs)
7082 {
f4c0a303
CD
7083 printf (_("install: %s%s\n"),
7084 gcc_exec_prefix ? gcc_exec_prefix : standard_exec_prefix,
7085 gcc_exec_prefix ? "" : machine_suffix);
00dcee0c
AM
7086 printf (_("programs: %s\n"),
7087 build_search_list (&exec_prefixes, "", false, false));
7088 printf (_("libraries: %s\n"),
7089 build_search_list (&startfile_prefixes, "", false, true));
9257393c 7090 return (0);
2628b9d3
DE
7091 }
7092
6a9e290e 7093 if (print_file_name)
2dcb563f 7094 {
6a9e290e 7095 printf ("%s\n", find_file (print_file_name));
9257393c 7096 return (0);
2dcb563f
RS
7097 }
7098
6a9e290e
RK
7099 if (print_prog_name)
7100 {
5bbcd587 7101 char *newname = find_a_file (&exec_prefixes, print_prog_name, X_OK, 0);
6a9e290e 7102 printf ("%s\n", (newname ? newname : print_prog_name));
9257393c 7103 return (0);
6a9e290e 7104 }
ed1f651b 7105
60103a34
DE
7106 if (print_multi_lib)
7107 {
7108 print_multilib_info ();
9257393c 7109 return (0);
60103a34
DE
7110 }
7111
7112 if (print_multi_directory)
7113 {
7114 if (multilib_dir == NULL)
7115 printf (".\n");
7116 else
7117 printf ("%s\n", multilib_dir);
9257393c 7118 return (0);
60103a34
DE
7119 }
7120
3def1397
VP
7121 if (print_sysroot)
7122 {
7123 if (target_system_root)
7124 {
7125 if (target_sysroot_suffix)
7126 printf ("%s%s\n", target_system_root, target_sysroot_suffix);
7127 else
7128 printf ("%s\n", target_system_root);
7129 }
7130 return (0);
7131 }
7132
5bbcd587
JJ
7133 if (print_multi_os_directory)
7134 {
7135 if (multilib_os_dir == NULL)
7136 printf (".\n");
7137 else
7138 printf ("%s\n", multilib_os_dir);
7139 return (0);
7140 }
7141
14da6073
JM
7142 if (print_sysroot_headers_suffix)
7143 {
7144 if (*sysroot_hdrs_suffix_spec)
7145 {
dc5bbad3
JM
7146 printf("%s\n", (target_sysroot_hdrs_suffix
7147 ? target_sysroot_hdrs_suffix
7148 : ""));
14da6073
JM
7149 return (0);
7150 }
7151 else
7152 /* The error status indicates that only one set of fixed
7153 headers should be built. */
2dec80c7 7154 fatal_error ("not configured with sysroot headers suffix");
14da6073
JM
7155 }
7156
b8468bc7
NC
7157 if (print_help_list)
7158 {
7159 display_help ();
7160
7161 if (! verbose_flag)
7162 {
5e4adfba 7163 printf (_("\nFor bug reporting instructions, please see:\n"));
a976603e 7164 printf ("%s.\n", bug_report_url);
9218435e 7165
9257393c 7166 return (0);
b8468bc7
NC
7167 }
7168
7169 /* We do not exit here. Instead we have created a fake input file
7170 called 'help-dummy' which needs to be compiled, and we pass this
033505fc
RW
7171 on the various sub-processes, along with the --help switch.
7172 Ensure their output appears after ours. */
7173 fputc ('\n', stdout);
7174 fflush (stdout);
b8468bc7 7175 }
9218435e 7176
41fd0f9b
RAE
7177 if (print_version)
7178 {
6afbc885 7179 printf (_("%s %s%s\n"), progname, pkgversion_string,
41fd0f9b 7180 version_string);
bd5c3aa5 7181 printf ("Copyright %s 2010 Free Software Foundation, Inc.\n",
41fd0f9b
RAE
7182 _("(C)"));
7183 fputs (_("This is free software; see the source for copying conditions. There is NO\n\
7184warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n"),
7185 stdout);
7186 if (! verbose_flag)
7187 return 0;
7188
7189 /* We do not exit here. We use the same mechanism of --help to print
7190 the version of the sub-processes. */
7191 fputc ('\n', stdout);
7192 fflush (stdout);
7193 }
7194
ed1f651b
RS
7195 if (verbose_flag)
7196 {
7ad9ff7a 7197 int n;
008355a6 7198 const char *thrmod;
7ad9ff7a 7199
2dec80c7
JM
7200 fnotice (stderr, "Target: %s\n", spec_machine);
7201 fnotice (stderr, "Configured with: %s\n", configuration_arguments);
f5fa9a5b 7202
008355a6
AO
7203#ifdef THREAD_MODEL_SPEC
7204 /* We could have defined THREAD_MODEL_SPEC to "%*" by default,
7205 but there's no point in doing all this processing just to get
7206 thread_model back. */
7207 obstack_init (&obstack);
7208 do_spec_1 (THREAD_MODEL_SPEC, 0, thread_model);
7209 obstack_1grow (&obstack, '\0');
7973fd2a 7210 thrmod = XOBFINISH (&obstack, const char *);
008355a6
AO
7211#else
7212 thrmod = thread_model;
7213#endif
7214
2dec80c7 7215 fnotice (stderr, "Thread model: %s\n", thrmod);
a6687d2b 7216
7ad9ff7a
DE
7217 /* compiler_version is truncated at the first space when initialized
7218 from version string, so truncate version_string at the first space
7219 before comparing. */
7220 for (n = 0; version_string[n]; n++)
7221 if (version_string[n] == ' ')
7222 break;
7223
7224 if (! strncmp (version_string, compiler_version, n)
7225 && compiler_version[n] == 0)
2dec80c7
JM
7226 fnotice (stderr, "gcc version %s %s\n", version_string,
7227 pkgversion_string);
9c4faac1 7228 else
2dec80c7
JM
7229 fnotice (stderr, "gcc driver version %s %sexecuting gcc version %s\n",
7230 version_string, pkgversion_string, compiler_version);
9c4faac1 7231
ed1f651b 7232 if (n_infiles == 0)
9257393c 7233 return (0);
ed1f651b
RS
7234 }
7235
a2a05b0a 7236 if (n_infiles == added_libraries)
2dec80c7 7237 fatal_error ("no input files");
ed1f651b
RS
7238
7239 /* Make a place to record the compiler output file names
7240 that correspond to the input files. */
7241
f271358e 7242 i = n_infiles;
e37cda9b 7243 i += lang_specific_extra_outfiles;
5ed6ace5 7244 outfiles = XCNEWVEC (const char *, i);
ed1f651b
RS
7245
7246 /* Record which files were specified explicitly as link input. */
7247
d900f77d 7248 explicit_link_files = XCNEWVEC (char, n_infiles);
ed1f651b 7249
0855eab7
CT
7250 if (combine_flag)
7251 combine_inputs = true;
7252 else
953ff289 7253 combine_inputs = false;
0855eab7
CT
7254
7255 for (i = 0; (int) i < n_infiles; i++)
d1bd0ded 7256 {
0855eab7 7257 const char *name = infiles[i].name;
7904f95f
EC
7258 struct compiler *compiler = lookup_compiler (name,
7259 strlen (name),
0855eab7 7260 infiles[i].language);
7904f95f 7261
0855eab7
CT
7262 if (compiler && !(compiler->combinable))
7263 combine_inputs = false;
7904f95f 7264
0855eab7
CT
7265 if (lang_n_infiles > 0 && compiler != input_file_compiler
7266 && infiles[i].language && infiles[i].language[0] != '*')
7267 infiles[i].incompiler = compiler;
7268 else if (compiler)
7269 {
7270 lang_n_infiles++;
7271 input_file_compiler = compiler;
7272 infiles[i].incompiler = compiler;
7273 }
7274 else
7275 {
7276 /* Since there is no compiler for this input file, assume it is a
9cf737f8 7277 linker file. */
0855eab7
CT
7278 explicit_link_files[i] = 1;
7279 infiles[i].incompiler = NULL;
7280 }
7281 infiles[i].compiled = false;
7282 infiles[i].preprocessed = false;
d1bd0ded 7283 }
953ff289 7284
de19a50e 7285 if (!combine_inputs && have_c && have_o && lang_n_infiles > 1)
2dec80c7 7286 fatal_error ("cannot specify -o with -c, -S or -E with multiple files");
7904f95f 7287
0855eab7
CT
7288 if (combine_flag && save_temps_flag)
7289 {
7290 bool save_combine_inputs = combine_inputs;
7291 /* Must do a separate pre-processing pass for C & Objective-C files, to
7292 obtain individual .i files. */
7293
7294 combine_inputs = false;
7295 for (i = 0; (int) i < n_infiles; i++)
7296 {
7297 int this_file_error = 0;
7904f95f 7298
0855eab7
CT
7299 input_file_number = i;
7300 set_input (infiles[i].name);
7301 if (infiles[i].incompiler
7302 && (infiles[i].incompiler)->needs_preprocessing)
7303 input_file_compiler = infiles[i].incompiler;
7304 else
7305 continue;
7306
7307 if (input_file_compiler)
7308 {
7309 if (input_file_compiler->spec[0] == '#')
7310 {
7311 error ("%s: %s compiler not installed on this system",
6afbc885 7312 gcc_input_filename, &input_file_compiler->spec[1]);
0855eab7
CT
7313 this_file_error = 1;
7314 }
7315 else
7316 {
7317 value = do_spec (input_file_compiler->spec);
7318 infiles[i].preprocessed = true;
3b5edfee 7319 if (!have_o_argbuf_index)
2dec80c7
JM
7320 fatal_error ("spec '%s' is invalid",
7321 input_file_compiler->spec);
3b5edfee
NS
7322 infiles[i].name = argbuf[have_o_argbuf_index];
7323 infiles[i].incompiler
7324 = lookup_compiler (infiles[i].name,
7325 strlen (infiles[i].name),
7326 infiles[i].language);
0855eab7
CT
7327
7328 if (value < 0)
b21292d0 7329 this_file_error = 1;
0855eab7
CT
7330 }
7331 }
7332
7333 if (this_file_error)
7334 {
7335 delete_failure_queue ();
6afbc885 7336 errorcount++;
b21292d0 7337 break;
0855eab7
CT
7338 }
7339 clear_failure_queue ();
7340 }
7341 combine_inputs = save_combine_inputs;
7342 }
7343
7344 for (i = 0; (int) i < n_infiles; i++)
ed1f651b 7345 {
ed1f651b
RS
7346 int this_file_error = 0;
7347
7348 /* Tell do_spec what to substitute for %i. */
7349
ed1f651b 7350 input_file_number = i;
512b62fb 7351 set_input (infiles[i].name);
ed1f651b 7352
0855eab7
CT
7353 if (infiles[i].compiled)
7354 continue;
7355
ed1f651b
RS
7356 /* Use the same thing in %o, unless cp->spec says otherwise. */
7357
6afbc885 7358 outfiles[i] = gcc_input_filename;
ed1f651b
RS
7359
7360 /* Figure out which compiler from the file's suffix. */
7361
d1bd0ded
GK
7362 if (! combine_inputs)
7363 input_file_compiler
7364 = lookup_compiler (infiles[i].name, input_filename_length,
7365 infiles[i].language);
0855eab7
CT
7366 else
7367 input_file_compiler = infiles[i].incompiler;
589005ff 7368
a9374841 7369 if (input_file_compiler)
ed1f651b
RS
7370 {
7371 /* Ok, we found an applicable compiler. Run its spec. */
ed1f651b 7372
a9374841 7373 if (input_file_compiler->spec[0] == '#')
d644be7b
ZW
7374 {
7375 error ("%s: %s compiler not installed on this system",
6afbc885 7376 gcc_input_filename, &input_file_compiler->spec[1]);
d644be7b
ZW
7377 this_file_error = 1;
7378 }
7379 else
7380 {
2153915d
AO
7381 if (compare_debug)
7382 {
7383 if (debug_check_temp_file[0])
7384 free (debug_check_temp_file[0]);
7385 debug_check_temp_file[0] = NULL;
7386
7387 if (debug_check_temp_file[1])
7388 free (debug_check_temp_file[1]);
7389 debug_check_temp_file[1] = NULL;
7390 }
7391
d644be7b 7392 value = do_spec (input_file_compiler->spec);
0855eab7 7393 infiles[i].compiled = true;
d644be7b 7394 if (value < 0)
b21292d0 7395 this_file_error = 1;
2153915d
AO
7396 else if (compare_debug && debug_check_temp_file[0])
7397 {
7398 if (verbose_flag)
2dec80c7 7399 inform (0, "recompiling with -fcompare-debug");
2153915d
AO
7400
7401 compare_debug = -compare_debug;
7402 n_switches = n_switches_debug_check[1];
7403 switches = switches_debug_check[1];
7404
7405 value = do_spec (input_file_compiler->spec);
7406
7407 compare_debug = -compare_debug;
7408 n_switches = n_switches_debug_check[0];
7409 switches = switches_debug_check[0];
7410
7411 if (value < 0)
7412 {
7413 error ("during -fcompare-debug recompilation");
7414 this_file_error = 1;
7415 }
7416
7417 gcc_assert (debug_check_temp_file[1]
7418 && strcmp (debug_check_temp_file[0],
7419 debug_check_temp_file[1]));
7420
7421 if (verbose_flag)
2dec80c7 7422 inform (0, "comparing final insns dumps");
2153915d
AO
7423
7424 if (compare_files (debug_check_temp_file))
7425 this_file_error = 1;
7426 }
7427
7428 if (compare_debug)
7429 {
7430 if (debug_check_temp_file[0])
7431 free (debug_check_temp_file[0]);
7432 debug_check_temp_file[0] = NULL;
7433
7434 if (debug_check_temp_file[1])
7435 free (debug_check_temp_file[1]);
7436 debug_check_temp_file[1] = NULL;
7437 }
d644be7b 7438 }
ed1f651b
RS
7439 }
7440
7441 /* If this file's name does not contain a recognized suffix,
7442 record it as explicit linker input. */
7443
7444 else
7445 explicit_link_files[i] = 1;
7446
7447 /* Clear the delete-on-failure queue, deleting the files in it
7448 if this compilation failed. */
7449
7450 if (this_file_error)
7451 {
7452 delete_failure_queue ();
6afbc885 7453 errorcount++;
ed1f651b
RS
7454 }
7455 /* If this compilation succeeded, don't delete those files later. */
7456 clear_failure_queue ();
7457 }
7458
817a8255
EC
7459 /* Reset the input file name to the first compile/object file name, for use
7460 with %b in LINK_SPEC. We use the first input file that we can find
7904f95f 7461 a compiler to compile it instead of using infiles.language since for
817a8255 7462 languages other than C we use aliases that we then lookup later. */
512b62fb 7463 if (n_infiles > 0)
817a8255
EC
7464 {
7465 int i;
7466
7467 for (i = 0; i < n_infiles ; i++)
9ef0b1bd 7468 if (infiles[i].language && infiles[i].language[0] != '*')
817a8255
EC
7469 {
7470 set_input (infiles[i].name);
7471 break;
7472 }
7473 }
512b62fb 7474
6afbc885 7475 if (!seen_error ())
15c5edb9
TT
7476 {
7477 /* Make sure INPUT_FILE_NUMBER points to first available open
7478 slot. */
7479 input_file_number = n_infiles;
7480 if (lang_specific_pre_link ())
6afbc885 7481 errorcount++;
15c5edb9 7482 }
f271358e 7483
17211ab5
GK
7484 /* Determine if there are any linker input files. */
7485 num_linker_inputs = 0;
7486 for (i = 0; (int) i < n_infiles; i++)
7487 if (explicit_link_files[i] || outfiles[i] != NULL)
7488 num_linker_inputs++;
7489
ed1f651b
RS
7490 /* Run ld to link all the compiler output files. */
7491
6afbc885 7492 if (num_linker_inputs > 0 && !seen_error () && print_subprocess_help < 2)
ed1f651b
RS
7493 {
7494 int tmp = execution_count;
da18ea94 7495 const char *fuse_linker_plugin = "fuse-linker-plugin";
b3865ca9 7496
9218435e 7497 /* We'll use ld if we can't find collect2. */
10da1131
BM
7498 if (! strcmp (linker_name_spec, "collect2"))
7499 {
00dcee0c 7500 char *s = find_a_file (&exec_prefixes, "collect2", X_OK, false);
10da1131
BM
7501 if (s == NULL)
7502 linker_name_spec = "ld";
7503 }
d7f09764 7504
da18ea94
RAE
7505 if (switch_matches (fuse_linker_plugin,
7506 fuse_linker_plugin + strlen (fuse_linker_plugin), 0))
d7f09764
DN
7507 {
7508 linker_plugin_file_spec = find_a_file (&exec_prefixes,
b3c35965 7509 "liblto_plugin.so", R_OK,
d7f09764
DN
7510 false);
7511 if (!linker_plugin_file_spec)
2dec80c7 7512 fatal_error ("-fuse-linker-plugin, but liblto_plugin.so not found");
d7f09764
DN
7513
7514 lto_libgcc_spec = find_a_file (&startfile_prefixes, "libgcc.a",
7515 R_OK, true);
7516 if (!lto_libgcc_spec)
2dec80c7 7517 fatal_error ("could not find libgcc.a");
d7f09764
DN
7518 }
7519 lto_gcc_spec = argv[0];
7520
b3865ca9
RS
7521 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
7522 for collect. */
00dcee0c
AM
7523 putenv_from_prefixes (&exec_prefixes, "COMPILER_PATH", false);
7524 putenv_from_prefixes (&startfile_prefixes, LIBRARY_PATH_ENV, true);
b3865ca9 7525
a0f87454
RS
7526 if (print_subprocess_help == 1)
7527 {
7528 printf (_("\nLinker options\n==============\n\n"));
7529 printf (_("Use \"-Wl,OPTION\" to pass \"OPTION\""
7530 " to the linker.\n\n"));
7531 fflush (stdout);
7532 }
ed1f651b
RS
7533 value = do_spec (link_command_spec);
7534 if (value < 0)
6afbc885 7535 errorcount = 1;
ed1f651b
RS
7536 linker_was_run = (tmp != execution_count);
7537 }
7538
ed1f651b
RS
7539 /* If options said don't run linker,
7540 complain about input files to be given to the linker. */
7541
6afbc885 7542 if (! linker_was_run && !seen_error ())
d25a45d4 7543 for (i = 0; (int) i < n_infiles; i++)
01e4dd0d
KH
7544 if (explicit_link_files[i]
7545 && !(infiles[i].language && infiles[i].language[0] == '*'))
2dec80c7
JM
7546 warning (0, "%s: linker input file unused because linking not done",
7547 outfiles[i]);
ed1f651b
RS
7548
7549 /* Delete some or all of the temporary files we made. */
7550
6afbc885 7551 if (seen_error ())
ed1f651b
RS
7552 delete_failure_queue ();
7553 delete_temp_files ();
7554
b8468bc7
NC
7555 if (print_help_list)
7556 {
5e4adfba 7557 printf (("\nFor bug reporting instructions, please see:\n"));
a976603e 7558 printf ("%s\n", bug_report_url);
b8468bc7 7559 }
9218435e 7560
14a774a9 7561 return (signal_count != 0 ? 2
6afbc885 7562 : seen_error () ? (pass_exit_codes ? greatest_status : 1)
14a774a9 7563 : 0);
ed1f651b
RS
7564}
7565
7566/* Find the proper compilation spec for the file name NAME,
004fd4d5 7567 whose length is LENGTH. LANGUAGE is the specified language,
e5e809f4 7568 or 0 if this file is to be passed to the linker. */
ed1f651b
RS
7569
7570static struct compiler *
1d088dee 7571lookup_compiler (const char *name, size_t length, const char *language)
ed1f651b
RS
7572{
7573 struct compiler *cp;
7574
3ac63d94 7575 /* If this was specified by the user to be a linker input, indicate that. */
e5e809f4
JL
7576 if (language != 0 && language[0] == '*')
7577 return 0;
7578
7579 /* Otherwise, look for the language, if one is spec'd. */
ed1f651b
RS
7580 if (language != 0)
7581 {
7582 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
e5e809f4
JL
7583 if (cp->suffix[0] == '@' && !strcmp (cp->suffix + 1, language))
7584 return cp;
7585
ed1f651b 7586 error ("language %s not recognized", language);
e5e809f4 7587 return 0;
ed1f651b
RS
7588 }
7589
7590 /* Look for a suffix. */
7591 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
7592 {
4cf3301c
RS
7593 if (/* The suffix `-' matches only the file name `-'. */
7594 (!strcmp (cp->suffix, "-") && !strcmp (name, "-"))
e5e809f4
JL
7595 || (strlen (cp->suffix) < length
7596 /* See if the suffix matches the end of NAME. */
e5e809f4
JL
7597 && !strcmp (cp->suffix,
7598 name + length - strlen (cp->suffix))
e5e809f4 7599 ))
589005ff 7600 break;
03bf1c28 7601 }
e5e809f4 7602
03bf1c28 7603#if defined (OS2) ||defined (HAVE_DOS_BASED_FILE_SYSTEM)
a1105617 7604 /* Look again, but case-insensitively this time. */
03bf1c28
MK
7605 if (cp < compilers)
7606 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
7607 {
7608 if (/* The suffix `-' matches only the file name `-'. */
7609 (!strcmp (cp->suffix, "-") && !strcmp (name, "-"))
7610 || (strlen (cp->suffix) < length
7611 /* See if the suffix matches the end of NAME. */
7612 && ((!strcmp (cp->suffix,
7613 name + length - strlen (cp->suffix))
7614 || !strpbrk (cp->suffix, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"))
7615 && !strcasecmp (cp->suffix,
7616 name + length - strlen (cp->suffix)))
7617 ))
7618 break;
7619 }
7620#endif
7621
03bf1c28
MK
7622 if (cp >= compilers)
7623 {
ea414c97
ZW
7624 if (cp->spec[0] != '@')
7625 /* A non-alias entry: return it. */
7626 return cp;
9218435e 7627
ea414c97
ZW
7628 /* An alias entry maps a suffix to a language.
7629 Search for the language; pass 0 for NAME and LENGTH
7630 to avoid infinite recursion if language not found. */
6496a589 7631 return lookup_compiler (NULL, 0, cp->spec + 1);
ed1f651b 7632 }
ed1f651b
RS
7633 return 0;
7634}
7635\f
ed1f651b 7636static char *
1d088dee 7637save_string (const char *s, int len)
ed1f651b 7638{
5ed6ace5 7639 char *result = XNEWVEC (char, len + 1);
ed1f651b 7640
da61dec9 7641 memcpy (result, s, len);
ed1f651b
RS
7642 result[len] = 0;
7643 return result;
7644}
7645
d991c721 7646void
1d088dee 7647pfatal_with_name (const char *name)
ed1f651b 7648{
ab87f8c8
JL
7649 perror_with_name (name);
7650 delete_temp_files ();
7651 exit (1);
ed1f651b
RS
7652}
7653
7654static void
1d088dee 7655perror_with_name (const char *name)
ed1f651b 7656{
ed35cf6e 7657 error ("%s: %s", name, xstrerror (errno));
ed1f651b 7658}
ed1f651b 7659\f
4977bab6 7660static inline void
1d088dee 7661validate_switches_from_spec (const char *spec)
4977bab6
ZW
7662{
7663 const char *p = spec;
7664 char c;
7665 while ((c = *p++))
7666 if (c == '%' && (*p == '{' || *p == '<' || (*p == 'W' && *++p == '{')))
7667 /* We have a switch spec. */
7668 p = validate_switches (p + 1);
7669}
7670
ed1f651b 7671static void
1d088dee 7672validate_all_switches (void)
ed1f651b
RS
7673{
7674 struct compiler *comp;
b3865ca9 7675 struct spec_list *spec;
ed1f651b 7676
ea414c97 7677 for (comp = compilers; comp->spec; comp++)
4977bab6 7678 validate_switches_from_spec (comp->spec);
ed1f651b 7679
3ac63d94 7680 /* Look through the linked list of specs read from the specs file. */
d25a45d4 7681 for (spec = specs; spec; spec = spec->next)
4977bab6 7682 validate_switches_from_spec (*spec->ptr_spec);
b3865ca9 7683
4977bab6 7684 validate_switches_from_spec (link_command_spec);
ed1f651b
RS
7685}
7686
7687/* Look at the switch-name that comes after START
7688 and mark as valid all supplied switches that match it. */
7689
4977bab6 7690static const char *
1d088dee 7691validate_switches (const char *start)
ed1f651b 7692{
b3694847 7693 const char *p = start;
4977bab6
ZW
7694 const char *atom;
7695 size_t len;
b3694847 7696 int i;
4977bab6
ZW
7697 bool suffix = false;
7698 bool starred = false;
1d088dee 7699
4977bab6 7700#define SKIP_WHITE() do { while (*p == ' ' || *p == '\t') p++; } while (0)
1d088dee 7701
10ebf5fe 7702next_member:
4977bab6
ZW
7703 SKIP_WHITE ();
7704
ed1f651b 7705 if (*p == '!')
4977bab6 7706 p++;
ed1f651b 7707
4977bab6 7708 SKIP_WHITE ();
48137d59 7709 if (*p == '.' || *p == ',')
4977bab6 7710 suffix = true, p++;
ed1f651b 7711
4977bab6
ZW
7712 atom = p;
7713 while (ISIDNUM (*p) || *p == '-' || *p == '+' || *p == '='
7a975113 7714 || *p == ',' || *p == '.' || *p == '@')
d25a45d4 7715 p++;
4977bab6 7716 len = p - atom;
ed1f651b 7717
4977bab6
ZW
7718 if (*p == '*')
7719 starred = true, p++;
7720
7721 SKIP_WHITE ();
7722
7723 if (!suffix)
ed1f651b
RS
7724 {
7725 /* Mark all matching switches as valid. */
ed1f651b 7726 for (i = 0; i < n_switches; i++)
4977bab6
ZW
7727 if (!strncmp (switches[i].part1, atom, len)
7728 && (starred || switches[i].part1[len] == 0))
ab87f8c8 7729 switches[i].validated = 1;
ed1f651b 7730 }
4977bab6 7731
5a0ba8c9
LJR
7732 if (*p) p++;
7733 if (*p && (p[-1] == '|' || p[-1] == '&'))
4977bab6
ZW
7734 goto next_member;
7735
5a0ba8c9 7736 if (*p && p[-1] == ':')
ed1f651b 7737 {
4977bab6 7738 while (*p && *p != ';' && *p != '}')
ed1f651b 7739 {
4977bab6
ZW
7740 if (*p == '%')
7741 {
7742 p++;
7743 if (*p == '{' || *p == '<')
7744 p = validate_switches (p+1);
7745 else if (p[0] == 'W' && p[1] == '{')
7746 p = validate_switches (p+2);
7747 }
e17aafd1
GK
7748 else
7749 p++;
ed1f651b 7750 }
4977bab6 7751
5a0ba8c9
LJR
7752 if (*p) p++;
7753 if (*p && p[-1] == ';')
4977bab6 7754 goto next_member;
ed1f651b 7755 }
10ebf5fe 7756
4977bab6
ZW
7757 return p;
7758#undef SKIP_WHITE
ed1f651b 7759}
60103a34 7760\f
5bbcd587
JJ
7761struct mdswitchstr
7762{
7763 const char *str;
7764 int len;
7765};
7766
7767static struct mdswitchstr *mdswitches;
7768static int n_mdswitches;
7769
961b7009 7770/* Check whether a particular argument was used. The first time we
956d6950 7771 canonicalize the switches to keep only the ones we care about. */
60103a34
DE
7772
7773static int
1d088dee 7774used_arg (const char *p, int len)
60103a34 7775{
3ac63d94
NC
7776 struct mswitchstr
7777 {
3b304f5b
ZW
7778 const char *str;
7779 const char *replace;
961b7009
MM
7780 int len;
7781 int rep_len;
7782 };
7783
7784 static struct mswitchstr *mswitches;
7785 static int n_mswitches;
7786 int i, j;
7787
7788 if (!mswitches)
7789 {
7790 struct mswitchstr *matches;
3b304f5b 7791 const char *q;
c8c2dcdc 7792 int cnt = 0;
961b7009 7793
d25a45d4
KH
7794 /* Break multilib_matches into the component strings of string
7795 and replacement string. */
1a0bdd29
RK
7796 for (q = multilib_matches; *q != '\0'; q++)
7797 if (*q == ';')
961b7009
MM
7798 cnt++;
7799
e1e4cdc4
KG
7800 matches
7801 = (struct mswitchstr *) alloca ((sizeof (struct mswitchstr)) * cnt);
961b7009
MM
7802 i = 0;
7803 q = multilib_matches;
7804 while (*q != '\0')
7805 {
7806 matches[i].str = q;
7807 while (*q != ' ')
7808 {
7809 if (*q == '\0')
3b5edfee
NS
7810 {
7811 invalid_matches:
2dec80c7
JM
7812 fatal_error ("multilib spec '%s' is invalid",
7813 multilib_matches);
3b5edfee 7814 }
961b7009
MM
7815 q++;
7816 }
961b7009 7817 matches[i].len = q - matches[i].str;
60103a34 7818
961b7009
MM
7819 matches[i].replace = ++q;
7820 while (*q != ';' && *q != '\0')
7821 {
7822 if (*q == ' ')
3b5edfee 7823 goto invalid_matches;
961b7009
MM
7824 q++;
7825 }
7826 matches[i].rep_len = q - matches[i].replace;
7827 i++;
83a0c799
ZW
7828 if (*q == ';')
7829 q++;
961b7009 7830 }
60103a34 7831
71591a1d
JW
7832 /* Now build a list of the replacement string for switches that we care
7833 about. Make sure we allocate at least one entry. This prevents
7834 xmalloc from calling fatal, and prevents us from re-executing this
7835 block of code. */
7836 mswitches
5ed6ace5 7837 = XNEWVEC (struct mswitchstr, n_mdswitches + (n_switches ? n_switches : 1));
961b7009 7838 for (i = 0; i < n_switches; i++)
3371362c 7839 if ((switches[i].live_cond & SWITCH_IGNORE) == 0)
f645e2bd
RS
7840 {
7841 int xlen = strlen (switches[i].part1);
7842 for (j = 0; j < cnt; j++)
7843 if (xlen == matches[j].len
7844 && ! strncmp (switches[i].part1, matches[j].str, xlen))
7845 {
7846 mswitches[n_mswitches].str = matches[j].replace;
7847 mswitches[n_mswitches].len = matches[j].rep_len;
7848 mswitches[n_mswitches].replace = (char *) 0;
7849 mswitches[n_mswitches].rep_len = 0;
7850 n_mswitches++;
7851 break;
7852 }
7853 }
5bbcd587
JJ
7854
7855 /* Add MULTILIB_DEFAULTS switches too, as long as they were not present
7856 on the command line nor any options mutually incompatible with
7857 them. */
7858 for (i = 0; i < n_mdswitches; i++)
7859 {
7860 const char *r;
7861
7862 for (q = multilib_options; *q != '\0'; q++)
7863 {
7864 while (*q == ' ')
7865 q++;
7866
7867 r = q;
7868 while (strncmp (q, mdswitches[i].str, mdswitches[i].len) != 0
7869 || strchr (" /", q[mdswitches[i].len]) == NULL)
7870 {
7871 while (*q != ' ' && *q != '/' && *q != '\0')
7872 q++;
7873 if (*q != '/')
7874 break;
7875 q++;
7876 }
7877
7878 if (*q != ' ' && *q != '\0')
7879 {
7880 while (*r != ' ' && *r != '\0')
7881 {
7882 q = r;
7883 while (*q != ' ' && *q != '/' && *q != '\0')
7884 q++;
7885
7886 if (used_arg (r, q - r))
7887 break;
7888
7889 if (*q != '/')
7890 {
7891 mswitches[n_mswitches].str = mdswitches[i].str;
7892 mswitches[n_mswitches].len = mdswitches[i].len;
7893 mswitches[n_mswitches].replace = (char *) 0;
7894 mswitches[n_mswitches].rep_len = 0;
7895 n_mswitches++;
7896 break;
7897 }
7898
7899 r = q + 1;
7900 }
7901 break;
7902 }
7903 }
7904 }
961b7009 7905 }
03c42484 7906
961b7009
MM
7907 for (i = 0; i < n_mswitches; i++)
7908 if (len == mswitches[i].len && ! strncmp (p, mswitches[i].str, len))
7909 return 1;
03c42484 7910
961b7009
MM
7911 return 0;
7912}
03c42484
RK
7913
7914static int
1d088dee 7915default_arg (const char *p, int len)
03c42484 7916{
5bbcd587 7917 int i;
e29ef920 7918
5bbcd587
JJ
7919 for (i = 0; i < n_mdswitches; i++)
7920 if (len == mdswitches[i].len && ! strncmp (p, mdswitches[i].str, len))
7921 return 1;
03c42484
RK
7922
7923 return 0;
7924}
7925
0a8d6618
BC
7926/* Work out the subdirectory to use based on the options. The format of
7927 multilib_select is a list of elements. Each element is a subdirectory
7928 name followed by a list of options followed by a semicolon. The format
7929 of multilib_exclusions is the same, but without the preceding
7930 directory. First gcc will check the exclusions, if none of the options
7931 beginning with an exclamation point are present, and all of the other
7932 options are present, then we will ignore this completely. Passing
7933 that, gcc will consider each multilib_select in turn using the same
7934 rules for matching the options. If a match is found, that subdirectory
7935 will be used. */
60103a34
DE
7936
7937static void
1d088dee 7938set_multilib_dir (void)
60103a34 7939{
3b304f5b 7940 const char *p;
3ac63d94 7941 unsigned int this_path_len;
3b304f5b 7942 const char *this_path, *this_arg;
5bbcd587 7943 const char *start, *end;
03c42484 7944 int not_arg;
5bbcd587
JJ
7945 int ok, ndfltok, first;
7946
7947 n_mdswitches = 0;
7948 start = multilib_defaults;
7949 while (*start == ' ' || *start == '\t')
7950 start++;
7951 while (*start != '\0')
7952 {
7953 n_mdswitches++;
7954 while (*start != ' ' && *start != '\t' && *start != '\0')
7955 start++;
7956 while (*start == ' ' || *start == '\t')
7957 start++;
7958 }
7959
7960 if (n_mdswitches)
7961 {
7962 int i = 0;
7963
5ed6ace5 7964 mdswitches = XNEWVEC (struct mdswitchstr, n_mdswitches);
5bbcd587
JJ
7965 for (start = multilib_defaults; *start != '\0'; start = end + 1)
7966 {
7967 while (*start == ' ' || *start == '\t')
7968 start++;
7969
7970 if (*start == '\0')
7971 break;
1d088dee 7972
5bbcd587
JJ
7973 for (end = start + 1;
7974 *end != ' ' && *end != '\t' && *end != '\0'; end++)
7975 ;
7976
7977 obstack_grow (&multilib_obstack, start, end - start);
7978 obstack_1grow (&multilib_obstack, 0);
7973fd2a 7979 mdswitches[i].str = XOBFINISH (&multilib_obstack, const char *);
5bbcd587
JJ
7980 mdswitches[i++].len = end - start;
7981
7982 if (*end == '\0')
7983 break;
7984 }
7985 }
60103a34 7986
0a8d6618
BC
7987 p = multilib_exclusions;
7988 while (*p != '\0')
7989 {
7990 /* Ignore newlines. */
7991 if (*p == '\n')
d25a45d4
KH
7992 {
7993 ++p;
7994 continue;
7995 }
0a8d6618
BC
7996
7997 /* Check the arguments. */
7998 ok = 1;
7999 while (*p != ';')
d25a45d4
KH
8000 {
8001 if (*p == '\0')
3b5edfee
NS
8002 {
8003 invalid_exclusions:
2dec80c7
JM
8004 fatal_error ("multilib exclusions '%s' is invalid",
8005 multilib_exclusions);
3b5edfee 8006 }
d25a45d4
KH
8007
8008 if (! ok)
8009 {
8010 ++p;
8011 continue;
8012 }
8013
8014 this_arg = p;
8015 while (*p != ' ' && *p != ';')
8016 {
8017 if (*p == '\0')
3b5edfee 8018 goto invalid_exclusions;
d25a45d4
KH
8019 ++p;
8020 }
8021
8022 if (*this_arg != '!')
8023 not_arg = 0;
8024 else
8025 {
8026 not_arg = 1;
8027 ++this_arg;
8028 }
9218435e 8029
0a8d6618
BC
8030 ok = used_arg (this_arg, p - this_arg);
8031 if (not_arg)
8032 ok = ! ok;
8033
d25a45d4
KH
8034 if (*p == ' ')
8035 ++p;
8036 }
0a8d6618
BC
8037
8038 if (ok)
3ac63d94 8039 return;
0a8d6618
BC
8040
8041 ++p;
8042 }
8043
5bbcd587 8044 first = 1;
0a8d6618 8045 p = multilib_select;
60103a34
DE
8046 while (*p != '\0')
8047 {
8048 /* Ignore newlines. */
8049 if (*p == '\n')
8050 {
8051 ++p;
8052 continue;
8053 }
8054
8055 /* Get the initial path. */
8056 this_path = p;
8057 while (*p != ' ')
8058 {
8059 if (*p == '\0')
3b5edfee
NS
8060 {
8061 invalid_select:
2dec80c7
JM
8062 fatal_error ("multilib select '%s' is invalid",
8063 multilib_select);
3b5edfee 8064 }
60103a34
DE
8065 ++p;
8066 }
8067 this_path_len = p - this_path;
8068
8069 /* Check the arguments. */
03c42484 8070 ok = 1;
5bbcd587 8071 ndfltok = 1;
60103a34
DE
8072 ++p;
8073 while (*p != ';')
8074 {
8075 if (*p == '\0')
3b5edfee 8076 goto invalid_select;
60103a34 8077
03c42484 8078 if (! ok)
60103a34
DE
8079 {
8080 ++p;
8081 continue;
8082 }
8083
8084 this_arg = p;
8085 while (*p != ' ' && *p != ';')
8086 {
8087 if (*p == '\0')
3b5edfee 8088 goto invalid_select;
60103a34
DE
8089 ++p;
8090 }
8091
03c42484
RK
8092 if (*this_arg != '!')
8093 not_arg = 0;
60103a34 8094 else
03c42484
RK
8095 {
8096 not_arg = 1;
8097 ++this_arg;
8098 }
8099
8100 /* If this is a default argument, we can just ignore it.
8101 This is true even if this_arg begins with '!'. Beginning
8102 with '!' does not mean that this argument is necessarily
8103 inappropriate for this library: it merely means that
8104 there is a more specific library which uses this
8105 argument. If this argument is a default, we need not
8106 consider that more specific library. */
5bbcd587
JJ
8107 ok = used_arg (this_arg, p - this_arg);
8108 if (not_arg)
8109 ok = ! ok;
8110
8111 if (! ok)
8112 ndfltok = 0;
8113
8114 if (default_arg (this_arg, p - this_arg))
8115 ok = 1;
60103a34
DE
8116
8117 if (*p == ' ')
8118 ++p;
8119 }
8120
5bbcd587 8121 if (ok && first)
60103a34
DE
8122 {
8123 if (this_path_len != 1
8124 || this_path[0] != '.')
8125 {
5ed6ace5 8126 char *new_multilib_dir = XNEWVEC (char, this_path_len + 1);
5bbcd587
JJ
8127 char *q;
8128
878f32c3
KG
8129 strncpy (new_multilib_dir, this_path, this_path_len);
8130 new_multilib_dir[this_path_len] = '\0';
5bbcd587
JJ
8131 q = strchr (new_multilib_dir, ':');
8132 if (q != NULL)
8133 *q = '\0';
878f32c3 8134 multilib_dir = new_multilib_dir;
60103a34 8135 }
5bbcd587
JJ
8136 first = 0;
8137 }
8138
8139 if (ndfltok)
8140 {
8141 const char *q = this_path, *end = this_path + this_path_len;
8142
8143 while (q < end && *q != ':')
8144 q++;
c49d2df6 8145 if (q < end)
5bbcd587 8146 {
5ed6ace5 8147 char *new_multilib_os_dir = XNEWVEC (char, end - q);
c49d2df6
JJ
8148 memcpy (new_multilib_os_dir, q + 1, end - q - 1);
8149 new_multilib_os_dir[end - q - 1] = '\0';
5bbcd587
JJ
8150 multilib_os_dir = new_multilib_os_dir;
8151 break;
8152 }
60103a34
DE
8153 }
8154
8155 ++p;
9218435e 8156 }
5bbcd587
JJ
8157
8158 if (multilib_dir == NULL && multilib_os_dir != NULL
8159 && strcmp (multilib_os_dir, ".") == 0)
8160 {
b1d5455a 8161 free (CONST_CAST (char *, multilib_os_dir));
5bbcd587
JJ
8162 multilib_os_dir = NULL;
8163 }
8164 else if (multilib_dir != NULL && multilib_os_dir == NULL)
8165 multilib_os_dir = multilib_dir;
60103a34
DE
8166}
8167
8168/* Print out the multiple library subdirectory selection
8169 information. This prints out a series of lines. Each line looks
8170 like SUBDIRECTORY;@OPTION@OPTION, with as many options as is
8171 required. Only the desired options are printed out, the negative
8172 matches. The options are print without a leading dash. There are
8173 no spaces to make it easy to use the information in the shell.
8174 Each subdirectory is printed only once. This assumes the ordering
0a8d6618
BC
8175 generated by the genmultilib script. Also, we leave out ones that match
8176 the exclusions. */
60103a34
DE
8177
8178static void
1d088dee 8179print_multilib_info (void)
60103a34 8180{
3b304f5b
ZW
8181 const char *p = multilib_select;
8182 const char *last_path = 0, *this_path;
03c42484 8183 int skip;
3ac63d94 8184 unsigned int last_path_len = 0;
60103a34
DE
8185
8186 while (*p != '\0')
8187 {
0a8d6618 8188 skip = 0;
60103a34
DE
8189 /* Ignore newlines. */
8190 if (*p == '\n')
8191 {
8192 ++p;
8193 continue;
8194 }
8195
8196 /* Get the initial path. */
8197 this_path = p;
8198 while (*p != ' ')
8199 {
8200 if (*p == '\0')
3b5edfee
NS
8201 {
8202 invalid_select:
2dec80c7 8203 fatal_error ("multilib select '%s' is invalid", multilib_select);
3b5edfee 8204 }
7904f95f 8205
60103a34
DE
8206 ++p;
8207 }
8208
c49d2df6
JJ
8209 /* When --disable-multilib was used but target defines
8210 MULTILIB_OSDIRNAMES, entries starting with .: are there just
8211 to find multilib_os_dir, so skip them from output. */
8212 if (this_path[0] == '.' && this_path[1] == ':')
8213 skip = 1;
8214
0a8d6618
BC
8215 /* Check for matches with the multilib_exclusions. We don't bother
8216 with the '!' in either list. If any of the exclusion rules match
8217 all of its options with the select rule, we skip it. */
d25a45d4
KH
8218 {
8219 const char *e = multilib_exclusions;
8220 const char *this_arg;
0a8d6618 8221
d25a45d4
KH
8222 while (*e != '\0')
8223 {
8224 int m = 1;
8225 /* Ignore newlines. */
8226 if (*e == '\n')
8227 {
8228 ++e;
8229 continue;
8230 }
0a8d6618 8231
d25a45d4
KH
8232 /* Check the arguments. */
8233 while (*e != ';')
8234 {
8235 const char *q;
8236 int mp = 0;
0a8d6618 8237
d25a45d4 8238 if (*e == '\0')
3b5edfee
NS
8239 {
8240 invalid_exclusion:
2dec80c7
JM
8241 fatal_error ("multilib exclusion '%s' is invalid",
8242 multilib_exclusions);
3b5edfee 8243 }
9218435e 8244
d25a45d4
KH
8245 if (! m)
8246 {
8247 ++e;
8248 continue;
8249 }
0a8d6618 8250
d25a45d4 8251 this_arg = e;
9218435e 8252
d25a45d4
KH
8253 while (*e != ' ' && *e != ';')
8254 {
8255 if (*e == '\0')
3b5edfee 8256 goto invalid_exclusion;
d25a45d4
KH
8257 ++e;
8258 }
0a8d6618 8259
d25a45d4
KH
8260 q = p + 1;
8261 while (*q != ';')
8262 {
8263 const char *arg;
8264 int len = e - this_arg;
0a8d6618 8265
d25a45d4 8266 if (*q == '\0')
3b5edfee 8267 goto invalid_select;
0a8d6618 8268
d25a45d4
KH
8269 arg = q;
8270
8271 while (*q != ' ' && *q != ';')
8272 {
8273 if (*q == '\0')
3b5edfee 8274 goto invalid_select;
0a8d6618 8275 ++q;
d25a45d4 8276 }
0a8d6618 8277
3b5edfee
NS
8278 if (! strncmp (arg, this_arg,
8279 (len < q - arg) ? q - arg : len)
8280 || default_arg (this_arg, e - this_arg))
d25a45d4
KH
8281 {
8282 mp = 1;
8283 break;
8284 }
0a8d6618 8285
d25a45d4
KH
8286 if (*q == ' ')
8287 ++q;
8288 }
9218435e 8289
d25a45d4
KH
8290 if (! mp)
8291 m = 0;
0a8d6618 8292
d25a45d4
KH
8293 if (*e == ' ')
8294 ++e;
8295 }
8296
8297 if (m)
8298 {
8299 skip = 1;
8300 break;
8301 }
8302
8303 if (*e != '\0')
8304 ++e;
8305 }
8306 }
0a8d6618
BC
8307
8308 if (! skip)
d25a45d4
KH
8309 {
8310 /* If this is a duplicate, skip it. */
3b5edfee
NS
8311 skip = (last_path != 0
8312 && (unsigned int) (p - this_path) == last_path_len
d25a45d4 8313 && ! strncmp (last_path, this_path, last_path_len));
60103a34 8314
d25a45d4
KH
8315 last_path = this_path;
8316 last_path_len = p - this_path;
0a8d6618 8317 }
60103a34 8318
03c42484
RK
8319 /* If this directory requires any default arguments, we can skip
8320 it. We will already have printed a directory identical to
8321 this one which does not require that default argument. */
8322 if (! skip)
8323 {
3b304f5b 8324 const char *q;
03c42484
RK
8325
8326 q = p + 1;
8327 while (*q != ';')
8328 {
3b304f5b 8329 const char *arg;
03c42484
RK
8330
8331 if (*q == '\0')
3b5edfee 8332 goto invalid_select;
03c42484
RK
8333
8334 if (*q == '!')
8335 arg = NULL;
8336 else
8337 arg = q;
8338
8339 while (*q != ' ' && *q != ';')
8340 {
8341 if (*q == '\0')
3b5edfee 8342 goto invalid_select;
03c42484
RK
8343 ++q;
8344 }
8345
8346 if (arg != NULL
8347 && default_arg (arg, q - arg))
8348 {
8349 skip = 1;
8350 break;
8351 }
8352
8353 if (*q == ' ')
8354 ++q;
8355 }
8356 }
8357
60103a34
DE
8358 if (! skip)
8359 {
3b304f5b 8360 const char *p1;
60103a34 8361
5bbcd587 8362 for (p1 = last_path; p1 < p && *p1 != ':'; p1++)
60103a34
DE
8363 putchar (*p1);
8364 putchar (';');
8365 }
8366
8367 ++p;
8368 while (*p != ';')
8369 {
8370 int use_arg;
8371
8372 if (*p == '\0')
3b5edfee 8373 goto invalid_select;
60103a34
DE
8374
8375 if (skip)
8376 {
8377 ++p;
8378 continue;
8379 }
8380
8381 use_arg = *p != '!';
8382
8383 if (use_arg)
8384 putchar ('@');
8385
8386 while (*p != ' ' && *p != ';')
8387 {
8388 if (*p == '\0')
3b5edfee 8389 goto invalid_select;
60103a34
DE
8390 if (use_arg)
8391 putchar (*p);
8392 ++p;
8393 }
8394
8395 if (*p == ' ')
8396 ++p;
8397 }
8398
8399 if (! skip)
961b7009 8400 {
3ac63d94 8401 /* If there are extra options, print them now. */
961b7009
MM
8402 if (multilib_extra && *multilib_extra)
8403 {
8404 int print_at = TRUE;
3b304f5b 8405 const char *q;
961b7009
MM
8406
8407 for (q = multilib_extra; *q != '\0'; q++)
8408 {
8409 if (*q == ' ')
8410 print_at = TRUE;
8411 else
8412 {
8413 if (print_at)
8414 putchar ('@');
8415 putchar (*q);
8416 print_at = FALSE;
8417 }
8418 }
8419 }
9218435e 8420
961b7009
MM
8421 putchar ('\n');
8422 }
60103a34
DE
8423
8424 ++p;
8425 }
8426}
f3226a90 8427\f
30d8946b
MM
8428/* getenv built-in spec function.
8429
8430 Returns the value of the environment variable given by its first
8431 argument, concatenated with the second argument. If the
8432 environment variable is not defined, a fatal error is issued. */
8433
8434static const char *
8435getenv_spec_function (int argc, const char **argv)
8436{
8437 char *value;
5557813a
NS
8438 char *result;
8439 char *ptr;
8440 size_t len;
30d8946b
MM
8441
8442 if (argc != 2)
8443 return NULL;
8444
8445 value = getenv (argv[0]);
8446 if (!value)
2dec80c7 8447 fatal_error ("environment variable \"%s\" not defined", argv[0]);
30d8946b 8448
5557813a 8449 /* We have to escape every character of the environment variable so
fa10beec
RW
8450 they are not interpreted as active spec characters. A
8451 particularly painful case is when we are reading a variable
5557813a
NS
8452 holding a windows path complete with \ separators. */
8453 len = strlen (value) * 2 + strlen (argv[1]) + 1;
e1e4cdc4 8454 result = XNEWVAR (char, len);
5557813a
NS
8455 for (ptr = result; *value; ptr += 2)
8456 {
8457 ptr[0] = '\\';
8458 ptr[1] = *value++;
8459 }
b8698a0f 8460
5557813a 8461 strcpy (ptr, argv[1]);
b8698a0f 8462
5557813a 8463 return result;
30d8946b
MM
8464}
8465
f3226a90
JT
8466/* if-exists built-in spec function.
8467
8468 Checks to see if the file specified by the absolute pathname in
8469 ARGS exists. Returns that pathname if found.
8470
8471 The usual use for this function is to check for a library file
8472 (whose name has been expanded with %s). */
8473
8474static const char *
1d088dee 8475if_exists_spec_function (int argc, const char **argv)
f3226a90
JT
8476{
8477 /* Must have only one argument. */
3dce1408 8478 if (argc == 1 && IS_ABSOLUTE_PATH (argv[0]) && ! access (argv[0], R_OK))
f3226a90
JT
8479 return argv[0];
8480
8481 return NULL;
8482}
152a5a9c
JT
8483
8484/* if-exists-else built-in spec function.
8485
8486 This is like if-exists, but takes an additional argument which
8487 is returned if the first argument does not exist. */
8488
8489static const char *
1d088dee 8490if_exists_else_spec_function (int argc, const char **argv)
152a5a9c
JT
8491{
8492 /* Must have exactly two arguments. */
8493 if (argc != 2)
8494 return NULL;
8495
3dce1408 8496 if (IS_ABSOLUTE_PATH (argv[0]) && ! access (argv[0], R_OK))
152a5a9c
JT
8497 return argv[0];
8498
8499 return argv[1];
8500}
3dd53121
AP
8501
8502/* replace-outfile built-in spec function.
ed5b9f96
GK
8503
8504 This looks for the first argument in the outfiles array's name and
8505 replaces it with the second argument. */
3dd53121
AP
8506
8507static const char *
8508replace_outfile_spec_function (int argc, const char **argv)
8509{
8510 int i;
8511 /* Must have exactly two arguments. */
8512 if (argc != 2)
8513 abort ();
7904f95f 8514
3dd53121
AP
8515 for (i = 0; i < n_infiles; i++)
8516 {
8517 if (outfiles[i] && !strcmp (outfiles[i], argv[0]))
8518 outfiles[i] = xstrdup (argv[1]);
8519 }
8520 return NULL;
8521}
8522
7904f95f 8523/* Given two version numbers, compares the two numbers.
ed5b9f96
GK
8524 A version number must match the regular expression
8525 ([1-9][0-9]*|0)(\.([1-9][0-9]*|0))*
8526*/
8527static int
8528compare_version_strings (const char *v1, const char *v2)
8529{
8530 int rresult;
8531 regex_t r;
7904f95f 8532
ed5b9f96
GK
8533 if (regcomp (&r, "^([1-9][0-9]*|0)(\\.([1-9][0-9]*|0))*$",
8534 REG_EXTENDED | REG_NOSUB) != 0)
8535 abort ();
8536 rresult = regexec (&r, v1, 0, NULL, 0);
8537 if (rresult == REG_NOMATCH)
2dec80c7 8538 fatal_error ("invalid version number `%s'", v1);
ed5b9f96
GK
8539 else if (rresult != 0)
8540 abort ();
8541 rresult = regexec (&r, v2, 0, NULL, 0);
8542 if (rresult == REG_NOMATCH)
2dec80c7 8543 fatal_error ("invalid version number `%s'", v2);
ed5b9f96
GK
8544 else if (rresult != 0)
8545 abort ();
8546
8547 return strverscmp (v1, v2);
8548}
8549
8550
8551/* version_compare built-in spec function.
8552
8553 This takes an argument of the following form:
8554
8555 <comparison-op> <arg1> [<arg2>] <switch> <result>
8556
8557 and produces "result" if the comparison evaluates to true,
8558 and nothing if it doesn't.
8559
8560 The supported <comparison-op> values are:
7904f95f 8561
ed5b9f96
GK
8562 >= true if switch is a later (or same) version than arg1
8563 !> opposite of >=
8564 < true if switch is an earlier version than arg1
8565 !< opposite of <
8566 >< true if switch is arg1 or later, and earlier than arg2
8567 <> true if switch is earlier than arg1 or is arg2 or later
8568
8569 If the switch is not present, the condition is false unless
8570 the first character of the <comparison-op> is '!'.
8571
8572 For example,
8573 %:version-compare(>= 10.3 mmacosx-version-min= -lmx)
8574 adds -lmx if -mmacosx-version-min=10.3.9 was passed. */
8575
8576static const char *
8577version_compare_spec_function (int argc, const char **argv)
8578{
8579 int comp1, comp2;
8580 size_t switch_len;
8581 const char *switch_value = NULL;
8582 int nargs = 1, i;
8583 bool result;
8584
8585 if (argc < 3)
2dec80c7 8586 fatal_error ("too few arguments to %%:version-compare");
ed5b9f96
GK
8587 if (argv[0][0] == '\0')
8588 abort ();
8589 if ((argv[0][1] == '<' || argv[0][1] == '>') && argv[0][0] != '!')
8590 nargs = 2;
8591 if (argc != nargs + 3)
2dec80c7 8592 fatal_error ("too many arguments to %%:version-compare");
ed5b9f96
GK
8593
8594 switch_len = strlen (argv[nargs + 1]);
8595 for (i = 0; i < n_switches; i++)
8596 if (!strncmp (switches[i].part1, argv[nargs + 1], switch_len)
8597 && check_live_switch (i, switch_len))
8598 switch_value = switches[i].part1 + switch_len;
8599
8600 if (switch_value == NULL)
8601 comp1 = comp2 = -1;
8602 else
8603 {
8604 comp1 = compare_version_strings (switch_value, argv[1]);
8605 if (nargs == 2)
8606 comp2 = compare_version_strings (switch_value, argv[2]);
8607 else
8608 comp2 = -1; /* This value unused. */
8609 }
8610
8611 switch (argv[0][0] << 8 | argv[0][1])
8612 {
8613 case '>' << 8 | '=':
8614 result = comp1 >= 0;
8615 break;
8616 case '!' << 8 | '<':
8617 result = comp1 >= 0 || switch_value == NULL;
8618 break;
8619 case '<' << 8:
8620 result = comp1 < 0;
8621 break;
8622 case '!' << 8 | '>':
8623 result = comp1 < 0 || switch_value == NULL;
8624 break;
8625 case '>' << 8 | '<':
8626 result = comp1 >= 0 && comp2 < 0;
8627 break;
8628 case '<' << 8 | '>':
8629 result = comp1 < 0 || comp2 >= 0;
8630 break;
7904f95f 8631
ed5b9f96 8632 default:
2dec80c7 8633 fatal_error ("unknown operator '%s' in %%:version-compare", argv[0]);
ed5b9f96
GK
8634 }
8635 if (! result)
8636 return NULL;
8637
8638 return argv[nargs + 2];
8639}
953ff289
DN
8640
8641/* %:include builtin spec function. This differs from %include in that it
8642 can be nested inside a spec, and thus be conditionalized. It takes
8643 one argument, the filename, and looks for it in the startfile path.
8644 The result is always NULL, i.e. an empty expansion. */
8645
8646static const char *
8647include_spec_function (int argc, const char **argv)
8648{
8649 char *file;
8650
8651 if (argc != 1)
8652 abort ();
8653
4d2b059d 8654 file = find_a_file (&startfile_prefixes, argv[0], R_OK, true);
953ff289
DN
8655 read_specs (file ? file : argv[0], FALSE);
8656
8657 return NULL;
8658}
a0f87454 8659
4adbd5dd
MK
8660/* %:find-file spec function. This function replace its argument by
8661 the file found thru find_file, that is the -print-file-name gcc
8662 program option. */
8663static const char *
8664find_file_spec_function (int argc, const char**argv)
8665{
8666 const char *file;
8667
8668 if (argc != 1)
8669 abort ();
8670
8671 file = find_file (argv[0]);
8672 return file;
8673}
8674
8675
a0f87454
RS
8676/* %:print-asm-header spec function. Print a banner to say that the
8677 following output is from the assembler. */
8678
8679static const char *
8680print_asm_header_spec_function (int arg ATTRIBUTE_UNUSED,
8681 const char **argv ATTRIBUTE_UNUSED)
8682{
4dad0aca 8683 printf (_("Assembler options\n=================\n\n"));
a0f87454
RS
8684 printf (_("Use \"-Wa,OPTION\" to pass \"OPTION\" to the assembler.\n\n"));
8685 fflush (stdout);
8686 return NULL;
8687}
2153915d 8688
b5b8b0ac
AO
8689/* Compute a timestamp to initialize flag_random_seed. */
8690
8691static unsigned
8692get_local_tick (void)
8693{
8694 unsigned ret = 0;
8695
8696 /* Get some more or less random data. */
8697#ifdef HAVE_GETTIMEOFDAY
8698 {
8699 struct timeval tv;
8700
8701 gettimeofday (&tv, NULL);
8702 ret = tv.tv_sec * 1000 + tv.tv_usec / 1000;
8703 }
8704#else
8705 {
8706 time_t now = time (NULL);
8707
8708 if (now != (time_t)-1)
8709 ret = (unsigned) now;
8710 }
8711#endif
8712
8713 return ret;
8714}
8715
2153915d
AO
8716/* %:compare-debug-dump-opt spec function. Save the last argument,
8717 expected to be the last -fdump-final-insns option, or generate a
8718 temporary. */
8719
8720static const char *
8721compare_debug_dump_opt_spec_function (int arg,
8722 const char **argv ATTRIBUTE_UNUSED)
8723{
8724 const char *ret;
8725 char *name;
8726 int which;
b5b8b0ac 8727 static char random_seed[HOST_BITS_PER_WIDE_INT / 4 + 3];
2153915d
AO
8728
8729 if (arg != 0)
2dec80c7 8730 fatal_error ("too many arguments to %%:compare-debug-dump-opt");
2153915d 8731
2153915d
AO
8732 do_spec_2 ("%{fdump-final-insns=*:%*}");
8733 do_spec_1 (" ", 0, NULL);
8734
b5b8b0ac 8735 if (argbuf_index > 0 && strcmp (argv[argbuf_index - 1], "."))
2153915d 8736 {
b5b8b0ac
AO
8737 if (!compare_debug)
8738 return NULL;
8739
2153915d
AO
8740 name = xstrdup (argv[argbuf_index - 1]);
8741 ret = NULL;
8742 }
8743 else
8744 {
b5b8b0ac
AO
8745 const char *ext = NULL;
8746
8747 if (argbuf_index > 0)
8748 {
8749 do_spec_2 ("%{o*:%*}%{!o:%{!S:%b%O}%{S:%b.s}}");
8750 ext = ".gkd";
8751 }
8752 else if (!compare_debug)
8753 return NULL;
8754 else
8755 do_spec_2 ("%g.gkd");
2153915d 8756
2153915d 8757 do_spec_1 (" ", 0, NULL);
2153915d
AO
8758
8759 gcc_assert (argbuf_index > 0);
8760
b5b8b0ac
AO
8761 name = concat (argbuf[argbuf_index - 1], ext, NULL);
8762
8763 ret = concat ("-fdump-final-insns=", name, NULL);
2153915d
AO
8764 }
8765
8766 which = compare_debug < 0;
8767 debug_check_temp_file[which] = name;
8768
b5b8b0ac
AO
8769 if (!which)
8770 {
8771 unsigned HOST_WIDE_INT value = get_local_tick () ^ getpid ();
8772
8773 sprintf (random_seed, HOST_WIDE_INT_PRINT_HEX, value);
8774 }
8775
8776 if (*random_seed)
8777 ret = concat ("%{!frandom-seed=*:-frandom-seed=", random_seed, "} ",
8778 ret, NULL);
8779
8780 if (which)
8781 *random_seed = 0;
2153915d
AO
8782
8783 return ret;
8784}
8785
8786static const char *debug_auxbase_opt;
8787
8788/* %:compare-debug-self-opt spec function. Expands to the options
8789 that are to be passed in the second compilation of
8790 compare-debug. */
8791
8792static const char *
8793compare_debug_self_opt_spec_function (int arg,
8794 const char **argv ATTRIBUTE_UNUSED)
8795{
8796 if (arg != 0)
2dec80c7 8797 fatal_error ("too many arguments to %%:compare-debug-self-opt");
2153915d
AO
8798
8799 if (compare_debug >= 0)
8800 return NULL;
8801
8802 do_spec_2 ("%{c|S:%{o*:%*}}");
8803 do_spec_1 (" ", 0, NULL);
8804
8805 if (argbuf_index > 0)
8806 debug_auxbase_opt = concat ("-auxbase-strip ",
8807 argbuf[argbuf_index - 1],
8808 NULL);
8809 else
8810 debug_auxbase_opt = NULL;
8811
8812 return concat ("\
8813%<o %<MD %<MMD %<MF* %<MG %<MP %<MQ* %<MT* \
8814%<fdump-final-insns=* -w -S -o %j \
8815%{!fcompare-debug-second:-fcompare-debug-second} \
8816", compare_debug_opt, NULL);
8817}
8818
8819/* %:compare-debug-auxbase-opt spec function. Expands to the auxbase
8820 options that are to be passed in the second compilation of
8821 compare-debug. It expects, as an argument, the basename of the
8822 current input file name, with the .gk suffix appended to it. */
8823
8824static const char *
8825compare_debug_auxbase_opt_spec_function (int arg,
8826 const char **argv)
8827{
8828 char *name;
8829 int len;
8830
8831 if (arg == 0)
2dec80c7 8832 fatal_error ("too few arguments to %%:compare-debug-auxbase-opt");
2153915d
AO
8833
8834 if (arg != 1)
2dec80c7 8835 fatal_error ("too many arguments to %%:compare-debug-auxbase-opt");
2153915d
AO
8836
8837 if (compare_debug >= 0)
8838 return NULL;
8839
8840 len = strlen (argv[0]);
8841 if (len < 3 || strcmp (argv[0] + len - 3, ".gk") != 0)
2dec80c7
JM
8842 fatal_error ("argument to %%:compare-debug-auxbase-opt "
8843 "does not end in .gk");
2153915d
AO
8844
8845 if (debug_auxbase_opt)
8846 return debug_auxbase_opt;
8847
8848#define OPT "-auxbase "
8849
8850 len -= 3;
8851 name = (char*) xmalloc (sizeof (OPT) + len);
8852 memcpy (name, OPT, sizeof (OPT) - 1);
8853 memcpy (name + sizeof (OPT) - 1, argv[0], len);
8854 name[sizeof (OPT) - 1 + len] = '\0';
8855
b5b8b0ac
AO
8856#undef OPT
8857
2153915d
AO
8858 return name;
8859}