8235243: handle VS2017 15.9 and VS2019 in abstract_vm_version

Fri, 06 Dec 2019 12:42:29 +0100

author
mbaesken
date
Fri, 06 Dec 2019 12:42:29 +0100
changeset 9946
103d1261f1f4
parent 9945
1edff9dfe606
child 9947
db357034b763

8235243: handle VS2017 15.9 and VS2019 in abstract_vm_version
8235325: build failure on Linux after 8235243
Reviewed-by: dholmes, mdoerr

src/share/vm/runtime/vm_version.cpp file | annotate | diff | comparison | revisions
     1.1 --- a/src/share/vm/runtime/vm_version.cpp	Fri Oct 26 18:35:06 2018 +0530
     1.2 +++ b/src/share/vm/runtime/vm_version.cpp	Fri Dec 06 12:42:29 2019 +0100
     1.3 @@ -237,6 +237,16 @@
     1.4          #define HOTSPOT_BUILD_COMPILER "MS VC++ 15.7 (VS2017)"
     1.5        #elif _MSC_VER == 1915
     1.6          #define HOTSPOT_BUILD_COMPILER "MS VC++ 15.8 (VS2017)"
     1.7 +      #elif _MSC_VER == 1916
     1.8 +        #define HOTSPOT_BUILD_COMPILER "MS VC++ 15.9 (VS2017)"
     1.9 +      #elif _MSC_VER == 1920
    1.10 +        #define HOTSPOT_BUILD_COMPILER "MS VC++ 16.0 (VS2019)"
    1.11 +      #elif _MSC_VER == 1921
    1.12 +        #define HOTSPOT_BUILD_COMPILER "MS VC++ 16.1 (VS2019)"
    1.13 +      #elif _MSC_VER == 1922
    1.14 +        #define HOTSPOT_BUILD_COMPILER "MS VC++ 16.2 (VS2019)"
    1.15 +      #elif _MSC_VER == 1923
    1.16 +        #define HOTSPOT_BUILD_COMPILER "MS VC++ 16.3 (VS2019)"
    1.17        #else
    1.18          #define HOTSPOT_BUILD_COMPILER "unknown MS VC++:" XSTR(_MSC_VER)
    1.19        #endif

mercurial