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