From: Neil Booth Date: Mon, 12 May 2003 21:35:47 +0000 (+0000) Subject: Makefile.in (stage2_build, [...]): Set BUILD_CC to the same as CC. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6cfae22a6b3f271c7d588ea56c08bb9930684169;p=gcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 084da850770..c49927c7fd1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-05-12 Neil Booth + + * Makefile.in (stage2_build, stage3_build, stage4_build): + Set BUILD_CC to the same as CC. + 2003-05-12 Neil Booth * alloc-pool.c (last_id): Put in ENABLE_CHECKING guards. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 38aa848d069..00bceacf6c8 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