[zorg] r223386 - Made the LLDB buildbot only build an x86_64
Sean Callanan
scallanan at apple.com
Thu Dec 4 12:43:16 PST 2014
Author: spyffe
Date: Thu Dec 4 14:43:16 2014
New Revision: 223386
URL: http://llvm.org/viewvc/llvm-project?rev=223386&view=rev
Log:
Made the LLDB buildbot only build an x86_64
LLDB. This will significantly reduce build
times.
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=223386&r1=223385&r2=223386&view=diff
==============================================================================
--- zorg/trunk/zorg/jenkins/build.py (original)
+++ zorg/trunk/zorg/jenkins/build.py Thu Dec 4 14:43:16 2014
@@ -191,7 +191,7 @@ def lldb_builder():
# Build into the build folder
- xcodebuild_cmd = ["xcodebuild", "-configuration", "BuildAndIntegration", "-scheme", "lldb-tool", "-derivedDataPath", conf.lldbbuilddir()]
+ xcodebuild_cmd = ["xcodebuild", "-arch", "x86_64", "-configuration", "BuildAndIntegration", "-scheme", "lldb-tool", "-derivedDataPath", conf.lldbbuilddir()]
header("Make lldb-tool")
run_cmd("lldb", xcodebuild_cmd)
More information about the llvm-commits
mailing list