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