8211124: HotSpot update for vm_version.cpp to recognise updated VS2017

Reviewed-by: dholmes, lfoltan
This commit is contained in:
Kevin Walls 2018-09-26 06:28:48 -07:00
parent 17c3d1c333
commit 23d457063d

View File

@ -220,6 +220,8 @@ const char* Abstract_VM_Version::internal_vm_info_string() {
#define HOTSPOT_BUILD_COMPILER "MS VC++ 14.0 (VS2015)"
#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)"
#else
#define HOTSPOT_BUILD_COMPILER "unknown MS VC++:" XSTR(_MSC_VER)
#endif