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