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