[llvm-commits] [zorg] r164963 - /zorg/trunk/zorg/buildbot/builders/ClangBuilder.py
David Dean
david_dean at apple.com
Mon Oct 1 12:57:30 PDT 2012
Author: ddean
Date: Mon Oct 1 14:57:30 2012
New Revision: 164963
URL: http://llvm.org/viewvc/llvm-project?rev=164963&view=rev
Log:
Don't pass --target when it is the same as --host. This is required now that we're using --program-prefix to determine the clang executable name.
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=164963&r1=164962&r2=164963&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/ClangBuilder.py (original)
+++ zorg/trunk/zorg/buildbot/builders/ClangBuilder.py Mon Oct 1 14:57:30 2012
@@ -154,8 +154,7 @@
base_configure_args += extra_configure_args
if triple:
base_configure_args += ['--build=%s' % triple,
- '--host=%s' % triple,
- '--target=%s' % triple]
+ '--host=%s' % triple]
args = base_configure_args + ["--without-llvmgcc", "--without-llvmgxx"]
args.append(WithProperties("--prefix=%%(builddir)s/%s" % llvm_1_installdir))
args += getConfigArgs(stage1_config)
More information about the llvm-commits
mailing list