[zorg] r211970 - Change the :8013 builders to only build x86, x86_64, arm, arm64, and aarch64 instead of every target.
Michael Gottesman
mgottesman at apple.com
Fri Jun 27 16:40:11 PDT 2014
Author: mgottesman
Date: Fri Jun 27 18:40:10 2014
New Revision: 211970
URL: http://llvm.org/viewvc/llvm-project?rev=211970&view=rev
Log:
Change the :8013 builders to only build x86, x86_64, arm, arm64, and aarch64 instead of every target.
Modified:
zorg/trunk/zorg/buildbot/builders/ClangBuilder.py
Modified: zorg/trunk/zorg/buildbot/builders/ClangBuilder.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/ClangBuilder.py?rev=211970&r1=211969&r2=211970&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/ClangBuilder.py (original)
+++ zorg/trunk/zorg/buildbot/builders/ClangBuilder.py Fri Jun 27 18:40:10 2014
@@ -174,7 +174,8 @@ def getClangBuildFactory(
base_configure_args += extra_configure_args
if triple:
base_configure_args += ['--build=%s' % triple,
- '--host=%s' % triple]
+ '--host=%s' % triple,
+ '--enable-targets=x86,x86_64,arm,arm64,aarch64']
args = base_configure_args + [WithProperties("--prefix=%%(builddir)s/%s" % llvm_1_installdir)]
args += builders_util.getConfigArgs(stage1_config)
if not clean:
More information about the llvm-commits
mailing list