]> gcc.gnu.org Git - gcc.git/blob - gcc/gcc.c
Merge in gcc2 snapshot 19980929. See gcc/ChangeLog and gcc/FSFChangeLog for
[gcc.git] / gcc / gcc.c
1 /* Compiler driver program that can handle many languages.
2 Copyright (C) 1987, 89, 92-98, 1999 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.
20
21 This paragraph is here to try to keep Sun CC from dying.
22 The number of chars here seems crucial!!!! */
23
24 /* This program is the user interface to the C compiler and possibly to
25 other compilers. It is used because compilation is a complicated procedure
26 which involves running several programs and passing temporary files between
27 them, forwarding the users switches to those programs selectively,
28 and deleting the temporary files at the end.
29
30 CC recognizes how to compile each input file by suffixes in the file names.
31 Once it knows which kind of compilation to perform, the procedure for
32 compilation is specified by a string called a "spec". */
33 \f
34 #include "config.h"
35 #include "system.h"
36 #include <signal.h>
37
38 #include "obstack.h"
39 #include "intl.h"
40 #include "prefix.h"
41
42 #ifdef VMS
43 #define exit __posix_exit
44 #endif
45
46 /* By default there is no special suffix for executables. */
47 #ifdef EXECUTABLE_SUFFIX
48 #define HAVE_EXECUTABLE_SUFFIX
49 #else
50 #define EXECUTABLE_SUFFIX ""
51 #endif
52
53 /* By default, the suffix for object files is ".o". */
54 #ifdef OBJECT_SUFFIX
55 #define HAVE_OBJECT_SUFFIX
56 #else
57 #define OBJECT_SUFFIX ".o"
58 #endif
59
60 /* By default, colon separates directories in a path. */
61 #ifndef PATH_SEPARATOR
62 #define PATH_SEPARATOR ':'
63 #endif
64
65 #ifndef DIR_SEPARATOR
66 #define DIR_SEPARATOR '/'
67 #endif
68
69 static char dir_separator_str[] = {DIR_SEPARATOR, 0};
70
71 #define obstack_chunk_alloc xmalloc
72 #define obstack_chunk_free free
73
74 #ifndef GET_ENV_PATH_LIST
75 #define GET_ENV_PATH_LIST(VAR,NAME) do { (VAR) = getenv (NAME); } while (0)
76 #endif
77
78 #ifndef HAVE_KILL
79 #define kill(p,s) raise(s)
80 #endif
81
82 /* If a stage of compilation returns an exit status >= 1,
83 compilation of that file ceases. */
84
85 #define MIN_FATAL_STATUS 1
86
87 /* Flag saying to print the directories gcc will search through looking for
88 programs, libraries, etc. */
89
90 static int print_search_dirs;
91
92 /* Flag saying to print the full filename of this file
93 as found through our usual search mechanism. */
94
95 static char *print_file_name = NULL;
96
97 /* As print_file_name, but search for executable file. */
98
99 static char *print_prog_name = NULL;
100
101 /* Flag saying to print the relative path we'd use to
102 find libgcc.a given the current compiler flags. */
103
104 static int print_multi_directory;
105
106 /* Flag saying to print the list of subdirectories and
107 compiler flags used to select them in a standard form. */
108
109 static int print_multi_lib;
110
111 /* Flag saying to print the command line options understood by gcc and its
112 sub-processes. */
113
114 static int print_help_list;
115
116 /* Flag indicating whether we should print the command and arguments */
117
118 static int verbose_flag;
119
120 /* Nonzero means write "temp" files in source directory
121 and use the source file's name in them, and don't delete them. */
122
123 static int save_temps_flag;
124
125 /* The compiler version. */
126
127 static char *compiler_version;
128
129 /* The target version specified with -V */
130
131 static char *spec_version = DEFAULT_TARGET_VERSION;
132
133 /* The target machine specified with -b. */
134
135 static char *spec_machine = DEFAULT_TARGET_MACHINE;
136
137 /* Nonzero if cross-compiling.
138 When -b is used, the value comes from the `specs' file. */
139
140 #ifdef CROSS_COMPILE
141 static char *cross_compile = "1";
142 #else
143 static char *cross_compile = "0";
144 #endif
145
146 /* The number of errors that have occurred; the link phase will not be
147 run if this is non-zero. */
148 static int error_count = 0;
149
150 /* This is the obstack which we use to allocate many strings. */
151
152 static struct obstack obstack;
153
154 /* This is the obstack to build an environment variable to pass to
155 collect2 that describes all of the relevant switches of what to
156 pass the compiler in building the list of pointers to constructors
157 and destructors. */
158
159 static struct obstack collect_obstack;
160
161 extern char *version_string;
162
163 /* Forward declaration for prototypes. */
164 struct path_prefix;
165
166 static void init_spec PROTO((void));
167 static void read_specs PROTO((char *, int));
168 static void set_spec PROTO((char *, char *));
169 static struct compiler *lookup_compiler PROTO((char *, size_t, char *));
170 static char *build_search_list PROTO((struct path_prefix *, char *, int));
171 static void putenv_from_prefixes PROTO((struct path_prefix *, char *));
172 static char *find_a_file PROTO((struct path_prefix *, char *, int));
173 static void add_prefix PROTO((struct path_prefix *, const char *,
174 const char *, int, int, int *));
175 static char *skip_whitespace PROTO((char *));
176 static void record_temp_file PROTO((char *, int, int));
177 static void delete_if_ordinary PROTO((char *));
178 static void delete_temp_files PROTO((void));
179 static void delete_failure_queue PROTO((void));
180 static void clear_failure_queue PROTO((void));
181 static int check_live_switch PROTO((int, int));
182 static char *handle_braces PROTO((char *));
183 static char *save_string PROTO((const char *, int));
184 extern int do_spec PROTO((char *));
185 static int do_spec_1 PROTO((char *, int, char *));
186 static char *find_file PROTO((char *));
187 static int is_directory PROTO((char *, char *, int));
188 static void validate_switches PROTO((char *));
189 static void validate_all_switches PROTO((void));
190 static void give_switch PROTO((int, int, int));
191 static int used_arg PROTO((char *, int));
192 static int default_arg PROTO((char *, int));
193 static void set_multilib_dir PROTO((void));
194 static void print_multilib_info PROTO((void));
195 static void pfatal_with_name PROTO((char *)) ATTRIBUTE_NORETURN;
196 static void perror_with_name PROTO((char *));
197 static void pfatal_pexecute PROTO((char *, char *)) ATTRIBUTE_NORETURN;
198 static void fatal PVPROTO((char *, ...)) ATTRIBUTE_NORETURN;
199 static void error PVPROTO((char *, ...));
200 static void fatal PVPROTO((char *, ...))
201 ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF_1;
202 static void error PVPROTO((char *, ...)) ATTRIBUTE_PRINTF_1;
203 static void notice PVPROTO((char *, ...));
204 static void display_help PROTO((void));
205
206 void fancy_abort PROTO((void)) ATTRIBUTE_NORETURN;
207
208 #ifdef LANG_SPECIFIC_DRIVER
209 /* Called before processing to change/add/remove arguments. */
210 extern void lang_specific_driver PROTO ((void (*) PVPROTO((char *, ...)), int *, char ***, int *));
211
212 /* Called before linking. Returns 0 on success and -1 on failure. */
213 extern int lang_specific_pre_link ();
214
215 /* Number of extra output files that lang_specific_pre_link may generate. */
216 extern int lang_specific_extra_outfiles;
217 #endif
218 \f
219 /* Specs are strings containing lines, each of which (if not blank)
220 is made up of a program name, and arguments separated by spaces.
221 The program name must be exact and start from root, since no path
222 is searched and it is unreliable to depend on the current working directory.
223 Redirection of input or output is not supported; the subprograms must
224 accept filenames saying what files to read and write.
225
226 In addition, the specs can contain %-sequences to substitute variable text
227 or for conditional text. Here is a table of all defined %-sequences.
228 Note that spaces are not generated automatically around the results of
229 expanding these sequences; therefore, you can concatenate them together
230 or with constant text in a single argument.
231
232 %% substitute one % into the program name or argument.
233 %i substitute the name of the input file being processed.
234 %b substitute the basename of the input file being processed.
235 This is the substring up to (and not including) the last period
236 and not including the directory.
237 %gSUFFIX
238 substitute a file name that has suffix SUFFIX and is chosen
239 once per compilation, and mark the argument a la %d. To reduce
240 exposure to denial-of-service attacks, the file name is now
241 chosen in a way that is hard to predict even when previously
242 chosen file names are known. For example, `%g.s ... %g.o ... %g.s'
243 might turn into `ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s'. SUFFIX matches
244 the regexp "[.A-Za-z]*" or the special string "%O", which is
245 treated exactly as if %O had been pre-processed. Previously, %g
246 was simply substituted with a file name chosen once per compilation,
247 without regard to any appended suffix (which was therefore treated
248 just like ordinary text), making such attacks more likely to succeed.
249 %uSUFFIX
250 like %g, but generates a new temporary file name even if %uSUFFIX
251 was already seen.
252 %USUFFIX
253 substitutes the last file name generated with %uSUFFIX, generating a
254 new one if there is no such last file name. In the absence of any
255 %uSUFFIX, this is just like %gSUFFIX, except they don't share
256 the same suffix "space", so `%g.s ... %U.s ... %g.s ... %U.s'
257 would involve the generation of two distinct file names, one
258 for each `%g.s' and another for each `%U.s'. Previously, %U was
259 simply substituted with a file name chosen for the previous %u,
260 without regard to any appended suffix.
261 %d marks the argument containing or following the %d as a
262 temporary file name, so that that file will be deleted if CC exits
263 successfully. Unlike %g, this contributes no text to the argument.
264 %w marks the argument containing or following the %w as the
265 "output file" of this compilation. This puts the argument
266 into the sequence of arguments that %o will substitute later.
267 %W{...}
268 like %{...} but mark last argument supplied within
269 as a file to be deleted on failure.
270 %o substitutes the names of all the output files, with spaces
271 automatically placed around them. You should write spaces
272 around the %o as well or the results are undefined.
273 %o is for use in the specs for running the linker.
274 Input files whose names have no recognized suffix are not compiled
275 at all, but they are included among the output files, so they will
276 be linked.
277 %O substitutes the suffix for object files. Note that this is
278 handled specially when it immediately follows %g, %u, or %U,
279 because of the need for those to form complete file names. The
280 handling is such that %O is treated exactly as if it had already
281 been substituted, except that %g, %u, and %U do not currently
282 support additional SUFFIX characters following %O as they would
283 following, for example, `.o'.
284 %p substitutes the standard macro predefinitions for the
285 current target machine. Use this when running cpp.
286 %P like %p, but puts `__' before and after the name of each macro.
287 (Except macros that already have __.)
288 This is for ANSI C.
289 %I Substitute a -iprefix option made from GCC_EXEC_PREFIX.
290 %s current argument is the name of a library or startup file of some sort.
291 Search for that file in a standard list of directories
292 and substitute the full name found.
293 %eSTR Print STR as an error message. STR is terminated by a newline.
294 Use this when inconsistent options are detected.
295 %x{OPTION} Accumulate an option for %X.
296 %X Output the accumulated linker options specified by compilations.
297 %Y Output the accumulated assembler options specified by compilations.
298 %Z Output the accumulated preprocessor options specified by compilations.
299 %v1 Substitute the major version number of GCC.
300 (For version 2.5.n, this is 2.)
301 %v2 Substitute the minor version number of GCC.
302 (For version 2.5.n, this is 5.)
303 %a process ASM_SPEC as a spec.
304 This allows config.h to specify part of the spec for running as.
305 %A process ASM_FINAL_SPEC as a spec. A capital A is actually
306 used here. This can be used to run a post-processor after the
307 assembler has done its job.
308 %D Dump out a -L option for each directory in startfile_prefixes.
309 If multilib_dir is set, extra entries are generated with it affixed.
310 %l process LINK_SPEC as a spec.
311 %L process LIB_SPEC as a spec.
312 %G process LIBGCC_SPEC as a spec.
313 %S process STARTFILE_SPEC as a spec. A capital S is actually used here.
314 %E process ENDFILE_SPEC as a spec. A capital E is actually used here.
315 %c process SIGNED_CHAR_SPEC as a spec.
316 %C process CPP_SPEC as a spec. A capital C is actually used here.
317 %1 process CC1_SPEC as a spec.
318 %2 process CC1PLUS_SPEC as a spec.
319 %| output "-" if the input for the current command is coming from a pipe.
320 %* substitute the variable part of a matched option. (See below.)
321 Note that each comma in the substituted string is replaced by
322 a single space.
323 %{S} substitutes the -S switch, if that switch was given to CC.
324 If that switch was not specified, this substitutes nothing.
325 Here S is a metasyntactic variable.
326 %{S*} substitutes all the switches specified to CC whose names start
327 with -S. This is used for -o, -D, -I, etc; switches that take
328 arguments. CC considers `-o foo' as being one switch whose
329 name starts with `o'. %{o*} would substitute this text,
330 including the space; thus, two arguments would be generated.
331 %{^S*} likewise, but don't put a blank between a switch and any args.
332 %{S*:X} substitutes X if one or more switches whose names start with -S are
333 specified to CC. Note that the tail part of the -S option
334 (i.e. the part matched by the `*') will be substituted for each
335 occurrence of %* within X.
336 %{S:X} substitutes X, but only if the -S switch was given to CC.
337 %{!S:X} substitutes X, but only if the -S switch was NOT given to CC.
338 %{|S:X} like %{S:X}, but if no S switch, substitute `-'.
339 %{|!S:X} like %{!S:X}, but if there is an S switch, substitute `-'.
340 %{.S:X} substitutes X, but only if processing a file with suffix S.
341 %{!.S:X} substitutes X, but only if NOT processing a file with suffix S.
342 %{S|P:X} substitutes X if either -S or -P was given to CC. This may be
343 combined with ! and . as above binding stronger than the OR.
344 %(Spec) processes a specification defined in a specs file as *Spec:
345 %[Spec] as above, but put __ around -D arguments
346
347 The conditional text X in a %{S:X} or %{!S:X} construct may contain
348 other nested % constructs or spaces, or even newlines. They are
349 processed as usual, as described above.
350
351 The -O, -f, -m, and -W switches are handled specifically in these
352 constructs. If another value of -O or the negated form of a -f, -m, or
353 -W switch is found later in the command line, the earlier switch
354 value is ignored, except with {S*} where S is just one letter; this
355 passes all matching options.
356
357 The character | at the beginning of the predicate text is used to indicate
358 that a command should be piped to the following command, but only if -pipe
359 is specified.
360
361 Note that it is built into CC which switches take arguments and which
362 do not. You might think it would be useful to generalize this to
363 allow each compiler's spec to say which switches take arguments. But
364 this cannot be done in a consistent fashion. CC cannot even decide
365 which input files have been specified without knowing which switches
366 take arguments, and it must know which input files to compile in order
367 to tell which compilers to run.
368
369 CC also knows implicitly that arguments starting in `-l' are to be
370 treated as compiler output files, and passed to the linker in their
371 proper position among the other output files. */
372 \f
373 /* Define the macros used for specs %a, %l, %L, %S, %c, %C, %1. */
374
375 /* config.h can define ASM_SPEC to provide extra args to the assembler
376 or extra switch-translations. */
377 #ifndef ASM_SPEC
378 #define ASM_SPEC ""
379 #endif
380
381 /* config.h can define ASM_FINAL_SPEC to run a post processor after
382 the assembler has run. */
383 #ifndef ASM_FINAL_SPEC
384 #define ASM_FINAL_SPEC ""
385 #endif
386
387 /* config.h can define CPP_SPEC to provide extra args to the C preprocessor
388 or extra switch-translations. */
389 #ifndef CPP_SPEC
390 #define CPP_SPEC ""
391 #endif
392
393 /* config.h can define CC1_SPEC to provide extra args to cc1 and cc1plus
394 or extra switch-translations. */
395 #ifndef CC1_SPEC
396 #define CC1_SPEC ""
397 #endif
398
399 /* config.h can define CC1PLUS_SPEC to provide extra args to cc1plus
400 or extra switch-translations. */
401 #ifndef CC1PLUS_SPEC
402 #define CC1PLUS_SPEC ""
403 #endif
404
405 /* config.h can define LINK_SPEC to provide extra args to the linker
406 or extra switch-translations. */
407 #ifndef LINK_SPEC
408 #define LINK_SPEC ""
409 #endif
410
411 /* config.h can define LIB_SPEC to override the default libraries. */
412 #ifndef LIB_SPEC
413 #define LIB_SPEC "%{!shared:%{g*:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}}"
414 #endif
415
416 /* config.h can define LIBGCC_SPEC to override how and when libgcc.a is
417 included. */
418 #ifndef LIBGCC_SPEC
419 #if defined(LINK_LIBGCC_SPECIAL) || defined(LINK_LIBGCC_SPECIAL_1)
420 /* Have gcc do the search for libgcc.a. */
421 #define LIBGCC_SPEC "libgcc.a%s"
422 #else
423 #define LIBGCC_SPEC "-lgcc"
424 #endif
425 #endif
426
427 /* config.h can define STARTFILE_SPEC to override the default crt0 files. */
428 #ifndef STARTFILE_SPEC
429 #define STARTFILE_SPEC \
430 "%{!shared:%{pg:gcrt0%O%s}%{!pg:%{p:mcrt0%O%s}%{!p:crt0%O%s}}}"
431 #endif
432
433 /* config.h can define SWITCHES_NEED_SPACES to control which options
434 require spaces between the option and the argument. */
435 #ifndef SWITCHES_NEED_SPACES
436 #define SWITCHES_NEED_SPACES ""
437 #endif
438
439 /* config.h can define ENDFILE_SPEC to override the default crtn files. */
440 #ifndef ENDFILE_SPEC
441 #define ENDFILE_SPEC ""
442 #endif
443
444 /* This spec is used for telling cpp whether char is signed or not. */
445 #ifndef SIGNED_CHAR_SPEC
446 /* Use #if rather than ?:
447 because MIPS C compiler rejects like ?: in initializers. */
448 #if DEFAULT_SIGNED_CHAR
449 #define SIGNED_CHAR_SPEC "%{funsigned-char:-D__CHAR_UNSIGNED__}"
450 #else
451 #define SIGNED_CHAR_SPEC "%{!fsigned-char:-D__CHAR_UNSIGNED__}"
452 #endif
453 #endif
454
455 #ifndef LINKER_NAME
456 #define LINKER_NAME "collect2"
457 #endif
458
459 static char *cpp_spec = CPP_SPEC;
460 static char *cpp_predefines = CPP_PREDEFINES;
461 static char *cc1_spec = CC1_SPEC;
462 static char *cc1plus_spec = CC1PLUS_SPEC;
463 static char *signed_char_spec = SIGNED_CHAR_SPEC;
464 static char *asm_spec = ASM_SPEC;
465 static char *asm_final_spec = ASM_FINAL_SPEC;
466 static char *link_spec = LINK_SPEC;
467 static char *lib_spec = LIB_SPEC;
468 static char *libgcc_spec = LIBGCC_SPEC;
469 static char *endfile_spec = ENDFILE_SPEC;
470 static char *startfile_spec = STARTFILE_SPEC;
471 static char *switches_need_spaces = SWITCHES_NEED_SPACES;
472 static char *linker_name_spec = LINKER_NAME;
473
474 /* Some compilers have limits on line lengths, and the multilib_select
475 and/or multilib_matches strings can be very long, so we build them at
476 run time. */
477 static struct obstack multilib_obstack;
478 static char *multilib_select;
479 static char *multilib_matches;
480 static char *multilib_defaults;
481 #include "multilib.h"
482
483 /* Check whether a particular argument is a default argument. */
484
485 #ifndef MULTILIB_DEFAULTS
486 #define MULTILIB_DEFAULTS { "" }
487 #endif
488
489 static char *multilib_defaults_raw[] = MULTILIB_DEFAULTS;
490
491 struct user_specs {
492 struct user_specs *next;
493 char *filename;
494 };
495
496 static struct user_specs *user_specs_head, *user_specs_tail;
497
498 /* This defines which switch letters take arguments. */
499
500 #define DEFAULT_SWITCH_TAKES_ARG(CHAR) \
501 ((CHAR) == 'D' || (CHAR) == 'U' || (CHAR) == 'o' \
502 || (CHAR) == 'e' || (CHAR) == 'T' || (CHAR) == 'u' \
503 || (CHAR) == 'I' || (CHAR) == 'm' || (CHAR) == 'x' \
504 || (CHAR) == 'L' || (CHAR) == 'A' || (CHAR) == 'V' \
505 || (CHAR) == 'B' || (CHAR) == 'b')
506
507 #ifndef SWITCH_TAKES_ARG
508 #define SWITCH_TAKES_ARG(CHAR) DEFAULT_SWITCH_TAKES_ARG(CHAR)
509 #endif
510
511 /* This defines which multi-letter switches take arguments. */
512
513 #define DEFAULT_WORD_SWITCH_TAKES_ARG(STR) \
514 (!strcmp (STR, "Tdata") || !strcmp (STR, "Ttext") \
515 || !strcmp (STR, "Tbss") || !strcmp (STR, "include") \
516 || !strcmp (STR, "imacros") || !strcmp (STR, "aux-info") \
517 || !strcmp (STR, "idirafter") || !strcmp (STR, "iprefix") \
518 || !strcmp (STR, "iwithprefix") || !strcmp (STR, "iwithprefixbefore") \
519 || !strcmp (STR, "isystem") || !strcmp (STR, "specs"))
520
521 #ifndef WORD_SWITCH_TAKES_ARG
522 #define WORD_SWITCH_TAKES_ARG(STR) DEFAULT_WORD_SWITCH_TAKES_ARG (STR)
523 #endif
524 \f
525
526 #ifdef HAVE_EXECUTABLE_SUFFIX
527 /* This defines which switches stop a full compilation. */
528 #define DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR) \
529 ((CHAR) == 'c' || (CHAR) == 'S')
530
531 #ifndef SWITCH_CURTAILS_COMPILATION
532 #define SWITCH_CURTAILS_COMPILATION(CHAR) \
533 DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR)
534 #endif
535 #endif
536
537 /* Record the mapping from file suffixes for compilation specs. */
538
539 struct compiler
540 {
541 char *suffix; /* Use this compiler for input files
542 whose names end in this suffix. */
543
544 char *spec[4]; /* To use this compiler, concatenate these
545 specs and pass to do_spec. */
546 };
547
548 /* Pointer to a vector of `struct compiler' that gives the spec for
549 compiling a file, based on its suffix.
550 A file that does not end in any of these suffixes will be passed
551 unchanged to the loader and nothing else will be done to it.
552
553 An entry containing two 0s is used to terminate the vector.
554
555 If multiple entries match a file, the last matching one is used. */
556
557 static struct compiler *compilers;
558
559 /* Number of entries in `compilers', not counting the null terminator. */
560
561 static int n_compilers;
562
563 /* The default list of file name suffixes and their compilation specs. */
564
565 static struct compiler default_compilers[] =
566 {
567 /* Add lists of suffixes of known languages here. If those languages
568 were not present when we built the driver, we will hit these copies
569 and be given a more meaningful error than "file not used since
570 linking is not done". */
571 {".m", {"#Objective-C"}},
572 {".cc", {"#C++"}}, {".cxx", {"#C++"}}, {".cpp", {"#C++"}},
573 {".c++", {"#C++"}}, {".C", {"#C++"}},
574 {".ads", {"#Ada"}}, {".adb", {"#Ada"}}, {".ada", {"#Ada"}},
575 {".f", {"#Fortran"}}, {".for", {"#Fortran"}}, {".F", {"#Fortran"}},
576 {".fpp", {"#Fortran"}},
577 {".p", {"#Pascal"}}, {".pas", {"#Pascal"}},
578 /* Next come the entries for C. */
579 {".c", {"@c"}},
580 {"@c",
581 {
582 #if USE_CPPLIB
583 "%{E|M|MM:cpp -lang-c %{ansi:-std=c89} %{std*} %{nostdinc*}\
584 %{C} %{v} %{A*} %{I*} %{P} %I\
585 %{C:%{!E:%eGNU C does not support -C without using -E}}\
586 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG}\
587 -undef -D__GNUC__=%v1 -D__GNUC_MINOR__=%v2\
588 %{ansi|std=*:%{!std=gnu*:-trigraphs -D__STRICT_ANSI__}}\
589 %{!undef:%{!ansi:%{!std=*:%p}%{std=gnu*:%p}} %P} %{trigraphs}\
590 %c %{Os:-D__OPTIMIZE_SIZE__} %{O*:%{!O0:-D__OPTIMIZE__}}\
591 %{traditional} %{ftraditional:-traditional}\
592 %{traditional-cpp:-traditional}\
593 %{fleading-underscore} %{fno-leading-underscore}\
594 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
595 %i %{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}}\n}\
596 %{!E:%{!M:%{!MM:cc1 %i %1 \
597 %{std*} %{nostdinc*} %{A*} %{I*} %I\
598 %{!Q:-quiet} -dumpbase %b.c %{d*} %{m*} %{a*}\
599 %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG}\
600 -undef -D__GNUC__=%v1 -D__GNUC_MINOR__=%v2\
601 %{ansi|std=*:%{!std=gnu*:-trigraphs -D__STRICT_ANSI__}}\
602 %{!undef:%{!ansi:%{!std=*:%p}%{std=gnu*:%p}} %P} %{trigraphs}\
603 %c %{Os:-D__OPTIMIZE_SIZE__} %{O*:%{!O0:-D__OPTIMIZE__}}\
604 %{H} %C %{D*} %{U*} %{i*} %Z\
605 %{ftraditional:-traditional}\
606 %{traditional-cpp:-traditional}\
607 %{traditional} %{v:-version} %{pg:-p} %{p} %{f*}\
608 %{aux-info*}\
609 %{--help:--help}\
610 %{g*} %{O*} %{W*} %{w} %{pedantic*}\
611 %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
612 %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
613 %{!S:as %a %Y\
614 %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\
615 %{!pipe:%g.s} %A\n }}}}"
616 }},
617 #else /* ! USE_CPPLIB */
618 "cpp -lang-c %{ansi:-std=c89} %{std*} %{nostdinc*}\
619 %{C} %{v} %{A*} %{I*} %{P} %I\
620 %{C:%{!E:%eGNU C does not support -C without using -E}}\
621 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG}\
622 -undef -D__GNUC__=%v1 -D__GNUC_MINOR__=%v2\
623 %{ansi|std=*:%{!std=gnu*:-trigraphs -D__STRICT_ANSI__}}\
624 %{!undef:%{!ansi:%{!std=*:%p}%{std=gnu*:%p}} %P} %{trigraphs}\
625 %c %{Os:-D__OPTIMIZE_SIZE__} %{O*:%{!O0:-D__OPTIMIZE__}}\
626 %{traditional} %{ftraditional:-traditional}\
627 %{traditional-cpp:-traditional}\
628 %{fleading-underscore} %{fno-leading-underscore}\
629 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
630 %i %{!M:%{!MM:%{!E:%{!pipe:%g.i}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n",
631 "%{!M:%{!MM:%{!E:cc1 %{!pipe:%g.i} %1 \
632 %{!Q:-quiet} -dumpbase %b.c %{d*} %{m*} %{a*}\
633 %{g*} %{O*} %{W*} %{w} %{pedantic*} %{std*}\
634 %{traditional} %{v:-version} %{pg:-p} %{p} %{f*}\
635 %{aux-info*}\
636 %{--help:--help} \
637 %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
638 %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
639 %{!S:as %a %Y\
640 %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\
641 %{!pipe:%g.s} %A\n }}}}"
642 }},
643 #endif /* ! USE_CPPLIB */
644 {"-",
645 {"%{E:cpp -lang-c %{ansi:-std=c89} %{std*} %{nostdinc*}\
646 %{C} %{v} %{A*} %{I*} %{P} %I\
647 %{C:%{!E:%eGNU C does not support -C without using -E}}\
648 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG}\
649 -undef -D__GNUC__=%v1 -D__GNUC_MINOR__=%v2\
650 %{ansi|std=*:%{!std=gnu*:-trigraphs -D__STRICT_ANSI__}}\
651 %{!undef:%{!ansi:%{!std=*:%p}%{std=gnu*:%p}} %P} %{trigraphs}\
652 %c %{Os:-D__OPTIMIZE_SIZE__} %{O*:%{!O0:-D__OPTIMIZE__}}\
653 %{traditional} %{ftraditional:-traditional}\
654 %{traditional-cpp:-traditional}\
655 %{fleading-underscore} %{fno-leading-underscore}\
656 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
657 %i %W{o*}}\
658 %{!E:%e-E required when input is from standard input}"}},
659 {".h", {"@c-header"}},
660 {"@c-header",
661 {"%{!E:%eCompilation of header file requested} \
662 cpp %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\
663 %{C:%{!E:%eGNU C does not support -C without using -E}}\
664 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG}\
665 -undef -D__GNUC__=%v1 -D__GNUC_MINOR__=%v2\
666 %{std=*:%{!std=gnu*:-trigraphs -D__STRICT_ANSI__}}\
667 %{!undef:%{!std=*:%p}%{std=gnu*:%p} %P} %{trigraphs}\
668 %c %{Os:-D__OPTIMIZE_SIZE__} %{O*:%{!O0:-D__OPTIMIZE__}}\
669 %{traditional} %{ftraditional:-traditional}\
670 %{traditional-cpp:-traditional}\
671 %{fleading-underscore} %{fno-leading-underscore}\
672 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
673 %i %W{o*}"}},
674 {".i", {"@cpp-output"}},
675 {"@cpp-output",
676 {"%{!M:%{!MM:%{!E:cc1 %i %1 %{!Q:-quiet} %{d*} %{m*} %{a*}\
677 %{g*} %{O*} %{W*} %{w} %{pedantic*} %{std*}\
678 %{traditional} %{v:-version} %{pg:-p} %{p} %{f*}\
679 %{aux-info*}\
680 %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
681 %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
682 %{!S:as %a %Y\
683 %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\
684 %{!pipe:%g.s} %A\n }}}}"}},
685 {".s", {"@assembler"}},
686 {"@assembler",
687 {"%{!M:%{!MM:%{!E:%{!S:as %a %Y\
688 %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\
689 %i %A\n }}}}"}},
690 {".S", {"@assembler-with-cpp"}},
691 {"@assembler-with-cpp",
692 {"cpp -lang-asm %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\
693 %{C:%{!E:%eGNU C does not support -C without using -E}}\
694 %{M} %{MM} %{MD:-MD %b.d} %{MMD:-MMD %b.d} %{MG} %{trigraphs}\
695 -undef -$ %{!undef:%p %P} -D__ASSEMBLER__ \
696 %c %{Os:-D__OPTIMIZE_SIZE__} %{O*:%{!O0:-D__OPTIMIZE__}}\
697 %{traditional} %{ftraditional:-traditional}\
698 %{traditional-cpp:-traditional}\
699 %{fleading-underscore} %{fno-leading-underscore}\
700 %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\
701 %i %{!M:%{!MM:%{!E:%{!pipe:%g.s}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n",
702 "%{!M:%{!MM:%{!E:%{!S:as %a %Y\
703 %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\
704 %{!pipe:%g.s} %A\n }}}}"}},
705 #include "specs.h"
706 /* Mark end of table */
707 {0, {0}}
708 };
709
710 /* Number of elements in default_compilers, not counting the terminator. */
711
712 static int n_default_compilers
713 = (sizeof default_compilers / sizeof (struct compiler)) - 1;
714
715 /* Here is the spec for running the linker, after compiling all files. */
716
717 /* -u* was put back because both BSD and SysV seem to support it. */
718 /* %{static:} simply prevents an error message if the target machine
719 doesn't handle -static. */
720 /* We want %{T*} after %{L*} and %D so that it can be used to specify linker
721 scripts which exist in user specified directories, or in standard
722 directories. */
723 #ifdef LINK_COMMAND_SPEC
724 /* Provide option to override link_command_spec from machine specific
725 configuration files. */
726 static char *link_command_spec =
727 LINK_COMMAND_SPEC;
728 #else
729 #ifdef LINK_LIBGCC_SPECIAL
730 /* Don't generate -L options. */
731 static char *link_command_spec = "\
732 %{!fsyntax-only: \
733 %{!c:%{!M:%{!MM:%{!E:%{!S:%(linker) %l %X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} \
734 %{r} %{s} %{t} %{u*} %{x} %{z} %{Z}\
735 %{!A:%{!nostdlib:%{!nostartfiles:%S}}}\
736 %{static:} %{L*} %o\
737 %{!nostdlib:%{!nodefaultlibs:%G %L %G}}\
738 %{!A:%{!nostdlib:%{!nostartfiles:%E}}}\
739 %{T*}\
740 \n }}}}}}";
741 #else
742 /* Use -L. */
743 static char *link_command_spec = "\
744 %{!fsyntax-only: \
745 %{!c:%{!M:%{!MM:%{!E:%{!S:%(linker) %l %X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} \
746 %{r} %{s} %{t} %{u*} %{x} %{z} %{Z}\
747 %{!A:%{!nostdlib:%{!nostartfiles:%S}}}\
748 %{static:} %{L*} %D %o\
749 %{!nostdlib:%{!nodefaultlibs:%G %L %G}}\
750 %{!A:%{!nostdlib:%{!nostartfiles:%E}}}\
751 %{T*}\
752 \n }}}}}}";
753 #endif
754 #endif
755
756 /* A vector of options to give to the linker.
757 These options are accumulated by %x,
758 and substituted into the linker command with %X. */
759 static int n_linker_options;
760 static char **linker_options;
761
762 /* A vector of options to give to the assembler.
763 These options are accumulated by -Wa,
764 and substituted into the assembler command with %Y. */
765 static int n_assembler_options;
766 static char **assembler_options;
767
768 /* A vector of options to give to the preprocessor.
769 These options are accumulated by -Wp,
770 and substituted into the preprocessor command with %Z. */
771 static int n_preprocessor_options;
772 static char **preprocessor_options;
773 \f
774 /* Define how to map long options into short ones. */
775
776 /* This structure describes one mapping. */
777 struct option_map
778 {
779 /* The long option's name. */
780 char *name;
781 /* The equivalent short option. */
782 char *equivalent;
783 /* Argument info. A string of flag chars; NULL equals no options.
784 a => argument required.
785 o => argument optional.
786 j => join argument to equivalent, making one word.
787 * => require other text after NAME as an argument. */
788 char *arg_info;
789 };
790
791 /* This is the table of mappings. Mappings are tried sequentially
792 for each option encountered; the first one that matches, wins. */
793
794 struct option_map option_map[] =
795 {
796 {"--all-warnings", "-Wall", 0},
797 {"--ansi", "-ansi", 0},
798 {"--assemble", "-S", 0},
799 {"--assert", "-A", "a"},
800 {"--classpath", "-fclasspath=", "aj"},
801 {"--CLASSPATH", "-fCLASSPATH=", "aj"},
802 {"--comments", "-C", 0},
803 {"--compile", "-c", 0},
804 {"--debug", "-g", "oj"},
805 {"--define-macro", "-D", "aj"},
806 {"--dependencies", "-M", 0},
807 {"--dump", "-d", "a"},
808 {"--dumpbase", "-dumpbase", "a"},
809 {"--entry", "-e", 0},
810 {"--extra-warnings", "-W", 0},
811 {"--for-assembler", "-Wa", "a"},
812 {"--for-linker", "-Xlinker", "a"},
813 {"--force-link", "-u", "a"},
814 {"--imacros", "-imacros", "a"},
815 {"--include", "-include", "a"},
816 {"--include-barrier", "-I-", 0},
817 {"--include-directory", "-I", "aj"},
818 {"--include-directory-after", "-idirafter", "a"},
819 {"--include-prefix", "-iprefix", "a"},
820 {"--include-with-prefix", "-iwithprefix", "a"},
821 {"--include-with-prefix-before", "-iwithprefixbefore", "a"},
822 {"--include-with-prefix-after", "-iwithprefix", "a"},
823 {"--language", "-x", "a"},
824 {"--library-directory", "-L", "a"},
825 {"--machine", "-m", "aj"},
826 {"--machine-", "-m", "*j"},
827 {"--no-line-commands", "-P", 0},
828 {"--no-precompiled-includes", "-noprecomp", 0},
829 {"--no-standard-includes", "-nostdinc", 0},
830 {"--no-standard-libraries", "-nostdlib", 0},
831 {"--no-warnings", "-w", 0},
832 {"--optimize", "-O", "oj"},
833 {"--output", "-o", "a"},
834 {"--output-class-directory", "-foutput-class-dir=", "ja"},
835 {"--pedantic", "-pedantic", 0},
836 {"--pedantic-errors", "-pedantic-errors", 0},
837 {"--pipe", "-pipe", 0},
838 {"--prefix", "-B", "a"},
839 {"--preprocess", "-E", 0},
840 {"--print-search-dirs", "-print-search-dirs", 0},
841 {"--print-file-name", "-print-file-name=", "aj"},
842 {"--print-libgcc-file-name", "-print-libgcc-file-name", 0},
843 {"--print-missing-file-dependencies", "-MG", 0},
844 {"--print-multi-lib", "-print-multi-lib", 0},
845 {"--print-multi-directory", "-print-multi-directory", 0},
846 {"--print-prog-name", "-print-prog-name=", "aj"},
847 {"--profile", "-p", 0},
848 {"--profile-blocks", "-a", 0},
849 {"--quiet", "-q", 0},
850 {"--save-temps", "-save-temps", 0},
851 {"--shared", "-shared", 0},
852 {"--silent", "-q", 0},
853 {"--specs", "-specs=", "aj"},
854 {"--static", "-static", 0},
855 {"--std", "-std=", "aj"},
856 {"--symbolic", "-symbolic", 0},
857 {"--target", "-b", "a"},
858 {"--trace-includes", "-H", 0},
859 {"--traditional", "-traditional", 0},
860 {"--traditional-cpp", "-traditional-cpp", 0},
861 {"--trigraphs", "-trigraphs", 0},
862 {"--undefine-macro", "-U", "aj"},
863 {"--use-version", "-V", "a"},
864 {"--user-dependencies", "-MM", 0},
865 {"--verbose", "-v", 0},
866 {"--version", "-dumpversion", 0},
867 {"--warn-", "-W", "*j"},
868 {"--write-dependencies", "-MD", 0},
869 {"--write-user-dependencies", "-MMD", 0},
870 {"--", "-f", "*j"}
871 };
872 \f
873 /* Translate the options described by *ARGCP and *ARGVP.
874 Make a new vector and store it back in *ARGVP,
875 and store its length in *ARGVC. */
876
877 static void
878 translate_options (argcp, argvp)
879 int *argcp;
880 char ***argvp;
881 {
882 int i;
883 int argc = *argcp;
884 char **argv = *argvp;
885 char **newv = (char **) xmalloc ((argc + 2) * 2 * sizeof (char *));
886 int newindex = 0;
887
888 i = 0;
889 newv[newindex++] = argv[i++];
890
891 while (i < argc)
892 {
893 /* Translate -- options. */
894 if (argv[i][0] == '-' && argv[i][1] == '-')
895 {
896 size_t j;
897 /* Find a mapping that applies to this option. */
898 for (j = 0; j < sizeof (option_map) / sizeof (option_map[0]); j++)
899 {
900 size_t optlen = strlen (option_map[j].name);
901 size_t arglen = strlen (argv[i]);
902 size_t complen = arglen > optlen ? optlen : arglen;
903 char *arginfo = option_map[j].arg_info;
904
905 if (arginfo == 0)
906 arginfo = "";
907
908 if (!strncmp (argv[i], option_map[j].name, complen))
909 {
910 char *arg = 0;
911
912 if (arglen < optlen)
913 {
914 size_t k;
915 for (k = j + 1;
916 k < sizeof (option_map) / sizeof (option_map[0]);
917 k++)
918 if (strlen (option_map[k].name) >= arglen
919 && !strncmp (argv[i], option_map[k].name, arglen))
920 {
921 error ("Ambiguous abbreviation %s", argv[i]);
922 break;
923 }
924
925 if (k != sizeof (option_map) / sizeof (option_map[0]))
926 break;
927 }
928
929 if (arglen > optlen)
930 {
931 /* If the option has an argument, accept that. */
932 if (argv[i][optlen] == '=')
933 arg = argv[i] + optlen + 1;
934
935 /* If this mapping requires extra text at end of name,
936 accept that as "argument". */
937 else if (index (arginfo, '*') != 0)
938 arg = argv[i] + optlen;
939
940 /* Otherwise, extra text at end means mismatch.
941 Try other mappings. */
942 else
943 continue;
944 }
945
946 else if (index (arginfo, '*') != 0)
947 {
948 error ("Incomplete `%s' option", option_map[j].name);
949 break;
950 }
951
952 /* Handle arguments. */
953 if (index (arginfo, 'a') != 0)
954 {
955 if (arg == 0)
956 {
957 if (i + 1 == argc)
958 {
959 error ("Missing argument to `%s' option",
960 option_map[j].name);
961 break;
962 }
963
964 arg = argv[++i];
965 }
966 }
967 else if (index (arginfo, '*') != 0)
968 ;
969 else if (index (arginfo, 'o') == 0)
970 {
971 if (arg != 0)
972 error ("Extraneous argument to `%s' option",
973 option_map[j].name);
974 arg = 0;
975 }
976
977 /* Store the translation as one argv elt or as two. */
978 if (arg != 0 && index (arginfo, 'j') != 0)
979 newv[newindex++] = concat (option_map[j].equivalent, arg,
980 NULL_PTR);
981 else if (arg != 0)
982 {
983 newv[newindex++] = option_map[j].equivalent;
984 newv[newindex++] = arg;
985 }
986 else
987 newv[newindex++] = option_map[j].equivalent;
988
989 break;
990 }
991 }
992 i++;
993 }
994
995 /* Handle old-fashioned options--just copy them through,
996 with their arguments. */
997 else if (argv[i][0] == '-')
998 {
999 char *p = argv[i] + 1;
1000 int c = *p;
1001 int nskip = 1;
1002
1003 if (SWITCH_TAKES_ARG (c) > (p[1] != 0))
1004 nskip += SWITCH_TAKES_ARG (c) - (p[1] != 0);
1005 else if (WORD_SWITCH_TAKES_ARG (p))
1006 nskip += WORD_SWITCH_TAKES_ARG (p);
1007 else if ((c == 'B' || c == 'b' || c == 'V' || c == 'x')
1008 && p[1] == 0)
1009 nskip += 1;
1010 else if (! strcmp (p, "Xlinker"))
1011 nskip += 1;
1012
1013 /* Watch out for an option at the end of the command line that
1014 is missing arguments, and avoid skipping past the end of the
1015 command line. */
1016 if (nskip + i > argc)
1017 nskip = argc - i;
1018
1019 while (nskip > 0)
1020 {
1021 newv[newindex++] = argv[i++];
1022 nskip--;
1023 }
1024 }
1025 else
1026 /* Ordinary operands, or +e options. */
1027 newv[newindex++] = argv[i++];
1028 }
1029
1030 newv[newindex] = 0;
1031
1032 *argvp = newv;
1033 *argcp = newindex;
1034 }
1035 \f
1036 char *
1037 xstrerror(e)
1038 int e;
1039 {
1040 #ifdef HAVE_STRERROR
1041
1042 return strerror(e);
1043
1044 #else
1045
1046 if (!e)
1047 return "errno = 0";
1048
1049 if (e > 0 && e < sys_nerr)
1050 return sys_errlist[e];
1051
1052 return "errno = ?";
1053 #endif
1054 }
1055 \f
1056 static char *
1057 skip_whitespace (p)
1058 char *p;
1059 {
1060 while (1)
1061 {
1062 /* A fully-blank line is a delimiter in the SPEC file and shouldn't
1063 be considered whitespace. */
1064 if (p[0] == '\n' && p[1] == '\n' && p[2] == '\n')
1065 return p + 1;
1066 else if (*p == '\n' || *p == ' ' || *p == '\t')
1067 p++;
1068 else if (*p == '#')
1069 {
1070 while (*p != '\n') p++;
1071 p++;
1072 }
1073 else
1074 break;
1075 }
1076
1077 return p;
1078 }
1079 \f
1080 /* Structure to keep track of the specs that have been defined so far.
1081 These are accessed using %(specname) or %[specname] in a compiler
1082 or link spec. */
1083
1084 struct spec_list
1085 {
1086 /* The following 2 fields must be first */
1087 /* to allow EXTRA_SPECS to be initialized */
1088 char *name; /* name of the spec. */
1089 char *ptr; /* available ptr if no static pointer */
1090
1091 /* The following fields are not initialized */
1092 /* by EXTRA_SPECS */
1093 char **ptr_spec; /* pointer to the spec itself. */
1094 struct spec_list *next; /* Next spec in linked list. */
1095 int name_len; /* length of the name */
1096 int alloc_p; /* whether string was allocated */
1097 };
1098
1099 #define INIT_STATIC_SPEC(NAME,PTR) \
1100 { NAME, NULL_PTR, PTR, (struct spec_list *)0, sizeof (NAME)-1, 0 }
1101
1102 /* List of statically defined specs */
1103 static struct spec_list static_specs[] = {
1104 INIT_STATIC_SPEC ("asm", &asm_spec),
1105 INIT_STATIC_SPEC ("asm_final", &asm_final_spec),
1106 INIT_STATIC_SPEC ("cpp", &cpp_spec),
1107 INIT_STATIC_SPEC ("cc1", &cc1_spec),
1108 INIT_STATIC_SPEC ("cc1plus", &cc1plus_spec),
1109 INIT_STATIC_SPEC ("endfile", &endfile_spec),
1110 INIT_STATIC_SPEC ("link", &link_spec),
1111 INIT_STATIC_SPEC ("lib", &lib_spec),
1112 INIT_STATIC_SPEC ("libgcc", &libgcc_spec),
1113 INIT_STATIC_SPEC ("startfile", &startfile_spec),
1114 INIT_STATIC_SPEC ("switches_need_spaces", &switches_need_spaces),
1115 INIT_STATIC_SPEC ("signed_char", &signed_char_spec),
1116 INIT_STATIC_SPEC ("predefines", &cpp_predefines),
1117 INIT_STATIC_SPEC ("cross_compile", &cross_compile),
1118 INIT_STATIC_SPEC ("version", &compiler_version),
1119 INIT_STATIC_SPEC ("multilib", &multilib_select),
1120 INIT_STATIC_SPEC ("multilib_defaults", &multilib_defaults),
1121 INIT_STATIC_SPEC ("multilib_extra", &multilib_extra),
1122 INIT_STATIC_SPEC ("multilib_matches", &multilib_matches),
1123 INIT_STATIC_SPEC ("linker", &linker_name_spec),
1124 };
1125
1126 #ifdef EXTRA_SPECS /* additional specs needed */
1127 /* Structure to keep track of just the first two args of a spec_list.
1128 That is all that the EXTRA_SPECS macro gives us. */
1129 struct spec_list_1
1130 {
1131 char *name;
1132 char *ptr;
1133 };
1134
1135 static struct spec_list_1 extra_specs_1[] = { EXTRA_SPECS };
1136 static struct spec_list * extra_specs = (struct spec_list *)0;
1137 #endif
1138
1139 /* List of dynamically allocates specs that have been defined so far. */
1140
1141 static struct spec_list *specs = (struct spec_list *)0;
1142
1143 \f
1144 /* Initialize the specs lookup routines. */
1145
1146 static void
1147 init_spec ()
1148 {
1149 struct spec_list *next = (struct spec_list *)0;
1150 struct spec_list *sl = (struct spec_list *)0;
1151 int i;
1152
1153 if (specs)
1154 return; /* already initialized */
1155
1156 if (verbose_flag)
1157 notice ("Using builtin specs.\n");
1158
1159 #ifdef EXTRA_SPECS
1160 extra_specs = (struct spec_list *)
1161 xmalloc (sizeof(struct spec_list) *
1162 (sizeof(extra_specs_1)/sizeof(extra_specs_1[0])));
1163 bzero ((PTR) extra_specs, sizeof(struct spec_list) *
1164 (sizeof(extra_specs_1)/sizeof(extra_specs_1[0])));
1165
1166 for (i = (sizeof(extra_specs_1) / sizeof(extra_specs_1[0])) - 1; i >= 0; i--)
1167 {
1168 sl = &extra_specs[i];
1169 sl->name = extra_specs_1[i].name;
1170 sl->ptr = extra_specs_1[i].ptr;
1171 sl->next = next;
1172 sl->name_len = strlen (sl->name);
1173 sl->ptr_spec = &sl->ptr;
1174 next = sl;
1175 }
1176 #endif
1177
1178 for (i = (sizeof (static_specs) / sizeof (static_specs[0])) - 1; i >= 0; i--)
1179 {
1180 sl = &static_specs[i];
1181 sl->next = next;
1182 next = sl;
1183 }
1184
1185 specs = sl;
1186 }
1187
1188 \f
1189 /* Change the value of spec NAME to SPEC. If SPEC is empty, then the spec is
1190 removed; If the spec starts with a + then SPEC is added to the end of the
1191 current spec. */
1192
1193 static void
1194 set_spec (name, spec)
1195 char *name;
1196 char *spec;
1197 {
1198 struct spec_list *sl;
1199 char *old_spec;
1200 int name_len = strlen (name);
1201 int i;
1202
1203 /* If this is the first call, initialize the statically allocated specs */
1204 if (!specs)
1205 {
1206 struct spec_list *next = (struct spec_list *)0;
1207 for (i = (sizeof (static_specs) / sizeof (static_specs[0])) - 1;
1208 i >= 0; i--)
1209 {
1210 sl = &static_specs[i];
1211 sl->next = next;
1212 next = sl;
1213 }
1214 specs = sl;
1215 }
1216
1217 /* See if the spec already exists */
1218 for (sl = specs; sl; sl = sl->next)
1219 if (name_len == sl->name_len && !strcmp (sl->name, name))
1220 break;
1221
1222 if (!sl)
1223 {
1224 /* Not found - make it */
1225 sl = (struct spec_list *) xmalloc (sizeof (struct spec_list));
1226 sl->name = save_string (name, strlen (name));
1227 sl->name_len = name_len;
1228 sl->ptr_spec = &sl->ptr;
1229 sl->alloc_p = 0;
1230 *(sl->ptr_spec) = "";
1231 sl->next = specs;
1232 specs = sl;
1233 }
1234
1235 old_spec = *(sl->ptr_spec);
1236 *(sl->ptr_spec) = ((spec[0] == '+' && ISSPACE ((unsigned char)spec[1]))
1237 ? concat (old_spec, spec + 1, NULL_PTR)
1238 : save_string (spec, strlen (spec)));
1239
1240 #ifdef DEBUG_SPECS
1241 if (verbose_flag)
1242 notice ("Setting spec %s to '%s'\n\n", name, *(sl->ptr_spec));
1243 #endif
1244
1245 /* Free the old spec */
1246 if (old_spec && sl->alloc_p)
1247 free (old_spec);
1248
1249 sl->alloc_p = 1;
1250 }
1251 \f
1252 /* Accumulate a command (program name and args), and run it. */
1253
1254 /* Vector of pointers to arguments in the current line of specifications. */
1255
1256 static char **argbuf;
1257
1258 /* Number of elements allocated in argbuf. */
1259
1260 static int argbuf_length;
1261
1262 /* Number of elements in argbuf currently in use (containing args). */
1263
1264 static int argbuf_index;
1265
1266 /* We want this on by default all the time now. */
1267 #define MKTEMP_EACH_FILE
1268
1269 #ifdef MKTEMP_EACH_FILE
1270
1271 extern char *make_temp_file PROTO((char *));
1272
1273 /* This is the list of suffixes and codes (%g/%u/%U) and the associated
1274 temp file. */
1275
1276 static struct temp_name {
1277 char *suffix; /* suffix associated with the code. */
1278 int length; /* strlen (suffix). */
1279 int unique; /* Indicates whether %g or %u/%U was used. */
1280 char *filename; /* associated filename. */
1281 int filename_length; /* strlen (filename). */
1282 struct temp_name *next;
1283 } *temp_names;
1284 #endif
1285
1286
1287 /* Number of commands executed so far. */
1288
1289 static int execution_count;
1290
1291 /* Number of commands that exited with a signal. */
1292
1293 static int signal_count;
1294
1295 /* Name with which this program was invoked. */
1296
1297 static char *programname;
1298 \f
1299 /* Structures to keep track of prefixes to try when looking for files. */
1300
1301 struct prefix_list
1302 {
1303 char *prefix; /* String to prepend to the path. */
1304 struct prefix_list *next; /* Next in linked list. */
1305 int require_machine_suffix; /* Don't use without machine_suffix. */
1306 /* 2 means try both machine_suffix and just_machine_suffix. */
1307 int *used_flag_ptr; /* 1 if a file was found with this prefix. */
1308 };
1309
1310 struct path_prefix
1311 {
1312 struct prefix_list *plist; /* List of prefixes to try */
1313 int max_len; /* Max length of a prefix in PLIST */
1314 char *name; /* Name of this list (used in config stuff) */
1315 };
1316
1317 /* List of prefixes to try when looking for executables. */
1318
1319 static struct path_prefix exec_prefixes = { 0, 0, "exec" };
1320
1321 /* List of prefixes to try when looking for startup (crt0) files. */
1322
1323 static struct path_prefix startfile_prefixes = { 0, 0, "startfile" };
1324
1325 /* List of prefixes to try when looking for include files. */
1326
1327 static struct path_prefix include_prefixes = { 0, 0, "include" };
1328
1329 /* Suffix to attach to directories searched for commands.
1330 This looks like `MACHINE/VERSION/'. */
1331
1332 static char *machine_suffix = 0;
1333
1334 /* Suffix to attach to directories searched for commands.
1335 This is just `MACHINE/'. */
1336
1337 static char *just_machine_suffix = 0;
1338
1339 /* Adjusted value of GCC_EXEC_PREFIX envvar. */
1340
1341 static char *gcc_exec_prefix;
1342
1343 /* Default prefixes to attach to command names. */
1344
1345 #ifdef CROSS_COMPILE /* Don't use these prefixes for a cross compiler. */
1346 #undef MD_EXEC_PREFIX
1347 #undef MD_STARTFILE_PREFIX
1348 #undef MD_STARTFILE_PREFIX_1
1349 #endif
1350
1351 #ifndef STANDARD_EXEC_PREFIX
1352 #define STANDARD_EXEC_PREFIX "/usr/local/lib/gcc-lib/"
1353 #endif /* !defined STANDARD_EXEC_PREFIX */
1354
1355 static char *standard_exec_prefix = STANDARD_EXEC_PREFIX;
1356 static char *standard_exec_prefix_1 = "/usr/lib/gcc/";
1357 #ifdef MD_EXEC_PREFIX
1358 static char *md_exec_prefix = MD_EXEC_PREFIX;
1359 #endif
1360
1361 #ifndef STANDARD_STARTFILE_PREFIX
1362 #define STANDARD_STARTFILE_PREFIX "/usr/local/lib/"
1363 #endif /* !defined STANDARD_STARTFILE_PREFIX */
1364
1365 #ifdef MD_STARTFILE_PREFIX
1366 static char *md_startfile_prefix = MD_STARTFILE_PREFIX;
1367 #endif
1368 #ifdef MD_STARTFILE_PREFIX_1
1369 static char *md_startfile_prefix_1 = MD_STARTFILE_PREFIX_1;
1370 #endif
1371 static char *standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
1372 static char *standard_startfile_prefix_1 = "/lib/";
1373 static char *standard_startfile_prefix_2 = "/usr/lib/";
1374
1375 #ifndef TOOLDIR_BASE_PREFIX
1376 #define TOOLDIR_BASE_PREFIX "/usr/local/"
1377 #endif
1378 static char *tooldir_base_prefix = TOOLDIR_BASE_PREFIX;
1379 static char *tooldir_prefix;
1380
1381 /* Subdirectory to use for locating libraries. Set by
1382 set_multilib_dir based on the compilation options. */
1383
1384 static char *multilib_dir;
1385
1386 /* Clear out the vector of arguments (after a command is executed). */
1387
1388 static void
1389 clear_args ()
1390 {
1391 argbuf_index = 0;
1392 }
1393
1394 /* Add one argument to the vector at the end.
1395 This is done when a space is seen or at the end of the line.
1396 If DELETE_ALWAYS is nonzero, the arg is a filename
1397 and the file should be deleted eventually.
1398 If DELETE_FAILURE is nonzero, the arg is a filename
1399 and the file should be deleted if this compilation fails. */
1400
1401 static void
1402 store_arg (arg, delete_always, delete_failure)
1403 char *arg;
1404 int delete_always, delete_failure;
1405 {
1406 if (argbuf_index + 1 == argbuf_length)
1407 argbuf
1408 = (char **) xrealloc (argbuf, (argbuf_length *= 2) * sizeof (char *));
1409
1410 argbuf[argbuf_index++] = arg;
1411 argbuf[argbuf_index] = 0;
1412
1413 if (delete_always || delete_failure)
1414 record_temp_file (arg, delete_always, delete_failure);
1415 }
1416 \f
1417 /* Read compilation specs from a file named FILENAME,
1418 replacing the default ones.
1419
1420 A suffix which starts with `*' is a definition for
1421 one of the machine-specific sub-specs. The "suffix" should be
1422 *asm, *cc1, *cpp, *link, *startfile, *signed_char, etc.
1423 The corresponding spec is stored in asm_spec, etc.,
1424 rather than in the `compilers' vector.
1425
1426 Anything invalid in the file is a fatal error. */
1427
1428 static void
1429 read_specs (filename, main_p)
1430 char *filename;
1431 int main_p;
1432 {
1433 int desc;
1434 int readlen;
1435 struct stat statbuf;
1436 char *buffer;
1437 register char *p;
1438
1439 if (verbose_flag)
1440 notice ("Reading specs from %s\n", filename);
1441
1442 /* Open and stat the file. */
1443 desc = open (filename, O_RDONLY, 0);
1444 if (desc < 0)
1445 pfatal_with_name (filename);
1446 if (stat (filename, &statbuf) < 0)
1447 pfatal_with_name (filename);
1448
1449 /* Read contents of file into BUFFER. */
1450 buffer = xmalloc ((unsigned) statbuf.st_size + 1);
1451 readlen = read (desc, buffer, (unsigned) statbuf.st_size);
1452 if (readlen < 0)
1453 pfatal_with_name (filename);
1454 buffer[readlen] = 0;
1455 close (desc);
1456
1457 /* Scan BUFFER for specs, putting them in the vector. */
1458 p = buffer;
1459 while (1)
1460 {
1461 char *suffix;
1462 char *spec;
1463 char *in, *out, *p1, *p2, *p3;
1464
1465 /* Advance P in BUFFER to the next nonblank nocomment line. */
1466 p = skip_whitespace (p);
1467 if (*p == 0)
1468 break;
1469
1470 /* Is this a special command that starts with '%'? */
1471 /* Don't allow this for the main specs file, since it would
1472 encourage people to overwrite it. */
1473 if (*p == '%' && !main_p)
1474 {
1475 p1 = p;
1476 while (*p && *p != '\n')
1477 p++;
1478
1479 p++; /* Skip '\n' */
1480
1481 if (!strncmp (p1, "%include", sizeof ("%include")-1)
1482 && (p1[sizeof "%include" - 1] == ' '
1483 || p1[sizeof "%include" - 1] == '\t'))
1484 {
1485 char *new_filename;
1486
1487 p1 += sizeof ("%include");
1488 while (*p1 == ' ' || *p1 == '\t')
1489 p1++;
1490
1491 if (*p1++ != '<' || p[-2] != '>')
1492 fatal ("specs %%include syntax malformed after %ld characters",
1493 (long) (p1 - buffer + 1));
1494
1495 p[-2] = '\0';
1496 new_filename = find_a_file (&startfile_prefixes, p1, R_OK);
1497 read_specs (new_filename ? new_filename : p1, FALSE);
1498 continue;
1499 }
1500 else if (!strncmp (p1, "%include_noerr", sizeof "%include_noerr" - 1)
1501 && (p1[sizeof "%include_noerr" - 1] == ' '
1502 || p1[sizeof "%include_noerr" - 1] == '\t'))
1503 {
1504 char *new_filename;
1505
1506 p1 += sizeof "%include_noerr";
1507 while (*p1 == ' ' || *p1 == '\t') p1++;
1508
1509 if (*p1++ != '<' || p[-2] != '>')
1510 fatal ("specs %%include syntax malformed after %ld characters",
1511 (long) (p1 - buffer + 1));
1512
1513 p[-2] = '\0';
1514 new_filename = find_a_file (&startfile_prefixes, p1, R_OK);
1515 if (new_filename)
1516 read_specs (new_filename, FALSE);
1517 else if (verbose_flag)
1518 notice ("Could not find specs file %s\n", p1);
1519 continue;
1520 }
1521 else if (!strncmp (p1, "%rename", sizeof "%rename" - 1)
1522 && (p1[sizeof "%rename" - 1] == ' '
1523 || p1[sizeof "%rename" - 1] == '\t'))
1524 {
1525 int name_len;
1526 struct spec_list *sl;
1527
1528 /* Get original name */
1529 p1 += sizeof "%rename";
1530 while (*p1 == ' ' || *p1 == '\t')
1531 p1++;
1532
1533 if (! ISALPHA ((unsigned char)*p1))
1534 fatal ("specs %%rename syntax malformed after %ld characters",
1535 (long) (p1 - buffer));
1536
1537 p2 = p1;
1538 while (*p2 && !ISSPACE ((unsigned char)*p2))
1539 p2++;
1540
1541 if (*p2 != ' ' && *p2 != '\t')
1542 fatal ("specs %%rename syntax malformed after %ld characters",
1543 (long) (p2 - buffer));
1544
1545 name_len = p2 - p1;
1546 *p2++ = '\0';
1547 while (*p2 == ' ' || *p2 == '\t')
1548 p2++;
1549
1550 if (! ISALPHA ((unsigned char)*p2))
1551 fatal ("specs %%rename syntax malformed after %ld characters",
1552 (long) (p2 - buffer));
1553
1554 /* Get new spec name */
1555 p3 = p2;
1556 while (*p3 && !ISSPACE ((unsigned char)*p3))
1557 p3++;
1558
1559 if (p3 != p-1)
1560 fatal ("specs %%rename syntax malformed after %ld characters",
1561 (long) (p3 - buffer));
1562 *p3 = '\0';
1563
1564 for (sl = specs; sl; sl = sl->next)
1565 if (name_len == sl->name_len && !strcmp (sl->name, p1))
1566 break;
1567
1568 if (!sl)
1569 fatal ("specs %s spec was not found to be renamed", p1);
1570
1571 if (strcmp (p1, p2) == 0)
1572 continue;
1573
1574 if (verbose_flag)
1575 {
1576 notice ("rename spec %s to %s\n", p1, p2);
1577 #ifdef DEBUG_SPECS
1578 notice ("spec is '%s'\n\n", *(sl->ptr_spec));
1579 #endif
1580 }
1581
1582 set_spec (p2, *(sl->ptr_spec));
1583 if (sl->alloc_p)
1584 free (*(sl->ptr_spec));
1585
1586 *(sl->ptr_spec) = "";
1587 sl->alloc_p = 0;
1588 continue;
1589 }
1590 else
1591 fatal ("specs unknown %% command after %ld characters",
1592 (long) (p1 - buffer));
1593 }
1594
1595 /* Find the colon that should end the suffix. */
1596 p1 = p;
1597 while (*p1 && *p1 != ':' && *p1 != '\n')
1598 p1++;
1599
1600 /* The colon shouldn't be missing. */
1601 if (*p1 != ':')
1602 fatal ("specs file malformed after %ld characters",
1603 (long) (p1 - buffer));
1604
1605 /* Skip back over trailing whitespace. */
1606 p2 = p1;
1607 while (p2 > buffer && (p2[-1] == ' ' || p2[-1] == '\t'))
1608 p2--;
1609
1610 /* Copy the suffix to a string. */
1611 suffix = save_string (p, p2 - p);
1612 /* Find the next line. */
1613 p = skip_whitespace (p1 + 1);
1614 if (p[1] == 0)
1615 fatal ("specs file malformed after %ld characters",
1616 (long) (p - buffer));
1617
1618 p1 = p;
1619 /* Find next blank line or end of string. */
1620 while (*p1 && !(*p1 == '\n' && (p1[1] == '\n' || p1[1] == '\0')))
1621 p1++;
1622
1623 /* Specs end at the blank line and do not include the newline. */
1624 spec = save_string (p, p1 - p);
1625 p = p1;
1626
1627 /* Delete backslash-newline sequences from the spec. */
1628 in = spec;
1629 out = spec;
1630 while (*in != 0)
1631 {
1632 if (in[0] == '\\' && in[1] == '\n')
1633 in += 2;
1634 else if (in[0] == '#')
1635 while (*in && *in != '\n')
1636 in++;
1637
1638 else
1639 *out++ = *in++;
1640 }
1641 *out = 0;
1642
1643 if (suffix[0] == '*')
1644 {
1645 if (! strcmp (suffix, "*link_command"))
1646 link_command_spec = spec;
1647 else
1648 set_spec (suffix + 1, spec);
1649 }
1650 else
1651 {
1652 /* Add this pair to the vector. */
1653 compilers
1654 = ((struct compiler *)
1655 xrealloc (compilers,
1656 (n_compilers + 2) * sizeof (struct compiler)));
1657
1658 compilers[n_compilers].suffix = suffix;
1659 bzero ((char *) compilers[n_compilers].spec,
1660 sizeof compilers[n_compilers].spec);
1661 compilers[n_compilers].spec[0] = spec;
1662 n_compilers++;
1663 bzero ((char *) &compilers[n_compilers],
1664 sizeof compilers[n_compilers]);
1665 }
1666
1667 if (*suffix == 0)
1668 link_command_spec = spec;
1669 }
1670
1671 if (link_command_spec == 0)
1672 fatal ("spec file has no spec for linking");
1673 }
1674 \f
1675 /* Record the names of temporary files we tell compilers to write,
1676 and delete them at the end of the run. */
1677
1678 /* This is the common prefix we use to make temp file names.
1679 It is chosen once for each run of this program.
1680 It is substituted into a spec by %g.
1681 Thus, all temp file names contain this prefix.
1682 In practice, all temp file names start with this prefix.
1683
1684 This prefix comes from the envvar TMPDIR if it is defined;
1685 otherwise, from the P_tmpdir macro if that is defined;
1686 otherwise, in /usr/tmp or /tmp;
1687 or finally the current directory if all else fails. */
1688
1689 static char *temp_filename;
1690
1691 /* Length of the prefix. */
1692
1693 static int temp_filename_length;
1694
1695 /* Define the list of temporary files to delete. */
1696
1697 struct temp_file
1698 {
1699 char *name;
1700 struct temp_file *next;
1701 };
1702
1703 /* Queue of files to delete on success or failure of compilation. */
1704 static struct temp_file *always_delete_queue;
1705 /* Queue of files to delete on failure of compilation. */
1706 static struct temp_file *failure_delete_queue;
1707
1708 /* Record FILENAME as a file to be deleted automatically.
1709 ALWAYS_DELETE nonzero means delete it if all compilation succeeds;
1710 otherwise delete it in any case.
1711 FAIL_DELETE nonzero means delete it if a compilation step fails;
1712 otherwise delete it in any case. */
1713
1714 static void
1715 record_temp_file (filename, always_delete, fail_delete)
1716 char *filename;
1717 int always_delete;
1718 int fail_delete;
1719 {
1720 register char *name;
1721 name = xmalloc (strlen (filename) + 1);
1722 strcpy (name, filename);
1723
1724 if (always_delete)
1725 {
1726 register struct temp_file *temp;
1727 for (temp = always_delete_queue; temp; temp = temp->next)
1728 if (! strcmp (name, temp->name))
1729 goto already1;
1730
1731 temp = (struct temp_file *) xmalloc (sizeof (struct temp_file));
1732 temp->next = always_delete_queue;
1733 temp->name = name;
1734 always_delete_queue = temp;
1735
1736 already1:;
1737 }
1738
1739 if (fail_delete)
1740 {
1741 register struct temp_file *temp;
1742 for (temp = failure_delete_queue; temp; temp = temp->next)
1743 if (! strcmp (name, temp->name))
1744 goto already2;
1745
1746 temp = (struct temp_file *) xmalloc (sizeof (struct temp_file));
1747 temp->next = failure_delete_queue;
1748 temp->name = name;
1749 failure_delete_queue = temp;
1750
1751 already2:;
1752 }
1753 }
1754
1755 /* Delete all the temporary files whose names we previously recorded. */
1756
1757 static void
1758 delete_if_ordinary (name)
1759 char *name;
1760 {
1761 struct stat st;
1762 #ifdef DEBUG
1763 int i, c;
1764
1765 printf ("Delete %s? (y or n) ", name);
1766 fflush (stdout);
1767 i = getchar ();
1768 if (i != '\n')
1769 while ((c = getchar ()) != '\n' && c != EOF)
1770 ;
1771
1772 if (i == 'y' || i == 'Y')
1773 #endif /* DEBUG */
1774 if (stat (name, &st) >= 0 && S_ISREG (st.st_mode))
1775 if (unlink (name) < 0)
1776 if (verbose_flag)
1777 perror_with_name (name);
1778 }
1779
1780 static void
1781 delete_temp_files ()
1782 {
1783 register struct temp_file *temp;
1784
1785 for (temp = always_delete_queue; temp; temp = temp->next)
1786 delete_if_ordinary (temp->name);
1787 always_delete_queue = 0;
1788 }
1789
1790 /* Delete all the files to be deleted on error. */
1791
1792 static void
1793 delete_failure_queue ()
1794 {
1795 register struct temp_file *temp;
1796
1797 for (temp = failure_delete_queue; temp; temp = temp->next)
1798 delete_if_ordinary (temp->name);
1799 }
1800
1801 static void
1802 clear_failure_queue ()
1803 {
1804 failure_delete_queue = 0;
1805 }
1806 \f
1807 /* Routine to add variables to the environment. We do this to pass
1808 the pathname of the gcc driver, and the directories search to the
1809 collect2 program, which is being run as ld. This way, we can be
1810 sure of executing the right compiler when collect2 wants to build
1811 constructors and destructors. Since the environment variables we
1812 use come from an obstack, we don't have to worry about allocating
1813 space for them. */
1814
1815 #ifndef HAVE_PUTENV
1816
1817 void
1818 putenv (str)
1819 char *str;
1820 {
1821 #ifndef VMS /* nor about VMS */
1822
1823 extern char **environ;
1824 char **old_environ = environ;
1825 char **envp;
1826 int num_envs = 0;
1827 int name_len = 1;
1828 int str_len = strlen (str);
1829 char *p = str;
1830 int ch;
1831
1832 while ((ch = *p++) != '\0' && ch != '=')
1833 name_len++;
1834
1835 if (!ch)
1836 abort ();
1837
1838 /* Search for replacing an existing environment variable, and
1839 count the number of total environment variables. */
1840 for (envp = old_environ; *envp; envp++)
1841 {
1842 num_envs++;
1843 if (!strncmp (str, *envp, name_len))
1844 {
1845 *envp = str;
1846 return;
1847 }
1848 }
1849
1850 /* Add a new environment variable */
1851 environ = (char **) xmalloc (sizeof (char *) * (num_envs+2));
1852 *environ = str;
1853 memcpy ((char *) (environ + 1), (char *) old_environ,
1854 sizeof (char *) * (num_envs+1));
1855
1856 #endif /* VMS */
1857 }
1858
1859 #endif /* HAVE_PUTENV */
1860
1861 \f
1862 /* Build a list of search directories from PATHS.
1863 PREFIX is a string to prepend to the list.
1864 If CHECK_DIR_P is non-zero we ensure the directory exists.
1865 This is used mostly by putenv_from_prefixes so we use `collect_obstack'.
1866 It is also used by the --print-search-dirs flag. */
1867
1868 static char *
1869 build_search_list (paths, prefix, check_dir_p)
1870 struct path_prefix *paths;
1871 char *prefix;
1872 int check_dir_p;
1873 {
1874 int suffix_len = (machine_suffix) ? strlen (machine_suffix) : 0;
1875 int just_suffix_len
1876 = (just_machine_suffix) ? strlen (just_machine_suffix) : 0;
1877 int first_time = TRUE;
1878 struct prefix_list *pprefix;
1879
1880 obstack_grow (&collect_obstack, prefix, strlen (prefix));
1881
1882 for (pprefix = paths->plist; pprefix != 0; pprefix = pprefix->next)
1883 {
1884 int len = strlen (pprefix->prefix);
1885
1886 if (machine_suffix
1887 && (! check_dir_p
1888 || is_directory (pprefix->prefix, machine_suffix, 0)))
1889 {
1890 if (!first_time)
1891 obstack_1grow (&collect_obstack, PATH_SEPARATOR);
1892
1893 first_time = FALSE;
1894 obstack_grow (&collect_obstack, pprefix->prefix, len);
1895 obstack_grow (&collect_obstack, machine_suffix, suffix_len);
1896 }
1897
1898 if (just_machine_suffix
1899 && pprefix->require_machine_suffix == 2
1900 && (! check_dir_p
1901 || is_directory (pprefix->prefix, just_machine_suffix, 0)))
1902 {
1903 if (! first_time)
1904 obstack_1grow (&collect_obstack, PATH_SEPARATOR);
1905
1906 first_time = FALSE;
1907 obstack_grow (&collect_obstack, pprefix->prefix, len);
1908 obstack_grow (&collect_obstack, just_machine_suffix,
1909 just_suffix_len);
1910 }
1911
1912 if (! pprefix->require_machine_suffix)
1913 {
1914 if (! first_time)
1915 obstack_1grow (&collect_obstack, PATH_SEPARATOR);
1916
1917 first_time = FALSE;
1918 obstack_grow (&collect_obstack, pprefix->prefix, len);
1919 }
1920 }
1921
1922 obstack_1grow (&collect_obstack, '\0');
1923 return obstack_finish (&collect_obstack);
1924 }
1925
1926 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
1927 for collect. */
1928
1929 static void
1930 putenv_from_prefixes (paths, env_var)
1931 struct path_prefix *paths;
1932 char *env_var;
1933 {
1934 putenv (build_search_list (paths, env_var, 1));
1935 }
1936 \f
1937 /* Search for NAME using the prefix list PREFIXES. MODE is passed to
1938 access to check permissions.
1939 Return 0 if not found, otherwise return its name, allocated with malloc. */
1940
1941 static char *
1942 find_a_file (pprefix, name, mode)
1943 struct path_prefix *pprefix;
1944 char *name;
1945 int mode;
1946 {
1947 char *temp;
1948 char *file_suffix = ((mode & X_OK) != 0 ? EXECUTABLE_SUFFIX : "");
1949 struct prefix_list *pl;
1950 int len = pprefix->max_len + strlen (name) + strlen (file_suffix) + 1;
1951
1952 #ifdef DEFAULT_ASSEMBLER
1953 if (! strcmp(name, "as") && access (DEFAULT_ASSEMBLER, mode) == 0) {
1954 name = DEFAULT_ASSEMBLER;
1955 len = strlen(name)+1;
1956 temp = xmalloc (len);
1957 strcpy (temp, name);
1958 return temp;
1959 }
1960 #endif
1961
1962 #ifdef DEFAULT_LINKER
1963 if (! strcmp(name, "ld") && access (DEFAULT_LINKER, mode) == 0) {
1964 name = DEFAULT_LINKER;
1965 len = strlen(name)+1;
1966 temp = xmalloc (len);
1967 strcpy (temp, name);
1968 return temp;
1969 }
1970 #endif
1971
1972 if (machine_suffix)
1973 len += strlen (machine_suffix);
1974
1975 temp = xmalloc (len);
1976
1977 /* Determine the filename to execute (special case for absolute paths). */
1978
1979 if (*name == '/' || *name == DIR_SEPARATOR
1980 /* Check for disk name on MS-DOS-based systems. */
1981 || (DIR_SEPARATOR == '\\' && name[1] == ':'
1982 && (name[2] == DIR_SEPARATOR || name[2] == '/')))
1983 {
1984 if (access (name, mode) == 0)
1985 {
1986 strcpy (temp, name);
1987 return temp;
1988 }
1989 }
1990 else
1991 for (pl = pprefix->plist; pl; pl = pl->next)
1992 {
1993 if (machine_suffix)
1994 {
1995 /* Some systems have a suffix for executable files.
1996 So try appending that first. */
1997 if (file_suffix[0] != 0)
1998 {
1999 strcpy (temp, pl->prefix);
2000 strcat (temp, machine_suffix);
2001 strcat (temp, name);
2002 strcat (temp, file_suffix);
2003 if (access (temp, mode) == 0)
2004 {
2005 if (pl->used_flag_ptr != 0)
2006 *pl->used_flag_ptr = 1;
2007 return temp;
2008 }
2009 }
2010
2011 /* Now try just the name. */
2012 strcpy (temp, pl->prefix);
2013 strcat (temp, machine_suffix);
2014 strcat (temp, name);
2015 if (access (temp, mode) == 0)
2016 {
2017 if (pl->used_flag_ptr != 0)
2018 *pl->used_flag_ptr = 1;
2019 return temp;
2020 }
2021 }
2022
2023 /* Certain prefixes are tried with just the machine type,
2024 not the version. This is used for finding as, ld, etc. */
2025 if (just_machine_suffix && pl->require_machine_suffix == 2)
2026 {
2027 /* Some systems have a suffix for executable files.
2028 So try appending that first. */
2029 if (file_suffix[0] != 0)
2030 {
2031 strcpy (temp, pl->prefix);
2032 strcat (temp, just_machine_suffix);
2033 strcat (temp, name);
2034 strcat (temp, file_suffix);
2035 if (access (temp, mode) == 0)
2036 {
2037 if (pl->used_flag_ptr != 0)
2038 *pl->used_flag_ptr = 1;
2039 return temp;
2040 }
2041 }
2042
2043 strcpy (temp, pl->prefix);
2044 strcat (temp, just_machine_suffix);
2045 strcat (temp, name);
2046 if (access (temp, mode) == 0)
2047 {
2048 if (pl->used_flag_ptr != 0)
2049 *pl->used_flag_ptr = 1;
2050 return temp;
2051 }
2052 }
2053
2054 /* Certain prefixes can't be used without the machine suffix
2055 when the machine or version is explicitly specified. */
2056 if (! pl->require_machine_suffix)
2057 {
2058 /* Some systems have a suffix for executable files.
2059 So try appending that first. */
2060 if (file_suffix[0] != 0)
2061 {
2062 strcpy (temp, pl->prefix);
2063 strcat (temp, name);
2064 strcat (temp, file_suffix);
2065 if (access (temp, mode) == 0)
2066 {
2067 if (pl->used_flag_ptr != 0)
2068 *pl->used_flag_ptr = 1;
2069 return temp;
2070 }
2071 }
2072
2073 strcpy (temp, pl->prefix);
2074 strcat (temp, name);
2075 if (access (temp, mode) == 0)
2076 {
2077 if (pl->used_flag_ptr != 0)
2078 *pl->used_flag_ptr = 1;
2079 return temp;
2080 }
2081 }
2082 }
2083
2084 free (temp);
2085 return 0;
2086 }
2087
2088 /* Add an entry for PREFIX in PLIST. If FIRST is set, it goes
2089 at the start of the list, otherwise it goes at the end.
2090
2091 If WARN is nonzero, we will warn if no file is found
2092 through this prefix. WARN should point to an int
2093 which will be set to 1 if this entry is used.
2094
2095 COMPONENT is the value to be passed to update_path.
2096
2097 REQUIRE_MACHINE_SUFFIX is 1 if this prefix can't be used without
2098 the complete value of machine_suffix.
2099 2 means try both machine_suffix and just_machine_suffix. */
2100
2101 static void
2102 add_prefix (pprefix, prefix, component, first, require_machine_suffix, warn)
2103 struct path_prefix *pprefix;
2104 const char *prefix;
2105 const char *component;
2106 int first;
2107 int require_machine_suffix;
2108 int *warn;
2109 {
2110 struct prefix_list *pl, **prev;
2111 int len;
2112
2113 if (! first && pprefix->plist)
2114 {
2115 for (pl = pprefix->plist; pl->next; pl = pl->next)
2116 ;
2117 prev = &pl->next;
2118 }
2119 else
2120 prev = &pprefix->plist;
2121
2122 /* Keep track of the longest prefix */
2123
2124 prefix = update_path (prefix, component);
2125 len = strlen (prefix);
2126 if (len > pprefix->max_len)
2127 pprefix->max_len = len;
2128
2129 pl = (struct prefix_list *) xmalloc (sizeof (struct prefix_list));
2130 pl->prefix = save_string (prefix, len);
2131 pl->require_machine_suffix = require_machine_suffix;
2132 pl->used_flag_ptr = warn;
2133 if (warn)
2134 *warn = 0;
2135
2136 if (*prev)
2137 pl->next = *prev;
2138 else
2139 pl->next = (struct prefix_list *) 0;
2140 *prev = pl;
2141 }
2142
2143 /* Print warnings for any prefixes in the list PPREFIX that were not used. */
2144
2145 static void
2146 unused_prefix_warnings (pprefix)
2147 struct path_prefix *pprefix;
2148 {
2149 struct prefix_list *pl = pprefix->plist;
2150
2151 while (pl)
2152 {
2153 if (pl->used_flag_ptr != 0 && !*pl->used_flag_ptr)
2154 {
2155 if (pl->require_machine_suffix && machine_suffix)
2156 error ("file path prefix `%s%s' never used", pl->prefix,
2157 machine_suffix);
2158 else
2159 error ("file path prefix `%s' never used", pl->prefix);
2160
2161 /* Prevent duplicate warnings. */
2162 *pl->used_flag_ptr = 1;
2163 }
2164
2165 pl = pl->next;
2166 }
2167 }
2168
2169 \f
2170 /* Execute the command specified by the arguments on the current line of spec.
2171 When using pipes, this includes several piped-together commands
2172 with `|' between them.
2173
2174 Return 0 if successful, -1 if failed. */
2175
2176 static int
2177 execute ()
2178 {
2179 int i;
2180 int n_commands; /* # of command. */
2181 char *string;
2182 struct command
2183 {
2184 char *prog; /* program name. */
2185 char **argv; /* vector of args. */
2186 int pid; /* pid of process for this command. */
2187 };
2188
2189 struct command *commands; /* each command buffer with above info. */
2190
2191 /* Count # of piped commands. */
2192 for (n_commands = 1, i = 0; i < argbuf_index; i++)
2193 if (strcmp (argbuf[i], "|") == 0)
2194 n_commands++;
2195
2196 /* Get storage for each command. */
2197 commands
2198 = (struct command *) alloca (n_commands * sizeof (struct command));
2199
2200 /* Split argbuf into its separate piped processes,
2201 and record info about each one.
2202 Also search for the programs that are to be run. */
2203
2204 commands[0].prog = argbuf[0]; /* first command. */
2205 commands[0].argv = &argbuf[0];
2206 string = find_a_file (&exec_prefixes, commands[0].prog, X_OK);
2207
2208 if (string)
2209 commands[0].argv[0] = string;
2210
2211 for (n_commands = 1, i = 0; i < argbuf_index; i++)
2212 if (strcmp (argbuf[i], "|") == 0)
2213 { /* each command. */
2214 #if defined (__MSDOS__) || defined (OS2) || defined (VMS)
2215 fatal ("-pipe not supported");
2216 #endif
2217 argbuf[i] = 0; /* termination of command args. */
2218 commands[n_commands].prog = argbuf[i + 1];
2219 commands[n_commands].argv = &argbuf[i + 1];
2220 string = find_a_file (&exec_prefixes, commands[n_commands].prog, X_OK);
2221 if (string)
2222 commands[n_commands].argv[0] = string;
2223 n_commands++;
2224 }
2225
2226 argbuf[argbuf_index] = 0;
2227
2228 /* If -v, print what we are about to do, and maybe query. */
2229
2230 if (verbose_flag)
2231 {
2232 /* For help listings, put a blank line between sub-processes. */
2233 if (print_help_list)
2234 fputc ('\n', stderr);
2235
2236 /* Print each piped command as a separate line. */
2237 for (i = 0; i < n_commands ; i++)
2238 {
2239 char **j;
2240
2241 for (j = commands[i].argv; *j; j++)
2242 fprintf (stderr, " %s", *j);
2243
2244 /* Print a pipe symbol after all but the last command. */
2245 if (i + 1 != n_commands)
2246 fprintf (stderr, " |");
2247 fprintf (stderr, "\n");
2248 }
2249 fflush (stderr);
2250 #ifdef DEBUG
2251 notice ("\nGo ahead? (y or n) ");
2252 fflush (stderr);
2253 i = getchar ();
2254 if (i != '\n')
2255 while (getchar () != '\n')
2256 ;
2257
2258 if (i != 'y' && i != 'Y')
2259 return 0;
2260 #endif /* DEBUG */
2261 }
2262
2263 /* Run each piped subprocess. */
2264
2265 for (i = 0; i < n_commands; i++)
2266 {
2267 char *errmsg_fmt, *errmsg_arg;
2268 char *string = commands[i].argv[0];
2269
2270 commands[i].pid = pexecute (string, commands[i].argv,
2271 programname, temp_filename,
2272 &errmsg_fmt, &errmsg_arg,
2273 ((i == 0 ? PEXECUTE_FIRST : 0)
2274 | (i + 1 == n_commands ? PEXECUTE_LAST : 0)
2275 | (string == commands[i].prog
2276 ? PEXECUTE_SEARCH : 0)
2277 | (verbose_flag ? PEXECUTE_VERBOSE : 0)));
2278
2279 if (commands[i].pid == -1)
2280 pfatal_pexecute (errmsg_fmt, errmsg_arg);
2281
2282 if (string != commands[i].prog)
2283 free (string);
2284 }
2285
2286 execution_count++;
2287
2288 /* Wait for all the subprocesses to finish.
2289 We don't care what order they finish in;
2290 we know that N_COMMANDS waits will get them all.
2291 Ignore subprocesses that we don't know about,
2292 since they can be spawned by the process that exec'ed us. */
2293
2294 {
2295 int ret_code = 0;
2296
2297 for (i = 0; i < n_commands; )
2298 {
2299 int j;
2300 int status;
2301 int pid;
2302
2303 pid = pwait (commands[i].pid, &status, 0);
2304 if (pid < 0)
2305 abort ();
2306
2307 for (j = 0; j < n_commands; j++)
2308 if (commands[j].pid == pid)
2309 {
2310 i++;
2311 if (status != 0)
2312 {
2313 if (WIFSIGNALED (status))
2314 {
2315 fatal ("Internal compiler error: program %s got fatal signal %d",
2316 commands[j].prog, WTERMSIG (status));
2317 signal_count++;
2318 ret_code = -1;
2319 }
2320 else if (WIFEXITED (status)
2321 && WEXITSTATUS (status) >= MIN_FATAL_STATUS)
2322 ret_code = -1;
2323 }
2324 break;
2325 }
2326 }
2327 return ret_code;
2328 }
2329 }
2330 \f
2331 /* Find all the switches given to us
2332 and make a vector describing them.
2333 The elements of the vector are strings, one per switch given.
2334 If a switch uses following arguments, then the `part1' field
2335 is the switch itself and the `args' field
2336 is a null-terminated vector containing the following arguments.
2337 The `live_cond' field is 1 if the switch is true in a conditional spec,
2338 -1 if false (overridden by a later switch), and is initialized to zero.
2339 The `validated' field is nonzero if any spec has looked at this switch;
2340 if it remains zero at the end of the run, it must be meaningless. */
2341
2342 struct switchstr
2343 {
2344 char *part1;
2345 char **args;
2346 int live_cond;
2347 int validated;
2348 };
2349
2350 static struct switchstr *switches;
2351
2352 static int n_switches;
2353
2354 struct infile
2355 {
2356 char *name;
2357 char *language;
2358 };
2359
2360 /* Also a vector of input files specified. */
2361
2362 static struct infile *infiles;
2363
2364 static int n_infiles;
2365
2366 /* This counts the number of libraries added by LANG_SPECIFIC_DRIVER, so that
2367 we can tell if there were any user supplied any files or libraries. */
2368
2369 static int added_libraries;
2370
2371 /* And a vector of corresponding output files is made up later. */
2372
2373 static char **outfiles;
2374
2375 /* Used to track if none of the -B paths are used. */
2376 static int warn_B;
2377
2378 /* Used to track if standard path isn't used and -b or -V is specified. */
2379 static int warn_std;
2380
2381 /* Gives value to pass as "warn" to add_prefix for standard prefixes. */
2382 static int *warn_std_ptr = 0;
2383
2384 \f
2385 #if defined(HAVE_OBJECT_SUFFIX) || defined(HAVE_EXECUTABLE_SUFFIX)
2386
2387 /* Convert NAME to a new name if it is the standard suffix. DO_EXE
2388 is true if we should look for an executable suffix as well. */
2389
2390 static char *
2391 convert_filename (name, do_exe)
2392 char *name;
2393 int do_exe;
2394 {
2395 int i;
2396 int len = strlen (name);
2397
2398 #ifdef HAVE_OBJECT_SUFFIX
2399 /* Convert x.o to x.obj if OBJECT_SUFFIX is ".obj". */
2400 if (len > 2
2401 && name[len - 2] == '.'
2402 && name[len - 1] == 'o')
2403 {
2404 obstack_grow (&obstack, name, len - 2);
2405 obstack_grow0 (&obstack, OBJECT_SUFFIX, strlen (OBJECT_SUFFIX));
2406 name = obstack_finish (&obstack);
2407 }
2408 #endif
2409
2410 #ifdef HAVE_EXECUTABLE_SUFFIX
2411 /* If there is no filetype, make it the executable suffix (which includes
2412 the "."). But don't get confused if we have just "-o". */
2413 if (! do_exe || EXECUTABLE_SUFFIX[0] == 0 || (len == 2 && name[0] == '-'))
2414 return name;
2415
2416 for (i = len - 1; i >= 0; i--)
2417 if (name[i] == '/' || name[i] == DIR_SEPARATOR)
2418 break;
2419
2420 for (i++; i < len; i++)
2421 if (name[i] == '.')
2422 return name;
2423
2424 obstack_grow (&obstack, name, len);
2425 obstack_grow0 (&obstack, EXECUTABLE_SUFFIX, strlen (EXECUTABLE_SUFFIX));
2426 name = obstack_finish (&obstack);
2427 #endif
2428
2429 return name;
2430 }
2431 #endif
2432 \f
2433 /* Display the command line switches accepted by gcc. */
2434 static void
2435 display_help ()
2436 {
2437 printf ("Usage: %s [options] file...\n", programname);
2438 printf ("Options:\n");
2439
2440 printf (" --help Display this information\n");
2441 if (! verbose_flag)
2442 printf (" (Use '-v --help' to display command line options of sub-processes)\n");
2443 printf (" -dumpspecs Display all of the built in spec strings\n");
2444 printf (" -dumpversion Display the version of the compiler\n");
2445 printf (" -dumpmachine Display the compiler's target processor\n");
2446 printf (" -print-search-dirs Display the directories in the compiler's search path\n");
2447 printf (" -print-libgcc-file-name Display the name of the compiler's companion library\n");
2448 printf (" -print-file-name=<lib> Display the full path to library <lib>\n");
2449 printf (" -print-prog-name=<prog> Display the full path to compiler component <prog>\n");
2450 printf (" -print-multi-directory Display the root directory for versions of libgcc\n");
2451 printf (" -print-multi-lib Display the mapping between command line options and\n");
2452 printf (" multiple library search directories\n");
2453 printf (" -Wa,<options> Pass comma-separated <options> on to the assembler\n");
2454 printf (" -Wp,<options> Pass comma-separated <options> on to the preprocessor\n");
2455 printf (" -Wl,<options> Pass comma-separated <options> on to the linker\n");
2456 printf (" -Xlinker <arg> Pass <arg> on to the linker\n");
2457 printf (" -save-temps Do not delete intermediate files\n");
2458 printf (" -pipe Use pipes rather than intermediate files\n");
2459 printf (" -specs=<file> Override builtin specs with the contents of <file>\n");
2460 printf (" -std=<standard> Assume that the input sources are for <standard>\n");
2461 printf (" -B <directory> Add <directory> to the compiler's search paths\n");
2462 printf (" -b <machine> Run gcc for target <machine>, if installed\n");
2463 printf (" -V <version> Run gcc version number <version>, if installed\n");
2464 printf (" -v Display the programs invoked by the compiler\n");
2465 printf (" -E Preprocess only; do not compile, assemble or link\n");
2466 printf (" -S Compile only; do not assemble or link\n");
2467 printf (" -c Compile and assemble, but do not link\n");
2468 printf (" -o <file> Place the output into <file>\n");
2469 printf (" -x <language> Specify the language of the following input files\n");
2470 printf (" Permissable languages include: c c++ assembler none\n");
2471 printf (" 'none' means revert to the default behaviour of\n");
2472 printf (" guessing the language based on the file's extension\n");
2473
2474 printf ("\nOptions starting with -g, -f, -m, -O or -W are automatically passed on to\n");
2475 printf ("the various sub-processes invoked by %s. In order to pass other options\n",
2476 programname);
2477 printf ("on to these processes the -W<letter> options must be used.\n");
2478
2479 /* The rest of the options are displayed by invocations of the various
2480 sub-processes. */
2481 }
2482
2483 static void
2484 add_preprocessor_option (option, len)
2485 char * option;
2486 int len;
2487 {
2488 n_preprocessor_options++;
2489
2490 if (! preprocessor_options)
2491 preprocessor_options
2492 = (char **) xmalloc (n_preprocessor_options * sizeof (char *));
2493 else
2494 preprocessor_options
2495 = (char **) xrealloc (preprocessor_options,
2496 n_preprocessor_options * sizeof (char *));
2497
2498 preprocessor_options [n_preprocessor_options - 1] = save_string (option, len);
2499 }
2500
2501 static void
2502 add_assembler_option (option, len)
2503 char * option;
2504 int len;
2505 {
2506 n_assembler_options++;
2507
2508 if (! assembler_options)
2509 assembler_options
2510 = (char **) xmalloc (n_assembler_options * sizeof (char *));
2511 else
2512 assembler_options
2513 = (char **) xrealloc (assembler_options,
2514 n_assembler_options * sizeof (char *));
2515
2516 assembler_options [n_assembler_options - 1] = save_string (option, len);
2517 }
2518
2519 static void
2520 add_linker_option (option, len)
2521 char * option;
2522 int len;
2523 {
2524 n_linker_options++;
2525
2526 if (! linker_options)
2527 linker_options
2528 = (char **) xmalloc (n_linker_options * sizeof (char *));
2529 else
2530 linker_options
2531 = (char **) xrealloc (linker_options,
2532 n_linker_options * sizeof (char *));
2533
2534 linker_options [n_linker_options - 1] = save_string (option, len);
2535 }
2536 \f
2537 /* Create the vector `switches' and its contents.
2538 Store its length in `n_switches'. */
2539
2540 static void
2541 process_command (argc, argv)
2542 int argc;
2543 char **argv;
2544 {
2545 register int i;
2546 char *temp;
2547 char *spec_lang = 0;
2548 int last_language_n_infiles;
2549 int have_c = 0;
2550 int have_o = 0;
2551 int lang_n_infiles = 0;
2552
2553 GET_ENV_PATH_LIST (gcc_exec_prefix, "GCC_EXEC_PREFIX");
2554
2555 n_switches = 0;
2556 n_infiles = 0;
2557 added_libraries = 0;
2558
2559 /* Figure compiler version from version string. */
2560
2561 compiler_version = save_string (version_string, strlen (version_string));
2562 for (temp = compiler_version; *temp; ++temp)
2563 {
2564 if (*temp == ' ')
2565 {
2566 *temp = '\0';
2567 break;
2568 }
2569 }
2570
2571 /* Set up the default search paths. */
2572
2573 if (gcc_exec_prefix)
2574 {
2575 int len = strlen (gcc_exec_prefix);
2576 if (len > (int) sizeof ("/lib/gcc-lib/")-1
2577 && (gcc_exec_prefix[len-1] == '/'
2578 || gcc_exec_prefix[len-1] == DIR_SEPARATOR))
2579 {
2580 temp = gcc_exec_prefix + len - sizeof ("/lib/gcc-lib/") + 1;
2581 if ((*temp == '/' || *temp == DIR_SEPARATOR)
2582 && strncmp (temp+1, "lib", 3) == 0
2583 && (temp[4] == '/' || temp[4] == DIR_SEPARATOR)
2584 && strncmp (temp+5, "gcc-lib", 7) == 0)
2585 len -= sizeof ("/lib/gcc-lib/") - 1;
2586 }
2587
2588 set_std_prefix (gcc_exec_prefix, len);
2589 add_prefix (&exec_prefixes, gcc_exec_prefix, "GCC", 0, 0, NULL_PTR);
2590 add_prefix (&startfile_prefixes, gcc_exec_prefix, "GCC", 0, 0, NULL_PTR);
2591 }
2592
2593 /* COMPILER_PATH and LIBRARY_PATH have values
2594 that are lists of directory names with colons. */
2595
2596 GET_ENV_PATH_LIST (temp, "COMPILER_PATH");
2597 if (temp)
2598 {
2599 char *startp, *endp;
2600 char *nstore = (char *) alloca (strlen (temp) + 3);
2601
2602 startp = endp = temp;
2603 while (1)
2604 {
2605 if (*endp == PATH_SEPARATOR || *endp == 0)
2606 {
2607 strncpy (nstore, startp, endp-startp);
2608 if (endp == startp)
2609 strcpy (nstore, concat (".", dir_separator_str, NULL_PTR));
2610 else if (endp[-1] != '/' && endp[-1] != DIR_SEPARATOR)
2611 {
2612 nstore[endp-startp] = DIR_SEPARATOR;
2613 nstore[endp-startp+1] = 0;
2614 }
2615 else
2616 nstore[endp-startp] = 0;
2617 add_prefix (&exec_prefixes, nstore, 0, 0, 0, NULL_PTR);
2618 add_prefix (&include_prefixes,
2619 concat (nstore, "include", NULL_PTR),
2620 0, 0, 0, NULL_PTR);
2621 if (*endp == 0)
2622 break;
2623 endp = startp = endp + 1;
2624 }
2625 else
2626 endp++;
2627 }
2628 }
2629
2630 GET_ENV_PATH_LIST (temp, "LIBRARY_PATH");
2631 if (temp && *cross_compile == '0')
2632 {
2633 char *startp, *endp;
2634 char *nstore = (char *) alloca (strlen (temp) + 3);
2635
2636 startp = endp = temp;
2637 while (1)
2638 {
2639 if (*endp == PATH_SEPARATOR || *endp == 0)
2640 {
2641 strncpy (nstore, startp, endp-startp);
2642 if (endp == startp)
2643 strcpy (nstore, concat (".", dir_separator_str, NULL_PTR));
2644 else if (endp[-1] != '/' && endp[-1] != DIR_SEPARATOR)
2645 {
2646 nstore[endp-startp] = DIR_SEPARATOR;
2647 nstore[endp-startp+1] = 0;
2648 }
2649 else
2650 nstore[endp-startp] = 0;
2651 add_prefix (&startfile_prefixes, nstore, NULL_PTR,
2652 0, 0, NULL_PTR);
2653 if (*endp == 0)
2654 break;
2655 endp = startp = endp + 1;
2656 }
2657 else
2658 endp++;
2659 }
2660 }
2661
2662 /* Use LPATH like LIBRARY_PATH (for the CMU build program). */
2663 GET_ENV_PATH_LIST (temp, "LPATH");
2664 if (temp && *cross_compile == '0')
2665 {
2666 char *startp, *endp;
2667 char *nstore = (char *) alloca (strlen (temp) + 3);
2668
2669 startp = endp = temp;
2670 while (1)
2671 {
2672 if (*endp == PATH_SEPARATOR || *endp == 0)
2673 {
2674 strncpy (nstore, startp, endp-startp);
2675 if (endp == startp)
2676 strcpy (nstore, concat (".", dir_separator_str, NULL_PTR));
2677 else if (endp[-1] != '/' && endp[-1] != DIR_SEPARATOR)
2678 {
2679 nstore[endp-startp] = DIR_SEPARATOR;
2680 nstore[endp-startp+1] = 0;
2681 }
2682 else
2683 nstore[endp-startp] = 0;
2684 add_prefix (&startfile_prefixes, nstore, NULL_PTR,
2685 0, 0, NULL_PTR);
2686 if (*endp == 0)
2687 break;
2688 endp = startp = endp + 1;
2689 }
2690 else
2691 endp++;
2692 }
2693 }
2694
2695 /* Convert new-style -- options to old-style. */
2696 translate_options (&argc, &argv);
2697
2698 #ifdef LANG_SPECIFIC_DRIVER
2699 /* Do language-specific adjustment/addition of flags. */
2700 lang_specific_driver (fatal, &argc, &argv, &added_libraries);
2701 #endif
2702
2703 /* Scan argv twice. Here, the first time, just count how many switches
2704 there will be in their vector, and how many input files in theirs.
2705 Here we also parse the switches that cc itself uses (e.g. -v). */
2706
2707 for (i = 1; i < argc; i++)
2708 {
2709 if (! strcmp (argv[i], "-dumpspecs"))
2710 {
2711 struct spec_list *sl;
2712 init_spec ();
2713 for (sl = specs; sl; sl = sl->next)
2714 printf ("*%s:\n%s\n\n", sl->name, *(sl->ptr_spec));
2715 exit (0);
2716 }
2717 else if (! strcmp (argv[i], "-dumpversion"))
2718 {
2719 printf ("%s\n", spec_version);
2720 exit (0);
2721 }
2722 else if (! strcmp (argv[i], "-dumpmachine"))
2723 {
2724 printf ("%s\n", spec_machine);
2725 exit (0);
2726 }
2727 else if (strcmp (argv[i], "-fhelp") == 0)
2728 {
2729 /* translate_options () has turned --help into -fhelp. */
2730 print_help_list = 1;
2731
2732 /* We will be passing a dummy file on to the sub-processes. */
2733 n_infiles++;
2734 n_switches++;
2735
2736 add_preprocessor_option ("--help", 6);
2737 add_assembler_option ("--help", 6);
2738 add_linker_option ("--help", 6);
2739 }
2740 else if (! strcmp (argv[i], "-print-search-dirs"))
2741 print_search_dirs = 1;
2742 else if (! strcmp (argv[i], "-print-libgcc-file-name"))
2743 print_file_name = "libgcc.a";
2744 else if (! strncmp (argv[i], "-print-file-name=", 17))
2745 print_file_name = argv[i] + 17;
2746 else if (! strncmp (argv[i], "-print-prog-name=", 17))
2747 print_prog_name = argv[i] + 17;
2748 else if (! strcmp (argv[i], "-print-multi-lib"))
2749 print_multi_lib = 1;
2750 else if (! strcmp (argv[i], "-print-multi-directory"))
2751 print_multi_directory = 1;
2752 else if (! strncmp (argv[i], "-Wa,", 4))
2753 {
2754 int prev, j;
2755 /* Pass the rest of this option to the assembler. */
2756
2757 /* Split the argument at commas. */
2758 prev = 4;
2759 for (j = 4; argv[i][j]; j++)
2760 if (argv[i][j] == ',')
2761 {
2762 add_assembler_option (argv[i] + prev, j - prev);
2763 prev = j + 1;
2764 }
2765
2766 /* Record the part after the last comma. */
2767 add_assembler_option (argv[i] + prev, j - prev);
2768 }
2769 else if (! strncmp (argv[i], "-Wp,", 4))
2770 {
2771 int prev, j;
2772 /* Pass the rest of this option to the preprocessor. */
2773
2774 /* Split the argument at commas. */
2775 prev = 4;
2776 for (j = 4; argv[i][j]; j++)
2777 if (argv[i][j] == ',')
2778 {
2779 add_preprocessor_option (argv[i] + prev, j - prev);
2780 prev = j + 1;
2781 }
2782
2783 /* Record the part after the last comma. */
2784 add_preprocessor_option (argv[i] + prev, j - prev);
2785 }
2786 else if (argv[i][0] == '+' && argv[i][1] == 'e')
2787 /* The +e options to the C++ front-end. */
2788 n_switches++;
2789 else if (strncmp (argv[i], "-Wl,", 4) == 0)
2790 {
2791 int j;
2792 /* Split the argument at commas. */
2793 for (j = 3; argv[i][j]; j++)
2794 n_infiles += (argv[i][j] == ',');
2795 }
2796 else if (strcmp (argv[i], "-Xlinker") == 0)
2797 {
2798 if (i + 1 == argc)
2799 fatal ("argument to `-Xlinker' is missing");
2800
2801 n_infiles++;
2802 i++;
2803 }
2804 else if (strncmp (argv[i], "-l", 2) == 0)
2805 n_infiles++;
2806 else if (strcmp (argv[i], "-save-temps") == 0)
2807 {
2808 save_temps_flag = 1;
2809 n_switches++;
2810 }
2811 else if (strcmp (argv[i], "-specs") == 0)
2812 {
2813 struct user_specs *user = (struct user_specs *)
2814 xmalloc (sizeof (struct user_specs));
2815 if (++i >= argc)
2816 fatal ("argument to `-specs' is missing");
2817
2818 user->next = (struct user_specs *)0;
2819 user->filename = argv[i];
2820 if (user_specs_tail)
2821 user_specs_tail->next = user;
2822 else
2823 user_specs_head = user;
2824 user_specs_tail = user;
2825 }
2826 else if (strncmp (argv[i], "-specs=", 7) == 0)
2827 {
2828 struct user_specs *user = (struct user_specs *)
2829 xmalloc (sizeof (struct user_specs));
2830 if (strlen (argv[i]) == 7)
2831 fatal ("argument to `-specs=' is missing");
2832
2833 user->next = (struct user_specs *)0;
2834 user->filename = argv[i]+7;
2835 if (user_specs_tail)
2836 user_specs_tail->next = user;
2837 else
2838 user_specs_head = user;
2839 user_specs_tail = user;
2840 }
2841 else if (argv[i][0] == '-' && argv[i][1] != 0)
2842 {
2843 register char *p = &argv[i][1];
2844 register int c = *p;
2845
2846 switch (c)
2847 {
2848 case 'b':
2849 n_switches++;
2850 if (p[1] == 0 && i + 1 == argc)
2851 fatal ("argument to `-b' is missing");
2852 if (p[1] == 0)
2853 spec_machine = argv[++i];
2854 else
2855 spec_machine = p + 1;
2856
2857 warn_std_ptr = &warn_std;
2858 break;
2859
2860 case 'B':
2861 {
2862 char *value;
2863 if (p[1] == 0 && i + 1 == argc)
2864 fatal ("argument to `-B' is missing");
2865 if (p[1] == 0)
2866 value = argv[++i];
2867 else
2868 value = p + 1;
2869 add_prefix (&exec_prefixes, value, NULL_PTR, 1, 0, &warn_B);
2870 add_prefix (&startfile_prefixes, value, NULL_PTR,
2871 1, 0, &warn_B);
2872 add_prefix (&include_prefixes, concat (value, "include",
2873 NULL_PTR),
2874 NULL_PTR, 1, 0, NULL_PTR);
2875
2876 /* As a kludge, if the arg is "[foo/]stageN/", just add
2877 "[foo/]include" to the include prefix. */
2878 {
2879 int len = strlen (value);
2880 if ((len == 7
2881 || (len > 7
2882 && (value[len - 8] == '/'
2883 || value[len - 8] == DIR_SEPARATOR)))
2884 && strncmp (value + len - 7, "stage", 5) == 0
2885 && ISDIGIT (value[len - 2])
2886 && (value[len - 1] == '/'
2887 || value[len - 1] == DIR_SEPARATOR))
2888 {
2889 if (len == 7)
2890 add_prefix (&include_prefixes, "include", NULL_PTR,
2891 1, 0, NULL_PTR);
2892 else
2893 {
2894 char *string = xmalloc (len + 1);
2895 strncpy (string, value, len-7);
2896 strcpy (string+len-7, "include");
2897 add_prefix (&include_prefixes, string, NULL_PTR,
2898 1, 0, NULL_PTR);
2899 }
2900 }
2901 }
2902 n_switches++;
2903 }
2904 break;
2905
2906 case 'v': /* Print our subcommands and print versions. */
2907 n_switches++;
2908 /* If they do anything other than exactly `-v', don't set
2909 verbose_flag; rather, continue on to give the error. */
2910 if (p[1] != 0)
2911 break;
2912 verbose_flag++;
2913 break;
2914
2915 case 'V':
2916 n_switches++;
2917 if (p[1] == 0 && i + 1 == argc)
2918 fatal ("argument to `-V' is missing");
2919 if (p[1] == 0)
2920 spec_version = argv[++i];
2921 else
2922 spec_version = p + 1;
2923 compiler_version = spec_version;
2924 warn_std_ptr = &warn_std;
2925
2926 /* Validate the version number. Use the same checks
2927 done when inserting it into a spec.
2928
2929 The format of the version string is
2930 ([^0-9]*-)?[0-9]+[.][0-9]+([.][0-9]+)?([- ].*)? */
2931 {
2932 char *v = compiler_version;
2933
2934 /* Ignore leading non-digits. i.e. "foo-" in "foo-2.7.2". */
2935 while (! ISDIGIT (*v))
2936 v++;
2937
2938 if (v > compiler_version && v[-1] != '-')
2939 fatal ("invalid version number format");
2940
2941 /* Set V after the first period. */
2942 while (ISDIGIT (*v))
2943 v++;
2944
2945 if (*v != '.')
2946 fatal ("invalid version number format");
2947
2948 v++;
2949 while (ISDIGIT (*v))
2950 v++;
2951
2952 if (*v != 0 && *v != ' ' && *v != '.' && *v != '-')
2953 fatal ("invalid version number format");
2954 }
2955 break;
2956
2957 case 'S':
2958 case 'c':
2959 if (p[1] == 0)
2960 {
2961 have_c = 1;
2962 n_switches++;
2963 break;
2964 }
2965 goto normal_switch;
2966
2967 case 'o':
2968 have_o = 1;
2969 #if defined(HAVE_EXECUTABLE_SUFFIX)
2970 if (! have_c)
2971 {
2972 int skip;
2973
2974 /* Forward scan, just in case -S or -c is specified
2975 after -o. */
2976 int j = i + 1;
2977 if (p[1] == 0)
2978 ++j;
2979 while (j < argc)
2980 {
2981 if (argv[j][0] == '-')
2982 {
2983 if (SWITCH_CURTAILS_COMPILATION (argv[j][1])
2984 && argv[j][2] == 0)
2985 {
2986 have_c = 1;
2987 break;
2988 }
2989 else if (skip = SWITCH_TAKES_ARG (argv[j][1]))
2990 j += skip - (argv[j][2] != 0);
2991 else if (skip = WORD_SWITCH_TAKES_ARG (argv[j] + 1))
2992 j += skip;
2993 }
2994 j++;
2995 }
2996 }
2997 #endif
2998 #if defined(HAVE_EXECUTABLE_SUFFIX) || defined(HAVE_OBJECT_SUFFIX)
2999 if (p[1] == 0)
3000 argv[i+1] = convert_filename (argv[i+1], ! have_c);
3001 else
3002 argv[i] = convert_filename (argv[i], ! have_c);
3003 #endif
3004 goto normal_switch;
3005
3006 default:
3007 normal_switch:
3008 n_switches++;
3009
3010 if (SWITCH_TAKES_ARG (c) > (p[1] != 0))
3011 i += SWITCH_TAKES_ARG (c) - (p[1] != 0);
3012 else if (WORD_SWITCH_TAKES_ARG (p))
3013 i += WORD_SWITCH_TAKES_ARG (p);
3014 }
3015 }
3016 else
3017 {
3018 n_infiles++;
3019 lang_n_infiles++;
3020 }
3021 }
3022
3023 if (have_c && have_o && lang_n_infiles > 1)
3024 fatal ("cannot specify -o with -c or -S and multiple compilations");
3025
3026 /* Set up the search paths before we go looking for config files. */
3027
3028 /* These come before the md prefixes so that we will find gcc's subcommands
3029 (such as cpp) rather than those of the host system. */
3030 /* Use 2 as fourth arg meaning try just the machine as a suffix,
3031 as well as trying the machine and the version. */
3032 #ifndef OS2
3033 add_prefix (&exec_prefixes, standard_exec_prefix, "BINUTILS",
3034 0, 2, warn_std_ptr);
3035 add_prefix (&exec_prefixes, standard_exec_prefix_1, "BINUTILS",
3036 0, 2, warn_std_ptr);
3037 #endif
3038
3039 add_prefix (&startfile_prefixes, standard_exec_prefix, "BINUTILS",
3040 0, 1, warn_std_ptr);
3041 add_prefix (&startfile_prefixes, standard_exec_prefix_1, "BINUTILS",
3042 0, 1, warn_std_ptr);
3043
3044 tooldir_prefix = concat (tooldir_base_prefix, spec_machine,
3045 dir_separator_str, NULL_PTR);
3046
3047 /* If tooldir is relative, base it on exec_prefixes. A relative
3048 tooldir lets us move the installed tree as a unit.
3049
3050 If GCC_EXEC_PREFIX is defined, then we want to add two relative
3051 directories, so that we can search both the user specified directory
3052 and the standard place. */
3053
3054 if (*tooldir_prefix != '/' && *tooldir_prefix != DIR_SEPARATOR)
3055 {
3056 if (gcc_exec_prefix)
3057 {
3058 char *gcc_exec_tooldir_prefix
3059 = concat (gcc_exec_prefix, spec_machine, dir_separator_str,
3060 spec_version, dir_separator_str, tooldir_prefix, NULL_PTR);
3061
3062 add_prefix (&exec_prefixes,
3063 concat (gcc_exec_tooldir_prefix, "bin",
3064 dir_separator_str, NULL_PTR),
3065 NULL_PTR, 0, 0, NULL_PTR);
3066 add_prefix (&startfile_prefixes,
3067 concat (gcc_exec_tooldir_prefix, "lib",
3068 dir_separator_str, NULL_PTR),
3069 NULL_PTR, 0, 0, NULL_PTR);
3070 }
3071
3072 tooldir_prefix = concat (standard_exec_prefix, spec_machine,
3073 dir_separator_str, spec_version,
3074 dir_separator_str, tooldir_prefix, NULL_PTR);
3075 }
3076
3077 add_prefix (&exec_prefixes,
3078 concat (tooldir_prefix, "bin", dir_separator_str, NULL_PTR),
3079 "BINUTILS", 0, 0, NULL_PTR);
3080 add_prefix (&startfile_prefixes,
3081 concat (tooldir_prefix, "lib", dir_separator_str, NULL_PTR),
3082 "BINUTILS", 0, 0, NULL_PTR);
3083
3084 /* More prefixes are enabled in main, after we read the specs file
3085 and determine whether this is cross-compilation or not. */
3086
3087
3088 /* Then create the space for the vectors and scan again. */
3089
3090 switches = ((struct switchstr *)
3091 xmalloc ((n_switches + 1) * sizeof (struct switchstr)));
3092 infiles = (struct infile *) xmalloc ((n_infiles + 1) * sizeof (struct infile));
3093 n_switches = 0;
3094 n_infiles = 0;
3095 last_language_n_infiles = -1;
3096
3097 /* This, time, copy the text of each switch and store a pointer
3098 to the copy in the vector of switches.
3099 Store all the infiles in their vector. */
3100
3101 for (i = 1; i < argc; i++)
3102 {
3103 /* Just skip the switches that were handled by the preceding loop. */
3104 if (! strncmp (argv[i], "-Wa,", 4))
3105 ;
3106 else if (! strncmp (argv[i], "-Wp,", 4))
3107 ;
3108 else if (! strcmp (argv[i], "-print-search-dirs"))
3109 ;
3110 else if (! strcmp (argv[i], "-print-libgcc-file-name"))
3111 ;
3112 else if (! strncmp (argv[i], "-print-file-name=", 17))
3113 ;
3114 else if (! strncmp (argv[i], "-print-prog-name=", 17))
3115 ;
3116 else if (! strcmp (argv[i], "-print-multi-lib"))
3117 ;
3118 else if (! strcmp (argv[i], "-print-multi-directory"))
3119 ;
3120 else if (strcmp (argv[i], "-fhelp") == 0)
3121 {
3122 if (verbose_flag)
3123 {
3124 /* Create a dummy input file, so that we can pass --help on to
3125 the various sub-processes. */
3126 infiles[n_infiles].language = "c";
3127 infiles[n_infiles++].name = "help-dummy";
3128
3129 /* Preserve the --help switch so that it can be caught by the
3130 cc1 spec string. */
3131 switches[n_switches].part1 = "--help";
3132 switches[n_switches].args = 0;
3133 switches[n_switches].live_cond = 0;
3134 switches[n_switches].validated = 0;
3135
3136 n_switches++;
3137 }
3138 }
3139 else if (argv[i][0] == '+' && argv[i][1] == 'e')
3140 {
3141 /* Compensate for the +e options to the C++ front-end;
3142 they're there simply for cfront call-compatibility. We do
3143 some magic in default_compilers to pass them down properly.
3144 Note we deliberately start at the `+' here, to avoid passing
3145 -e0 or -e1 down into the linker. */
3146 switches[n_switches].part1 = &argv[i][0];
3147 switches[n_switches].args = 0;
3148 switches[n_switches].live_cond = 0;
3149 switches[n_switches].validated = 0;
3150 n_switches++;
3151 }
3152 else if (strncmp (argv[i], "-Wl,", 4) == 0)
3153 {
3154 int prev, j;
3155 /* Split the argument at commas. */
3156 prev = 4;
3157 for (j = 4; argv[i][j]; j++)
3158 if (argv[i][j] == ',')
3159 {
3160 infiles[n_infiles].language = "*";
3161 infiles[n_infiles++].name
3162 = save_string (argv[i] + prev, j - prev);
3163 prev = j + 1;
3164 }
3165 /* Record the part after the last comma. */
3166 infiles[n_infiles].language = "*";
3167 infiles[n_infiles++].name = argv[i] + prev;
3168 }
3169 else if (strcmp (argv[i], "-Xlinker") == 0)
3170 {
3171 infiles[n_infiles].language = "*";
3172 infiles[n_infiles++].name = argv[++i];
3173 }
3174 else if (strncmp (argv[i], "-l", 2) == 0)
3175 {
3176 infiles[n_infiles].language = "*";
3177 infiles[n_infiles++].name = argv[i];
3178 }
3179 else if (strcmp (argv[i], "-specs") == 0)
3180 i++;
3181 else if (strncmp (argv[i], "-specs=", 7) == 0)
3182 ;
3183 /* -save-temps overrides -pipe, so that temp files are produced */
3184 else if (save_temps_flag && strcmp (argv[i], "-pipe") == 0)
3185 error ("Warning: -pipe ignored since -save-temps specified");
3186 else if (argv[i][0] == '-' && argv[i][1] != 0)
3187 {
3188 register char *p = &argv[i][1];
3189 register int c = *p;
3190
3191 if (c == 'x')
3192 {
3193 if (p[1] == 0 && i + 1 == argc)
3194 fatal ("argument to `-x' is missing");
3195 if (p[1] == 0)
3196 spec_lang = argv[++i];
3197 else
3198 spec_lang = p + 1;
3199 if (! strcmp (spec_lang, "none"))
3200 /* Suppress the warning if -xnone comes after the last input
3201 file, because alternate command interfaces like g++ might
3202 find it useful to place -xnone after each input file. */
3203 spec_lang = 0;
3204 else
3205 last_language_n_infiles = n_infiles;
3206 continue;
3207 }
3208 switches[n_switches].part1 = p;
3209 /* Deal with option arguments in separate argv elements. */
3210 if ((SWITCH_TAKES_ARG (c) > (p[1] != 0))
3211 || WORD_SWITCH_TAKES_ARG (p))
3212 {
3213 int j = 0;
3214 int n_args = WORD_SWITCH_TAKES_ARG (p);
3215
3216 if (n_args == 0)
3217 {
3218 /* Count only the option arguments in separate argv elements. */
3219 n_args = SWITCH_TAKES_ARG (c) - (p[1] != 0);
3220 }
3221 if (i + n_args >= argc)
3222 fatal ("argument to `-%s' is missing", p);
3223 switches[n_switches].args
3224 = (char **) xmalloc ((n_args + 1) * sizeof (char *));
3225 while (j < n_args)
3226 switches[n_switches].args[j++] = argv[++i];
3227 /* Null-terminate the vector. */
3228 switches[n_switches].args[j] = 0;
3229 }
3230 else if (index (switches_need_spaces, c))
3231 {
3232 /* On some systems, ld cannot handle some options without
3233 a space. So split the option from its argument. */
3234 char *part1 = (char *) xmalloc (2);
3235 part1[0] = c;
3236 part1[1] = '\0';
3237
3238 switches[n_switches].part1 = part1;
3239 switches[n_switches].args = (char **) xmalloc (2 * sizeof (char *));
3240 switches[n_switches].args[0] = xmalloc (strlen (p));
3241 strcpy (switches[n_switches].args[0], &p[1]);
3242 switches[n_switches].args[1] = 0;
3243 }
3244 else
3245 switches[n_switches].args = 0;
3246
3247 switches[n_switches].live_cond = 0;
3248 switches[n_switches].validated = 0;
3249 /* This is always valid, since gcc.c itself understands it. */
3250 if (!strcmp (p, "save-temps"))
3251 switches[n_switches].validated = 1;
3252 else
3253 {
3254 char ch = switches[n_switches].part1[0];
3255 if (ch == 'V' || ch == 'b' || ch == 'B')
3256 switches[n_switches].validated = 1;
3257 }
3258 n_switches++;
3259 }
3260 else
3261 {
3262 #ifdef HAVE_OBJECT_SUFFIX
3263 argv[i] = convert_filename (argv[i], 0);
3264 #endif
3265
3266 if (strcmp (argv[i], "-") != 0 && access (argv[i], R_OK) < 0)
3267 {
3268 perror_with_name (argv[i]);
3269 error_count++;
3270 }
3271 else
3272 {
3273 infiles[n_infiles].language = spec_lang;
3274 infiles[n_infiles++].name = argv[i];
3275 }
3276 }
3277 }
3278
3279 if (n_infiles == last_language_n_infiles && spec_lang != 0)
3280 error ("Warning: `-x %s' after last input file has no effect", spec_lang);
3281
3282 switches[n_switches].part1 = 0;
3283 infiles[n_infiles].name = 0;
3284 }
3285 \f
3286 /* Process a spec string, accumulating and running commands. */
3287
3288 /* These variables describe the input file name.
3289 input_file_number is the index on outfiles of this file,
3290 so that the output file name can be stored for later use by %o.
3291 input_basename is the start of the part of the input file
3292 sans all directory names, and basename_length is the number
3293 of characters starting there excluding the suffix .c or whatever. */
3294
3295 char *input_filename;
3296 static int input_file_number;
3297 size_t input_filename_length;
3298 static int basename_length;
3299 static char *input_basename;
3300 static char *input_suffix;
3301
3302 /* These are variables used within do_spec and do_spec_1. */
3303
3304 /* Nonzero if an arg has been started and not yet terminated
3305 (with space, tab or newline). */
3306 static int arg_going;
3307
3308 /* Nonzero means %d or %g has been seen; the next arg to be terminated
3309 is a temporary file name. */
3310 static int delete_this_arg;
3311
3312 /* Nonzero means %w has been seen; the next arg to be terminated
3313 is the output file name of this compilation. */
3314 static int this_is_output_file;
3315
3316 /* Nonzero means %s has been seen; the next arg to be terminated
3317 is the name of a library file and we should try the standard
3318 search dirs for it. */
3319 static int this_is_library_file;
3320
3321 /* Nonzero means that the input of this command is coming from a pipe. */
3322 static int input_from_pipe;
3323
3324 /* Process the spec SPEC and run the commands specified therein.
3325 Returns 0 if the spec is successfully processed; -1 if failed. */
3326
3327 int
3328 do_spec (spec)
3329 char *spec;
3330 {
3331 int value;
3332
3333 clear_args ();
3334 arg_going = 0;
3335 delete_this_arg = 0;
3336 this_is_output_file = 0;
3337 this_is_library_file = 0;
3338 input_from_pipe = 0;
3339
3340 value = do_spec_1 (spec, 0, NULL_PTR);
3341
3342 /* Force out any unfinished command.
3343 If -pipe, this forces out the last command if it ended in `|'. */
3344 if (value == 0)
3345 {
3346 if (argbuf_index > 0 && !strcmp (argbuf[argbuf_index - 1], "|"))
3347 argbuf_index--;
3348
3349 if (argbuf_index > 0)
3350 value = execute ();
3351 }
3352
3353 return value;
3354 }
3355
3356 /* Process the sub-spec SPEC as a portion of a larger spec.
3357 This is like processing a whole spec except that we do
3358 not initialize at the beginning and we do not supply a
3359 newline by default at the end.
3360 INSWITCH nonzero means don't process %-sequences in SPEC;
3361 in this case, % is treated as an ordinary character.
3362 This is used while substituting switches.
3363 INSWITCH nonzero also causes SPC not to terminate an argument.
3364
3365 Value is zero unless a line was finished
3366 and the command on that line reported an error. */
3367
3368 static int
3369 do_spec_1 (spec, inswitch, soft_matched_part)
3370 char *spec;
3371 int inswitch;
3372 char *soft_matched_part;
3373 {
3374 register char *p = spec;
3375 register int c;
3376 int i;
3377 char *string;
3378 int value;
3379
3380 while ((c = *p++))
3381 /* If substituting a switch, treat all chars like letters.
3382 Otherwise, NL, SPC, TAB and % are special. */
3383 switch (inswitch ? 'a' : c)
3384 {
3385 case '\n':
3386 /* End of line: finish any pending argument,
3387 then run the pending command if one has been started. */
3388 if (arg_going)
3389 {
3390 obstack_1grow (&obstack, 0);
3391 string = obstack_finish (&obstack);
3392 if (this_is_library_file)
3393 string = find_file (string);
3394 store_arg (string, delete_this_arg, this_is_output_file);
3395 if (this_is_output_file)
3396 outfiles[input_file_number] = string;
3397 }
3398 arg_going = 0;
3399
3400 if (argbuf_index > 0 && !strcmp (argbuf[argbuf_index - 1], "|"))
3401 {
3402 for (i = 0; i < n_switches; i++)
3403 if (!strcmp (switches[i].part1, "pipe"))
3404 break;
3405
3406 /* A `|' before the newline means use a pipe here,
3407 but only if -pipe was specified.
3408 Otherwise, execute now and don't pass the `|' as an arg. */
3409 if (i < n_switches)
3410 {
3411 input_from_pipe = 1;
3412 switches[i].validated = 1;
3413 break;
3414 }
3415 else
3416 argbuf_index--;
3417 }
3418
3419 if (argbuf_index > 0)
3420 {
3421 value = execute ();
3422 if (value)
3423 return value;
3424 }
3425 /* Reinitialize for a new command, and for a new argument. */
3426 clear_args ();
3427 arg_going = 0;
3428 delete_this_arg = 0;
3429 this_is_output_file = 0;
3430 this_is_library_file = 0;
3431 input_from_pipe = 0;
3432 break;
3433
3434 case '|':
3435 /* End any pending argument. */
3436 if (arg_going)
3437 {
3438 obstack_1grow (&obstack, 0);
3439 string = obstack_finish (&obstack);
3440 if (this_is_library_file)
3441 string = find_file (string);
3442 store_arg (string, delete_this_arg, this_is_output_file);
3443 if (this_is_output_file)
3444 outfiles[input_file_number] = string;
3445 }
3446
3447 /* Use pipe */
3448 obstack_1grow (&obstack, c);
3449 arg_going = 1;
3450 break;
3451
3452 case '\t':
3453 case ' ':
3454 /* Space or tab ends an argument if one is pending. */
3455 if (arg_going)
3456 {
3457 obstack_1grow (&obstack, 0);
3458 string = obstack_finish (&obstack);
3459 if (this_is_library_file)
3460 string = find_file (string);
3461 store_arg (string, delete_this_arg, this_is_output_file);
3462 if (this_is_output_file)
3463 outfiles[input_file_number] = string;
3464 }
3465 /* Reinitialize for a new argument. */
3466 arg_going = 0;
3467 delete_this_arg = 0;
3468 this_is_output_file = 0;
3469 this_is_library_file = 0;
3470 break;
3471
3472 case '%':
3473 switch (c = *p++)
3474 {
3475 case 0:
3476 fatal ("Invalid specification! Bug in cc.");
3477
3478 case 'b':
3479 obstack_grow (&obstack, input_basename, basename_length);
3480 arg_going = 1;
3481 break;
3482
3483 case 'd':
3484 delete_this_arg = 2;
3485 break;
3486
3487 /* Dump out the directories specified with LIBRARY_PATH,
3488 followed by the absolute directories
3489 that we search for startfiles. */
3490 case 'D':
3491 {
3492 struct prefix_list *pl = startfile_prefixes.plist;
3493 size_t bufsize = 100;
3494 char *buffer = (char *) xmalloc (bufsize);
3495 int idx;
3496
3497 for (; pl; pl = pl->next)
3498 {
3499 #ifdef RELATIVE_PREFIX_NOT_LINKDIR
3500 /* Used on systems which record the specified -L dirs
3501 and use them to search for dynamic linking. */
3502 /* Relative directories always come from -B,
3503 and it is better not to use them for searching
3504 at run time. In particular, stage1 loses */
3505 if (pl->prefix[0] != '/' && pl->prefix[0] != DIR_SEPARATOR)
3506 continue;
3507 #endif
3508 /* Try subdirectory if there is one. */
3509 if (multilib_dir != NULL)
3510 {
3511 if (machine_suffix)
3512 {
3513 if (strlen (pl->prefix) + strlen (machine_suffix)
3514 >= bufsize)
3515 bufsize = (strlen (pl->prefix)
3516 + strlen (machine_suffix)) * 2 + 1;
3517 buffer = (char *) xrealloc (buffer, bufsize);
3518 strcpy (buffer, pl->prefix);
3519 strcat (buffer, machine_suffix);
3520 if (is_directory (buffer, multilib_dir, 1))
3521 {
3522 do_spec_1 ("-L", 0, NULL_PTR);
3523 #ifdef SPACE_AFTER_L_OPTION
3524 do_spec_1 (" ", 0, NULL_PTR);
3525 #endif
3526 do_spec_1 (buffer, 1, NULL_PTR);
3527 do_spec_1 (multilib_dir, 1, NULL_PTR);
3528 /* Make this a separate argument. */
3529 do_spec_1 (" ", 0, NULL_PTR);
3530 }
3531 }
3532 if (!pl->require_machine_suffix)
3533 {
3534 if (is_directory (pl->prefix, multilib_dir, 1))
3535 {
3536 do_spec_1 ("-L", 0, NULL_PTR);
3537 #ifdef SPACE_AFTER_L_OPTION
3538 do_spec_1 (" ", 0, NULL_PTR);
3539 #endif
3540 do_spec_1 (pl->prefix, 1, NULL_PTR);
3541 do_spec_1 (multilib_dir, 1, NULL_PTR);
3542 /* Make this a separate argument. */
3543 do_spec_1 (" ", 0, NULL_PTR);
3544 }
3545 }
3546 }
3547 if (machine_suffix)
3548 {
3549 if (is_directory (pl->prefix, machine_suffix, 1))
3550 {
3551 do_spec_1 ("-L", 0, NULL_PTR);
3552 #ifdef SPACE_AFTER_L_OPTION
3553 do_spec_1 (" ", 0, NULL_PTR);
3554 #endif
3555 do_spec_1 (pl->prefix, 1, NULL_PTR);
3556 /* Remove slash from machine_suffix. */
3557 if (strlen (machine_suffix) >= bufsize)
3558 bufsize = strlen (machine_suffix) * 2 + 1;
3559 buffer = (char *) xrealloc (buffer, bufsize);
3560 strcpy (buffer, machine_suffix);
3561 idx = strlen (buffer);
3562 if (buffer[idx - 1] == '/'
3563 || buffer[idx - 1] == DIR_SEPARATOR)
3564 buffer[idx - 1] = 0;
3565 do_spec_1 (buffer, 1, NULL_PTR);
3566 /* Make this a separate argument. */
3567 do_spec_1 (" ", 0, NULL_PTR);
3568 }
3569 }
3570 if (!pl->require_machine_suffix)
3571 {
3572 if (is_directory (pl->prefix, "", 1))
3573 {
3574 do_spec_1 ("-L", 0, NULL_PTR);
3575 #ifdef SPACE_AFTER_L_OPTION
3576 do_spec_1 (" ", 0, NULL_PTR);
3577 #endif
3578 /* Remove slash from pl->prefix. */
3579 if (strlen (pl->prefix) >= bufsize)
3580 bufsize = strlen (pl->prefix) * 2 + 1;
3581 buffer = (char *) xrealloc (buffer, bufsize);
3582 strcpy (buffer, pl->prefix);
3583 idx = strlen (buffer);
3584 if (buffer[idx - 1] == '/'
3585 || buffer[idx - 1] == DIR_SEPARATOR)
3586 buffer[idx - 1] = 0;
3587 do_spec_1 (buffer, 1, NULL_PTR);
3588 /* Make this a separate argument. */
3589 do_spec_1 (" ", 0, NULL_PTR);
3590 }
3591 }
3592 }
3593 free (buffer);
3594 }
3595 break;
3596
3597 case 'e':
3598 /* %efoo means report an error with `foo' as error message
3599 and don't execute any more commands for this file. */
3600 {
3601 char *q = p;
3602 char *buf;
3603 while (*p != 0 && *p != '\n') p++;
3604 buf = (char *) alloca (p - q + 1);
3605 strncpy (buf, q, p - q);
3606 buf[p - q] = 0;
3607 error (buf);
3608 return -1;
3609 }
3610 break;
3611
3612 case 'g':
3613 case 'u':
3614 case 'U':
3615 if (save_temps_flag)
3616 {
3617 obstack_grow (&obstack, input_basename, basename_length);
3618 delete_this_arg = 0;
3619 }
3620 else
3621 {
3622 #ifdef MKTEMP_EACH_FILE
3623 /* ??? This has a problem: the total number of
3624 values mktemp can return is limited.
3625 That matters for the names of object files.
3626 In 2.4, do something about that. */
3627 struct temp_name *t;
3628 int suffix_length;
3629 char *suffix = p;
3630
3631 if (p[0] == '%' && p[1] == 'O')
3632 {
3633 p += 2;
3634 /* We don't support extra suffix characters after %O. */
3635 if (*p == '.' || ISALPHA ((unsigned char)*p))
3636 abort ();
3637 suffix = OBJECT_SUFFIX;
3638 suffix_length = strlen (OBJECT_SUFFIX);
3639 }
3640 else
3641 {
3642 while (*p == '.' || ISALPHA ((unsigned char)*p))
3643 p++;
3644 suffix_length = p - suffix;
3645 }
3646
3647 /* See if we already have an association of %g/%u/%U and
3648 suffix. */
3649 for (t = temp_names; t; t = t->next)
3650 if (t->length == suffix_length
3651 && strncmp (t->suffix, suffix, suffix_length) == 0
3652 && t->unique == (c != 'g'))
3653 break;
3654
3655 /* Make a new association if needed. %u requires one. */
3656 if (t == 0 || c == 'u')
3657 {
3658 if (t == 0)
3659 {
3660 t = (struct temp_name *) xmalloc (sizeof (struct temp_name));
3661 t->next = temp_names;
3662 temp_names = t;
3663 }
3664 t->length = suffix_length;
3665 t->suffix = save_string (suffix, suffix_length);
3666 t->unique = (c != 'g');
3667 temp_filename = make_temp_file (t->suffix);
3668 temp_filename_length = strlen (temp_filename);
3669 t->filename = temp_filename;
3670 t->filename_length = temp_filename_length;
3671 }
3672
3673 obstack_grow (&obstack, t->filename, t->filename_length);
3674 delete_this_arg = 1;
3675 #else
3676 obstack_grow (&obstack, temp_filename, temp_filename_length);
3677 if (c == 'u' || c == 'U')
3678 {
3679 static int unique;
3680 char buff[9];
3681 if (c == 'u')
3682 unique++;
3683 sprintf (buff, "%d", unique);
3684 obstack_grow (&obstack, buff, strlen (buff));
3685 }
3686 #endif
3687 delete_this_arg = 1;
3688 }
3689 arg_going = 1;
3690 break;
3691
3692 case 'i':
3693 obstack_grow (&obstack, input_filename, input_filename_length);
3694 arg_going = 1;
3695 break;
3696
3697 case 'I':
3698 {
3699 struct prefix_list *pl = include_prefixes.plist;
3700
3701 if (gcc_exec_prefix)
3702 {
3703 do_spec_1 ("-iprefix", 1, NULL_PTR);
3704 /* Make this a separate argument. */
3705 do_spec_1 (" ", 0, NULL_PTR);
3706 do_spec_1 (gcc_exec_prefix, 1, NULL_PTR);
3707 do_spec_1 (" ", 0, NULL_PTR);
3708 }
3709
3710 for (; pl; pl = pl->next)
3711 {
3712 do_spec_1 ("-isystem", 1, NULL_PTR);
3713 /* Make this a separate argument. */
3714 do_spec_1 (" ", 0, NULL_PTR);
3715 do_spec_1 (pl->prefix, 1, NULL_PTR);
3716 do_spec_1 (" ", 0, NULL_PTR);
3717 }
3718 }
3719 break;
3720
3721 case 'o':
3722 {
3723 int max = n_infiles;
3724 #ifdef LANG_SPECIFIC_DRIVER
3725 max += lang_specific_extra_outfiles;
3726 #endif
3727 for (i = 0; i < max; i++)
3728 if (outfiles[i])
3729 store_arg (outfiles[i], 0, 0);
3730 break;
3731 }
3732
3733 case 'O':
3734 obstack_grow (&obstack, OBJECT_SUFFIX, strlen (OBJECT_SUFFIX));
3735 arg_going = 1;
3736 break;
3737
3738 case 's':
3739 this_is_library_file = 1;
3740 break;
3741
3742 case 'w':
3743 this_is_output_file = 1;
3744 break;
3745
3746 case 'W':
3747 {
3748 int cur_index = argbuf_index;
3749 /* Handle the {...} following the %W. */
3750 if (*p != '{')
3751 abort ();
3752 p = handle_braces (p + 1);
3753 if (p == 0)
3754 return -1;
3755 /* If any args were output, mark the last one for deletion
3756 on failure. */
3757 if (argbuf_index != cur_index)
3758 record_temp_file (argbuf[argbuf_index - 1], 0, 1);
3759 break;
3760 }
3761
3762 /* %x{OPTION} records OPTION for %X to output. */
3763 case 'x':
3764 {
3765 char *p1 = p;
3766 char *string;
3767
3768 /* Skip past the option value and make a copy. */
3769 if (*p != '{')
3770 abort ();
3771 while (*p++ != '}')
3772 ;
3773 string = save_string (p1 + 1, p - p1 - 2);
3774
3775 /* See if we already recorded this option. */
3776 for (i = 0; i < n_linker_options; i++)
3777 if (! strcmp (string, linker_options[i]))
3778 {
3779 free (string);
3780 return 0;
3781 }
3782
3783 /* This option is new; add it. */
3784 add_linker_option (string, strlen (string));
3785 }
3786 break;
3787
3788 /* Dump out the options accumulated previously using %x. */
3789 case 'X':
3790 for (i = 0; i < n_linker_options; i++)
3791 {
3792 do_spec_1 (linker_options[i], 1, NULL_PTR);
3793 /* Make each accumulated option a separate argument. */
3794 do_spec_1 (" ", 0, NULL_PTR);
3795 }
3796 break;
3797
3798 /* Dump out the options accumulated previously using -Wa,. */
3799 case 'Y':
3800 for (i = 0; i < n_assembler_options; i++)
3801 {
3802 do_spec_1 (assembler_options[i], 1, NULL_PTR);
3803 /* Make each accumulated option a separate argument. */
3804 do_spec_1 (" ", 0, NULL_PTR);
3805 }
3806 break;
3807
3808 /* Dump out the options accumulated previously using -Wp,. */
3809 case 'Z':
3810 for (i = 0; i < n_preprocessor_options; i++)
3811 {
3812 do_spec_1 (preprocessor_options[i], 1, NULL_PTR);
3813 /* Make each accumulated option a separate argument. */
3814 do_spec_1 (" ", 0, NULL_PTR);
3815 }
3816 break;
3817
3818 /* Here are digits and numbers that just process
3819 a certain constant string as a spec. */
3820
3821 case '1':
3822 value = do_spec_1 (cc1_spec, 0, NULL_PTR);
3823 if (value != 0)
3824 return value;
3825 break;
3826
3827 case '2':
3828 value = do_spec_1 (cc1plus_spec, 0, NULL_PTR);
3829 if (value != 0)
3830 return value;
3831 break;
3832
3833 case 'a':
3834 value = do_spec_1 (asm_spec, 0, NULL_PTR);
3835 if (value != 0)
3836 return value;
3837 break;
3838
3839 case 'A':
3840 value = do_spec_1 (asm_final_spec, 0, NULL_PTR);
3841 if (value != 0)
3842 return value;
3843 break;
3844
3845 case 'c':
3846 value = do_spec_1 (signed_char_spec, 0, NULL_PTR);
3847 if (value != 0)
3848 return value;
3849 break;
3850
3851 case 'C':
3852 value = do_spec_1 (cpp_spec, 0, NULL_PTR);
3853 if (value != 0)
3854 return value;
3855 break;
3856
3857 case 'E':
3858 value = do_spec_1 (endfile_spec, 0, NULL_PTR);
3859 if (value != 0)
3860 return value;
3861 break;
3862
3863 case 'l':
3864 value = do_spec_1 (link_spec, 0, NULL_PTR);
3865 if (value != 0)
3866 return value;
3867 break;
3868
3869 case 'L':
3870 value = do_spec_1 (lib_spec, 0, NULL_PTR);
3871 if (value != 0)
3872 return value;
3873 break;
3874
3875 case 'G':
3876 value = do_spec_1 (libgcc_spec, 0, NULL_PTR);
3877 if (value != 0)
3878 return value;
3879 break;
3880
3881 case 'p':
3882 {
3883 char *x = (char *) alloca (strlen (cpp_predefines) + 1);
3884 char *buf = x;
3885 char *y;
3886
3887 /* Copy all of the -D options in CPP_PREDEFINES into BUF. */
3888 y = cpp_predefines;
3889 while (*y != 0)
3890 {
3891 if (! strncmp (y, "-D", 2))
3892 /* Copy the whole option. */
3893 while (*y && *y != ' ' && *y != '\t')
3894 *x++ = *y++;
3895 else if (*y == ' ' || *y == '\t')
3896 /* Copy whitespace to the result. */
3897 *x++ = *y++;
3898 /* Don't copy other options. */
3899 else
3900 y++;
3901 }
3902
3903 *x = 0;
3904
3905 value = do_spec_1 (buf, 0, NULL_PTR);
3906 if (value != 0)
3907 return value;
3908 }
3909 break;
3910
3911 case 'P':
3912 {
3913 char *x = (char *) alloca (strlen (cpp_predefines) * 4 + 1);
3914 char *buf = x;
3915 char *y;
3916
3917 /* Copy all of CPP_PREDEFINES into BUF,
3918 but put __ after every -D and at the end of each arg. */
3919 y = cpp_predefines;
3920 while (*y != 0)
3921 {
3922 if (! strncmp (y, "-D", 2))
3923 {
3924 int flag = 0;
3925
3926 *x++ = *y++;
3927 *x++ = *y++;
3928
3929 if (*y != '_'
3930 || (*(y+1) != '_'
3931 && ! ISUPPER ((unsigned char)*(y+1))))
3932 {
3933 /* Stick __ at front of macro name. */
3934 *x++ = '_';
3935 *x++ = '_';
3936 /* Arrange to stick __ at the end as well. */
3937 flag = 1;
3938 }
3939
3940 /* Copy the macro name. */
3941 while (*y && *y != '=' && *y != ' ' && *y != '\t')
3942 *x++ = *y++;
3943
3944 if (flag)
3945 {
3946 *x++ = '_';
3947 *x++ = '_';
3948 }
3949
3950 /* Copy the value given, if any. */
3951 while (*y && *y != ' ' && *y != '\t')
3952 *x++ = *y++;
3953 }
3954 else if (*y == ' ' || *y == '\t')
3955 /* Copy whitespace to the result. */
3956 *x++ = *y++;
3957 /* Don't copy -A options */
3958 else
3959 y++;
3960 }
3961 *x++ = ' ';
3962
3963 /* Copy all of CPP_PREDEFINES into BUF,
3964 but put __ after every -D. */
3965 y = cpp_predefines;
3966 while (*y != 0)
3967 {
3968 if (! strncmp (y, "-D", 2))
3969 {
3970 y += 2;
3971
3972 if (*y != '_'
3973 || (*(y+1) != '_'
3974 && ! ISUPPER ((unsigned char)*(y+1))))
3975 {
3976 /* Stick -D__ at front of macro name. */
3977 *x++ = '-';
3978 *x++ = 'D';
3979 *x++ = '_';
3980 *x++ = '_';
3981
3982 /* Copy the macro name. */
3983 while (*y && *y != '=' && *y != ' ' && *y != '\t')
3984 *x++ = *y++;
3985
3986 /* Copy the value given, if any. */
3987 while (*y && *y != ' ' && *y != '\t')
3988 *x++ = *y++;
3989 }
3990 else
3991 {
3992 /* Do not copy this macro - we have just done it before */
3993 while (*y && *y != ' ' && *y != '\t')
3994 y++;
3995 }
3996 }
3997 else if (*y == ' ' || *y == '\t')
3998 /* Copy whitespace to the result. */
3999 *x++ = *y++;
4000 /* Don't copy -A options */
4001 else
4002 y++;
4003 }
4004 *x++ = ' ';
4005
4006 /* Copy all of the -A options in CPP_PREDEFINES into BUF. */
4007 y = cpp_predefines;
4008 while (*y != 0)
4009 {
4010 if (! strncmp (y, "-A", 2))
4011 /* Copy the whole option. */
4012 while (*y && *y != ' ' && *y != '\t')
4013 *x++ = *y++;
4014 else if (*y == ' ' || *y == '\t')
4015 /* Copy whitespace to the result. */
4016 *x++ = *y++;
4017 /* Don't copy other options. */
4018 else
4019 y++;
4020 }
4021
4022 *x = 0;
4023
4024 value = do_spec_1 (buf, 0, NULL_PTR);
4025 if (value != 0)
4026 return value;
4027 }
4028 break;
4029
4030 case 'S':
4031 value = do_spec_1 (startfile_spec, 0, NULL_PTR);
4032 if (value != 0)
4033 return value;
4034 break;
4035
4036 /* Here we define characters other than letters and digits. */
4037
4038 case '{':
4039 p = handle_braces (p);
4040 if (p == 0)
4041 return -1;
4042 break;
4043
4044 case '%':
4045 obstack_1grow (&obstack, '%');
4046 break;
4047
4048 case '*':
4049 do_spec_1 (soft_matched_part, 1, NULL_PTR);
4050 do_spec_1 (" ", 0, NULL_PTR);
4051 break;
4052
4053 /* Process a string found as the value of a spec given by name.
4054 This feature allows individual machine descriptions
4055 to add and use their own specs.
4056 %[...] modifies -D options the way %P does;
4057 %(...) uses the spec unmodified. */
4058 case '[':
4059 error ("Warning: use of obsolete %%[ operator in specs");
4060 case '(':
4061 {
4062 char *name = p;
4063 struct spec_list *sl;
4064 int len;
4065
4066 /* The string after the S/P is the name of a spec that is to be
4067 processed. */
4068 while (*p && *p != ')' && *p != ']')
4069 p++;
4070
4071 /* See if it's in the list */
4072 for (len = p - name, sl = specs; sl; sl = sl->next)
4073 if (sl->name_len == len && !strncmp (sl->name, name, len))
4074 {
4075 name = *(sl->ptr_spec);
4076 #ifdef DEBUG_SPECS
4077 notice ("Processing spec %c%s%c, which is '%s'\n",
4078 c, sl->name, (c == '(') ? ')' : ']', name);
4079 #endif
4080 break;
4081 }
4082
4083 if (sl)
4084 {
4085 if (c == '(')
4086 {
4087 value = do_spec_1 (name, 0, NULL_PTR);
4088 if (value != 0)
4089 return value;
4090 }
4091 else
4092 {
4093 char *x = (char *) alloca (strlen (name) * 2 + 1);
4094 char *buf = x;
4095 char *y = name;
4096 int flag = 0;
4097
4098 /* Copy all of NAME into BUF, but put __ after
4099 every -D and at the end of each arg, */
4100 while (1)
4101 {
4102 if (! strncmp (y, "-D", 2))
4103 {
4104 *x++ = '-';
4105 *x++ = 'D';
4106 *x++ = '_';
4107 *x++ = '_';
4108 y += 2;
4109 flag = 1;
4110 continue;
4111 }
4112 else if (flag && (*y == ' ' || *y == '\t' || *y == '='
4113 || *y == '}' || *y == 0))
4114 {
4115 *x++ = '_';
4116 *x++ = '_';
4117 flag = 0;
4118 }
4119 if (*y == 0)
4120 break;
4121 else
4122 *x++ = *y++;
4123 }
4124 *x = 0;
4125
4126 value = do_spec_1 (buf, 0, NULL_PTR);
4127 if (value != 0)
4128 return value;
4129 }
4130 }
4131
4132 /* Discard the closing paren or bracket. */
4133 if (*p)
4134 p++;
4135 }
4136 break;
4137
4138 case 'v':
4139 {
4140 int c1 = *p++; /* Select first or second version number. */
4141 char *v = compiler_version;
4142 char *q;
4143
4144 /* The format of the version string is
4145 ([^0-9]*-)?[0-9]+[.][0-9]+([.][0-9]+)?([- ].*)? */
4146
4147 /* Ignore leading non-digits. i.e. "foo-" in "foo-2.7.2". */
4148 while (! ISDIGIT (*v))
4149 v++;
4150 if (v > compiler_version && v[-1] != '-')
4151 abort ();
4152
4153 /* If desired, advance to second version number. */
4154 if (c1 == '2')
4155 {
4156 /* Set V after the first period. */
4157 while (ISDIGIT (*v))
4158 v++;
4159 if (*v != '.')
4160 abort ();
4161 v++;
4162 }
4163
4164 /* Set Q at the next period or at the end. */
4165 q = v;
4166 while (ISDIGIT (*q))
4167 q++;
4168 if (*q != 0 && *q != ' ' && *q != '.' && *q != '-')
4169 abort ();
4170
4171 /* Put that part into the command. */
4172 obstack_grow (&obstack, v, q - v);
4173 arg_going = 1;
4174 }
4175 break;
4176
4177 case '|':
4178 if (input_from_pipe)
4179 do_spec_1 ("-", 0, NULL_PTR);
4180 break;
4181
4182 default:
4183 abort ();
4184 }
4185 break;
4186
4187 case '\\':
4188 /* Backslash: treat next character as ordinary. */
4189 c = *p++;
4190
4191 /* fall through */
4192 default:
4193 /* Ordinary character: put it into the current argument. */
4194 obstack_1grow (&obstack, c);
4195 arg_going = 1;
4196 }
4197
4198 return 0; /* End of string */
4199 }
4200
4201 /* Return 0 if we call do_spec_1 and that returns -1. */
4202
4203 static char *
4204 handle_braces (p)
4205 register char *p;
4206 {
4207 char *filter, *body = NULL, *endbody;
4208 int pipe_p = 0;
4209 int negate;
4210 int suffix;
4211 int include_blanks = 1;
4212
4213 if (*p == '^')
4214 /* A '^' after the open-brace means to not give blanks before args. */
4215 include_blanks = 0, ++p;
4216
4217 if (*p == '|')
4218 /* A `|' after the open-brace means,
4219 if the test fails, output a single minus sign rather than nothing.
4220 This is used in %{|!pipe:...}. */
4221 pipe_p = 1, ++p;
4222
4223 next_member:
4224 negate = suffix = 0;
4225
4226 if (*p == '!')
4227 /* A `!' after the open-brace negates the condition:
4228 succeed if the specified switch is not present. */
4229 negate = 1, ++p;
4230
4231 if (*p == '.')
4232 /* A `.' after the open-brace means test against the current suffix. */
4233 {
4234 if (pipe_p)
4235 abort ();
4236
4237 suffix = 1;
4238 ++p;
4239 }
4240
4241 filter = p;
4242 while (*p != ':' && *p != '}' && *p != '|') p++;
4243
4244 if (*p == '|' && pipe_p)
4245 abort ();
4246
4247 if (!body)
4248 {
4249 if (*p != '}')
4250 {
4251 register int count = 1;
4252 register char *q = p;
4253
4254 while (*q++ != ':') continue;
4255 body = q;
4256
4257 while (count > 0)
4258 {
4259 if (*q == '{')
4260 count++;
4261 else if (*q == '}')
4262 count--;
4263 else if (*q == 0)
4264 abort ();
4265 q++;
4266 }
4267 endbody = q;
4268 }
4269 else
4270 body = p, endbody = p+1;
4271 }
4272
4273 if (suffix)
4274 {
4275 int found = (input_suffix != 0
4276 && (long) strlen (input_suffix) == (long)(p - filter)
4277 && strncmp (input_suffix, filter, p - filter) == 0);
4278
4279 if (body[0] == '}')
4280 abort ();
4281
4282 if (negate != found
4283 && do_spec_1 (save_string (body, endbody-body-1), 0, NULL_PTR) < 0)
4284 return 0;
4285 }
4286 else if (p[-1] == '*' && p[0] == '}')
4287 {
4288 /* Substitute all matching switches as separate args. */
4289 register int i;
4290 --p;
4291 for (i = 0; i < n_switches; i++)
4292 if (!strncmp (switches[i].part1, filter, p - filter)
4293 && check_live_switch (i, p - filter))
4294 give_switch (i, 0, include_blanks);
4295 }
4296 else
4297 {
4298 /* Test for presence of the specified switch. */
4299 register int i;
4300 int present = 0;
4301
4302 /* If name specified ends in *, as in {x*:...},
4303 check for %* and handle that case. */
4304 if (p[-1] == '*' && !negate)
4305 {
4306 int substitution;
4307 char *r = body;
4308
4309 /* First see whether we have %*. */
4310 substitution = 0;
4311 while (r < endbody)
4312 {
4313 if (*r == '%' && r[1] == '*')
4314 substitution = 1;
4315 r++;
4316 }
4317 /* If we do, handle that case. */
4318 if (substitution)
4319 {
4320 /* Substitute all matching switches as separate args.
4321 But do this by substituting for %*
4322 in the text that follows the colon. */
4323
4324 unsigned hard_match_len = p - filter - 1;
4325 char *string = save_string (body, endbody - body - 1);
4326
4327 for (i = 0; i < n_switches; i++)
4328 if (!strncmp (switches[i].part1, filter, hard_match_len)
4329 && check_live_switch (i, -1))
4330 {
4331 do_spec_1 (string, 0, &switches[i].part1[hard_match_len]);
4332 /* Pass any arguments this switch has. */
4333 give_switch (i, 1, 1);
4334 }
4335
4336 /* We didn't match. Try again. */
4337 if (*p++ == '|')
4338 goto next_member;
4339 return endbody;
4340 }
4341 }
4342
4343 /* If name specified ends in *, as in {x*:...},
4344 check for presence of any switch name starting with x. */
4345 if (p[-1] == '*')
4346 {
4347 for (i = 0; i < n_switches; i++)
4348 {
4349 unsigned hard_match_len = p - filter - 1;
4350
4351 if (!strncmp (switches[i].part1, filter, hard_match_len)
4352 && check_live_switch (i, hard_match_len))
4353 {
4354 present = 1;
4355 }
4356 }
4357 }
4358 /* Otherwise, check for presence of exact name specified. */
4359 else
4360 {
4361 for (i = 0; i < n_switches; i++)
4362 {
4363 if (!strncmp (switches[i].part1, filter, p - filter)
4364 && switches[i].part1[p - filter] == 0
4365 && check_live_switch (i, -1))
4366 {
4367 present = 1;
4368 break;
4369 }
4370 }
4371 }
4372
4373 /* If it is as desired (present for %{s...}, absent for %{!s...})
4374 then substitute either the switch or the specified
4375 conditional text. */
4376 if (present != negate)
4377 {
4378 if (*p == '}')
4379 {
4380 give_switch (i, 0, include_blanks);
4381 }
4382 else
4383 {
4384 if (do_spec_1 (save_string (body, endbody - body - 1),
4385 0, NULL_PTR) < 0)
4386 return 0;
4387 }
4388 }
4389 else if (pipe_p)
4390 {
4391 /* Here if a %{|...} conditional fails: output a minus sign,
4392 which means "standard output" or "standard input". */
4393 do_spec_1 ("-", 0, NULL_PTR);
4394 return endbody;
4395 }
4396 }
4397
4398 /* We didn't match; try again. */
4399 if (*p++ == '|')
4400 goto next_member;
4401
4402 return endbody;
4403 }
4404 \f
4405 /* Return 0 iff switch number SWITCHNUM is obsoleted by a later switch
4406 on the command line. PREFIX_LENGTH is the length of XXX in an {XXX*}
4407 spec, or -1 if either exact match or %* is used.
4408
4409 A -O switch is obsoleted by a later -O switch. A -f, -m, or -W switch
4410 whose value does not begin with "no-" is obsoleted by the same value
4411 with the "no-", similarly for a switch with the "no-" prefix. */
4412
4413 static int
4414 check_live_switch (switchnum, prefix_length)
4415 int switchnum;
4416 int prefix_length;
4417 {
4418 char *name = switches[switchnum].part1;
4419 int i;
4420
4421 /* In the common case of {<at-most-one-letter>*}, a negating
4422 switch would always match, so ignore that case. We will just
4423 send the conflicting switches to the compiler phase. */
4424 if (prefix_length >= 0 && prefix_length <= 1)
4425 return 1;
4426
4427 /* If we already processed this switch and determined if it was
4428 live or not, return our past determination. */
4429 if (switches[switchnum].live_cond != 0)
4430 return switches[switchnum].live_cond > 0;
4431
4432 /* Now search for duplicate in a manner that depends on the name. */
4433 switch (*name)
4434 {
4435 case 'O':
4436 for (i = switchnum + 1; i < n_switches; i++)
4437 if (switches[i].part1[0] == 'O')
4438 {
4439 switches[switchnum].validated = 1;
4440 switches[switchnum].live_cond = -1;
4441 return 0;
4442 }
4443 break;
4444
4445 case 'W': case 'f': case 'm':
4446 if (! strncmp (name + 1, "no-", 3))
4447 {
4448 /* We have Xno-YYY, search for XYYY. */
4449 for (i = switchnum + 1; i < n_switches; i++)
4450 if (switches[i].part1[0] == name[0]
4451 && ! strcmp (&switches[i].part1[1], &name[4]))
4452 {
4453 switches[switchnum].validated = 1;
4454 switches[switchnum].live_cond = -1;
4455 return 0;
4456 }
4457 }
4458 else
4459 {
4460 /* We have XYYY, search for Xno-YYY. */
4461 for (i = switchnum + 1; i < n_switches; i++)
4462 if (switches[i].part1[0] == name[0]
4463 && switches[i].part1[1] == 'n'
4464 && switches[i].part1[2] == 'o'
4465 && switches[i].part1[3] == '-'
4466 && !strcmp (&switches[i].part1[4], &name[1]))
4467 {
4468 switches[switchnum].validated = 1;
4469 switches[switchnum].live_cond = -1;
4470 return 0;
4471 }
4472 }
4473 break;
4474 }
4475
4476 /* Otherwise the switch is live. */
4477 switches[switchnum].live_cond = 1;
4478 return 1;
4479 }
4480 \f
4481 /* Pass a switch to the current accumulating command
4482 in the same form that we received it.
4483 SWITCHNUM identifies the switch; it is an index into
4484 the vector of switches gcc received, which is `switches'.
4485 This cannot fail since it never finishes a command line.
4486
4487 If OMIT_FIRST_WORD is nonzero, then we omit .part1 of the argument.
4488
4489 If INCLUDE_BLANKS is nonzero, then we include blanks before each argument
4490 of the switch. */
4491
4492 static void
4493 give_switch (switchnum, omit_first_word, include_blanks)
4494 int switchnum;
4495 int omit_first_word;
4496 int include_blanks;
4497 {
4498 if (!omit_first_word)
4499 {
4500 do_spec_1 ("-", 0, NULL_PTR);
4501 do_spec_1 (switches[switchnum].part1, 1, NULL_PTR);
4502 }
4503
4504 if (switches[switchnum].args != 0)
4505 {
4506 char **p;
4507 for (p = switches[switchnum].args; *p; p++)
4508 {
4509 if (include_blanks)
4510 do_spec_1 (" ", 0, NULL_PTR);
4511 do_spec_1 (*p, 1, NULL_PTR);
4512 }
4513 }
4514
4515 do_spec_1 (" ", 0, NULL_PTR);
4516 switches[switchnum].validated = 1;
4517 }
4518 \f
4519 /* Search for a file named NAME trying various prefixes including the
4520 user's -B prefix and some standard ones.
4521 Return the absolute file name found. If nothing is found, return NAME. */
4522
4523 static char *
4524 find_file (name)
4525 char *name;
4526 {
4527 char *newname;
4528
4529 /* Try multilib_dir if it is defined. */
4530 if (multilib_dir != NULL)
4531 {
4532 char *try;
4533
4534 try = (char *) alloca (strlen (multilib_dir) + strlen (name) + 2);
4535 strcpy (try, multilib_dir);
4536 strcat (try, dir_separator_str);
4537 strcat (try, name);
4538
4539 newname = find_a_file (&startfile_prefixes, try, R_OK);
4540
4541 /* If we don't find it in the multi library dir, then fall
4542 through and look for it in the normal places. */
4543 if (newname != NULL)
4544 return newname;
4545 }
4546
4547 newname = find_a_file (&startfile_prefixes, name, R_OK);
4548 return newname ? newname : name;
4549 }
4550
4551 /* Determine whether a directory exists. If LINKER, return 0 for
4552 certain fixed names not needed by the linker. If not LINKER, it is
4553 only important to return 0 if the host machine has a small ARG_MAX
4554 limit. */
4555
4556 static int
4557 is_directory (path1, path2, linker)
4558 char *path1;
4559 char *path2;
4560 int linker;
4561 {
4562 int len1 = strlen (path1);
4563 int len2 = strlen (path2);
4564 char *path = (char *) alloca (3 + len1 + len2);
4565 char *cp;
4566 struct stat st;
4567
4568 #ifndef SMALL_ARG_MAX
4569 if (! linker)
4570 return 1;
4571 #endif
4572
4573 /* Construct the path from the two parts. Ensure the string ends with "/.".
4574 The resulting path will be a directory even if the given path is a
4575 symbolic link. */
4576 memcpy (path, path1, len1);
4577 memcpy (path + len1, path2, len2);
4578 cp = path + len1 + len2;
4579 if (cp[-1] != '/' && cp[-1] != DIR_SEPARATOR)
4580 *cp++ = DIR_SEPARATOR;
4581 *cp++ = '.';
4582 *cp = '\0';
4583
4584 /* Exclude directories that the linker is known to search. */
4585 if (linker
4586 && ((cp - path == 6
4587 && strcmp (path, concat (dir_separator_str, "lib",
4588 dir_separator_str, ".", NULL_PTR)) == 0)
4589 || (cp - path == 10
4590 && strcmp (path, concat (dir_separator_str, "usr",
4591 dir_separator_str, "lib",
4592 dir_separator_str, ".", NULL_PTR)) == 0)))
4593 return 0;
4594
4595 return (stat (path, &st) >= 0 && S_ISDIR (st.st_mode));
4596 }
4597 \f
4598 /* On fatal signals, delete all the temporary files. */
4599
4600 static void
4601 fatal_error (signum)
4602 int signum;
4603 {
4604 signal (signum, SIG_DFL);
4605 delete_failure_queue ();
4606 delete_temp_files ();
4607 /* Get the same signal again, this time not handled,
4608 so its normal effect occurs. */
4609 kill (getpid (), signum);
4610 }
4611
4612 int
4613 main (argc, argv)
4614 int argc;
4615 char **argv;
4616 {
4617 register size_t i;
4618 size_t j;
4619 int value;
4620 int linker_was_run = 0;
4621 char *explicit_link_files;
4622 char *specs_file;
4623 char *p;
4624 struct user_specs *uptr;
4625
4626 p = argv[0] + strlen (argv[0]);
4627 while (p != argv[0] && p[-1] != '/' && p[-1] != DIR_SEPARATOR) --p;
4628 programname = p;
4629
4630 setlocale (LC_MESSAGES, "");
4631 bindtextdomain (PACKAGE, localedir);
4632 textdomain (PACKAGE);
4633
4634 if (signal (SIGINT, SIG_IGN) != SIG_IGN)
4635 signal (SIGINT, fatal_error);
4636 #ifdef SIGHUP
4637 if (signal (SIGHUP, SIG_IGN) != SIG_IGN)
4638 signal (SIGHUP, fatal_error);
4639 #endif
4640 if (signal (SIGTERM, SIG_IGN) != SIG_IGN)
4641 signal (SIGTERM, fatal_error);
4642 #ifdef SIGPIPE
4643 if (signal (SIGPIPE, SIG_IGN) != SIG_IGN)
4644 signal (SIGPIPE, fatal_error);
4645 #endif
4646
4647 argbuf_length = 10;
4648 argbuf = (char **) xmalloc (argbuf_length * sizeof (char *));
4649
4650 obstack_init (&obstack);
4651
4652 /* Build multilib_select, et. al from the separate lines that make up each
4653 multilib selection. */
4654 {
4655 char **q = multilib_raw;
4656 int need_space;
4657
4658 obstack_init (&multilib_obstack);
4659 while ((p = *q++) != (char *) 0)
4660 obstack_grow (&multilib_obstack, p, strlen (p));
4661
4662 obstack_1grow (&multilib_obstack, 0);
4663 multilib_select = obstack_finish (&multilib_obstack);
4664
4665 q = multilib_matches_raw;
4666 while ((p = *q++) != (char *) 0)
4667 obstack_grow (&multilib_obstack, p, strlen (p));
4668
4669 obstack_1grow (&multilib_obstack, 0);
4670 multilib_matches = obstack_finish (&multilib_obstack);
4671
4672 need_space = FALSE;
4673 for (i = 0;
4674 i < sizeof (multilib_defaults_raw) / sizeof (multilib_defaults_raw[0]);
4675 i++)
4676 {
4677 if (need_space)
4678 obstack_1grow (&multilib_obstack, ' ');
4679 obstack_grow (&multilib_obstack,
4680 multilib_defaults_raw[i],
4681 strlen (multilib_defaults_raw[i]));
4682 need_space = TRUE;
4683 }
4684
4685 obstack_1grow (&multilib_obstack, 0);
4686 multilib_defaults = obstack_finish (&multilib_obstack);
4687 }
4688
4689 /* Set up to remember the pathname of gcc and any options
4690 needed for collect. We use argv[0] instead of programname because
4691 we need the complete pathname. */
4692 obstack_init (&collect_obstack);
4693 obstack_grow (&collect_obstack, "COLLECT_GCC=", sizeof ("COLLECT_GCC=")-1);
4694 obstack_grow (&collect_obstack, argv[0], strlen (argv[0])+1);
4695 putenv (obstack_finish (&collect_obstack));
4696
4697 #ifdef INIT_ENVIRONMENT
4698 /* Set up any other necessary machine specific environment variables. */
4699 putenv (INIT_ENVIRONMENT);
4700 #endif
4701
4702 /* Choose directory for temp files. */
4703
4704 #ifndef MKTEMP_EACH_FILE
4705 temp_filename = choose_temp_base ();
4706 temp_filename_length = strlen (temp_filename);
4707 #endif
4708
4709 /* Make a table of what switches there are (switches, n_switches).
4710 Make a table of specified input files (infiles, n_infiles).
4711 Decode switches that are handled locally. */
4712
4713 process_command (argc, argv);
4714
4715 {
4716 int first_time;
4717
4718 /* Build COLLECT_GCC_OPTIONS to have all of the options specified to
4719 the compiler. */
4720 obstack_grow (&collect_obstack, "COLLECT_GCC_OPTIONS=",
4721 sizeof ("COLLECT_GCC_OPTIONS=")-1);
4722
4723 first_time = TRUE;
4724 for (i = 0; (int)i < n_switches; i++)
4725 {
4726 char **args;
4727 char *p, *q;
4728 if (!first_time)
4729 obstack_grow (&collect_obstack, " ", 1);
4730
4731 first_time = FALSE;
4732 obstack_grow (&collect_obstack, "'-", 2);
4733 q = switches[i].part1;
4734 while ((p = index (q,'\'')))
4735 {
4736 obstack_grow (&collect_obstack, q, p-q);
4737 obstack_grow (&collect_obstack, "'\\''", 4);
4738 q = ++p;
4739 }
4740 obstack_grow (&collect_obstack, q, strlen (q));
4741 obstack_grow (&collect_obstack, "'", 1);
4742
4743 for (args = switches[i].args; args && *args; args++)
4744 {
4745 obstack_grow (&collect_obstack, " '", 2);
4746 q = *args;
4747 while ((p = index (q,'\'')))
4748 {
4749 obstack_grow (&collect_obstack, q, p-q);
4750 obstack_grow (&collect_obstack, "'\\''", 4);
4751 q = ++p;
4752 }
4753 obstack_grow (&collect_obstack, q, strlen (q));
4754 obstack_grow (&collect_obstack, "'", 1);
4755 }
4756 }
4757 obstack_grow (&collect_obstack, "\0", 1);
4758 putenv (obstack_finish (&collect_obstack));
4759 }
4760
4761 /* Initialize the vector of specs to just the default.
4762 This means one element containing 0s, as a terminator. */
4763
4764 compilers = (struct compiler *) xmalloc (sizeof default_compilers);
4765 bcopy ((char *) default_compilers, (char *) compilers,
4766 sizeof default_compilers);
4767 n_compilers = n_default_compilers;
4768
4769 /* Read specs from a file if there is one. */
4770
4771 machine_suffix = concat (spec_machine, dir_separator_str,
4772 spec_version, dir_separator_str, NULL_PTR);
4773 just_machine_suffix = concat (spec_machine, dir_separator_str, NULL_PTR);
4774
4775 specs_file = find_a_file (&startfile_prefixes, "specs", R_OK);
4776 /* Read the specs file unless it is a default one. */
4777 if (specs_file != 0 && strcmp (specs_file, "specs"))
4778 read_specs (specs_file, TRUE);
4779 else
4780 init_spec ();
4781
4782 /* We need to check standard_exec_prefix/just_machine_suffix/specs
4783 for any override of as, ld and libraries. */
4784 specs_file = (char *) alloca (strlen (standard_exec_prefix)
4785 + strlen (just_machine_suffix)
4786 + sizeof ("specs"));
4787
4788 strcpy (specs_file, standard_exec_prefix);
4789 strcat (specs_file, just_machine_suffix);
4790 strcat (specs_file, "specs");
4791 if (access (specs_file, R_OK) == 0)
4792 read_specs (specs_file, TRUE);
4793
4794 /* Process any user specified specs in the order given on the command
4795 line. */
4796 for (uptr = user_specs_head; uptr; uptr = uptr->next)
4797 {
4798 char *filename = find_a_file (&startfile_prefixes, uptr->filename, R_OK);
4799 read_specs (filename ? filename : uptr->filename, FALSE);
4800 }
4801
4802 /* If not cross-compiling, look for startfiles in the standard places. */
4803 /* The fact that these are done here, after reading the specs file,
4804 means that it cannot be found in these directories.
4805 But that's okay. It should never be there anyway. */
4806 if (*cross_compile == '0')
4807 {
4808 #ifdef MD_EXEC_PREFIX
4809 add_prefix (&exec_prefixes, md_exec_prefix, "GCC", 0, 0, NULL_PTR);
4810 add_prefix (&startfile_prefixes, md_exec_prefix, "GCC", 0, 0, NULL_PTR);
4811 #endif
4812
4813 #ifdef MD_STARTFILE_PREFIX
4814 add_prefix (&startfile_prefixes, md_startfile_prefix, "GCC",
4815 0, 0, NULL_PTR);
4816 #endif
4817
4818 #ifdef MD_STARTFILE_PREFIX_1
4819 add_prefix (&startfile_prefixes, md_startfile_prefix_1, "GCC",
4820 0, 0, NULL_PTR);
4821 #endif
4822
4823 /* If standard_startfile_prefix is relative, base it on
4824 standard_exec_prefix. This lets us move the installed tree
4825 as a unit. If GCC_EXEC_PREFIX is defined, base
4826 standard_startfile_prefix on that as well. */
4827 if (*standard_startfile_prefix == '/'
4828 || *standard_startfile_prefix == DIR_SEPARATOR
4829 || *standard_startfile_prefix == '$'
4830 #ifdef __MSDOS__
4831 /* Check for disk name on MS-DOS-based systems. */
4832 || (standard_startfile_prefix[1] == ':'
4833 && (standard_startfile_prefix[2] == DIR_SEPARATOR
4834 || standard_startfile_prefix[2] == '/'))
4835 #endif
4836 )
4837 add_prefix (&startfile_prefixes, standard_startfile_prefix, "BINUTILS",
4838 0, 0, NULL_PTR);
4839 else
4840 {
4841 if (gcc_exec_prefix)
4842 add_prefix (&startfile_prefixes,
4843 concat (gcc_exec_prefix, machine_suffix,
4844 standard_startfile_prefix, NULL_PTR),
4845 NULL_PTR, 0, 0, NULL_PTR);
4846 add_prefix (&startfile_prefixes,
4847 concat (standard_exec_prefix,
4848 machine_suffix,
4849 standard_startfile_prefix, NULL_PTR),
4850 NULL_PTR, 0, 0, NULL_PTR);
4851 }
4852
4853 add_prefix (&startfile_prefixes, standard_startfile_prefix_1,
4854 "BINUTILS", 0, 0, NULL_PTR);
4855 add_prefix (&startfile_prefixes, standard_startfile_prefix_2,
4856 "BINUTILS", 0, 0, NULL_PTR);
4857 #if 0 /* Can cause surprises, and one can use -B./ instead. */
4858 add_prefix (&startfile_prefixes, "./", NULL_PTR, 0, 1, NULL_PTR);
4859 #endif
4860 }
4861 else
4862 {
4863 if (*standard_startfile_prefix != DIR_SEPARATOR && gcc_exec_prefix)
4864 add_prefix (&startfile_prefixes,
4865 concat (gcc_exec_prefix, machine_suffix,
4866 standard_startfile_prefix, NULL_PTR),
4867 "BINUTILS", 0, 0, NULL_PTR);
4868 }
4869
4870 /* If we have a GCC_EXEC_PREFIX envvar, modify it for cpp's sake. */
4871 if (gcc_exec_prefix)
4872 {
4873 char * temp = (char *) xmalloc (strlen (gcc_exec_prefix)
4874 + strlen (spec_version)
4875 + strlen (spec_machine) + 3);
4876 strcpy (temp, gcc_exec_prefix);
4877 strcat (temp, spec_machine);
4878 strcat (temp, dir_separator_str);
4879 strcat (temp, spec_version);
4880 strcat (temp, dir_separator_str);
4881 gcc_exec_prefix = temp;
4882 }
4883
4884 /* Now we have the specs.
4885 Set the `valid' bits for switches that match anything in any spec. */
4886
4887 validate_all_switches ();
4888
4889 /* Now that we have the switches and the specs, set
4890 the subdirectory based on the options. */
4891 set_multilib_dir ();
4892
4893 /* Warn about any switches that no pass was interested in. */
4894
4895 for (i = 0; (int)i < n_switches; i++)
4896 if (! switches[i].validated)
4897 error ("unrecognized option `-%s'", switches[i].part1);
4898
4899 /* Obey some of the options. */
4900
4901 if (print_search_dirs)
4902 {
4903 printf ("install: %s%s\n", standard_exec_prefix, machine_suffix);
4904 printf ("programs: %s\n", build_search_list (&exec_prefixes, "", 0));
4905 printf ("libraries: %s\n", build_search_list (&startfile_prefixes, "", 0));
4906 exit (0);
4907 }
4908
4909 if (print_file_name)
4910 {
4911 printf ("%s\n", find_file (print_file_name));
4912 exit (0);
4913 }
4914
4915 if (print_prog_name)
4916 {
4917 char *newname = find_a_file (&exec_prefixes, print_prog_name, X_OK);
4918 printf ("%s\n", (newname ? newname : print_prog_name));
4919 exit (0);
4920 }
4921
4922 if (print_multi_lib)
4923 {
4924 print_multilib_info ();
4925 exit (0);
4926 }
4927
4928 if (print_multi_directory)
4929 {
4930 if (multilib_dir == NULL)
4931 printf (".\n");
4932 else
4933 printf ("%s\n", multilib_dir);
4934 exit (0);
4935 }
4936
4937 if (print_help_list)
4938 {
4939 display_help ();
4940
4941 if (! verbose_flag)
4942 {
4943 printf ("\nReport bugs to egcs-bugs@cygnus.com.\n");
4944 printf ("Please see the file BUGS (included with the sources) first.\n");
4945
4946 exit (0);
4947 }
4948
4949 /* We do not exit here. Instead we have created a fake input file
4950 called 'help-dummy' which needs to be compiled, and we pass this
4951 on the the various sub-processes, along with the --help switch. */
4952 }
4953
4954 if (verbose_flag)
4955 {
4956 int n;
4957
4958 /* compiler_version is truncated at the first space when initialized
4959 from version string, so truncate version_string at the first space
4960 before comparing. */
4961 for (n = 0; version_string[n]; n++)
4962 if (version_string[n] == ' ')
4963 break;
4964
4965 if (! strncmp (version_string, compiler_version, n)
4966 && compiler_version[n] == 0)
4967 notice ("gcc version %s\n", version_string);
4968 else
4969 notice ("gcc driver version %s executing gcc version %s\n",
4970 version_string, compiler_version);
4971
4972 if (n_infiles == 0)
4973 exit (0);
4974 }
4975
4976 if (n_infiles == added_libraries)
4977 fatal ("No input files");
4978
4979 /* Make a place to record the compiler output file names
4980 that correspond to the input files. */
4981
4982 i = n_infiles;
4983 #ifdef LANG_SPECIFIC_DRIVER
4984 i += lang_specific_extra_outfiles;
4985 #endif
4986 outfiles = (char **) xmalloc (i * sizeof (char *));
4987 bzero ((char *) outfiles, i * sizeof (char *));
4988
4989 /* Record which files were specified explicitly as link input. */
4990
4991 explicit_link_files = xmalloc (n_infiles);
4992 bzero (explicit_link_files, n_infiles);
4993
4994 for (i = 0; (int)i < n_infiles; i++)
4995 {
4996 register struct compiler *cp = 0;
4997 int this_file_error = 0;
4998
4999 /* Tell do_spec what to substitute for %i. */
5000
5001 input_filename = infiles[i].name;
5002 input_filename_length = strlen (input_filename);
5003 input_file_number = i;
5004
5005 /* Use the same thing in %o, unless cp->spec says otherwise. */
5006
5007 outfiles[i] = input_filename;
5008
5009 /* Figure out which compiler from the file's suffix. */
5010
5011 cp = lookup_compiler (infiles[i].name, input_filename_length,
5012 infiles[i].language);
5013
5014 if (cp)
5015 {
5016 /* Ok, we found an applicable compiler. Run its spec. */
5017 /* First say how much of input_filename to substitute for %b */
5018 register char *p;
5019 int len;
5020
5021 if (cp->spec[0][0] == '#')
5022 error ("%s: %s compiler not installed on this system",
5023 input_filename, &cp->spec[0][1]);
5024
5025 input_basename = input_filename;
5026 for (p = input_filename; *p; p++)
5027 if (*p == '/' || *p == DIR_SEPARATOR)
5028 input_basename = p + 1;
5029
5030 /* Find a suffix starting with the last period,
5031 and set basename_length to exclude that suffix. */
5032 basename_length = strlen (input_basename);
5033 p = input_basename + basename_length;
5034 while (p != input_basename && *p != '.') --p;
5035 if (*p == '.' && p != input_basename)
5036 {
5037 basename_length = p - input_basename;
5038 input_suffix = p + 1;
5039 }
5040 else
5041 input_suffix = "";
5042
5043 len = 0;
5044 for (j = 0; j < sizeof cp->spec / sizeof cp->spec[0]; j++)
5045 if (cp->spec[j])
5046 len += strlen (cp->spec[j]);
5047
5048 p = (char *) xmalloc (len + 1);
5049
5050 len = 0;
5051 for (j = 0; j < sizeof cp->spec / sizeof cp->spec[0]; j++)
5052 if (cp->spec[j])
5053 {
5054 strcpy (p + len, cp->spec[j]);
5055 len += strlen (cp->spec[j]);
5056 }
5057
5058 value = do_spec (p);
5059 free (p);
5060 if (value < 0)
5061 this_file_error = 1;
5062 }
5063
5064 /* If this file's name does not contain a recognized suffix,
5065 record it as explicit linker input. */
5066
5067 else
5068 explicit_link_files[i] = 1;
5069
5070 /* Clear the delete-on-failure queue, deleting the files in it
5071 if this compilation failed. */
5072
5073 if (this_file_error)
5074 {
5075 delete_failure_queue ();
5076 error_count++;
5077 }
5078 /* If this compilation succeeded, don't delete those files later. */
5079 clear_failure_queue ();
5080 }
5081
5082 #ifdef LANG_SPECIFIC_DRIVER
5083 if (error_count == 0)
5084 {
5085 /* Make sure INPUT_FILE_NUMBER points to first available open
5086 slot. */
5087 input_file_number = n_infiles;
5088 if (lang_specific_pre_link ())
5089 error_count++;
5090 }
5091 #endif
5092
5093 /* Run ld to link all the compiler output files. */
5094
5095 if (error_count == 0)
5096 {
5097 int tmp = execution_count;
5098
5099 /* We'll use ld if we can't find collect2. */
5100 if (! strcmp (linker_name_spec, "collect2"))
5101 {
5102 char *s = find_a_file (&exec_prefixes, "collect2", X_OK);
5103 if (s == NULL)
5104 linker_name_spec = "ld";
5105 }
5106 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
5107 for collect. */
5108 putenv_from_prefixes (&exec_prefixes, "COMPILER_PATH=");
5109 putenv_from_prefixes (&startfile_prefixes, "LIBRARY_PATH=");
5110
5111 value = do_spec (link_command_spec);
5112 if (value < 0)
5113 error_count = 1;
5114 linker_was_run = (tmp != execution_count);
5115 }
5116
5117 /* Warn if a -B option was specified but the prefix was never used. */
5118 unused_prefix_warnings (&exec_prefixes);
5119 unused_prefix_warnings (&startfile_prefixes);
5120
5121 /* If options said don't run linker,
5122 complain about input files to be given to the linker. */
5123
5124 if (! linker_was_run && error_count == 0)
5125 for (i = 0; (int)i < n_infiles; i++)
5126 if (explicit_link_files[i])
5127 error ("%s: linker input file unused since linking not done",
5128 outfiles[i]);
5129
5130 /* Delete some or all of the temporary files we made. */
5131
5132 if (error_count)
5133 delete_failure_queue ();
5134 delete_temp_files ();
5135
5136 if (print_help_list)
5137 {
5138 printf ("\nReport bugs to egcs-bugs@cygnus.com.\n");
5139 printf ("Please see the file BUGS (included with the sources) first.\n");
5140 }
5141
5142 exit (error_count > 0 ? (signal_count ? 2 : 1) : 0);
5143 /* NOTREACHED */
5144 return 0;
5145 }
5146
5147 /* Find the proper compilation spec for the file name NAME,
5148 whose length is LENGTH. LANGUAGE is the specified language,
5149 or 0 if this file is to be passed to the linker. */
5150
5151 static struct compiler *
5152 lookup_compiler (name, length, language)
5153 char *name;
5154 size_t length;
5155 char *language;
5156 {
5157 struct compiler *cp;
5158
5159 /* If this was specified by the user to be a linker input, indicate that. */
5160 if (language != 0 && language[0] == '*')
5161 return 0;
5162
5163 /* Otherwise, look for the language, if one is spec'd. */
5164 if (language != 0)
5165 {
5166 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
5167 if (cp->suffix[0] == '@' && !strcmp (cp->suffix + 1, language))
5168 return cp;
5169
5170 error ("language %s not recognized", language);
5171 return 0;
5172 }
5173
5174 /* Look for a suffix. */
5175 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
5176 {
5177 if (/* The suffix `-' matches only the file name `-'. */
5178 (!strcmp (cp->suffix, "-") && !strcmp (name, "-"))
5179 || (strlen (cp->suffix) < length
5180 /* See if the suffix matches the end of NAME. */
5181 #ifdef OS2
5182 && ((!strcmp (cp->suffix,
5183 name + length - strlen (cp->suffix))
5184 || !strpbrk (cp->suffix, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"))
5185 && !strcasecmp (cp->suffix,
5186 name + length - strlen (cp->suffix)))
5187 #else
5188 && !strcmp (cp->suffix,
5189 name + length - strlen (cp->suffix))
5190 #endif
5191 ))
5192 {
5193 if (cp->spec[0][0] == '@')
5194 {
5195 struct compiler *new;
5196
5197 /* An alias entry maps a suffix to a language.
5198 Search for the language; pass 0 for NAME and LENGTH
5199 to avoid infinite recursion if language not found.
5200 Construct the new compiler spec. */
5201 language = cp->spec[0] + 1;
5202 new = (struct compiler *) xmalloc (sizeof (struct compiler));
5203 new->suffix = cp->suffix;
5204 bcopy ((char *) lookup_compiler (NULL_PTR, 0, language)->spec,
5205 (char *) new->spec, sizeof new->spec);
5206 return new;
5207 }
5208
5209 /* A non-alias entry: return it. */
5210 return cp;
5211 }
5212 }
5213
5214 return 0;
5215 }
5216 \f
5217 PTR
5218 xmalloc (size)
5219 size_t size;
5220 {
5221 register PTR value = (PTR) malloc (size);
5222 if (value == 0)
5223 fatal ("virtual memory exhausted");
5224 return value;
5225 }
5226
5227 PTR
5228 xrealloc (old, size)
5229 PTR old;
5230 size_t size;
5231 {
5232 register PTR ptr;
5233 if (old)
5234 ptr = (PTR) realloc (old, size);
5235 else
5236 ptr = (PTR) malloc (size);
5237 if (ptr == 0)
5238 fatal ("virtual memory exhausted");
5239 return ptr;
5240 }
5241
5242 static char *
5243 save_string (s, len)
5244 const char *s;
5245 int len;
5246 {
5247 register char *result = xmalloc (len + 1);
5248
5249 bcopy (s, result, len);
5250 result[len] = 0;
5251 return result;
5252 }
5253
5254 static void
5255 pfatal_with_name (name)
5256 char *name;
5257 {
5258 perror_with_name (name);
5259 delete_temp_files ();
5260 exit (1);
5261 }
5262
5263 static void
5264 perror_with_name (name)
5265 char *name;
5266 {
5267 error ("%s: %s", name, xstrerror (errno));
5268 }
5269
5270 static void
5271 pfatal_pexecute (errmsg_fmt, errmsg_arg)
5272 char *errmsg_fmt;
5273 char *errmsg_arg;
5274 {
5275 if (errmsg_arg)
5276 {
5277 int save_errno = errno;
5278
5279 /* Space for trailing '\0' is in %s. */
5280 char *msg = xmalloc (strlen (errmsg_fmt) + strlen (errmsg_arg));
5281 sprintf (msg, errmsg_fmt, errmsg_arg);
5282 errmsg_fmt = msg;
5283
5284 errno = save_errno;
5285 }
5286
5287 pfatal_with_name (errmsg_fmt);
5288 }
5289
5290 /* More 'friendly' abort that prints the line and file.
5291 config.h can #define abort fancy_abort if you like that sort of thing. */
5292
5293 void
5294 fancy_abort ()
5295 {
5296 fatal ("Internal gcc abort.");
5297 }
5298 \f
5299 /* Output an error message and exit */
5300
5301 static void
5302 fatal VPROTO((char *msgid, ...))
5303 {
5304 #ifndef ANSI_PROTOTYPES
5305 char *msgid;
5306 #endif
5307 va_list ap;
5308
5309 VA_START (ap, msgid);
5310
5311 #ifndef ANSI_PROTOTYPES
5312 msgid = va_arg (ap, char *);
5313 #endif
5314
5315 fprintf (stderr, "%s: ", programname);
5316 vfprintf (stderr, _(msgid), ap);
5317 va_end (ap);
5318 fprintf (stderr, "\n");
5319 delete_temp_files ();
5320 exit (1);
5321 }
5322
5323 static void
5324 error VPROTO((char *msgid, ...))
5325 {
5326 #ifndef ANSI_PROTOTYPES
5327 char *msgid;
5328 #endif
5329 va_list ap;
5330
5331 VA_START (ap, msgid);
5332
5333 #ifndef ANSI_PROTOTYPES
5334 msgid = va_arg (ap, char *);
5335 #endif
5336
5337 fprintf (stderr, "%s: ", programname);
5338 vfprintf (stderr, _(msgid), ap);
5339 va_end (ap);
5340
5341 fprintf (stderr, "\n");
5342 }
5343
5344 static void
5345 notice VPROTO((char *msgid, ...))
5346 {
5347 #ifndef ANSI_PROTOTYPES
5348 char *msgid;
5349 #endif
5350 va_list ap;
5351
5352 VA_START (ap, msgid);
5353
5354 #ifndef ANSI_PROTOTYPES
5355 msgid = va_arg (ap, char *);
5356 #endif
5357
5358 vfprintf (stderr, _(msgid), ap);
5359 va_end (ap);
5360 }
5361
5362 \f
5363 static void
5364 validate_all_switches ()
5365 {
5366 struct compiler *comp;
5367 register char *p;
5368 register char c;
5369 struct spec_list *spec;
5370
5371 for (comp = compilers; comp->spec[0]; comp++)
5372 {
5373 size_t i;
5374 for (i = 0; i < sizeof comp->spec / sizeof comp->spec[0] && comp->spec[i]; i++)
5375 {
5376 p = comp->spec[i];
5377 while ((c = *p++))
5378 if (c == '%' && *p == '{')
5379 /* We have a switch spec. */
5380 validate_switches (p + 1);
5381 }
5382 }
5383
5384 /* look through the linked list of specs read from the specs file */
5385 for (spec = specs; spec ; spec = spec->next)
5386 {
5387 p = *(spec->ptr_spec);
5388 while ((c = *p++))
5389 if (c == '%' && *p == '{')
5390 /* We have a switch spec. */
5391 validate_switches (p + 1);
5392 }
5393
5394 p = link_command_spec;
5395 while ((c = *p++))
5396 if (c == '%' && *p == '{')
5397 /* We have a switch spec. */
5398 validate_switches (p + 1);
5399 }
5400
5401 /* Look at the switch-name that comes after START
5402 and mark as valid all supplied switches that match it. */
5403
5404 static void
5405 validate_switches (start)
5406 char *start;
5407 {
5408 register char *p = start;
5409 char *filter;
5410 register int i;
5411 int suffix = 0;
5412
5413 if (*p == '|')
5414 ++p;
5415
5416 if (*p == '!')
5417 ++p;
5418
5419 if (*p == '.')
5420 suffix = 1, ++p;
5421
5422 filter = p;
5423 while (*p != ':' && *p != '}') p++;
5424
5425 if (suffix)
5426 ;
5427 else if (p[-1] == '*')
5428 {
5429 /* Mark all matching switches as valid. */
5430 --p;
5431 for (i = 0; i < n_switches; i++)
5432 if (!strncmp (switches[i].part1, filter, p - filter))
5433 switches[i].validated = 1;
5434 }
5435 else
5436 {
5437 /* Mark an exact matching switch as valid. */
5438 for (i = 0; i < n_switches; i++)
5439 {
5440 if (!strncmp (switches[i].part1, filter, p - filter)
5441 && switches[i].part1[p - filter] == 0)
5442 switches[i].validated = 1;
5443 }
5444 }
5445 }
5446 \f
5447 /* Check whether a particular argument was used. The first time we
5448 canonicalize the switches to keep only the ones we care about. */
5449
5450 static int
5451 used_arg (p, len)
5452 char *p;
5453 int len;
5454 {
5455 struct mswitchstr {
5456 char *str;
5457 char *replace;
5458 int len;
5459 int rep_len;
5460 };
5461
5462 static struct mswitchstr *mswitches;
5463 static int n_mswitches;
5464 int i, j;
5465
5466 if (!mswitches)
5467 {
5468 struct mswitchstr *matches;
5469 char *q;
5470 int cnt = 0;
5471
5472 /* Break multilib_matches into the component strings of string and replacement
5473 string */
5474 for (q = multilib_matches; *q != '\0'; q++)
5475 if (*q == ';')
5476 cnt++;
5477
5478 matches = (struct mswitchstr *) alloca ((sizeof (struct mswitchstr)) * cnt);
5479 i = 0;
5480 q = multilib_matches;
5481 while (*q != '\0')
5482 {
5483 matches[i].str = q;
5484 while (*q != ' ')
5485 {
5486 if (*q == '\0')
5487 abort ();
5488 q++;
5489 }
5490 *q = '\0';
5491 matches[i].len = q - matches[i].str;
5492
5493 matches[i].replace = ++q;
5494 while (*q != ';' && *q != '\0')
5495 {
5496 if (*q == ' ')
5497 abort ();
5498 q++;
5499 }
5500 matches[i].rep_len = q - matches[i].replace;
5501 i++;
5502 if (*q == ';')
5503 *q++ = '\0';
5504 else
5505 break;
5506 }
5507
5508 /* Now build a list of the replacement string for switches that we care
5509 about. Make sure we allocate at least one entry. This prevents
5510 xmalloc from calling fatal, and prevents us from re-executing this
5511 block of code. */
5512 mswitches
5513 = (struct mswitchstr *) xmalloc ((sizeof (struct mswitchstr))
5514 * (n_switches ? n_switches : 1));
5515 for (i = 0; i < n_switches; i++)
5516 {
5517 int xlen = strlen (switches[i].part1);
5518 for (j = 0; j < cnt; j++)
5519 if (xlen == matches[j].len && ! strcmp (switches[i].part1, matches[j].str))
5520 {
5521 mswitches[n_mswitches].str = matches[j].replace;
5522 mswitches[n_mswitches].len = matches[j].rep_len;
5523 mswitches[n_mswitches].replace = (char *)0;
5524 mswitches[n_mswitches].rep_len = 0;
5525 n_mswitches++;
5526 break;
5527 }
5528 }
5529 }
5530
5531 for (i = 0; i < n_mswitches; i++)
5532 if (len == mswitches[i].len && ! strncmp (p, mswitches[i].str, len))
5533 return 1;
5534
5535 return 0;
5536 }
5537
5538 static int
5539 default_arg (p, len)
5540 char *p;
5541 int len;
5542 {
5543 char *start, *end;
5544
5545 for (start = multilib_defaults; *start != '\0'; start = end+1)
5546 {
5547 while (*start == ' ' || *start == '\t')
5548 start++;
5549
5550 if (*start == '\0')
5551 break;
5552
5553 for (end = start+1; *end != ' ' && *end != '\t' && *end != '\0'; end++)
5554 ;
5555
5556 if ((end - start) == len && strncmp (p, start, len) == 0)
5557 return 1;
5558
5559 if (*end == '\0')
5560 break;
5561 }
5562
5563 return 0;
5564 }
5565
5566 /* Work out the subdirectory to use based on the
5567 options. The format of multilib_select is a list of elements.
5568 Each element is a subdirectory name followed by a list of options
5569 followed by a semicolon. gcc will consider each line in turn. If
5570 none of the options beginning with an exclamation point are
5571 present, and all of the other options are present, that
5572 subdirectory will be used. */
5573
5574 static void
5575 set_multilib_dir ()
5576 {
5577 char *p = multilib_select;
5578 int this_path_len;
5579 char *this_path, *this_arg;
5580 int not_arg;
5581 int ok;
5582
5583 while (*p != '\0')
5584 {
5585 /* Ignore newlines. */
5586 if (*p == '\n')
5587 {
5588 ++p;
5589 continue;
5590 }
5591
5592 /* Get the initial path. */
5593 this_path = p;
5594 while (*p != ' ')
5595 {
5596 if (*p == '\0')
5597 abort ();
5598 ++p;
5599 }
5600 this_path_len = p - this_path;
5601
5602 /* Check the arguments. */
5603 ok = 1;
5604 ++p;
5605 while (*p != ';')
5606 {
5607 if (*p == '\0')
5608 abort ();
5609
5610 if (! ok)
5611 {
5612 ++p;
5613 continue;
5614 }
5615
5616 this_arg = p;
5617 while (*p != ' ' && *p != ';')
5618 {
5619 if (*p == '\0')
5620 abort ();
5621 ++p;
5622 }
5623
5624 if (*this_arg != '!')
5625 not_arg = 0;
5626 else
5627 {
5628 not_arg = 1;
5629 ++this_arg;
5630 }
5631
5632 /* If this is a default argument, we can just ignore it.
5633 This is true even if this_arg begins with '!'. Beginning
5634 with '!' does not mean that this argument is necessarily
5635 inappropriate for this library: it merely means that
5636 there is a more specific library which uses this
5637 argument. If this argument is a default, we need not
5638 consider that more specific library. */
5639 if (! default_arg (this_arg, p - this_arg))
5640 {
5641 ok = used_arg (this_arg, p - this_arg);
5642 if (not_arg)
5643 ok = ! ok;
5644 }
5645
5646 if (*p == ' ')
5647 ++p;
5648 }
5649
5650 if (ok)
5651 {
5652 if (this_path_len != 1
5653 || this_path[0] != '.')
5654 {
5655 multilib_dir = xmalloc (this_path_len + 1);
5656 strncpy (multilib_dir, this_path, this_path_len);
5657 multilib_dir[this_path_len] = '\0';
5658 }
5659 break;
5660 }
5661
5662 ++p;
5663 }
5664 }
5665
5666 /* Print out the multiple library subdirectory selection
5667 information. This prints out a series of lines. Each line looks
5668 like SUBDIRECTORY;@OPTION@OPTION, with as many options as is
5669 required. Only the desired options are printed out, the negative
5670 matches. The options are print without a leading dash. There are
5671 no spaces to make it easy to use the information in the shell.
5672 Each subdirectory is printed only once. This assumes the ordering
5673 generated by the genmultilib script. */
5674
5675 static void
5676 print_multilib_info ()
5677 {
5678 char *p = multilib_select;
5679 char *last_path = 0, *this_path;
5680 int skip;
5681 int last_path_len = 0;
5682
5683 while (*p != '\0')
5684 {
5685 /* Ignore newlines. */
5686 if (*p == '\n')
5687 {
5688 ++p;
5689 continue;
5690 }
5691
5692 /* Get the initial path. */
5693 this_path = p;
5694 while (*p != ' ')
5695 {
5696 if (*p == '\0')
5697 abort ();
5698 ++p;
5699 }
5700
5701 /* If this is a duplicate, skip it. */
5702 skip = (last_path != 0 && p - this_path == last_path_len
5703 && ! strncmp (last_path, this_path, last_path_len));
5704
5705 last_path = this_path;
5706 last_path_len = p - this_path;
5707
5708 /* If this directory requires any default arguments, we can skip
5709 it. We will already have printed a directory identical to
5710 this one which does not require that default argument. */
5711 if (! skip)
5712 {
5713 char *q;
5714
5715 q = p + 1;
5716 while (*q != ';')
5717 {
5718 char *arg;
5719
5720 if (*q == '\0')
5721 abort ();
5722
5723 if (*q == '!')
5724 arg = NULL;
5725 else
5726 arg = q;
5727
5728 while (*q != ' ' && *q != ';')
5729 {
5730 if (*q == '\0')
5731 abort ();
5732 ++q;
5733 }
5734
5735 if (arg != NULL
5736 && default_arg (arg, q - arg))
5737 {
5738 skip = 1;
5739 break;
5740 }
5741
5742 if (*q == ' ')
5743 ++q;
5744 }
5745 }
5746
5747 if (! skip)
5748 {
5749 char *p1;
5750
5751 for (p1 = last_path; p1 < p; p1++)
5752 putchar (*p1);
5753 putchar (';');
5754 }
5755
5756 ++p;
5757 while (*p != ';')
5758 {
5759 int use_arg;
5760
5761 if (*p == '\0')
5762 abort ();
5763
5764 if (skip)
5765 {
5766 ++p;
5767 continue;
5768 }
5769
5770 use_arg = *p != '!';
5771
5772 if (use_arg)
5773 putchar ('@');
5774
5775 while (*p != ' ' && *p != ';')
5776 {
5777 if (*p == '\0')
5778 abort ();
5779 if (use_arg)
5780 putchar (*p);
5781 ++p;
5782 }
5783
5784 if (*p == ' ')
5785 ++p;
5786 }
5787
5788 if (! skip)
5789 {
5790 /* If there are extra options, print them now */
5791 if (multilib_extra && *multilib_extra)
5792 {
5793 int print_at = TRUE;
5794 char *q;
5795
5796 for (q = multilib_extra; *q != '\0'; q++)
5797 {
5798 if (*q == ' ')
5799 print_at = TRUE;
5800 else
5801 {
5802 if (print_at)
5803 putchar ('@');
5804 putchar (*q);
5805 print_at = FALSE;
5806 }
5807 }
5808 }
5809 putchar ('\n');
5810 }
5811
5812 ++p;
5813 }
5814 }
This page took 0.32282 seconds and 6 git commands to generate.