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