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