home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gcc-2.7.2.1-src.tgz / tar.out / fsf / gcc / gcc.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  143KB  |  5,334 lines

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