8256722: handle VC++:1927 VS2019 in abstract_vm_version

Reviewed-by: shade, dholmes
This commit is contained in:
Fairoz Matte 2020-11-24 04:48:40 +00:00 committed by David Holmes
parent cc96b0acbc
commit e838d71d61

View File

@ -235,6 +235,16 @@ const char* Abstract_VM_Version::internal_vm_info_string() {
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.2 (VS2019)"
#elif _MSC_VER == 1923
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.3 (VS2019)"
#elif _MSC_VER == 1924
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.4 (VS2019)"
#elif _MSC_VER == 1925
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.5 (VS2019)"
#elif _MSC_VER == 1926
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.6 (VS2019)"
#elif _MSC_VER == 1927
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.7 (VS2019)"
#elif _MSC_VER == 1928
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.8 (VS2019)"
#else
#define HOTSPOT_BUILD_COMPILER "unknown MS VC++:" XSTR(_MSC_VER)
#endif