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