aboutsummaryrefslogtreecommitdiff
path: root/build2/cc
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-02-15 09:17:12 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-02-15 09:17:12 +0200
commit7249a98c9a8038f00763a98fe3f472c8c7120a3a (patch)
tree5b7371a5ba7949c709ec7526daf2f583b6a4e105 /build2/cc
parent8d1735e04faadaa6765c71b12a96188e6d56c9fa (diff)
Add support for VC15u6
Diffstat (limited to 'build2/cc')
-rw-r--r--build2/cc/guess.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/build2/cc/guess.cxx b/build2/cc/guess.cxx
index 9299885..233bf53 100644
--- a/build2/cc/guess.cxx
+++ b/build2/cc/guess.cxx
@@ -1343,6 +1343,7 @@ namespace build2
//
// year ver cl.exe crt/dll
//
+ // 2017 15u6 19.13 14.1/140
// 2017 15u5 19.12 14.1/140
// 2017 15u3 19.11 14.1/140
// 2017 15 19.10 14.1/140
@@ -1354,7 +1355,8 @@ namespace build2
// 2005 8 14.00 8.0/80
// 2003 7.1 13.10 7.1/71
//
- /**/ if (v.major == 19 && v.minor == 12) t += "14.1";
+ /**/ if (v.major == 19 && v.minor == 13) t += "14.1";
+ else if (v.major == 19 && v.minor == 12) t += "14.1";
else if (v.major == 19 && v.minor == 11) t += "14.1";
else if (v.major == 19 && v.minor == 10) t += "14.1";
else if (v.major == 19 && v.minor == 0) t += "14.0";