diff options
author | Neil Booth <neilb@earthling.net> | 2000-11-25 19:28:44 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2000-11-25 19:28:44 +0000 |
commit | a32f2771a5b1265435b332f15020b66bed552af4 (patch) | |
tree | 925e0c18e46eaa5d241ebbe1cd839d39fc0984a2 /gcc/gcc.c | |
parent | 3e8aa6e31c6a745edcec9395021ef13ca0f0122f (diff) | |
download | gcc-a32f2771a5b1265435b332f15020b66bed552af4.zip gcc-a32f2771a5b1265435b332f15020b66bed552af4.tar.gz gcc-a32f2771a5b1265435b332f15020b66bed552af4.tar.bz2 |
c-common.c: Remove USE_CPPLIB conditional inclusions.
* c-common.c: Remove USE_CPPLIB conditional inclusions.
* c-common.h: Similarly.
* c-decl.c: Similarly.
* c-lang.c: Similarly.
* c-lex.c: Similarly.
* c-parse.in: Similarly.
* c-pragma.c: Similarly.
* c-pragma.h: Similarly.
* gcc.c: Similarly.
* toplev.c: Similarly.
* cp/cp-tree.h: Similarly.
* cp/decl2.c: Similarly.
* cp/lang-specs.h: Similarly.
* cp/lex.c: Similarly.
* cp/lex.h: Similarly.
* cp/spew.c: Similarly.
* java/lang-options.h: Similarly.
* objc/lang-specs.h: Similarly.
* objc/objc-act.c: Similarly.
* configure.in: Remove configure option.
* config.in: Regenerate.
* configure: Regenerate.
From-SVN: r37742
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r-- | gcc/gcc.c | 9 |
1 files changed, 1 insertions, 8 deletions
@@ -722,7 +722,6 @@ static struct compiler default_compilers[] = /* Next come the entries for C. */ {".c", "@c"}, {"@c", -#if USE_CPPLIB /* cc1 has an integrated ISO C preprocessor. We should invoke the external preprocessor if -save-temps or -traditional is given. */ "%{E|M|MM:%(trad_capable_cpp) -lang-c %{ansi:-std=c89} %(cpp_options)}\ @@ -736,13 +735,7 @@ static struct compiler default_compilers[] = cc1 -fpreprocessed %{!pipe:%g.i} %(cc1_options)}\ %{!traditional:%{!ftraditional:%{!traditional-cpp:\ cc1 -lang-c %{ansi:-std=c89} %(cpp_options) %(cc1_options)}}}}\ - %{!fsyntax-only:%(invoke_as)}}}}" -#else /* ! USE_CPPLIB */ - "%(trad_capable_cpp) -lang-c %{ansi:-std=c89} %(cpp_options) \ - %{!M:%{!MM:%{!E:%{!pipe:%g.i} |\n\ - cc1 %{!pipe:%g.i} %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}" -#endif /* ! USE_CPPLIB */ - }, + %{!fsyntax-only:%(invoke_as)}}}}"}, {"-", "%{!E:%e-E required when input is from standard input}\ %(trad_capable_cpp) -lang-c %{ansi:-std=c89} %(cpp_options)"}, |