diff options
author | Neil Booth <neil@cat.daikokuya.co.uk> | 2003-05-12 21:35:47 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2003-05-12 21:35:47 +0000 |
commit | 6cfae22a6b3f271c7d588ea56c08bb9930684169 (patch) | |
tree | 36009ca3ed478ccec1130e24d6c163ab5f582687 | |
parent | 517958ba22c837b57a9ee3dd4c746ccf5f442fc0 (diff) | |
download | gcc-6cfae22a6b3f271c7d588ea56c08bb9930684169.zip gcc-6cfae22a6b3f271c7d588ea56c08bb9930684169.tar.gz gcc-6cfae22a6b3f271c7d588ea56c08bb9930684169.tar.bz2 |
Makefile.in (stage2_build, [...]): Set BUILD_CC to the same as CC.
* Makefile.in (stage2_build, stage3_build, stage4_build)
: Set BUILD_CC to the same as CC.
From-SVN: r66740
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 084da85..c49927c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-05-12 Neil Booth <neil@cat.daikokuya.co.uk> + + * Makefile.in (stage2_build, stage3_build, stage4_build): + Set BUILD_CC to the same as CC. + 2003-05-12 Neil Booth <neil@daikokuya.co.uk> * alloc-pool.c (last_id): Put in ENABLE_CHECKING guards. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 38aa848..00bceac 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3494,7 +3494,7 @@ stage1_copy: stage1_build echo stage2_build > stage_last stage2_build: stage1_copy - $(MAKE) CC="$(STAGE_CC_WRAPPER) stage1/xgcc$(exeext) -Bstage1/ -B$(build_tooldir)/bin/" \ + $(MAKE) CC="$(STAGE_CC_WRAPPER) stage1/xgcc$(exeext) -Bstage1/ -B$(build_tooldir)/bin/" BUILD_CC="$(STAGE_CC_WRAPPER) stage1/xgcc$(exeext) -Bstage1/ -B$(build_tooldir)/bin/" \ STAGE_PREFIX=stage1/ \ $(STAGE2_FLAGS_TO_PASS) $(STAMP) stage2_build @@ -3506,7 +3506,7 @@ stage2_copy: stage2_build echo stage3_build > stage_last stage3_build: stage2_copy - $(MAKE) CC="$(STAGE_CC_WRAPPER) stage2/xgcc$(exeext) -Bstage2/ -B$(build_tooldir)/bin/" \ + $(MAKE) CC="$(STAGE_CC_WRAPPER) stage2/xgcc$(exeext) -Bstage2/ -B$(build_tooldir)/bin/" BUILD_CC="$(STAGE_CC_WRAPPER) stage2/xgcc$(exeext) -Bstage2/ -B$(build_tooldir)/bin/" \ STAGE_PREFIX=stage2/ \ $(STAGE2_FLAGS_TO_PASS) $(STAMP) stage3_build @@ -3519,7 +3519,7 @@ stage3_copy: stage3_build echo stage4_build > stage_last stage4_build: stage3_copy - $(MAKE) CC="$(STAGE_CC_WRAPPER) stage3/xgcc$(exeext) -Bstage3/ -B$(build_tooldir)/bin/" \ + $(MAKE) CC="$(STAGE_CC_WRAPPER) stage3/xgcc$(exeext) -Bstage3/ -B$(build_tooldir)/bin/" BUILD_CC="$(STAGE_CC_WRAPPER) stage3/xgcc$(exeext) -Bstage3/ -B$(build_tooldir)/bin/" \ STAGE_PREFIX=stage3/ \ $(STAGE2_FLAGS_TO_PASS) $(STAMP) stage4_build |