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