[llvm-branch-commits] [cfe-branch] r109442 - /cfe/branches/Apple/whitney-IB/ClangBNI.mk

Daniel Dunbar daniel at zuster.org
Mon Jul 26 14:31:10 PDT 2010


Author: ddunbar
Date: Mon Jul 26 16:31:10 2010
New Revision: 109442

URL: http://llvm.org/viewvc/llvm-project?rev=109442&view=rev
Log:
Always use an x86_64 stage1 compiler, at least for now.

Modified:
    cfe/branches/Apple/whitney-IB/ClangBNI.mk

Modified: cfe/branches/Apple/whitney-IB/ClangBNI.mk
URL: http://llvm.org/viewvc/llvm-project/cfe/branches/Apple/whitney-IB/ClangBNI.mk?rev=109442&r1=109441&r2=109442&view=diff
==============================================================================
--- cfe/branches/Apple/whitney-IB/ClangBNI.mk (original)
+++ cfe/branches/Apple/whitney-IB/ClangBNI.mk Mon Jul 26 16:31:10 2010
@@ -212,7 +212,9 @@
 
 # Select stage1 compiler to build.
 ifeq ($(Clang_Enable_Bootstrap), 1)
-Stage1_Compiler_Arch := $(lastword $(RC_ARCHS))
+# Always use an x86_64 stage1 compiler -- it is the most well tested and so most
+# likely to not be miscompiled by the host compiler.
+Stage1_Compiler_Arch := x86_64
 endif
 
 # Select final configure target for clang builds.





More information about the llvm-branch-commits mailing list