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