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