[zorg] r249245 - Due to PR14109 cmake builds build compiler-rt with the host compiler.

Adrian Prantl via llvm-commits llvm-commits at lists.llvm.org
Sat Oct 3 12:47:21 PDT 2015


Author: adrian
Date: Sat Oct  3 14:47:20 2015
New Revision: 249245

URL: http://llvm.org/viewvc/llvm-project?rev=249245&view=rev
Log:
Due to PR14109 cmake builds build compiler-rt with the host compiler.
Until this is fixed, set -DCOMPILER_RT_BUILD_BUILTINS=Off.
Host compilers < r215862 will crash in isel when compilng udivmod for ARM.

Modified:
    zorg/trunk/zorg/jenkins/build.py

Modified: zorg/trunk/zorg/jenkins/build.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/jenkins/build.py?rev=249245&r1=249244&r2=249245&view=diff
==============================================================================
--- zorg/trunk/zorg/jenkins/build.py (original)
+++ zorg/trunk/zorg/jenkins/build.py Sat Oct  3 14:47:20 2015
@@ -158,6 +158,10 @@ def cmake_builder(target):
     else:
         cmake_cmd += ["-DLLVM_ENABLE_ASSERTIONS=Off"]
 
+    # Workaround for PR14109: CMake build for compiler-rt should use
+    # just-built clang.
+    cmake_cmd += ["-DCOMPILER_RT_BUILD_BUILTINS=Off"]
+
     lit_flags = ['--xunit-xml-output=testresults.xunit.xml', '-v']
     if conf.max_parallel_tests:
         lit_flags += ['-j', conf.max_parallel_tests]




More information about the llvm-commits mailing list