[zorg] r315233 - Disabled warnings escalation on Windows buildbots when built by VS.

Galina Kistanova via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 9 12:16:49 PDT 2017


Author: gkistanova
Date: Mon Oct  9 12:16:49 2017
New Revision: 315233

URL: http://llvm.org/viewvc/llvm-project?rev=315233&view=rev
Log:
Disabled warnings escalation on Windows buildbots when built by VS.

Because of the bug in the MS compiler we disable the warnings escalation for now on Windows buildbots. See https://connect.microsoft.com/VisualStudio/feedback/details/668639/c-c4709-when-not-even-using-comma-inside-the-array-index-expression-w4 for more details.

Modified:
    zorg/trunk/buildbot/osuosl/master/config/builders.py

Modified: zorg/trunk/buildbot/osuosl/master/config/builders.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/buildbot/osuosl/master/config/builders.py?rev=315233&r1=315232&r2=315233&view=diff
==============================================================================
--- zorg/trunk/buildbot/osuosl/master/config/builders.py (original)
+++ zorg/trunk/buildbot/osuosl/master/config/builders.py Mon Oct  9 12:16:49 2017
@@ -156,6 +156,7 @@ def _get_clang_fast_builders():
          'builddir':"llvm-clang-x86_64-expensive-checks-win",
          'factory': UnifiedTreeBuilder.getCmakeWithNinjaWithMSVCBuildFactory(
                 extra_configure_args = ["-DLLVM_ENABLE_EXPENSIVE_CHECKS=ON",
+                                        "-DLLVM_ENABLE_WERROR=OFF",
                                         "-DCMAKE_BUILD_TYPE=Debug",
                                         "-DLLVM_LIT_ARGS='-v'"])},
     ]




More information about the llvm-commits mailing list