diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1997-06-09 19:25:01 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1997-06-09 19:25:01 -0400 |
commit | ecf951993f60528edddf6a816065694d5a792a7d (patch) | |
tree | ed2a352c0a63ddaf91e1a8bee729e5bfb6c8183b | |
parent | 7fa10b250af37006afcb968344560d98a2e62d53 (diff) | |
download | gcc-ecf951993f60528edddf6a816065694d5a792a7d.zip gcc-ecf951993f60528edddf6a816065694d5a792a7d.tar.gz gcc-ecf951993f60528edddf6a816065694d5a792a7d.tar.bz2 |
(GCC_PASSES): Prevent all compilers from being built when only the C
compiler is needed.
From-SVN: r14206
-rw-r--r-- | gcc/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 5cb7447..f654b35 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -352,7 +352,7 @@ COMPILERS = cc1$(exeext) cc1obj$(exeext) @all_compilers@ # List of things which should already be built whenever we try to use xgcc # to compile anything (without linking). -GCC_PASSES=xgcc$(exeext) $(COMPILERS) cpp$(exeext) $(EXTRA_PASSES) +GCC_PASSES=xgcc$(exeext) cc1$(exeext) cpp$(exeext) $(EXTRA_PASSES) # List of things which should already be built whenever we try to use xgcc # to link anything. |