[zorg] r211971 - Make the change from r211970 for the phasedClang, not the normal clang builders = /.
Michael Gottesman
mgottesman at apple.com
Fri Jun 27 16:49:59 PDT 2014
Author: mgottesman
Date: Fri Jun 27 18:49:58 2014
New Revision: 211971
URL: http://llvm.org/viewvc/llvm-project?rev=211971&view=rev
Log:
Make the change from r211970 for the phasedClang, not the normal clang builders = /.
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=211971&r1=211970&r2=211971&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/ClangBuilder.py (original)
+++ zorg/trunk/zorg/buildbot/builders/ClangBuilder.py Fri Jun 27 18:49:58 2014
@@ -174,8 +174,7 @@ def getClangBuildFactory(
base_configure_args += extra_configure_args
if triple:
base_configure_args += ['--build=%s' % triple,
- '--host=%s' % triple,
- '--enable-targets=x86,x86_64,arm,arm64,aarch64']
+ '--host=%s' % triple]
args = base_configure_args + [WithProperties("--prefix=%%(builddir)s/%s" % llvm_1_installdir)]
args += builders_util.getConfigArgs(stage1_config)
if not clean:
@@ -785,7 +784,8 @@ def phasedClang(config_options, is_boots
configure_args = ['../llvm/configure']
configure_args.extend(config_options)
configure_args.extend(['--disable-bindings',
- '--enable-keep-symbols'])
+ '--enable-keep-symbols',
+ '--enable-targets=x86,x86_64,arm,arm64,aarch64'])
configure_args.append(
WithProperties('--prefix=%(builddir)s/clang-install'))
More information about the llvm-commits
mailing list