[zorg] r352797 - Allow old toolchain on sanitizer-windows
JF Bastien via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 31 13:30:51 PST 2019
Author: jfb
Date: Thu Jan 31 13:30:50 2019
New Revision: 352797
URL: http://llvm.org/viewvc/llvm-project?rev=352797&view=rev
Log:
Allow old toolchain on sanitizer-windows
Summary:
As requested by @rnk in D57264, allow old toolchain for the sanitizer-windows bot. This will break once we move to actually using C++ versions which the old toolchains don't support.
Reviewers: jyknight
Subscribers: llvm-commits, rnk
Differential Revision: https://reviews.llvm.org/D57525
Modified:
zorg/trunk/zorg/buildbot/builders/annotated/sanitizer-windows.py
Modified: zorg/trunk/zorg/buildbot/builders/annotated/sanitizer-windows.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/annotated/sanitizer-windows.py?rev=352797&r1=352796&r2=352797&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/annotated/sanitizer-windows.py (original)
+++ zorg/trunk/zorg/buildbot/builders/annotated/sanitizer-windows.py Thu Jan 31 13:30:50 2019
@@ -42,6 +42,7 @@ def main(argv):
]
extra_cmake_args = stage1_extra_cmake_args + [
'-DLLVM_USE_LINKER=lld',
+ '-DLLVM_TEMPORARILY_ALLOW_OLD_TOOLCHAIN=ON',
]
check_targets = ['check-asan', 'check-asan-dynamic', 'check-sanitizer',
'check-cfi']
More information about the llvm-commits
mailing list