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