From 30f831244392a16c043faaf5f1b34034e84ef4ca Mon Sep 17 00:00:00 2001 From: David Major Date: Fri, 4 Dec 2020 20:43:30 +0000 Subject: [PATCH] Bug 1680826 - Update MSVC compat version in build-clang.py r=firefox-build-system-reviewers,mhentges In https://reviews.llvm.org/D92515, clang-12 bumps the build requirement to MSVC version 19.14. We've already updated well past that (most recently bug 1485224) but build-clang.py never got the memo. Differential Revision: https://phabricator.services.mozilla.com/D98806 --- build/build-clang/build-clang.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/build-clang/build-clang.py b/build/build-clang/build-clang.py index 3d3aa566b71c..225faa4f1795 100755 --- a/build/build-clang/build-clang.py +++ b/build/build-clang/build-clang.py @@ -862,7 +862,7 @@ if __name__ == "__main__": # Force things on. extra_cflags2 = [] extra_cxxflags2 = [ - "-fms-compatibility-version=19.13.26128", + "-fms-compatibility-version=19.15.26726", "-Xclang", "-std=c++14", ]