[zorg] r286311 - Remove libcxx/compiler-rt from build process
Tim Hammerquist via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 8 15:29:55 PST 2016
Author: penryu
Date: Tue Nov 8 17:29:55 2016
New Revision: 286311
URL: http://llvm.org/viewvc/llvm-project?rev=286311&view=rev
Log:
Remove libcxx/compiler-rt from build process
The use of libcxx and compiler-rt in the LLDB build is unnecessary and a
drain on time and builder resources. LLDB only requires llvm and clang
source to build, and the compiler-rt-enabled compiler is already built
elsewhere in the jenkins system.
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=286311&r1=286310&r2=286311&view=diff
==============================================================================
--- zorg/trunk/zorg/jenkins/build.py (original)
+++ zorg/trunk/zorg/jenkins/build.py Tue Nov 8 17:29:55 2016
@@ -734,8 +734,7 @@ def derive_llvm(repos=['llvm', 'clang',
def derive_lldb():
"""Build a derived src tree for LLDB"""
- derive(tree='lldb', repos=['lldb', 'llvm', 'clang', 'libcxx',
- 'compiler-rt'])
+ derive(tree='lldb', repos=['lldb', 'llvm', 'clang'])
def create_builddirs():
More information about the llvm-commits
mailing list