home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / NeXT / GnuSource / cc-61.0.1 / cc / gcc.c < prev    next >
C/C++ Source or Header  |  1992-03-02  |  76KB  |  2,873 lines

  1. /* Compiler driver program that can handle many languages.
  2.    Copyright (C) 1987,1989 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU CC.
  5.  
  6. GNU CC is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. GNU CC is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU CC; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  
  20. This paragraph is here to try to keep Sun CC from dying.
  21. The number of chars here seems crucial!!!!  */
  22.  
  23. /* This program is the user interface to the C compiler and possibly to
  24. other compilers.  It is used because compilation is a complicated procedure
  25. which involves running several programs and passing temporary files between
  26. them, forwarding the users switches to those programs selectively,
  27. and deleting the temporary files at the end.
  28.  
  29. CC recognizes how to compile each input file by suffixes in the file names.
  30. Once it knows which kind of compilation to perform, the procedure for
  31. compilation is specified by a string called a "spec".  */
  32.  
  33. #include <stdio.h>
  34. #include <sys/types.h>
  35. #include <ctype.h>
  36. #include <signal.h>
  37. #include <sys/file.h>
  38. #include <sys/stat.h>
  39.  
  40. #include "config.h"
  41. #include "obstack.h"
  42. #include "gvarargs.h"
  43.  
  44. #ifdef USG
  45. #ifndef R_OK
  46. #define R_OK 4
  47. #define W_OK 2
  48. #define X_OK 1
  49. #endif
  50.  
  51. #define vfork fork
  52. #endif /* USG */
  53.  
  54. #define obstack_chunk_alloc xmalloc
  55. #define obstack_chunk_free free
  56. extern int xmalloc ();
  57. extern void free ();
  58.  
  59. /* If a stage of compilation returns an exit status >= 1,
  60.    compilation of that file ceases.  */
  61.  
  62. #define MIN_FATAL_STATUS 1
  63.  
  64. /* Flag indicating whether we should print the command and arguments */
  65.  
  66. int verbose_flag;
  67.  
  68. /* Nonzero means write "temp" files in source directory
  69.    and use the source file's name in them, and don't delete them.  */
  70.  
  71. int save_temps_flag;
  72.  
  73. /* The compiler version specified with -V */
  74.  
  75. char *spec_version;
  76.  
  77. /* The target machine specified with -b.  */
  78.  
  79. #ifdef NeXT
  80. char *spec_machine = "m68k";
  81. #else /* NeXT */
  82. char *spec_machine = DEFAULT_TARGET_MACHINE;
  83. #endif /* NeXT */
  84.  
  85. /* This is the obstack which we use to allocate many strings.  */
  86.  
  87. struct obstack obstack;
  88.  
  89. extern char *version_string;
  90.  
  91. void set_spec ();
  92. struct compiler *lookup_compiler ();
  93. char *find_a_file ();
  94. void add_prefix ();
  95. char *skip_whitespace ();
  96. void record_temp_file ();
  97. char *handle_braces ();
  98. char *save_string ();
  99. char *concat ();
  100. int do_spec ();
  101. int do_spec_1 ();
  102. char *find_file ();
  103. void validate_switches ();
  104. void validate_all_switches ();
  105. void give_switch ();
  106. void pfatal_with_name ();
  107. void perror_with_name ();
  108. void perror_exec ();
  109. void fatal ();
  110. void error ();
  111. void fancy_abort ();
  112.  
  113. /* Specs are strings containing lines, each of which (if not blank)
  114. is made up of a program name, and arguments separated by spaces.
  115. The program name must be exact and start from root, since no path
  116. is searched and it is unreliable to depend on the current working directory.
  117. Redirection of input or output is not supported; the subprograms must
  118. accept filenames saying what files to read and write.
  119.  
  120. In addition, the specs can contain %-sequences to substitute variable text
  121. or for conditional text.  Here is a table of all defined %-sequences.
  122. Note that spaces are not generated automatically around the results of
  123. expanding these sequences; therefore, you can concatenate them together
  124. or with constant text in a single argument.
  125.  
  126.  %%    substitute one % into the program name or argument.
  127.  %i     substitute the name of the input file being processed.
  128.  %b     substitute the basename of the input file being processed.
  129.     This is the substring up to (and not including) the last period
  130.     and not including the directory.
  131.  %g     substitute the temporary-file-name-base.  This is a string chosen
  132.     once per compilation.  Different temporary file names are made by
  133.     concatenation of constant strings on the end, as in `%g.s'.
  134.     %g also has the same effect of %d.
  135.  %d    marks the argument containing or following the %d as a
  136.     temporary file name, so that that file will be deleted if CC exits
  137.     successfully.  Unlike %g, this contributes no text to the argument.
  138.  %w    marks the argument containing or following the %w as the
  139.     "output file" of this compilation.  This puts the argument
  140.     into the sequence of arguments that %o will substitute later.
  141.  %W{...}
  142.     like %{...} but mark last argument supplied within
  143.     as a file to be deleted on failure.
  144.  %o    substitutes the names of all the output files, with spaces
  145.     automatically placed around them.  You should write spaces
  146.     around the %o as well or the results are undefined.
  147.     %o is for use in the specs for running the linker.
  148.     Input files whose names have no recognized suffix are not compiled
  149.     at all, but they are included among the output files, so they will
  150.     be linked.
  151.  %D    substitutes the name of the dependency output file which can set by the
  152.     -dependency-file option to the cc driver.  This file is passed to cpp
  153.     when the -MD option is used.
  154.  %p    substitutes the standard macro predefinitions for the
  155.     current target machine.  Use this when running cpp.
  156.  %P    like %p, but puts `__' before and after the name of each macro.
  157.     (Except macros that already have __.)
  158.     This is for ANSI C.
  159.  %s     current argument is the name of a library or startup file of some sort.
  160.         Search for that file in a standard list of directories
  161.     and substitute the full pathname found.
  162.  %eSTR  Print STR as an error message.  STR is terminated by a newline.
  163.         Use this when inconsistent options are detected.
  164.  %a     process ASM_SPEC as a spec.
  165.         This allows config.h to specify part of the spec for running as.
  166.  %l     process LINK_SPEC as a spec.
  167.  %L     process LIB_SPEC as a spec.
  168.  %S     process STARTFILE_SPEC as a spec.  A capital S is actually used here.
  169.  %E     process ENDFILE_SPEC as a spec.  A capital E is actually used here.
  170.  %c    process SIGNED_CHAR_SPEC as a spec.
  171.  %C     process CPP_SPEC as a spec.  A capital C is actually used here.
  172.  %1    process CC1_SPEC as a spec.
  173.  %2    process CC1PLUS_SPEC as a spec.
  174.  %{S}   substitutes the -S switch, if that switch was given to CC.
  175.     If that switch was not specified, this substitutes nothing.
  176.     Here S is a metasyntactic variable.
  177.  %{S*}  substitutes all the switches specified to CC whose names start
  178.     with -S.  This is used for -o, -D, -I, etc; switches that take
  179.     arguments.  CC considers `-o foo' as being one switch whose
  180.     name starts with `o'.  %{o*} would substitute this text,
  181.     including the space; thus, two arguments would be generated.
  182.  %{S:X} substitutes X, but only if the -S switch was given to CC.
  183.  %{!S:X} substitutes X, but only if the -S switch was NOT given to CC.
  184.  %{|S:X} like %{S:X}, but if no S switch, substitute `-'.
  185.  %{|!S:X} like %{!S:X}, but if there is an S switch, substitute `-'.
  186.  %{.S:X} substitutes X, but only if processing a file with suffix S.
  187.  %{!.S:X} substitutes X, but only if NOT processing a file with suffix S.
  188.  
  189. The conditional text X in a %{S:X} or %{!S:X} construct may contain
  190. other nested % constructs or spaces, or even newlines.  They are
  191. processed as usual, as described above.
  192.  
  193. The character | is used to indicate that a command should be piped to
  194. the following command, but only if -pipe is specified.
  195.  
  196. Note that it is built into CC which switches take arguments and which
  197. do not.  You might think it would be useful to generalize this to
  198. allow each compiler's spec to say which switches take arguments.  But
  199. this cannot be done in a consistent fashion.  CC cannot even decide
  200. which input files have been specified without knowing which switches
  201. take arguments, and it must know which input files to compile in order
  202. to tell which compilers to run.
  203.  
  204. CC also knows implicitly that arguments starting in `-l' are to be
  205. treated as compiler output files, and passed to the linker in their
  206. proper position among the other output files.  */
  207.  
  208. /* Define the macros used for specs %a, %l, %L, %S, %c, %C, %1.  */
  209.  
  210. /* config.h can define ASM_SPEC to provide extra args to the assembler
  211.    or extra switch-translations.  */
  212. #ifndef ASM_SPEC
  213. #define ASM_SPEC ""
  214. #endif
  215.  
  216. /* config.h can define CPP_SPEC to provide extra args to the C preprocessor
  217.    or extra switch-translations.  */
  218. #ifndef CPP_SPEC
  219. #define CPP_SPEC ""
  220. #endif
  221.  
  222. /* config.h can define CC1_SPEC to provide extra args to cc1 and cc1plus
  223.    or extra switch-translations.  */
  224. #ifndef CC1_SPEC
  225. #define CC1_SPEC ""
  226. #endif
  227.  
  228. /* config.h can define CC1PLUS_SPEC to provide extra args to cc1plus
  229.    or extra switch-translations.  */
  230. #ifndef CC1PLUS_SPEC
  231. #define CC1PLUS_SPEC ""
  232. #endif
  233.  
  234. /* config.h can define LINK_SPEC to provide extra args to the linker
  235.    or extra switch-translations.  */
  236. #ifndef LINK_SPEC
  237. #define LINK_SPEC ""
  238. #endif
  239.  
  240. /* config.h can define LIB_SPEC to override the default libraries.  */
  241. #ifndef LIB_SPEC
  242. #define LIB_SPEC "%{g:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}"
  243. #endif
  244.  
  245. /* config.h can define STARTFILE_SPEC to override the default crt0 files.  */
  246. #ifndef STARTFILE_SPEC
  247. #define STARTFILE_SPEC  \
  248.   "%{pg:gcrt0.o%s}%{!pg:%{p:mcrt0.o%s}%{!p:crt0.o%s}}"
  249. #endif
  250.  
  251. /* config.h can define ENDFILE_SPEC to override the default crtn files.  */
  252. #ifndef ENDFILE_SPEC
  253. #define ENDFILE_SPEC ""
  254. #endif
  255.  
  256. /* This spec is used for telling cpp whether char is signed or not.  */
  257. #define SIGNED_CHAR_SPEC  \
  258.   (DEFAULT_SIGNED_CHAR ? "%{funsigned-char:-D__CHAR_UNSIGNED__}"    \
  259.    : "%{!fsigned-char:-D__CHAR_UNSIGNED__}")
  260.  
  261. char *cpp_spec = CPP_SPEC;
  262. char *cpp_predefines = CPP_PREDEFINES;
  263. char *cc1_spec = CC1_SPEC;
  264. char *cc1plus_spec = CC1PLUS_SPEC;
  265. char *signed_char_spec = SIGNED_CHAR_SPEC;
  266. char *asm_spec = ASM_SPEC;
  267. char *link_spec = LINK_SPEC;
  268. char *lib_spec = LIB_SPEC;
  269. char *startfile_spec = STARTFILE_SPEC;
  270.  
  271. /* This defines which switch letters take arguments.  */
  272.  
  273. #ifndef SWITCH_TAKES_ARG
  274. #define SWITCH_TAKES_ARG(CHAR)      \
  275.   ((CHAR) == 'D' || (CHAR) == 'U' || (CHAR) == 'o' \
  276.    || (CHAR) == 'e' || (CHAR) == 'T' || (CHAR) == 'u' \
  277.    || (CHAR) == 'I' || (CHAR) == 'Y' || (CHAR) == 'm' \
  278.    || (CHAR) == 'L' || (CHAR) == 'i' || (CHAR) == 'A')
  279. #endif
  280.  
  281. /* This defines which multi-letter switches take arguments.  */
  282.  
  283. #ifndef WORD_SWITCH_TAKES_ARG
  284. #define WORD_SWITCH_TAKES_ARG(STR) (!strcmp (STR, "Tdata"))
  285. #endif
  286.  
  287. /* Record the mapping from file suffixes for compilation specs.  */
  288.  
  289. struct compiler
  290. {
  291.   char *suffix;            /* Use this compiler for input files
  292.                    whose names end in this suffix.  */
  293.   char *spec;            /* To use this compiler, pass this spec
  294.                    to do_spec.  */
  295. };
  296.  
  297. /* Pointer to a vector of `struct compiler' that gives the spec for
  298.    compiling a file, based on its suffix.
  299.    A file that does not end in any of these suffixes will be passed
  300.    unchanged to the loader and nothing else will be done to it.
  301.  
  302.    An entry containing two 0s is used to terminate the vector.
  303.  
  304.    If multiple entries match a file, the last matching one is used.  */
  305.  
  306. struct compiler *compilers;
  307.  
  308. /* Number of entries in `compilers', not counting the null terminator.  */
  309.  
  310. int n_compilers;
  311.  
  312. /* Here is the spec for running the linker, after compiling all files.  */
  313.  
  314. char *link_command_spec = "\
  315. %{!c:%{!M:%{!MM:%{!E:%{!precomp:%{!S:ld %l %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} \
  316.             %{r} %{s} %{S} %{T*} %{t} %{u*} %{X} %{x} %{z}\
  317.             %{y*} %{!A:%{!nostdlib:%S}} \
  318.             %{L*} %o %{!nostdlib:%L %{!A:%E}}\n }}}}}}";
  319.  
  320. /* The default list of file name suffixes and their compilation specs.  */
  321.  
  322. struct compiler default_compilers[] =
  323. {
  324.   {".c", "@c"},
  325.   {"@c",
  326.    "%{E:cpp} %{!E:%{traditional:cpp}}\
  327.     %{!E:%{!traditional:%{traditional-cpp:cpp}}}\
  328.     %{!E:%{!traditional:%{!traditional-cpp: cpp-precomp -smart}}}\
  329.     %{!ObjC:-lang-c} %{ObjC:-lang-objc}\
  330.     %{nostdinc} %{C} %{v} %{D*} %{U*} %{I*} %{i*} %{P}\
  331.     %{C:%{!E:%eGNU C does not support -C without using -E}}\
  332.     %{M} %{MM} %{MD:-MD %D} %{MMD:-MMD %D}\
  333.         -undef %{ObjC:-D__OBJC__} -D__GNUC__=2 %{ansi:-trigraphs -$ -D__STRICT_ANSI__}\
  334.     -D__GNU__ %{precomp} %{no-precomp}\
  335.     %{!undef:%{!ansi:%p} %P} %{trigraphs}\
  336.         %c %{O:-D__OPTIMIZE__} %{O1:-D__OPTIMIZE__} %{O2:-D__OPTIMIZE__} \
  337.     %{traditional} %{ftraditional:-traditional}\
  338.     %{Wcomment*} %{Wtrigraphs} %{Wall} %{w} %{pedantic*} %{H} %{d*} %C\
  339.         %{Wprecomp} %{Wno-precomp}\
  340.     %i %{!M:%{!MM:%{!E:%{!precomp:%{!pipe:%g.cpp}}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}}%{precomp:%W{o*}%{!o*:-o %b.p}} |\n\
  341.     %{!M:%{!MM:%{!E:%{!precomp:cc1obj %{!pipe:%g.cpp} %1 \
  342.            %{!Q:-quiet} -dumpbase %b.c %{Y*} %{d*} %{m*} %{a}\
  343.            %{g} %{O} %{O1} %{O2} %{W*} %{w} %{pedantic*} %{ansi} %{traditional}\
  344.            %{v:-version} %{pg:-p} %{p} %{f*}\
  345.                %{ObjC:-lang-objc %{gen-decls}}\
  346.            %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
  347.            %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
  348.               %{!S:as %{R} %{j} %{J} %{h} %{d2} %a %{gg:-G %g.sym}\
  349.               %{c:%W{o*}%{!o*:-o %w%b.o}}%{!c:-o %d%w%b.o}\
  350.                       %{!pipe:%g.s}\n }}}}}"},
  351.   {"-",
  352.    "%{E:cpp -lang-c %{nostdinc} %{C} %{v} %{D*} %{U*} %{I*} %{i*} %{P}\
  353.     %{C:%{!E:%eGNU C does not support -C without using -E}}\
  354.     %{M} %{MM} %{MD:-MD %D} %{MMD:-MMD %D}\
  355.     -D__GNU__ %{precomp} %{no-precomp}\
  356.         -undef -D__GNUC__=2 %{ansi:-trigraphs -$ -D__STRICT_ANSI__}\
  357.     %{!undef:%{!ansi:%p} %P} %{trigraphs}\
  358.         %c %{O:-D__OPTIMIZE__} %{O1:-D__OPTIMIZE__} %{O2:-D__OPTIMIZE__} \
  359.         %{traditional} %{ftraditional:-traditional}\
  360.     %{Wcomment*} %{Wtrigraphs} %{Wall} %{w} %{pedantic*} %{H} %{d*} %C\
  361.         %{Wprecomp} %{Wno-precomp}\
  362.         %i %W{o*}}\
  363.     %{!E:%e-E required when input is from standard input}"},
  364.   {".m", "@objective-c"},
  365.   {"@objective-c",
  366.    "%{E:cpp} %{!E:%{traditional:cpp}}\
  367.     %{!E:%{!traditional:%{traditional-cpp:cpp}}}\
  368.     %{!E:%{!traditional:%{!traditional-cpp: cpp-precomp -smart}}} -lang-objc\
  369.     %{nostdinc} %{C} %{v} %{D*} %{U*} %{I*} %{i*} %{P}\
  370.     %{C:%{!E:%eGNU C does not support -C without using -E}}\
  371.     %{M} %{MM} %{MD:-MD %D} %{MMD:-MMD %D}\
  372.         -undef -D__OBJC__ -D__GNUC__=2 %{ansi:-trigraphs -$ -D__STRICT_ANSI__}\
  373.     -D__GNU__ %{precomp} %{no-precomp}\
  374.     %{!undef:%{!ansi:%p} %P} %{trigraphs}\
  375.         %c %{O:-D__OPTIMIZE__} %{O1:-D__OPTIMIZE__} %{O2:-D__OPTIMIZE__} \
  376.         %{traditional} %{ftraditional:-traditional}\
  377.     %{Wcomment*} %{Wtrigraphs} %{Wall} %{w} %{pedantic*} %{H} %{d*} %C\
  378.         %{Wprecomp} %{Wno-precomp}\
  379.         %i %{!M:%{!MM:%{!E:%{!precomp:%{!pipe:%g.cpp}}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}}%{precomp:%W{o*}%{!o*:-o %b.p}} |\n\
  380.     %{!M:%{!MM:%{!E:%{!precomp:cc1obj %{!pipe:%g.cpp} %1 \
  381.            %{!Q:-quiet} -dumpbase %b.m %{Y*} %{d*} %{m*} %{a}\
  382.            %{g} %{O} %{O1} %{O2} %{W*} %{w} %{pedantic*} %{ansi} %{traditional}\
  383.            %{v:-version} %{pg:-p} %{p} %{f*}\
  384.                -lang-objc %{gen-decls}\
  385.            %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
  386.            %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
  387.               %{!S:as %{R} %{j} %{J} %{h} %{d2} %a %{gg:-G %g.sym}\
  388.               %{c:%W{o*}%{!o*:-o %w%b.o}}%{!c:-o %d%w%b.o}\
  389.                       %{!pipe:%g.s}\n }}}}}"},
  390.   {".h", "@c-header"},
  391.   {"@c-header", 
  392.    "%{!E:%{!precomp:%eCompilation of header file requested}} \
  393.     %{E:cpp} %{!E:%{traditional:cpp}}\
  394.     %{!E:%{!traditional:%{traditional-cpp:cpp}}}\
  395.     %{!E:%{!traditional:%{!traditional-cpp: cpp-precomp -smart}}}\
  396.     %{nostdinc} %{C} %{v} %{D*} %{U*} %{I*} %{i*} %{P}\
  397.     %{C:%{!E:%eGNU C does not support -C without using -E}}\
  398.      %{M} %{MM} %{MD:-MD %D} %{MMD:-MMD %D} \
  399.     -D__GNU__ %{precomp} %{no-precomp}\
  400.         -undef -D__GNUC__=2 %{ansi:-trigraphs -$ -D__STRICT_ANSI__}\
  401.     %{!undef:%{!ansi:%p} %P} %{trigraphs}\
  402.         %c %{O:-D__OPTIMIZE__} %{O1:-D__OPTIMIZE__} %{O2:-D__OPTIMIZE__} \
  403.         %{traditional} %{ftraditional:-traditional}\
  404.     %{Wcomment*} %{Wtrigraphs} %{Wall} %{w} %{pedantic*} %{H} %{d*} %C\
  405.         %{Wprecomp} %{Wno-precomp}\
  406.         %i %W{o*}%{precomp:%{!o*:-o %b.p }}"},
  407.   {".cc", "@c++"},
  408.   {".cxx", "@c++"},
  409.   {".C", "@c++"},
  410.   {"@c++", 
  411.    "cpp -lang-c++ %{nostdinc} %{C} %{v} %{D*} %{U*} %{I*} %{i*} %{P}\
  412.     %{C:%{!E:%eGNU C++ does not support -C without using -E}}\
  413.     %{M} %{MM} %{MD:-MD %D} %{MMD:-MMD %D} \
  414.     -D__GNU__ %{precomp:%ePrecompilation of C++ not supported}\
  415.         -undef %{ObjC++:-D__OBJC__} -D__GNUC__=2 -D__GNUG__ -D__cplusplus %{!undef:%p %P}\
  416.         %c %{O:-D__OPTIMIZE__} %{O1:-D__OPTIMIZE__} %{O2:-D__OPTIMIZE__} \
  417.         %{traditional} %{ftraditional:-traditional}\
  418.     %{Wcomment*} %{Wtrigraphs} %{Wall} %{w} %{pedantic*} %{H} %{d*} %C\
  419.         %i %{!M:%{!MM:%{!E:%{!pipe:%g.cpp}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n\
  420.     %{!M:%{!MM:%{!E:cc1plus %{!pipe:%g.cpp} %1 %2\
  421.            %{!Q:-quiet} -dumpbase %b.cc %{Y*} %{d*} %{m*} %{a}\
  422.            %{g*} %{O} %{O1} %{O2} %{W*} %{w} %{pedantic*} %{traditional}\
  423.            %{v:-version} %{pg:-p} %{p} %{f*}\
  424.                %{ObjC++:-lang-objc %{gen-decls}}\
  425.            %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
  426.            %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
  427.               %{!S:as %{R} %{j} %{J} %{h} %{d2} %a %{gg:-G %g.sym}\
  428.               %{c:%W{o*}%{!o*:-o %w%b.o}}%{!c:-o %d%w%b.o}\
  429.                       %{!pipe:%g.s}\n }}}}"},
  430.   {".cpp", "@cpp-output"},
  431.   {".i", "@cpp-output"},
  432.   {"@cpp-output",
  433.    "cc1obj %i %1 %{!Q:-quiet} %{Y*} %{d*} %{m*} %{a}\
  434.     %{g} %{O} %{O1} %{O2} %{W*} %{w} %{pedantic*} %{ansi} %{traditional}\
  435.     %{v:-version} %{pg:-p} %{p} %{f*}\
  436.     %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
  437.     %{!S:as %{R} %{j} %{J} %{h} %{d2} %a %{gg:-G %g.sym}\
  438.             %{c:%W{o*}%{!o*:-o %w%b.o}}%{!c:-o %d%w%b.o} %{!pipe:%g.s}\n }"},
  439.   {".s", "@assembler-with-cpp"},
  440.   {"@assembler",
  441.    "%{!S:as %{R} %{j} %{J} %{h} %{d2} %a \
  442.             %{c:%W{o*}%{!o*:-o %w%b.o}}%{!c:-o %d%w%b.o} %i\n }"},
  443.   {".S", "@assembler-with-cpp"},
  444.   {"@assembler-with-cpp",
  445.    "cpp -lang-asm %{nostdinc} %{C} %{v} %{D*} %{U*} %{I*} %{i*} %{P}\
  446.     %{C:%{!E:%eGNU C does not support -C without using -E}}\
  447.     %{M} %{MM} %{MD:-MD %D} %{MMD:-MMD %D} %{trigraphs} \
  448.     -D__GNU__ %{precomp:%ePrecompilation of assembler not supported}\
  449.         -undef -$ %{!undef:%p %P} -D__ASSEMBLER__ \
  450.         %c %{O:-D__OPTIMIZE__} %{O1:-D__OPTIMIZE__} %{O2:-D__OPTIMIZE__} \
  451.         %{traditional} %{ftraditional:-ftraditional}\
  452.     %{Wcomment*} %{Wtrigraphs} %{Wall} %{w} %{pedantic*} %{H} %{d*} %C\
  453.         %i %{!M:%{!MM:%{!E:%{!pipe:%g.s}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n\
  454.     %{!M:%{!MM:%{!E:%{!S:as %{R} %{j} %{J} %{h} %{d2} %a \
  455.                     %{c:%W{o*}%{!o*:-o %w%b.o}}%{!c:-o %d%w%b.o}\
  456.             %{!pipe:%g.s}\n }}}}"},
  457.   /* Mark end of table */
  458.   {0, 0}
  459. };
  460.  
  461. /* Number of elements in default_compilers, not counting the terminator.  */
  462.  
  463. int n_default_compilers
  464.   = (sizeof default_compilers / sizeof (struct compiler)) - 1;
  465.  
  466. /* Read compilation specs from a file named FILENAME,
  467.    replacing the default ones.
  468.  
  469.    A suffix which starts with `*' is a definition for
  470.    one of the machine-specific sub-specs.  The "suffix" should be
  471.    *asm, *cc1, *cpp, *link, *startfile, *signed_char, etc.
  472.    The corresponding spec is stored in asm_spec, etc.,
  473.    rather than in the `compilers' vector.
  474.  
  475.    Anything invalid in the file is a fatal error.  */
  476.  
  477. void
  478. read_specs (filename)
  479.      char *filename;
  480. {
  481.   int desc;
  482.   struct stat statbuf;
  483.   char *buffer;
  484.   register char *p;
  485.  
  486.   if (verbose_flag)
  487.     fprintf (stderr, "Reading specs from %s\n", filename);
  488.  
  489.   /* Open and stat the file.  */
  490.   desc = open (filename, 0, 0);
  491.   if (desc < 0)
  492.     pfatal_with_name (filename);
  493.   if (stat (filename, &statbuf) < 0)
  494.     pfatal_with_name (filename);
  495.  
  496.   /* Read contents of file into BUFFER.  */
  497.   buffer = (char *) xmalloc (statbuf.st_size + 1);
  498.   read (desc, buffer, statbuf.st_size);
  499.   buffer[statbuf.st_size] = 0;
  500.   close (desc);
  501.  
  502.   /* Scan BUFFER for specs, putting them in the vector.  */
  503.   p = buffer;
  504.   while (1)
  505.     {
  506.       char *suffix;
  507.       char *spec;
  508.       char *in, *out, *p1, *p2;
  509.  
  510.       /* Advance P in BUFFER to the next nonblank nocomment line.  */
  511.       p = skip_whitespace (p);
  512.       if (*p == 0)
  513.     break;
  514.  
  515.       /* Find the colon that should end the suffix.  */
  516.       p1 = p;
  517.       while (*p1 && *p1 != ':' && *p1 != '\n') p1++;
  518.       /* The colon shouldn't be missing.  */
  519.       if (*p1 != ':')
  520.     fatal ("specs file malformed after %d characters", p1 - buffer);
  521.       /* Skip back over trailing whitespace.  */
  522.       p2 = p1;
  523.       while (p2 > buffer && (p2[-1] == ' ' || p2[-1] == '\t')) p2--;
  524.       /* Copy the suffix to a string.  */
  525.       suffix = save_string (p, p2 - p);
  526.       /* Find the next line.  */
  527.       p = skip_whitespace (p1 + 1);
  528.       if (p[1] == 0)
  529.     fatal ("specs file malformed after %d characters", p - buffer);
  530.       p1 = p;
  531.       /* Find next blank line.  */
  532.       while (*p1 && !(*p1 == '\n' && p1[1] == '\n')) p1++;
  533.       /* Specs end at the blank line and do not include the newline.  */
  534.       spec = save_string (p, p1 - p);
  535.       p = p1;
  536.  
  537.       /* Delete backslash-newline sequences from the spec.  */
  538.       in = spec;
  539.       out = spec;
  540.       while (*in != 0)
  541.     {
  542.       if (in[0] == '\\' && in[1] == '\n')
  543.         in += 2;
  544.       else if (in[0] == '#')
  545.         {
  546.           while (*in && *in != '\n') in++;
  547.           if (*in) in++;
  548.         }
  549.       else
  550.         *out++ = *in++;
  551.     }
  552.       *out = 0;
  553.  
  554.       if (suffix[0] == '*')
  555.     {
  556.       if (! strcmp (suffix, "*link_command"))
  557.         link_command_spec = spec;
  558.       else
  559.         set_spec (suffix + 1, spec);
  560.     }
  561.       else
  562.     {
  563.       /* Add this pair to the vector.  */
  564.       compilers
  565.         = ((struct compiler *)
  566.            xrealloc (compilers, (n_compilers + 2) * sizeof (struct compiler)));
  567.       compilers[n_compilers].suffix = suffix;
  568.       compilers[n_compilers].spec = spec;
  569.       n_compilers++;
  570.     }
  571.  
  572.       if (*suffix == 0)
  573.     link_command_spec = spec;
  574.     }
  575.  
  576.   if (link_command_spec == 0)
  577.     fatal ("spec file has no spec for linking");
  578. }
  579.  
  580. char *
  581. skip_whitespace (p)
  582.      char *p;
  583. {
  584.   while (1)
  585.     {
  586.       /* A fully-blank line is a delimiter in the SPEC file and shouldn't
  587.      be considered whitespace.  */
  588.       if (p[0] == '\n' && p[1] == '\n' && p[2] == '\n')
  589.     return p + 1;
  590.       else if (*p == '\n' || *p == ' ' || *p == '\t')
  591.     p++;
  592.       else if (*p == '#')
  593.     {
  594.       while (*p != '\n') p++;
  595.       p++;
  596.     }
  597.       else
  598.     break;
  599.     }
  600.  
  601.   return p;
  602. }
  603.  
  604. /* Structure to keep track of the specs that have been defined so far.  These
  605.    are accessed using %Sspecname in a compiler or link spec. */
  606.  
  607. struct spec_list
  608. {
  609.   char *name;                 /* Name of the spec. */
  610.   char *spec;                 /* The spec itself. */
  611.   struct spec_list *next;     /* Next spec in linked list. */
  612. };
  613.  
  614. /* List of specs that have been defined so far. */
  615.  
  616. struct spec_list *specs = (struct spec_list *) 0;
  617.  
  618. /* Change the value of spec NAME to SPEC.  If SPEC is empty, then the spec is
  619.    removed; If the spec starts with a + then SPEC is added to the end of the
  620.    current spec. */
  621.  
  622. void
  623. set_spec (name, spec)
  624.      char *name;
  625.      char *spec;
  626. {
  627.   struct spec_list *sl;
  628.   char *old_spec;
  629.  
  630.   /* See if the spec already exists */
  631.   for (sl = specs; sl; sl = sl->next)
  632.     if (strcmp (sl->name, name) == 0)
  633.       break;
  634.  
  635.   if (!sl)
  636.     {
  637.       /* Not found - make it */
  638.       sl = (struct spec_list *) xmalloc (sizeof (struct spec_list));
  639.       sl->name = save_string (name, strlen (name));
  640.       sl->spec = save_string ("", 0);
  641.       sl->next = specs;
  642.       specs = sl;
  643.     }
  644.  
  645.   old_spec = sl->spec;
  646.   if (name && spec[0] == '+' && isspace (spec[1]))
  647.     sl->spec = concat (name, spec + 1, "");
  648.   else
  649.     sl->spec = save_string (spec, strlen (spec));
  650.  
  651.   if (! strcmp (name, "asm"))
  652.     asm_spec = sl->spec;
  653.   else if (! strcmp (name, "cc1"))
  654.     cc1_spec = sl->spec;
  655.   else if (! strcmp (name, "cc1plus"))
  656.     cc1plus_spec = sl->spec;
  657.   else if (! strcmp (name, "cpp"))
  658.     cpp_spec = sl->spec;
  659.   else if (! strcmp (name, "signed_char"))
  660.     signed_char_spec = sl->spec;
  661.   else if (! strcmp (name, "link"))
  662.     link_spec = sl->spec;
  663.   else if (! strcmp (name, "lib"))
  664.     lib_spec = sl->spec;
  665.   else if (! strcmp (name, "startfile"))
  666.     startfile_spec = sl->spec;
  667.   else if (! strcmp (name, "predefines"))
  668.     cpp_predefines = sl->spec;
  669.  
  670.   /* Free the old spec */
  671.   if (old_spec)
  672.     free (old_spec);
  673. }
  674.  
  675. /* Accumulate a command (program name and args), and run it.  */
  676.  
  677. /* Vector of pointers to arguments in the current line of specifications.  */
  678.  
  679. char **argbuf;
  680.  
  681. /* Number of elements allocated in argbuf.  */
  682.  
  683. int argbuf_length;
  684.  
  685. /* Number of elements in argbuf currently in use (containing args).  */
  686.  
  687. int argbuf_index;
  688.  
  689. /* Number of commands executed so far.  */
  690.  
  691. int execution_count;
  692.  
  693. /* Name with which this program was invoked.  */
  694.  
  695. char *programname;
  696.  
  697. /* Structures to keep track of prefixes to try when looking for files. */
  698.  
  699. struct prefix_list
  700. {
  701.   char *prefix;               /* String to prepend to the path. */
  702.   struct prefix_list *next;   /* Next in linked list. */
  703.   int require_machine_suffix; /* Don't use without machine_suffix.  */
  704.   int *used_flag_ptr;          /* 1 if a file was found with this prefix.  */
  705. };
  706.  
  707. struct path_prefix
  708. {
  709.   struct prefix_list *plist;  /* List of prefixes to try */
  710.   int max_len;                /* Max length of a prefix in PLIST */
  711.   char *name;                 /* Name of this list (used in config stuff) */
  712. };
  713.  
  714. /* List of prefixes to try when looking for executables. */
  715.  
  716. struct path_prefix exec_prefix = { 0, 0, "exec" };
  717.  
  718. /* List of prefixes to try when looking for startup (crt0) files. */
  719.  
  720. struct path_prefix startfile_prefix = { 0, 0, "startfile" };
  721.  
  722. /* Suffix to attach to directories searched for commands.  */
  723.  
  724. char *machine_suffix = 0;
  725.  
  726. /* Nonzero means don't bypass the machine_suffix.  */
  727.  
  728. int machine_explicit;
  729.  
  730. /* Default prefixes to attach to command names.  */
  731.  
  732. #ifndef STANDARD_EXEC_PREFIX
  733. #define STANDARD_EXEC_PREFIX "/usr/local/lib/gcc/"
  734. #endif /* !defined STANDARD_EXEC_PREFIX */
  735.  
  736. #ifdef MD_EXEC_PREFIX
  737. char *md_exec_prefix = MD_EXEC_PREFIX;
  738. #endif
  739. char *standard_exec_prefix = STANDARD_EXEC_PREFIX;
  740. #ifdef NeXT
  741. char *standard_exec_prefix_1 = "/usr/local/lib/";
  742. char *standard_exec_prefix_2 = "/bin/";
  743. #else /* NeXT */
  744. char *standard_exec_prefix_1 = "/usr/lib/gcc/";
  745. #endif /* NeXT */
  746.  
  747. #ifndef STANDARD_STARTFILE_PREFIX
  748. #define STANDARD_STARTFILE_PREFIX "/usr/local/lib/"
  749. #endif /* !defined STANDARD_STARTFILE_PREFIX */
  750.  
  751. #ifdef MD_STARTFILE_PREFIX
  752. char *md_startfile_prefix = MD_STARTFILE_PREFIX;
  753. #endif
  754. char *standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
  755. char *standard_startfile_prefix_1 = "/lib/";
  756. char *standard_startfile_prefix_2 = "/usr/lib/";
  757.  
  758. /* Clear out the vector of arguments (after a command is executed).  */
  759.  
  760. void
  761. clear_args ()
  762. {
  763.   argbuf_index = 0;
  764. }
  765.  
  766. /* Add one argument to the vector at the end.
  767.    This is done when a space is seen or at the end of the line.
  768.    If DELETE_ALWAYS is nonzero, the arg is a filename
  769.     and the file should be deleted eventually.
  770.    If DELETE_FAILURE is nonzero, the arg is a filename
  771.     and the file should be deleted if this compilation fails.  */
  772.  
  773. void
  774. store_arg (arg, delete_always, delete_failure)
  775.      char *arg;
  776.      int delete_always, delete_failure;
  777. {
  778.   if (argbuf_index + 1 == argbuf_length)
  779.     {
  780.       argbuf = (char **) xrealloc (argbuf, (argbuf_length *= 2) * sizeof (char *));
  781.     }
  782.  
  783.   argbuf[argbuf_index++] = arg;
  784.   argbuf[argbuf_index] = 0;
  785.  
  786.   if (delete_always || delete_failure)
  787.     record_temp_file (arg, delete_always, delete_failure);
  788. }
  789.  
  790. /* Record the names of temporary files we tell compilers to write,
  791.    and delete them at the end of the run.  */
  792.  
  793. /* This is the common prefix we use to make temp file names.
  794.    It is chosen once for each run of this program.
  795.    It is substituted into a spec by %g.
  796.    Thus, all temp file names contain this prefix.
  797.    In practice, all temp file names start with this prefix.
  798.  
  799.    This prefix comes from the envvar TMPDIR if it is defined;
  800.    otherwise, from the P_tmpdir macro if that is defined;
  801.    otherwise, in /usr/tmp or /tmp.  */
  802.  
  803. char *temp_filename;
  804.  
  805. /* Length of the prefix.  */
  806.  
  807. int temp_filename_length;
  808.  
  809. /* Define the list of temporary files to delete.  */
  810.  
  811. struct temp_file
  812. {
  813.   char *name;
  814.   struct temp_file *next;
  815. };
  816.  
  817. /* Queue of files to delete on success or failure of compilation.  */
  818. struct temp_file *always_delete_queue;
  819. /* Queue of files to delete on failure of compilation.  */
  820. struct temp_file *failure_delete_queue;
  821.  
  822. /* Record FILENAME as a file to be deleted automatically.
  823.    ALWAYS_DELETE nonzero means delete it if all compilation succeeds;
  824.    otherwise delete it in any case.
  825.    FAIL_DELETE nonzero means delete it if a compilation step fails;
  826.    otherwise delete it in any case.  */
  827.  
  828. void
  829. record_temp_file (filename, always_delete, fail_delete)
  830.      char *filename;
  831.      int always_delete;
  832.      int fail_delete;
  833. {
  834.   register char *name;
  835.   name = (char *) xmalloc (strlen (filename) + 1);
  836.   strcpy (name, filename);
  837.  
  838.   if (always_delete)
  839.     {
  840.       register struct temp_file *temp;
  841.       for (temp = always_delete_queue; temp; temp = temp->next)
  842.     if (! strcmp (name, temp->name))
  843.       goto already1;
  844.       temp = (struct temp_file *) xmalloc (sizeof (struct temp_file));
  845.       temp->next = always_delete_queue;
  846.       temp->name = name;
  847.       always_delete_queue = temp;
  848.     already1:;
  849.     }
  850.  
  851.   if (fail_delete)
  852.     {
  853.       register struct temp_file *temp;
  854.       for (temp = failure_delete_queue; temp; temp = temp->next)
  855.     if (! strcmp (name, temp->name))
  856.       goto already2;
  857.       temp = (struct temp_file *) xmalloc (sizeof (struct temp_file));
  858.       temp->next = failure_delete_queue;
  859.       temp->name = name;
  860.       failure_delete_queue = temp;
  861.     already2:;
  862.     }
  863. }
  864.  
  865. /* Delete all the temporary files whose names we previously recorded.  */
  866.  
  867. void
  868. delete_temp_files ()
  869. {
  870.   register struct temp_file *temp;
  871.  
  872.   for (temp = always_delete_queue; temp; temp = temp->next)
  873.     {
  874. #ifdef DEBUG
  875.       int i;
  876.       printf ("Delete %s? (y or n) ", temp->name);
  877.       fflush (stdout);
  878.       i = getchar ();
  879.       if (i != '\n')
  880.     while (getchar () != '\n') ;
  881.       if (i == 'y' || i == 'Y')
  882. #endif /* DEBUG */
  883.     {
  884.       struct stat st;
  885.       if (stat (temp->name, &st) >= 0)
  886.         {
  887.           /* Delete only ordinary files.  */
  888.           if ((st.st_mode & S_IFMT) == S_IFREG)
  889.         if (unlink (temp->name) < 0)
  890.           if (verbose_flag)
  891.             perror_with_name (temp->name);
  892.         }
  893.     }
  894.     }
  895.  
  896.   always_delete_queue = 0;
  897. }
  898.  
  899. /* Delete all the files to be deleted on error.  */
  900.  
  901. void
  902. delete_failure_queue ()
  903. {
  904.   register struct temp_file *temp;
  905.  
  906.   for (temp = failure_delete_queue; temp; temp = temp->next)
  907.     {
  908. #ifdef DEBUG
  909.       int i;
  910.       printf ("Delete %s? (y or n) ", temp->name);
  911.       fflush (stdout);
  912.       i = getchar ();
  913.       if (i != '\n')
  914.     while (getchar () != '\n') ;
  915.       if (i == 'y' || i == 'Y')
  916. #endif /* DEBUG */
  917.     {
  918.       if (unlink (temp->name) < 0)
  919.         if (verbose_flag)
  920.           perror_with_name (temp->name);
  921.     }
  922.     }
  923. }
  924.  
  925. void
  926. clear_failure_queue ()
  927. {
  928.   failure_delete_queue = 0;
  929. }
  930.  
  931. /* Compute a string to use as the base of all temporary file names.
  932.    It is substituted for %g.  */
  933.  
  934. void
  935. choose_temp_base ()
  936. {
  937.   extern char *getenv ();
  938.   char *base = getenv ("TMPDIR");
  939.   int len;
  940.  
  941.   if (base == (char *)0)
  942.     {
  943. #ifdef P_tmpdir
  944.       if (access (P_tmpdir, R_OK | W_OK) == 0)
  945.     base = P_tmpdir;
  946. #endif
  947.       if (base == (char *)0)
  948.     {
  949.       if (access ("/usr/tmp", R_OK | W_OK) == 0)
  950.         base = "/usr/tmp/";
  951.       else
  952.         base = "/tmp/";
  953.     }
  954.     }
  955.  
  956.   len = strlen (base);
  957.   temp_filename = (char *) xmalloc (len + sizeof("/ccXXXXXX"));
  958.   strcpy (temp_filename, base);
  959.   if (len > 0 && temp_filename[len-1] != '/')
  960.     temp_filename[len++] = '/';
  961.   strcpy (temp_filename + len, "ccXXXXXX");
  962.  
  963.   mktemp (temp_filename);
  964.   temp_filename_length = strlen (temp_filename);
  965. }
  966.  
  967. /* Search for NAME using the prefix list PREFIXES.  MODE is passed to
  968.    access to check permissions.
  969.    Return 0 if not found, otherwise return its name, allocated with malloc. */
  970.  
  971. char *
  972. find_a_file (pprefix, name, mode)
  973.      struct path_prefix *pprefix;
  974.      char *name;
  975.      int mode;
  976. {
  977.   char *temp;
  978.   struct prefix_list *pl;
  979.   int len = pprefix->max_len + strlen (name) + 1;
  980.  
  981.   if (machine_suffix)
  982.     len += strlen (machine_suffix);
  983.  
  984.   temp = (char *) xmalloc (len);
  985.  
  986.   /* Determine the filename to execute (special case for absolute paths).  */
  987.  
  988.   if (*name == '/')
  989.     {
  990.       if (access (name, mode))
  991.     {
  992.       strcpy (temp, name);
  993.       return temp;
  994.     }
  995.     }
  996.   else
  997.     for (pl = pprefix->plist; pl; pl = pl->next)
  998.       {
  999.     if (machine_suffix)
  1000.       {
  1001.         strcpy (temp, pl->prefix);
  1002.         strcat (temp, machine_suffix);
  1003.         strcat (temp, name);
  1004.         if (access (temp, mode) == 0)
  1005.           {
  1006.         if (pl->used_flag_ptr != 0)
  1007.           *pl->used_flag_ptr = 1;
  1008.         return temp;
  1009.           }
  1010.       }
  1011.     /* Certain prefixes can't be used without the machine suffix
  1012.        when the machine or version is explicitly specified.  */
  1013.     if (!machine_explicit || !pl->require_machine_suffix)
  1014.       {
  1015.         strcpy (temp, pl->prefix);
  1016.         strcat (temp, name);
  1017.         if (access (temp, mode) == 0)
  1018.           {
  1019.         if (pl->used_flag_ptr != 0)
  1020.           *pl->used_flag_ptr = 1;
  1021.         return temp;
  1022.           }
  1023.       }
  1024.       }
  1025.  
  1026.   free (temp);
  1027.   return 0;
  1028. }
  1029.  
  1030. /* Add an entry for PREFIX in PLIST.  If FIRST is set, it goes
  1031.    at the start of the list, otherwise it goes at the end.
  1032.  
  1033.    If WARN is nonzero, we will warn if no file is found
  1034.    through this prefix.  WARN should point to an int
  1035.    which will be set to 1 if this entry is used.  */
  1036.  
  1037. void
  1038. add_prefix (pprefix, prefix, first, require_machine_suffix, warn)
  1039.      struct path_prefix *pprefix;
  1040.      char *prefix;
  1041.      int first;
  1042.      int require_machine_suffix;
  1043.      int *warn;
  1044. {
  1045.   struct prefix_list *pl, **prev;
  1046.   int len;
  1047.  
  1048.   if (!first && pprefix->plist)
  1049.     {
  1050.       for (pl = pprefix->plist; pl->next; pl = pl->next)
  1051.     ;
  1052.       prev = &pl->next;
  1053.     }
  1054.   else
  1055.     prev = &pprefix->plist;
  1056.  
  1057.   /* Keep track of the longest prefix */
  1058.  
  1059.   len = strlen (prefix);
  1060.   if (len > pprefix->max_len)
  1061.     pprefix->max_len = len;
  1062.  
  1063.   pl = (struct prefix_list *) xmalloc (sizeof (struct prefix_list));
  1064.   pl->prefix = save_string (prefix, len);
  1065.   pl->require_machine_suffix = require_machine_suffix;
  1066.   pl->used_flag_ptr = warn;
  1067.   if (warn)
  1068.     *warn = 0;
  1069.  
  1070.   if (*prev)
  1071.     pl->next = *prev;
  1072.   else
  1073.     pl->next = (struct prefix_list *) 0;
  1074.   *prev = pl;
  1075. }
  1076.  
  1077. /* Print warnings for any prefixes in the list PPREFIX that were not used.  */
  1078.  
  1079. void
  1080. unused_prefix_warnings (pprefix)
  1081.      struct path_prefix *pprefix;
  1082. {
  1083.   struct prefix_list *pl = pprefix->plist;
  1084.  
  1085.   while (pl)
  1086.     {
  1087.       if (pl->used_flag_ptr != 0 && !*pl->used_flag_ptr)
  1088.     {
  1089.       error ("file path prefix `%s' never used",
  1090.          pl->prefix);
  1091.       /* Prevent duplicate warnings.  */
  1092.       *pl->used_flag_ptr = 1;
  1093.     }
  1094.       pl = pl->next;
  1095.     }
  1096. }
  1097.  
  1098. /* Get rid of all prefixes built up so far in *PLISTP. */
  1099.  
  1100. void
  1101. free_path_prefix (pprefix)
  1102.      struct path_prefix *pprefix;
  1103. {
  1104.   struct prefix_list *pl = pprefix->plist;
  1105.   struct prefix_list *temp;
  1106.  
  1107.   while (pl)
  1108.     {
  1109.       temp = pl;
  1110.       pl = pl->next;
  1111.       free (temp->prefix);
  1112.       free ((char *) temp);
  1113.     }
  1114.   pprefix->plist = (struct prefix_list *) 0;
  1115. }
  1116.  
  1117. /* stdin file number.  */
  1118. #define STDIN_FILE_NO 0
  1119.  
  1120. /* stdout file number.  */
  1121. #define STDOUT_FILE_NO 1
  1122.  
  1123. /* value of `pipe': port index for reading.  */
  1124. #define READ_PORT 0
  1125.  
  1126. /* value of `pipe': port index for writing.  */
  1127. #define WRITE_PORT 1
  1128.  
  1129. /* Pipe waiting from last process, to be used as input for the next one.
  1130.    Value is STDIN_FILE_NO if no pipe is waiting
  1131.    (i.e. the next command is the first of a group).  */
  1132.  
  1133. int last_pipe_input;
  1134.  
  1135. /* Fork one piped subcommand.  FUNC is the system call to use
  1136.    (either execv or execvp).  ARGV is the arg vector to use.
  1137.    NOT_LAST is nonzero if this is not the last subcommand
  1138.    (i.e. its output should be piped to the next one.)  */
  1139.  
  1140. static int
  1141. pexecute (func, program, argv, not_last)
  1142.      char *program;
  1143.      int (*func)();
  1144.      char *argv[];
  1145.      int not_last;
  1146. {
  1147.   int pid;
  1148.   int pdes[2];
  1149.   int input_desc = last_pipe_input;
  1150.   int output_desc = STDOUT_FILE_NO;
  1151.   int retries, sleep_interval;
  1152.  
  1153.   /* If this isn't the last process, make a pipe for its output,
  1154.      and record it as waiting to be the input to the next process.  */
  1155.  
  1156.   if (not_last)
  1157.     {
  1158.       if (pipe (pdes) < 0)
  1159.     pfatal_with_name ("pipe");
  1160.       output_desc = pdes[WRITE_PORT];
  1161.       last_pipe_input = pdes[READ_PORT];
  1162.     }
  1163.   else
  1164.     last_pipe_input = STDIN_FILE_NO;
  1165.  
  1166.   /* Fork a subprocess; wait and retry if it fails.  */
  1167.   sleep_interval = 1;
  1168.   for (retries = 0; retries < 4; retries++)
  1169.     {
  1170.       pid = vfork ();
  1171.       if (pid >= 0)
  1172.     break;
  1173.       sleep (sleep_interval);
  1174.       sleep_interval *= 2;
  1175.     }
  1176.  
  1177.   switch (pid)
  1178.     {
  1179.     case -1:
  1180.       pfatal_with_name ("vfork");
  1181.       break;
  1182.  
  1183.     case 0: /* child */
  1184.       /* Move the input and output pipes into place, if nec.  */
  1185.       if (input_desc != STDIN_FILE_NO)
  1186.     {
  1187.       close (STDIN_FILE_NO);
  1188.       dup (input_desc);
  1189.       close (input_desc);
  1190.     }
  1191.       if (output_desc != STDOUT_FILE_NO)
  1192.     {
  1193.       close (STDOUT_FILE_NO);
  1194.       dup (output_desc);
  1195.       close (output_desc);
  1196.     }
  1197.  
  1198.       /* Close the parent's descs that aren't wanted here.  */
  1199.       if (last_pipe_input != STDIN_FILE_NO)
  1200.     close (last_pipe_input);
  1201.  
  1202.       /* Exec the program.  */
  1203.       (*func) (program, argv);
  1204.       perror_exec (program);
  1205.       exit (-1);
  1206.       /* NOTREACHED */
  1207.  
  1208.     default:
  1209.       /* In the parent, after forking.
  1210.      Close the descriptors that we made for this child.  */
  1211.       if (input_desc != STDIN_FILE_NO)
  1212.     close (input_desc);
  1213.       if (output_desc != STDOUT_FILE_NO)
  1214.     close (output_desc);
  1215.  
  1216.       /* Return child's process number.  */
  1217.       return pid;
  1218.     }
  1219. }
  1220.  
  1221. /* Execute the command specified by the arguments on the current line of spec.
  1222.    When using pipes, this includes several piped-together commands
  1223.    with `|' between them.
  1224.  
  1225.    Return 0 if successful, -1 if failed.  */
  1226.  
  1227. int
  1228. execute ()
  1229. {
  1230.   int i;
  1231.   int n_commands;        /* # of command.  */
  1232.   char *string;
  1233.   struct command
  1234.     {
  1235.       char *prog;        /* program name.  */
  1236.       char **argv;        /* vector of args.  */
  1237.       int pid;            /* pid of process for this command.  */
  1238.     };
  1239.  
  1240.   struct command *commands;    /* each command buffer with above info.  */
  1241.  
  1242.   /* Count # of piped commands.  */
  1243.   for (n_commands = 1, i = 0; i < argbuf_index; i++)
  1244.     if (strcmp (argbuf[i], "|") == 0)
  1245.       n_commands++;
  1246.  
  1247.   /* Get storage for each command.  */
  1248.   commands
  1249.     = (struct command *) alloca (n_commands * sizeof (struct command));
  1250.  
  1251.   /* Split argbuf into its separate piped processes,
  1252.      and record info about each one.
  1253.      Also search for the programs that are to be run.  */
  1254.  
  1255.   commands[0].prog = argbuf[0]; /* first command.  */
  1256.   commands[0].argv = &argbuf[0];
  1257.   string = find_a_file (&exec_prefix, commands[0].prog, X_OK);
  1258.   if (string)
  1259.     commands[0].argv[0] = string;
  1260.  
  1261.   for (n_commands = 1, i = 0; i < argbuf_index; i++)
  1262.     if (strcmp (argbuf[i], "|") == 0)
  1263.       {                /* each command.  */
  1264.     argbuf[i] = 0;    /* termination of command args.  */
  1265.     commands[n_commands].prog = argbuf[i + 1];
  1266.     commands[n_commands].argv = &argbuf[i + 1];
  1267.     string = find_a_file (&exec_prefix, commands[n_commands].prog, X_OK);
  1268.     if (string)
  1269.       commands[n_commands].argv[0] = string;
  1270.     n_commands++;
  1271.       }
  1272.  
  1273.   argbuf[argbuf_index] = 0;
  1274.  
  1275.   /* If -v, print what we are about to do, and maybe query.  */
  1276.  
  1277.   if (verbose_flag)
  1278.     {
  1279.       /* Print each piped command as a separate line.  */
  1280.       for (i = 0; i < n_commands ; i++)
  1281.     {
  1282.       char **j;
  1283.  
  1284.       for (j = commands[i].argv; *j; j++)
  1285.         fprintf (stderr, " %s", *j);
  1286.  
  1287.       /* Print a pipe symbol after all but the last command.  */
  1288.       if (i + 1 != n_commands)
  1289.         fprintf (stderr, " |");
  1290.       fprintf (stderr, "\n");
  1291.     }
  1292.       fflush (stderr);
  1293. #ifdef DEBUG
  1294.       fprintf (stderr, "\nGo ahead? (y or n) ");
  1295.       fflush (stderr);
  1296.       i = getchar ();
  1297.       if (i != '\n')
  1298.     while (getchar () != '\n') ;
  1299.       if (i != 'y' && i != 'Y')
  1300.     return 0;
  1301. #endif /* DEBUG */
  1302.     }
  1303.  
  1304.   /* Run each piped subprocess.  */
  1305.  
  1306.   last_pipe_input = STDIN_FILE_NO;
  1307.   for (i = 0; i < n_commands; i++)
  1308.     {
  1309.       extern int execv(), execvp();
  1310.       char *string = commands[i].argv[0];
  1311.  
  1312.       commands[i].pid = pexecute ((string != commands[i].prog ? execv : execvp),
  1313.                   string, commands[i].argv,
  1314.                   i + 1 < n_commands);
  1315.  
  1316.       if (string != commands[i].prog)
  1317.     free (string);
  1318.     }
  1319.  
  1320.   execution_count++;
  1321.  
  1322.   /* Wait for all the subprocesses to finish.
  1323.      We don't care what order they finish in;
  1324.      we know that N_COMMANDS waits will get them all.  */
  1325.  
  1326.   {
  1327.     int ret_code = 0;
  1328.  
  1329.     for (i = 0; i < n_commands; i++)
  1330.       {
  1331.     int status;
  1332.     int pid;
  1333.     char *prog;
  1334.  
  1335.     pid = wait (&status);
  1336.     if (pid < 0)
  1337.       abort ();
  1338.  
  1339.     if (status != 0)
  1340.       {
  1341.         int j;
  1342.         for (j = 0; j < n_commands; j++)
  1343.           if (commands[j].pid == pid)
  1344.         prog = commands[j].prog;
  1345.  
  1346.         if ((status & 0x7F) != 0)
  1347.           fatal ("Internal compiler error: program %s got fatal signal %d",
  1348.              prog, (status & 0x7F));
  1349.         if (((status & 0xFF00) >> 8) >= MIN_FATAL_STATUS)
  1350.           ret_code = -1;
  1351.       }
  1352.       }
  1353.     return ret_code;
  1354.   }
  1355. }
  1356.  
  1357. /* Find all the switches given to us
  1358.    and make a vector describing them.
  1359.    The elements of the vector a strings, one per switch given.
  1360.    If a switch uses following arguments, then the `part1' field
  1361.    is the switch itself and the `args' field
  1362.    is a null-terminated vector containing the following arguments.
  1363.    The `valid' field is nonzero if any spec has looked at this switch;
  1364.    if it remains zero at the end of the run, it must be meaningless.  */
  1365.  
  1366. struct switchstr
  1367. {
  1368.   char *part1;
  1369.   char **args;
  1370.   int valid;
  1371. };
  1372.  
  1373. struct switchstr *switches;
  1374.  
  1375. int n_switches;
  1376.  
  1377. struct infile
  1378. {
  1379.   char *name;
  1380.   char *language;
  1381. };
  1382.  
  1383. /* Also a vector of input files specified.  */
  1384.  
  1385. struct infile *infiles;
  1386.  
  1387. int n_infiles;
  1388.  
  1389. /* And a vector of corresponding output files is made up later.  */
  1390.  
  1391. char **outfiles;
  1392.  
  1393. #ifdef NeXT
  1394. /* The dependency output file (specified with -dependency-file) */
  1395.  
  1396. char *dependency_output_file = NULL;
  1397.  
  1398. static char *default_language = NULL;
  1399. #endif /* NeXT */
  1400.  
  1401. /* Create the vector `switches' and its contents.
  1402.    Store its length in `n_switches'.  */
  1403.  
  1404. void
  1405. process_command (argc, argv)
  1406.      int argc;
  1407.      char **argv;
  1408. {
  1409.   extern char *getenv ();
  1410.   register int i;
  1411.   char *temp;
  1412.   char *spec_lang = 0;
  1413.   int last_language_n_infiles;
  1414.  
  1415.   n_switches = 0;
  1416.   n_infiles = 0;
  1417.   spec_version = version_string;
  1418.  
  1419.   /* Set up the default search paths.  */
  1420.  
  1421.   temp = getenv ("GCC_EXEC_PREFIX");
  1422.   if (temp)
  1423.     {
  1424.       add_prefix (&exec_prefix, temp, 0, 0, 0);
  1425.       add_prefix (&startfile_prefix, temp, 0, 0, 0);
  1426.     }
  1427.  
  1428.   /* This must be set before we go looking for config files. */
  1429.  
  1430. #ifdef MD_EXEC_PREFIX
  1431.   add_prefix (&exec_prefix, md_exec_prefix, 0, 1, 0);
  1432.   add_prefix (&startfile_prefix, md_exec_prefix, 0, 1, 0);
  1433. #endif
  1434.  
  1435. #ifdef MD_STARTFILE_PREFIX
  1436.   add_prefix (&startfile_prefix, md_startfile_prefix, 0, 1, 0);
  1437. #endif
  1438.  
  1439.   add_prefix (&exec_prefix, standard_exec_prefix, 0, 1, 0);
  1440.   add_prefix (&exec_prefix, standard_exec_prefix_1, 0, 1, 0);
  1441. #ifdef NeXT
  1442.   add_prefix (&exec_prefix, standard_exec_prefix_2, 0, 1, 0);
  1443. #endif /* NeXT */
  1444.  
  1445.   add_prefix (&startfile_prefix, standard_exec_prefix, 0, 1, 0);
  1446.   add_prefix (&startfile_prefix, standard_exec_prefix_1, 0, 1, 0);
  1447.   add_prefix (&startfile_prefix, standard_startfile_prefix, 0, 0, 0);
  1448.   add_prefix (&startfile_prefix, standard_startfile_prefix_1, 0, 0, 0);
  1449.   add_prefix (&startfile_prefix, standard_startfile_prefix_2, 0, 0, 0);
  1450.   add_prefix (&startfile_prefix, "./", 0, 1, 0);
  1451.  
  1452.   /* Scan argv twice.  Here, the first time, just count how many switches
  1453.      there will be in their vector, and how many input files in theirs.
  1454.      Here we also parse the switches that cc itself uses (e.g. -v).  */
  1455.  
  1456.   for (i = 1; i < argc; i++)
  1457.     {
  1458.       if (! strcmp (argv[i], "-dumpspecs"))
  1459.     {
  1460.       printf ("*asm:\n%s\n\n", asm_spec);
  1461.       printf ("*cpp:\n%s\n\n", cpp_spec);
  1462.       printf ("*cc1:\n%s\n\n", cc1_spec);
  1463.       printf ("*cc1plus:\n%s\n\n", cc1plus_spec);
  1464.       printf ("*link:\n%s\n\n", link_spec);
  1465.       printf ("*lib:\n%s\n\n", lib_spec);
  1466.       printf ("*startfile:\n%s\n\n", startfile_spec);
  1467.       printf ("*signed_char:\n%s\n\n", signed_char_spec);
  1468.       printf ("*predefines:\n%s\n\n", cpp_predefines);
  1469.  
  1470.       exit (0);
  1471.     }
  1472.       else if (! strcmp (argv[i], "-dumpversion"))
  1473.     {
  1474.       printf ("%s\n", version_string);
  1475.       exit (0);
  1476.     }
  1477.       else if (argv[i][0] == '-' && argv[i][1] != 'l')
  1478.     {
  1479.       register char *p = &argv[i][1];
  1480.       register int c = *p;
  1481.  
  1482.       switch (c)
  1483.         {
  1484.         case 'b':
  1485.           if (p[1] == 0 && i + 1 == argc)
  1486.         fatal ("argument to `-b' is missing");
  1487.           if (p[1] == 0)
  1488.         spec_machine = argv[++i];
  1489. #ifdef NeXT
  1490.           /* Allow NeXT's -bsd switch.  */
  1491.           else if (WORD_SWITCH (p))
  1492.         {
  1493.           n_switches++;
  1494.           i += WORD_SWITCH_TAKES_ARG (p);
  1495.         }
  1496. #endif /* NeXT */
  1497.           else
  1498.         spec_machine = p + 1;
  1499.           break;
  1500.  
  1501.         case 'B':
  1502.           {
  1503.         int *temp = (int *) xmalloc (sizeof (int));
  1504.         char *value;
  1505.         if (p[1] == 0 && i + 1 == argc)
  1506.           fatal ("argument to `-B' is missing");
  1507.         if (p[1] == 0)
  1508.           value = argv[++i];
  1509.         else
  1510.           value = p + 1;
  1511.         add_prefix (&exec_prefix, value, 1, 0, temp);
  1512.         add_prefix (&startfile_prefix, value, 1, 0, temp);
  1513.           }
  1514.           break;
  1515.  
  1516.         case 'v':    /* Print our subcommands and print versions.  */
  1517.           verbose_flag++;
  1518.           n_switches++;
  1519.           break;
  1520.  
  1521.         case 'V':
  1522.           if (p[1] == 0 && i + 1 == argc)
  1523.         fatal ("argument to `-V' is missing");
  1524.           if (p[1] == 0)
  1525.         spec_version = argv[++i];
  1526.           else
  1527.         spec_version = p + 1;
  1528.           break;
  1529.  
  1530. #ifdef NeXT
  1531.         case 'a':
  1532.           if (!strcmp (p, "arch"))
  1533.             {
  1534.           if (i + 1 == argc)
  1535.             fatal ("argument to `-arch' is missing");
  1536.           spec_machine = argv[++i];
  1537.           break;
  1538.         }
  1539.         case 'd':
  1540.           if (!strcmp (p, "dependency-file"))
  1541.             {
  1542.           if (i + 1 == argc)
  1543.             fatal ("argument to `-dependency-file' is missing");
  1544.           dependency_output_file = argv[++i];
  1545.           break;
  1546.         }
  1547. #endif /* NeXT */
  1548.         case 's':
  1549.           if (!strcmp (p, "save-temps"))
  1550.         {
  1551.           save_temps_flag = 1;
  1552.           break;
  1553.         }
  1554.         default:
  1555.           n_switches++;
  1556.  
  1557.           if (SWITCH_TAKES_ARG (c) > (p[1] != 0))
  1558.         i += SWITCH_TAKES_ARG (c) - (p[1] != 0);
  1559.           else if (WORD_SWITCH_TAKES_ARG (p))
  1560.         i += WORD_SWITCH_TAKES_ARG (p);
  1561.         }
  1562.     }
  1563.       else
  1564.     n_infiles++;
  1565.     }
  1566.  
  1567.   /* Then create the space for the vectors and scan again.  */
  1568.  
  1569.   switches = ((struct switchstr *)
  1570.           xmalloc ((n_switches + 1) * sizeof (struct switchstr)));
  1571.   infiles = (struct infile *) xmalloc ((n_infiles + 1) * sizeof (struct infile));
  1572.   n_switches = 0;
  1573.   n_infiles = 0;
  1574.   last_language_n_infiles = -1;
  1575.  
  1576.   /* This, time, copy the text of each switch and store a pointer
  1577.      to the copy in the vector of switches.
  1578.      Store all the infiles in their vector.  */
  1579.  
  1580.   for (i = 1; i < argc; i++)
  1581.     {
  1582.       if (argv[i][0] == '-' && argv[i][1] != 'l')
  1583.     {
  1584.       register char *p = &argv[i][1];
  1585.       register int c = *p;
  1586.  
  1587. #ifdef NeXT
  1588.       /* Allow NeXT's -bsd switch.  */
  1589.       if ((c == 'B' || c == 'b' || c == 'V')
  1590.           && ! WORD_SWITCH (p))
  1591. #else /* NeXT */
  1592.       if (c == 'B' || c == 'b' || c == 'V')
  1593. #endif /* NeXT */
  1594.         {
  1595.           /* Skip a separate arg, if any.  */
  1596.           if (p[1] == 0)
  1597.         i++;
  1598.           continue;
  1599.         }
  1600. #ifdef NeXT
  1601.       if (c == 'a' && !strcmp (p, "arch"))
  1602.         {
  1603.           i++;
  1604.           continue;
  1605.         }
  1606.       if (c == 'd' && !strcmp (p, "dependency-file"))
  1607.         {
  1608.           i++;
  1609.           continue;
  1610.         }
  1611. #endif /* NeXT */
  1612.       if (c == 'x')
  1613.         {
  1614.           if (p[1] == 0 && i + 1 == argc)
  1615.         fatal ("argument to `-x' is missing");
  1616.           if (p[1] == 0)
  1617.         spec_lang = argv[++i];
  1618.           else
  1619.         spec_lang = p + 1;
  1620.           last_language_n_infiles = n_infiles;
  1621.           continue;
  1622.         }
  1623. #ifdef NeXT
  1624.       if (c == 'O' && !strcmp (p, "ObjC"))
  1625.         default_language = "objective-c";
  1626.       if (c == 'O' && !strcmp (p, "ObjC++"))
  1627.         default_language = "c++";
  1628. #endif /* NeXT */
  1629.       switches[n_switches].part1 = p;
  1630.       /* Deal with option arguments in separate argv elements.  */
  1631.       if ((SWITCH_TAKES_ARG (c) > (p[1] != 0))
  1632.           || WORD_SWITCH_TAKES_ARG (p)) {
  1633.         int j = 0;
  1634.         int n_args = WORD_SWITCH_TAKES_ARG (p);
  1635.  
  1636.         if (n_args == 0) {
  1637.           /* Count only the option arguments in separate argv elements.  */
  1638.           n_args = SWITCH_TAKES_ARG (c) - (p[1] != 0);
  1639.         }
  1640.         switches[n_switches].args
  1641.           = (char **) xmalloc ((n_args + 1) * sizeof (char *));
  1642.         while (j < n_args)
  1643.           switches[n_switches].args[j++] = argv[++i];
  1644.         /* Null-terminate the vector.  */
  1645.         switches[n_switches].args[j] = 0;
  1646. #ifdef NeXT
  1647.       } else if (c == 'o' && !WORD_SWITCH (p)) {
  1648. #else /* NeXT */
  1649.       } else if (c == 'o') {
  1650. #endif /* NeXT */
  1651.         /* On some systems, ld cannot handle -o without space.
  1652.            So split the -o from its argument.  */
  1653.         switches[n_switches].part1 = "-o";
  1654.         switches[n_switches].args = (char **) xmalloc (2 * sizeof (char *));
  1655.         switches[n_switches].args[0] = (char *) xmalloc (strlen (p));
  1656.         strcpy (switches[n_switches].args[0], &p[1]);
  1657.         switches[n_switches].args[1] = 0;
  1658.       } else
  1659.         switches[n_switches].args = 0;
  1660.       switches[n_switches].valid = 0;
  1661.       /* This is always valid, since gcc.c itself understands it.  */
  1662.       if (!strcmp (p, "save-temps"))
  1663.         switches[n_switches].valid = 1;
  1664.       n_switches++;
  1665.     }
  1666.       else
  1667.     {
  1668.       infiles[n_infiles].language = spec_lang;
  1669.       infiles[n_infiles++].name = argv[i];
  1670.     }
  1671.     }
  1672.  
  1673.   if (n_infiles == last_language_n_infiles)
  1674.     error ("Warning: `-x %s' after last input file has no effect", spec_lang);
  1675.  
  1676.   switches[n_switches].part1 = 0;
  1677.   infiles[n_infiles].name = 0;
  1678. }
  1679.  
  1680. /* Process a spec string, accumulating and running commands.  */
  1681.  
  1682. /* These variables describe the input file name.
  1683.    input_file_number is the index on outfiles of this file,
  1684.    so that the output file name can be stored for later use by %o.
  1685.    input_basename is the start of the part of the input file
  1686.    sans all directory names, and basename_length is the number
  1687.    of characters starting there excluding the suffix .c or whatever.  */
  1688.  
  1689. char *input_filename;
  1690. int input_file_number;
  1691. int input_filename_length;
  1692. int basename_length;
  1693. char *input_basename;
  1694. char *input_suffix;
  1695.  
  1696. /* These are variables used within do_spec and do_spec_1.  */
  1697.  
  1698. /* Nonzero if an arg has been started and not yet terminated
  1699.    (with space, tab or newline).  */
  1700. int arg_going;
  1701.  
  1702. /* Nonzero means %d or %g has been seen; the next arg to be terminated
  1703.    is a temporary file name.  */
  1704. int delete_this_arg;
  1705.  
  1706. /* Nonzero means %w has been seen; the next arg to be terminated
  1707.    is the output file name of this compilation.  */
  1708. int this_is_output_file;
  1709.  
  1710. /* Nonzero means %s has been seen; the next arg to be terminated
  1711.    is the name of a library file and we should try the standard
  1712.    search dirs for it.  */
  1713. int this_is_library_file;
  1714.  
  1715. /* Process the spec SPEC and run the commands specified therein.
  1716.    Returns 0 if the spec is successfully processed; -1 if failed.  */
  1717.  
  1718. int
  1719. do_spec (spec)
  1720.      char *spec;
  1721. {
  1722.   int value;
  1723.  
  1724.   clear_args ();
  1725.   arg_going = 0;
  1726.   delete_this_arg = 0;
  1727.   this_is_output_file = 0;
  1728.   this_is_library_file = 0;
  1729.  
  1730.   value = do_spec_1 (spec, 0);
  1731.  
  1732.   /* Force out any unfinished command.
  1733.      If -pipe, this forces out the last command if it ended in `|'.  */
  1734.   if (value == 0)
  1735.     {
  1736.       if (argbuf_index > 0 && !strcmp (argbuf[argbuf_index - 1], "|"))
  1737.     argbuf_index--;
  1738.  
  1739.       if (argbuf_index > 0)
  1740.     value = execute ();
  1741.     }
  1742.  
  1743.   return value;
  1744. }
  1745.  
  1746. /* Process the sub-spec SPEC as a portion of a larger spec.
  1747.    This is like processing a whole spec except that we do
  1748.    not initialize at the beginning and we do not supply a
  1749.    newline by default at the end.
  1750.    INSWITCH nonzero means don't process %-sequences in SPEC;
  1751.    in this case, % is treated as an ordinary character.
  1752.    This is used while substituting switches.
  1753.    INSWITCH nonzero also causes SPC not to terminate an argument.
  1754.  
  1755.    Value is zero unless a line was finished
  1756.    and the command on that line reported an error.  */
  1757.  
  1758. int
  1759. do_spec_1 (spec, inswitch)
  1760.      char *spec;
  1761.      int inswitch;
  1762. {
  1763.   register char *p = spec;
  1764.   register int c;
  1765.   char *string;
  1766.  
  1767.   while (c = *p++)
  1768.     /* If substituting a switch, treat all chars like letters.
  1769.        Otherwise, NL, SPC, TAB and % are special.  */
  1770.     switch (inswitch ? 'a' : c)
  1771.       {
  1772.       case '\n':
  1773.     /* End of line: finish any pending argument,
  1774.        then run the pending command if one has been started.  */
  1775.     if (arg_going)
  1776.       {
  1777.         obstack_1grow (&obstack, 0);
  1778.         string = obstack_finish (&obstack);
  1779.         if (this_is_library_file)
  1780.           string = find_file (string);
  1781.         store_arg (string, delete_this_arg, this_is_output_file);
  1782.         if (this_is_output_file)
  1783.           outfiles[input_file_number] = string;
  1784.       }
  1785.     arg_going = 0;
  1786.  
  1787.     if (argbuf_index > 0 && !strcmp (argbuf[argbuf_index - 1], "|"))
  1788.       {
  1789.         int i;
  1790.         for (i = 0; i < n_switches; i++)
  1791.           if (!strcmp (switches[i].part1, "pipe"))
  1792.         break;
  1793.  
  1794.         /* A `|' before the newline means use a pipe here,
  1795.            but only if -pipe was specified.
  1796.            Otherwise, execute now and don't pass the `|' as an arg.  */
  1797.         if (i < n_switches)
  1798.           {
  1799.         switches[i].valid = 1;
  1800.         break;
  1801.           }
  1802.         else
  1803.           argbuf_index--;
  1804.       }
  1805.  
  1806.     if (argbuf_index > 0)
  1807.       {
  1808.         int value;
  1809.  
  1810. #ifdef REPORT_EVENT
  1811.         if (spec == link_command_spec)
  1812.           REPORT_EVENT (-1, NULL, NULL, 0, "Linking", 0, 0, 0);
  1813. #endif
  1814.         value = execute ();
  1815.         if (value)
  1816.           return value;
  1817.       }
  1818.     /* Reinitialize for a new command, and for a new argument.  */
  1819.     clear_args ();
  1820.     arg_going = 0;
  1821.     delete_this_arg = 0;
  1822.     this_is_output_file = 0;
  1823.     this_is_library_file = 0;
  1824.     break;
  1825.  
  1826.       case '|':
  1827.     /* End any pending argument.  */
  1828.     if (arg_going)
  1829.       {
  1830.         obstack_1grow (&obstack, 0);
  1831.         string = obstack_finish (&obstack);
  1832.         if (this_is_library_file)
  1833.           string = find_file (string);
  1834.         store_arg (string, delete_this_arg, this_is_output_file);
  1835.         if (this_is_output_file)
  1836.           outfiles[input_file_number] = string;
  1837.       }
  1838.  
  1839.     /* Use pipe */
  1840.     obstack_1grow (&obstack, c);
  1841.     arg_going = 1;
  1842.     break;
  1843.  
  1844.       case '\t':
  1845.       case ' ':
  1846.     /* Space or tab ends an argument if one is pending.  */
  1847.     if (arg_going)
  1848.       {
  1849.         obstack_1grow (&obstack, 0);
  1850.         string = obstack_finish (&obstack);
  1851.         if (this_is_library_file)
  1852.           string = find_file (string);
  1853.         store_arg (string, delete_this_arg, this_is_output_file);
  1854.         if (this_is_output_file)
  1855.           outfiles[input_file_number] = string;
  1856.       }
  1857.     /* Reinitialize for a new argument.  */
  1858.     arg_going = 0;
  1859.     delete_this_arg = 0;
  1860.     this_is_output_file = 0;
  1861.     this_is_library_file = 0;
  1862.     break;
  1863.  
  1864.       case '%':
  1865.     switch (c = *p++)
  1866.       {
  1867.       case 0:
  1868.         fatal ("Invalid specification!  Bug in cc.");
  1869.  
  1870.       case 'b':
  1871.         obstack_grow (&obstack, input_basename, basename_length);
  1872.         arg_going = 1;
  1873.         break;
  1874.  
  1875.       case 'd':
  1876.         delete_this_arg = 2;
  1877.         break;
  1878.  
  1879.       case 'e':
  1880.         /* {...:%efoo} means report an error with `foo' as error message
  1881.            and don't execute any more commands for this file.  */
  1882.         {
  1883.           char *q = p;
  1884.           char *buf;
  1885.           while (*p != 0 && *p != '\n') p++;
  1886.           buf = (char *) alloca (p - q + 1);
  1887.           strncpy (buf, q, p - q);
  1888.           buf[p - q] = 0;
  1889.           error ("%s", buf);
  1890.           return -1;
  1891.         }
  1892.         break;
  1893.  
  1894.       case 'g':
  1895.         if (save_temps_flag)
  1896.           obstack_grow (&obstack, input_basename, basename_length);
  1897.         else
  1898.           {
  1899.         obstack_grow (&obstack, temp_filename, temp_filename_length);
  1900.         delete_this_arg = 1;
  1901.           }
  1902.         arg_going = 1;
  1903.         break;
  1904.  
  1905.       case 'i':
  1906.         obstack_grow (&obstack, input_filename, input_filename_length);
  1907.         arg_going = 1;
  1908.         break;
  1909.  
  1910.       case 'o':
  1911.         {
  1912.           register int f;
  1913.           for (f = 0; f < n_infiles; f++)
  1914.         store_arg (outfiles[f], 0, 0);
  1915.         }
  1916.         break;
  1917.  
  1918. #ifdef NeXT
  1919.       case 'D':
  1920.         {
  1921.           if (dependency_output_file == NULL)
  1922.         {
  1923.           obstack_grow (&obstack, input_basename, basename_length);
  1924.           obstack_grow (&obstack, ".d", 2);
  1925.         }
  1926.           else
  1927.         obstack_grow (&obstack, dependency_output_file,
  1928.                   strlen (dependency_output_file));
  1929.           arg_going = 1;
  1930.         }
  1931.         break;
  1932. #endif /* NeXT */
  1933.  
  1934.       case 's':
  1935.         this_is_library_file = 1;
  1936.         break;
  1937.  
  1938.       case 'w':
  1939.         this_is_output_file = 1;
  1940.         break;
  1941.  
  1942.       case 'W':
  1943.         {
  1944.           int index = argbuf_index;
  1945.           /* Handle the {...} following the %W.  */
  1946.           if (*p != '{')
  1947.         abort ();
  1948.           p = handle_braces (p + 1);
  1949.           if (p == 0)
  1950.         return -1;
  1951.           /* If any args were output, mark the last one for deletion
  1952.          on failure.  */
  1953.           if (argbuf_index != index)
  1954.         record_temp_file (argbuf[argbuf_index - 1], 0, 1);
  1955.           break;
  1956.         }
  1957.  
  1958.       case '{':
  1959.         p = handle_braces (p);
  1960.         if (p == 0)
  1961.           return -1;
  1962.         break;
  1963.  
  1964.       case '%':
  1965.         obstack_1grow (&obstack, '%');
  1966.         break;
  1967.  
  1968.         /*** The rest just process a certain constant string as a spec.  */
  1969.  
  1970.       case '1':
  1971.         do_spec_1 (cc1_spec, 0);
  1972.         break;
  1973.  
  1974.       case '2':
  1975.         do_spec_1 (cc1plus_spec, 0);
  1976.         break;
  1977.  
  1978.       case 'a':
  1979.         do_spec_1 (asm_spec, 0);
  1980.         break;
  1981.  
  1982.       case 'c':
  1983.         do_spec_1 (signed_char_spec, 0);
  1984.         break;
  1985.  
  1986.       case 'C':
  1987.         do_spec_1 (cpp_spec, 0);
  1988.         break;
  1989.  
  1990.       case 'l':
  1991.         do_spec_1 (link_spec, 0);
  1992.         break;
  1993.  
  1994.       case 'L':
  1995.         do_spec_1 (lib_spec, 0);
  1996.         break;
  1997.  
  1998.       case 'p':
  1999.         do_spec_1 (cpp_predefines, 0);
  2000.         break;
  2001.  
  2002.       case 'P':
  2003.         {
  2004.           char *x = (char *) alloca (strlen (cpp_predefines) * 2 + 1);
  2005.           char *buf = x;
  2006.           char *y = cpp_predefines;
  2007.  
  2008.           /* Copy all of CPP_PREDEFINES into BUF,
  2009.          but put __ after every -D and at the end of each arg,  */
  2010.           while (*y != 0)
  2011.         {
  2012.           if (! strncmp (y, "-D", 2))
  2013.             {
  2014.               int flag = 0;
  2015.              
  2016.               *x++ = *y++;
  2017.               *x++ = *y++;
  2018.              
  2019.               if (strncmp (y, "__", 2))
  2020.                 {
  2021.               /* Stick __ at front of macro name.  */
  2022.               *x++ = '_';
  2023.               *x++ = '_';
  2024.               /* Arrange to stick __ at the end as well.  */
  2025.               flag = 1;
  2026.             }
  2027.              
  2028.               /* Copy the macro name.  */
  2029.               while (*y && *y != '=' && *y != ' ' && *y != '\t')
  2030.             *x++ = *y++;
  2031.              
  2032.               if (flag)
  2033.                 {
  2034.               *x++ = '_';
  2035.               *x++ = '_';
  2036.             }
  2037.  
  2038.               /* Copy the value given, if any.  */
  2039.               while (*y && *y != ' ' && *y != '\t')
  2040.             *x++ = *y++;
  2041.             }
  2042.           else
  2043.             /* Just copy anything other than -D options.
  2044.                (For example, whitespace.  */
  2045.             *x++ = *y++;
  2046.         }
  2047.  
  2048.           *x = 0;
  2049.  
  2050.           do_spec_1 (buf, 0);
  2051.         }
  2052.         break;
  2053.  
  2054.       case 'S':
  2055.         do_spec_1 (startfile_spec, 0);
  2056.         break;
  2057.  
  2058.       case 'E':
  2059.         do_spec_1 (ENDFILE_SPEC, 0);
  2060.         break;
  2061.  
  2062.       case '(':
  2063.       case '[':
  2064.         {
  2065.           char *name = p;
  2066.           struct spec_list *sl;
  2067.           int len;
  2068.  
  2069.           /* The string after the S/P is the name of a spec that is to be
  2070.          processed. */
  2071.           while (*p && *p != ')' && *p != ']')
  2072.         p++;
  2073.  
  2074.           /* See if it's in the list */
  2075.           for (len = p - name, sl = specs; sl; sl = sl->next)
  2076.         if (strncmp (sl->name, name, len) == 0 && !sl->name[len])
  2077.           {
  2078.             name = sl->spec;
  2079.             break;
  2080.           }
  2081.  
  2082.           if (sl)
  2083.         {
  2084.           if (c == '(')
  2085.             do_spec_1 (name, 0);
  2086.           else
  2087.             {
  2088.               char *x = (char *) alloca (strlen (name) * 2 + 1);
  2089.               char *buf = x;
  2090.               char *y = name;
  2091.  
  2092.               /* Copy all of NAME into BUF, but put __ after
  2093.              every -D and at the end of each arg,  */
  2094.               while (1)
  2095.             {
  2096.               if (! strncmp (y, "-D", 2))
  2097.                 {
  2098.                   *x++ = '-';
  2099.                   *x++ = 'D';
  2100.                   *x++ = '_';
  2101.                   *x++ = '_';
  2102.                   y += 2;
  2103.                 }
  2104.               else if (*y == ' ' || *y == 0)
  2105.                 {
  2106.                   *x++ = '_';
  2107.                   *x++ = '_';
  2108.                   if (*y == 0)
  2109.                 break;
  2110.                   else
  2111.                 *x++ = *y++;
  2112.                 }
  2113.               else
  2114.                 *x++ = *y++;
  2115.             }
  2116.               *x = 0;
  2117.  
  2118.               do_spec_1 (buf, 0);
  2119.             }
  2120.         }
  2121.         }
  2122.         break;
  2123.  
  2124.       default:
  2125.         abort ();
  2126.       }
  2127.     break;
  2128.  
  2129.       default:
  2130.     /* Ordinary character: put it into the current argument.  */
  2131.     obstack_1grow (&obstack, c);
  2132.     arg_going = 1;
  2133.       }
  2134.  
  2135.   return 0;        /* End of string */
  2136. }
  2137.  
  2138. /* Return 0 if we call do_spec_1 and that returns -1.  */
  2139.  
  2140. char *
  2141. handle_braces (p)
  2142.      register char *p;
  2143. {
  2144.   register char *q;
  2145.   char *filter;
  2146.   int pipe = 0;
  2147.   int negate = 0;
  2148.   int suffix = 0;
  2149.  
  2150.   if (*p == '|')
  2151.     /* A `|' after the open-brace means,
  2152.        if the test fails, output a single minus sign rather than nothing.
  2153.        This is used in %{|!pipe:...}.  */
  2154.     pipe = 1, ++p;
  2155.  
  2156.   if (*p == '!')
  2157.     /* A `!' after the open-brace negates the condition:
  2158.        succeed if the specified switch is not present.  */
  2159.     negate = 1, ++p;
  2160.  
  2161.   if (*p == '.')
  2162.     /* A `.' after the open-brace means test against the current suffix.  */
  2163.     {
  2164.       if (pipe)
  2165.     abort ();
  2166.  
  2167.       suffix = 1;
  2168.       ++p;
  2169.     }
  2170.  
  2171.   filter = p;
  2172.   while (*p != ':' && *p != '}') p++;
  2173.   if (*p != '}')
  2174.     {
  2175.       register int count = 1;
  2176.       q = p + 1;
  2177.       while (count > 0)
  2178.     {
  2179.       if (*q == '{')
  2180.         count++;
  2181.       else if (*q == '}')
  2182.         count--;
  2183.       else if (*q == 0)
  2184.         abort ();
  2185.       q++;
  2186.     }
  2187.     }
  2188.   else
  2189.     q = p + 1;
  2190.  
  2191.   if (suffix)
  2192.     {
  2193.       int found = (input_suffix != 0
  2194.            && strncmp (input_suffix, filter, p - filter) == 0);
  2195.  
  2196.       if (p[0] == '}')
  2197.     abort ();
  2198.  
  2199.       if (negate != found && do_spec_1 (save_string (p + 1, q - p - 2), 0) < 0)
  2200.     return 0;
  2201.  
  2202.       return q;
  2203.     }
  2204.   else if (p[-1] == '*' && p[0] == '}')
  2205.     {
  2206.       /* Substitute all matching switches as separate args.  */
  2207.       register int i;
  2208.       --p;
  2209.       for (i = 0; i < n_switches; i++)
  2210.     if (!strncmp (switches[i].part1, filter, p - filter))
  2211.       give_switch (i);
  2212.     }
  2213.   else
  2214.     {
  2215.       /* Test for presence of the specified switch.  */
  2216.       register int i;
  2217.       int present = 0;
  2218.  
  2219.       /* If name specified ends in *, as in {x*:...},
  2220.      check for presence of any switch name starting with x.  */
  2221.       if (p[-1] == '*')
  2222.     {
  2223.       for (i = 0; i < n_switches; i++)
  2224.         {
  2225.           if (!strncmp (switches[i].part1, filter, p - filter - 1))
  2226.         {
  2227.           switches[i].valid = 1;
  2228.           present = 1;
  2229.         }
  2230.         }
  2231.     }
  2232.       /* Otherwise, check for presence of exact name specified.  */
  2233.       else
  2234.     {
  2235.       for (i = 0; i < n_switches; i++)
  2236.         {
  2237.           if (!strncmp (switches[i].part1, filter, p - filter)
  2238.           && switches[i].part1[p - filter] == 0)
  2239.         {
  2240.           switches[i].valid = 1;
  2241.           present = 1;
  2242.           break;
  2243.         }
  2244.         }
  2245.     }
  2246.  
  2247.       /* If it is as desired (present for %{s...}, absent for %{-s...})
  2248.      then substitute either the switch or the specified
  2249.      conditional text.  */
  2250.       if (present != negate)
  2251.     {
  2252.       if (*p == '}')
  2253.         {
  2254.           give_switch (i);
  2255.         }
  2256.       else
  2257.         {
  2258.           if (do_spec_1 (save_string (p + 1, q - p - 2), 0) < 0)
  2259.         return 0;
  2260.         }
  2261.     }
  2262.       else if (pipe)
  2263.     {
  2264.       /* Here if a %{|...} conditional fails: output a minus sign,
  2265.          which means "standard output" or "standard input".  */
  2266.       do_spec_1 ("-", 0);
  2267.     }
  2268.     }
  2269.  
  2270.   return q;
  2271. }
  2272.  
  2273. /* Pass a switch to the current accumulating command
  2274.    in the same form that we received it.
  2275.    SWITCHNUM identifies the switch; it is an index into
  2276.    the vector of switches gcc received, which is `switches'.
  2277.    This cannot fail since it never finishes a command line.  */
  2278.  
  2279. void
  2280. give_switch (switchnum)
  2281.      int switchnum;
  2282. {
  2283.   do_spec_1 ("-", 0);
  2284.   do_spec_1 (switches[switchnum].part1, 1);
  2285.   do_spec_1 (" ", 0);
  2286.   if (switches[switchnum].args != 0)
  2287.     {
  2288.       char **p;
  2289.       for (p = switches[switchnum].args; *p; p++) {
  2290.     do_spec_1 (*p, 1);
  2291.     do_spec_1 (" ", 0);
  2292.       }
  2293.     }
  2294.   switches[switchnum].valid = 1;
  2295. }
  2296.  
  2297. /* Search for a file named NAME trying various prefixes including the
  2298.    user's -B prefix and some standard ones.
  2299.    Return the absolute pathname found.  If nothing is found, return NAME.  */
  2300.  
  2301. char *
  2302. find_file (name)
  2303.      char *name;
  2304. {
  2305.   char *newname;
  2306.  
  2307.   newname = find_a_file (&startfile_prefix, name, R_OK);
  2308.   return newname ? newname : name;
  2309. }
  2310.  
  2311. /* On fatal signals, delete all the temporary files.  */
  2312.  
  2313. void
  2314. fatal_error (signum)
  2315.      int signum;
  2316. {
  2317.   signal (signum, SIG_DFL);
  2318.   delete_failure_queue ();
  2319.   delete_temp_files ();
  2320.   /* Get the same signal again, this time not handled,
  2321.      so its normal effect occurs.  */
  2322.   kill (getpid (), signum);
  2323. }
  2324.  
  2325. int
  2326. main (argc, argv)
  2327.      int argc;
  2328.      char **argv;
  2329. {
  2330.   register int i;
  2331.   int value;
  2332.   int error_count = 0;
  2333.   int linker_was_run = 0;
  2334.   char *explicit_link_files;
  2335.   char *specs_file;
  2336.  
  2337.   programname = argv[0];
  2338.  
  2339.   if (signal (SIGINT, SIG_IGN) != SIG_IGN)
  2340.     signal (SIGINT, fatal_error);
  2341.   if (signal (SIGHUP, SIG_IGN) != SIG_IGN)
  2342.     signal (SIGHUP, fatal_error);
  2343.   if (signal (SIGTERM, SIG_IGN) != SIG_IGN)
  2344.     signal (SIGTERM, fatal_error);
  2345. #ifdef SIGPIPE
  2346.   if (signal (SIGPIPE, SIG_IGN) != SIG_IGN)
  2347.     signal (SIGPIPE, fatal_error);
  2348. #endif
  2349.  
  2350.   argbuf_length = 10;
  2351.   argbuf = (char **) xmalloc (argbuf_length * sizeof (char *));
  2352.  
  2353.   obstack_init (&obstack);
  2354.  
  2355.   /* Choose directory for temp files.  */
  2356.  
  2357.   choose_temp_base ();
  2358.  
  2359.   /* Make a table of what switches there are (switches, n_switches).
  2360.      Make a table of specified input files (infiles, n_infiles).
  2361.      Decode switches that are handled locally.  */
  2362.  
  2363.   process_command (argc, argv);
  2364.  
  2365.   /* Initialize the vector of specs to just the default.
  2366.      This means one element containing 0s, as a terminator.  */
  2367.  
  2368.   compilers = (struct compiler *) xmalloc (sizeof default_compilers);
  2369.   bcopy (default_compilers, compilers, sizeof default_compilers);
  2370.   n_compilers = n_default_compilers;
  2371.  
  2372.   /* Read specs from a file if there is one.  */
  2373.  
  2374. #ifdef NeXT
  2375.   machine_suffix = concat (spec_machine, "/", "");
  2376. #else /* NeXT */
  2377.   machine_suffix = concat (spec_machine, "/", concat (spec_version, "/", ""));
  2378. #endif /* NeXT */
  2379.  
  2380.   specs_file = find_a_file (&startfile_prefix, "specs", R_OK);
  2381.   /* Read the specs file unless it is a default one.  */
  2382.   if (specs_file != 0 && strcmp (specs_file, "specs"))
  2383.     read_specs (specs_file);
  2384.  
  2385.   /* Now we have the specs.
  2386.      Set the `valid' bits for switches that match anything in any spec.  */
  2387.  
  2388.   validate_all_switches ();
  2389.  
  2390.   /* Warn about any switches that no pass was interested in.  */
  2391.   
  2392.   for (i = 0; i < n_switches; i++)
  2393.     if (! switches[i].valid)
  2394.       error ("unrecognized option `-%s'", switches[i].part1);
  2395.  
  2396.   /* Obey some of the options.  */
  2397.  
  2398.   if (verbose_flag)
  2399.     {
  2400.       fprintf (stderr, "gcc version %s", version_string);
  2401. #ifdef TARGET_VERSION
  2402.       TARGET_VERSION;
  2403. #endif
  2404.       fprintf (stderr, "\n");
  2405.       if (n_infiles == 0)
  2406.     exit (0);
  2407.     }
  2408.  
  2409.   if (n_infiles == 0)
  2410.     fatal ("No input files specified.");
  2411.  
  2412.   /* Make a place to record the compiler output file names
  2413.      that correspond to the input files.  */
  2414.  
  2415.   outfiles = (char **) xmalloc (n_infiles * sizeof (char *));
  2416.   bzero (outfiles, n_infiles * sizeof (char *));
  2417.  
  2418.   /* Record which files were specified explicitly as link input.  */
  2419.  
  2420.   explicit_link_files = (char *) xmalloc (n_infiles);
  2421.   bzero (explicit_link_files, n_infiles);
  2422.  
  2423.   for (i = 0; i < n_infiles; i++)
  2424.     {
  2425.       register struct compiler *cp = 0;
  2426.       int this_file_error = 0;
  2427.  
  2428.       /* Tell do_spec what to substitute for %i.  */
  2429.  
  2430.       input_filename = infiles[i].name;
  2431.       input_filename_length = strlen (input_filename);
  2432.       input_file_number = i;
  2433.  
  2434.       /* Use the same thing in %o, unless cp->spec says otherwise.  */
  2435.  
  2436.       outfiles[i] = input_filename;
  2437.  
  2438.       /* Figure out which compiler from the file's suffix.  */
  2439.  
  2440.       cp = lookup_compiler (infiles[i].name, input_filename_length,
  2441.                 infiles[i].language);
  2442.  
  2443.       if (cp)
  2444.     {
  2445.       /* Ok, we found an applicable compiler.  Run its spec.  */
  2446.       /* First say how much of input_filename to substitute for %b  */
  2447.       register char *p;
  2448.  
  2449.       input_basename = input_filename;
  2450.       for (p = input_filename; *p; p++)
  2451.         if (*p == '/')
  2452.           input_basename = p + 1;
  2453.  
  2454.       /* Find a suffix starting with the last period,
  2455.          and set basename_length to exclude that suffix.  */
  2456.       basename_length = strlen (input_basename);
  2457.       p = input_basename + basename_length;
  2458.       while (p != input_basename && *p != '.') --p;
  2459.       if (*p == '.' && p != input_basename)
  2460.         {
  2461.           basename_length = p - input_basename;
  2462.           input_suffix = p + 1;
  2463.         }
  2464.       else
  2465.         input_suffix = "";
  2466.  
  2467. #ifdef REPORT_EVENT
  2468.       REPORT_EVENT (-1, NULL, input_basename, 0, "Compiling", 0, 0, 0);
  2469. #endif
  2470.       value = do_spec (cp->spec);
  2471.       if (value < 0)
  2472.         this_file_error = 1;
  2473.     }
  2474.  
  2475.       /* If this file's name does not contain a recognized suffix,
  2476.      record it as explicit linker input.  */
  2477.  
  2478.       else
  2479.     explicit_link_files[i] = 1;
  2480.  
  2481.       /* Clear the delete-on-failure queue, deleting the files in it
  2482.      if this compilation failed.  */
  2483.  
  2484.       if (this_file_error)
  2485.     {
  2486.       delete_failure_queue ();
  2487.       error_count++;
  2488.     }
  2489.       /* If this compilation succeeded, don't delete those files later.  */
  2490.       clear_failure_queue ();
  2491.     }
  2492.  
  2493.   /* Run ld to link all the compiler output files.  */
  2494.  
  2495.   if (error_count == 0)
  2496.     {
  2497.       int tmp = execution_count;
  2498.       value = do_spec (link_command_spec);
  2499.       if (value < 0)
  2500.     error_count = 1;
  2501.       linker_was_run = (tmp != execution_count);
  2502.     }
  2503.  
  2504. #ifndef NeXT
  2505.   /* Warn if a -B option was specified but the prefix was never used.  */
  2506.   unused_prefix_warnings (&exec_prefix);
  2507.   unused_prefix_warnings (&startfile_prefix);
  2508. #endif /* not NeXT */
  2509.  
  2510.   /* If options said don't run linker,
  2511.      complain about input files to be given to the linker.  */
  2512.  
  2513.   if (! linker_was_run && error_count == 0)
  2514.     for (i = 0; i < n_infiles; i++)
  2515.       if (explicit_link_files[i])
  2516.     error ("%s: linker input file unused since linking not done",
  2517.            outfiles[i]);
  2518.  
  2519.   /* Delete some or all of the temporary files we made.  */
  2520.  
  2521.   if (error_count)
  2522.     delete_failure_queue ();
  2523.   delete_temp_files ();
  2524.  
  2525.   exit (error_count);
  2526. }
  2527.  
  2528. /* Find the proper compilation spec for the file name NAME,
  2529.    whose length is LENGTH.  LANGUAGE is the specified langauge,
  2530.    or 0 if none specified.  */
  2531.  
  2532. struct compiler *
  2533. lookup_compiler (name, length, language)
  2534.      char *name;
  2535.      int length;
  2536.      char *language;
  2537. {
  2538.   struct compiler *cp;
  2539.  
  2540.   /* Look for the language, if one is spec'd.  */
  2541.   if (language != 0)
  2542.     {
  2543.       for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
  2544.     {
  2545.       if (language != 0)
  2546.         {
  2547.           if (cp->suffix[0] == '@'
  2548.           && !strcmp (cp->suffix + 1, language))
  2549.         return cp;
  2550.         }
  2551.     }
  2552.       error ("language %s not recognized", language);
  2553.     }
  2554.  
  2555.   /* Look for a suffix.  */
  2556.   for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
  2557.     {
  2558.       if (strlen (cp->suffix) < length
  2559.            /* See if the suffix matches the end of NAME.  */
  2560.            && !strcmp (cp->suffix,
  2561.                name + length - strlen (cp->suffix))
  2562.            /* The suffix `-' matches only the file name `-'.  */
  2563.            && !(!strcmp (cp->suffix, "-") && length != 1))
  2564.     {
  2565. #ifdef NeXT
  2566.       /* If we found any compiler at all for a suffix, return
  2567.          the default compiler, if one was specified.  */
  2568.       if (default_language)
  2569.         return lookup_compiler (0, 0, default_language);
  2570. #endif /* NeXT */
  2571.       if (cp->spec[0] == '@')
  2572.         {
  2573.           struct compiler *new;
  2574.           /* An alias entry maps a suffix to a language.
  2575.          Search for the language; pass 0 for NAME and LENGTH
  2576.          to avoid infinite recursion if language not found.
  2577.          Construct the new compiler spec.  */
  2578.           language = cp->spec + 1;
  2579.           new = (struct compiler *) xmalloc (sizeof (struct compiler));
  2580.           new->suffix = cp->suffix;
  2581.           new->spec = lookup_compiler (0, 0, language)->spec;
  2582.           return new;
  2583.         }
  2584.       /* A non-alias entry: return it.  */
  2585.       return cp;
  2586.     }
  2587.     }
  2588.  
  2589.   return 0;
  2590. }
  2591.  
  2592. int
  2593. xmalloc (size)
  2594.      int size;
  2595. {
  2596.   register int value = malloc (size);
  2597.   if (value == 0)
  2598.     fatal ("virtual memory exhausted");
  2599.   return value;
  2600. }
  2601.  
  2602. int
  2603. xrealloc (ptr, size)
  2604.      int ptr, size;
  2605. {
  2606.   register int value = realloc (ptr, size);
  2607.   if (value == 0)
  2608.     fatal ("virtual memory exhausted");
  2609.   return value;
  2610. }
  2611.  
  2612. /* Return a newly-allocated string whose contents concatenate those of s1, s2, s3.  */
  2613.  
  2614. char *
  2615. concat (s1, s2, s3)
  2616.      char *s1, *s2, *s3;
  2617. {
  2618.   int len1 = strlen (s1), len2 = strlen (s2), len3 = strlen (s3);
  2619.   char *result = (char *) xmalloc (len1 + len2 + len3 + 1);
  2620.  
  2621.   strcpy (result, s1);
  2622.   strcpy (result + len1, s2);
  2623.   strcpy (result + len1 + len2, s3);
  2624.   *(result + len1 + len2 + len3) = 0;
  2625.  
  2626.   return result;
  2627. }
  2628.  
  2629. char *
  2630. save_string (s, len)
  2631.      char *s;
  2632.      int len;
  2633. {
  2634.   register char *result = (char *) xmalloc (len + 1);
  2635.  
  2636.   bcopy (s, result, len);
  2637.   result[len] = 0;
  2638.   return result;
  2639. }
  2640.  
  2641. void
  2642. pfatal_with_name (name)
  2643.      char *name;
  2644. {
  2645.   extern int errno, sys_nerr;
  2646.   extern char *sys_errlist[];
  2647.   char *s;
  2648.  
  2649.   if (errno < sys_nerr)
  2650.     s = concat ("%s: ", sys_errlist[errno], "");
  2651.   else
  2652.     s = "cannot open %s";
  2653.   fatal (s, name);
  2654. }
  2655.  
  2656. void
  2657. perror_with_name (name)
  2658.      char *name;
  2659. {
  2660.   extern int errno, sys_nerr;
  2661.   extern char *sys_errlist[];
  2662.   char *s;
  2663.  
  2664.   if (errno < sys_nerr)
  2665.     s = concat ("%s: ", sys_errlist[errno], "");
  2666.   else
  2667.     s = "cannot open %s";
  2668.   error (s, name);
  2669. }
  2670.  
  2671. void
  2672. perror_exec (name)
  2673.      char *name;
  2674. {
  2675.   extern int errno, sys_nerr;
  2676.   extern char *sys_errlist[];
  2677.   char *s;
  2678.  
  2679.   if (errno < sys_nerr)
  2680.     s = concat ("installation problem, cannot exec %s: ",
  2681.         sys_errlist[errno], "");
  2682.   else
  2683.     s = "installation problem, cannot exec %s";
  2684.   error (s, name);
  2685. }
  2686.  
  2687. /* More 'friendly' abort that prints the line and file.
  2688.    config.h can #define abort fancy_abort if you like that sort of thing.  */
  2689.  
  2690. void
  2691. fancy_abort ()
  2692. {
  2693.   fatal ("Internal gcc abort.");
  2694. }
  2695.  
  2696. #ifdef HAVE_VPRINTF
  2697.  
  2698. /* Output an error message and exit */
  2699.  
  2700. void
  2701. fatal (va_alist)
  2702.      va_dcl
  2703. {
  2704.   va_list ap;
  2705.   char *format;
  2706.   
  2707.   va_start(ap);
  2708.   format = va_arg (ap, char *);
  2709.   vfprintf (stderr, format, ap);
  2710.   va_end (ap);
  2711.   fprintf (stderr, "\n");
  2712.   delete_temp_files ();
  2713.   exit (1);
  2714. }  
  2715.  
  2716. void
  2717. error (va_alist) 
  2718.      va_dcl
  2719. {
  2720.   va_list ap;
  2721.   char *format;
  2722.  
  2723.   va_start(ap);
  2724.   format = va_arg (ap, char *);
  2725.   fprintf (stderr, "%s: ", programname);
  2726.   vfprintf (stderr, format, ap);
  2727.   va_end (ap);
  2728.  
  2729.   fprintf (stderr, "\n");
  2730. }
  2731.  
  2732. #else /* not HAVE_VPRINTF */
  2733.  
  2734. void
  2735. fatal (msg, arg1, arg2)
  2736.      char *msg, *arg1, *arg2;
  2737. {
  2738.   error (msg, arg1, arg2);
  2739.   delete_temp_files ();
  2740.   exit (1);
  2741. }
  2742.  
  2743. void
  2744. error (msg, arg1, arg2)
  2745.      char *msg, *arg1, *arg2;
  2746. {
  2747.   fprintf (stderr, "%s: ", programname);
  2748.   fprintf (stderr, msg, arg1, arg2);
  2749.   fprintf (stderr, "\n");
  2750. }
  2751.  
  2752. #endif /* not HAVE_VPRINTF */
  2753.  
  2754.  
  2755. void
  2756. validate_all_switches ()
  2757. {
  2758.   struct compiler *comp;
  2759.   register char *p;
  2760.   register char c;
  2761.  
  2762.   for (comp = compilers; comp->spec; comp++)
  2763.     {
  2764.       p = comp->spec;
  2765.       while (c = *p++)
  2766.     if (c == '%' && *p == '{')
  2767.       /* We have a switch spec.  */
  2768.       validate_switches (p + 1);
  2769.     }
  2770.  
  2771.   p = link_command_spec;
  2772.   while (c = *p++)
  2773.     if (c == '%' && *p == '{')
  2774.       /* We have a switch spec.  */
  2775.       validate_switches (p + 1);
  2776.  
  2777.   /* Now notice switches mentioned in the machine-specific specs.  */
  2778.  
  2779.   p = asm_spec;
  2780.   while (c = *p++)
  2781.     if (c == '%' && *p == '{')
  2782.       /* We have a switch spec.  */
  2783.       validate_switches (p + 1);
  2784.  
  2785.   p = cpp_spec;
  2786.   while (c = *p++)
  2787.     if (c == '%' && *p == '{')
  2788.       /* We have a switch spec.  */
  2789.       validate_switches (p + 1);
  2790.  
  2791.   p = signed_char_spec;
  2792.   while (c = *p++)
  2793.     if (c == '%' && *p == '{')
  2794.       /* We have a switch spec.  */
  2795.       validate_switches (p + 1);
  2796.  
  2797.   p = cc1_spec;
  2798.   while (c = *p++)
  2799.     if (c == '%' && *p == '{')
  2800.       /* We have a switch spec.  */
  2801.       validate_switches (p + 1);
  2802.  
  2803.   p = cc1plus_spec;
  2804.   while (c = *p++)
  2805.     if (c == '%' && *p == '{')
  2806.       /* We have a switch spec.  */
  2807.       validate_switches (p + 1);
  2808.  
  2809.   p = link_spec;
  2810.   while (c = *p++)
  2811.     if (c == '%' && *p == '{')
  2812.       /* We have a switch spec.  */
  2813.       validate_switches (p + 1);
  2814.  
  2815.   p = lib_spec;
  2816.   while (c = *p++)
  2817.     if (c == '%' && *p == '{')
  2818.       /* We have a switch spec.  */
  2819.       validate_switches (p + 1);
  2820.  
  2821.   p = startfile_spec;
  2822.   while (c = *p++)
  2823.     if (c == '%' && *p == '{')
  2824.       /* We have a switch spec.  */
  2825.       validate_switches (p + 1);
  2826. }
  2827.  
  2828. /* Look at the switch-name that comes after START
  2829.    and mark as valid all supplied switches that match it.  */
  2830.  
  2831. void
  2832. validate_switches (start)
  2833.      char *start;
  2834. {
  2835.   register char *p = start;
  2836.   char *filter;
  2837.   register int i;
  2838.   int suffix = 0;
  2839.  
  2840.   if (*p == '|')
  2841.     ++p;
  2842.  
  2843.   if (*p == '!')
  2844.     ++p;
  2845.  
  2846.   if (*p == '.')
  2847.     suffix = 1, ++p;
  2848.  
  2849.   filter = p;
  2850.   while (*p != ':' && *p != '}') p++;
  2851.  
  2852.   if (suffix)
  2853.     ;
  2854.   else if (p[-1] == '*')
  2855.     {
  2856.       /* Mark all matching switches as valid.  */
  2857.       --p;
  2858.       for (i = 0; i < n_switches; i++)
  2859.     if (!strncmp (switches[i].part1, filter, p - filter))
  2860.       switches[i].valid = 1;
  2861.     }
  2862.   else
  2863.     {
  2864.       /* Mark an exact matching switch as valid.  */
  2865.       for (i = 0; i < n_switches; i++)
  2866.     {
  2867.       if (!strncmp (switches[i].part1, filter, p - filter)
  2868.           && switches[i].part1[p - filter] == 0)
  2869.         switches[i].valid = 1;
  2870.     }
  2871.     }
  2872. }
  2873.