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