# HG changeset patch # User mchinnathamb # Date 1540559106 -19800 # Node ID 1edff9dfe60604d4a39c015089f791dc1163c38b # Parent 26d1803768c70709e979ef2ed507e475a9b257d6 8211714: Need to update vm_version.cpp to recognise VS2017 minor versions Reviewed-by: dholmes diff -r 26d1803768c7 -r 1edff9dfe606 src/share/vm/runtime/vm_version.cpp --- a/src/share/vm/runtime/vm_version.cpp Thu Jun 11 12:17:25 2020 +0200 +++ b/src/share/vm/runtime/vm_version.cpp Fri Oct 26 18:35:06 2018 +0530 @@ -227,10 +227,16 @@ #define HOTSPOT_BUILD_COMPILER "MS VC++ 12.0 (VS2013)" #elif _MSC_VER == 1900 #define HOTSPOT_BUILD_COMPILER "MS VC++ 14.0 (VS2015)" + #elif _MSC_VER == 1911 + #define HOTSPOT_BUILD_COMPILER "MS VC++ 15.3 (VS2017)" #elif _MSC_VER == 1912 #define HOTSPOT_BUILD_COMPILER "MS VC++ 15.5 (VS2017)" #elif _MSC_VER == 1913 #define HOTSPOT_BUILD_COMPILER "MS VC++ 15.6 (VS2017)" + #elif _MSC_VER == 1914 + #define HOTSPOT_BUILD_COMPILER "MS VC++ 15.7 (VS2017)" + #elif _MSC_VER == 1915 + #define HOTSPOT_BUILD_COMPILER "MS VC++ 15.8 (VS2017)" #else #define HOTSPOT_BUILD_COMPILER "unknown MS VC++:" XSTR(_MSC_VER) #endif