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