aboutsummaryrefslogtreecommitdiff
path: root/build2
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-06-09 16:59:33 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-06-09 16:59:33 +0200
commit75ea9a2576390e0b43d3d81e4292e9f4a4a68e5b (patch)
treef62c43a07893983c0f053bdb40b7d0600864fbca /build2
parent3ca3b89b407ffa1a70d863c3d450dee2fa31ddb7 (diff)
Add support for VC15u3 which bumped the compiler version to 19.11
Diffstat (limited to 'build2')
-rw-r--r--build2/cc/guess.cxx20
1 files changed, 11 insertions, 9 deletions
diff --git a/build2/cc/guess.cxx b/build2/cc/guess.cxx
index 7dde013..0e157a5 100644
--- a/build2/cc/guess.cxx
+++ b/build2/cc/guess.cxx
@@ -1020,16 +1020,18 @@ namespace build2
//
// year ver cl.exe crt/dll
//
- // 2017 15 19.10 14.1/140
- // 2015 14 19.00 14.0/140
- // 2013 12 18.00 12.0/120
- // 2012 11 17.00 11.0/110
- // 2010 10 16.00 10.0/100
- // 2008 9 15.00 9.0/90
- // 2005 8 14.00 8.0/80
- // 2003 7.1 13.10 7.1/71
+ // 2017 15u3 19.11 14.1/140
+ // 2017 15 19.10 14.1/140
+ // 2015 14 19.00 14.0/140
+ // 2013 12 18.00 12.0/120
+ // 2012 11 17.00 11.0/110
+ // 2010 10 16.00 10.0/100
+ // 2008 9 15.00 9.0/90
+ // 2005 8 14.00 8.0/80
+ // 2003 7.1 13.10 7.1/71
//
- /**/ if (v.major == 19 && v.minor == 10) arch += "14.1";
+ /**/ if (v.major == 19 && v.minor == 11) arch += "14.1";
+ else if (v.major == 19 && v.minor == 10) arch += "14.1";
else if (v.major == 19 && v.minor == 0) arch += "14.0";
else if (v.major == 18 && v.minor == 0) arch += "12.0";
else if (v.major == 17 && v.minor == 0) arch += "11.0";