From: Duncan Sands Date: Thu, 20 Oct 2011 20:10:58 +0000 (+0000) Subject: Reset the system compiler each time we start a new flavour. Otherwise X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=fbc0dec7b4dc94a667c2b8af6748a742da95353d;hp=1dda3d511e19918c4487e9d5a45eb5856284494e;ds=sidebyside Reset the system compiler each time we start a new flavour. Otherwise the last compiler built for the previous flavour is used for the next, for example the Debug clang compiler was being used for the initial build of the Release LLVM. Flavors should be independent of each other. This especially matters if the compiler built for the previous flavour doesn't actually work! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142607 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/release/test-release.sh b/utils/release/test-release.sh index 7d56f3872c7..eb6f9d96f4f 100755 --- a/utils/release/test-release.sh +++ b/utils/release/test-release.sh @@ -151,8 +151,6 @@ LogDir=$BuildDir/logs mkdir -p $LogDir # Find compilers. -c_compiler="$CC" -cxx_compiler="$CXX" if [ "$do_dragonegg" = "yes" ]; then gcc_compiler="$GCC" if [ -z "$gcc_compiler" ]; then @@ -339,6 +337,9 @@ for Flavor in $Flavors ; do echo "********************************************************************************" echo "" + c_compiler="$CC" + cxx_compiler="$CXX" + llvmCore_phase1_objdir=$BuildDir/Phase1/$Flavor/llvmCore-$Release-rc$RC.obj llvmCore_phase1_installdir=$BuildDir/Phase1/$Flavor/llvmCore-$Release-rc$RC.install dragonegg_phase1_objdir=$BuildDir/Phase1/$Flavor/DragonEgg-$Release-rc$RC.obj