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