8320937: support latest VS2022 MSC_VER in abstract_vm_version.cpp

Reviewed-by: dholmes, shade
This commit is contained in:
Sergey Bylokhov 2023-11-29 18:42:50 +00:00
parent 62418c681e
commit eb44bafe77

@ -242,6 +242,16 @@ const char* Abstract_VM_Version::internal_vm_info_string() {
#define HOTSPOT_BUILD_COMPILER "MS VC++ 17.2 (VS2022)"
#elif _MSC_VER == 1933
#define HOTSPOT_BUILD_COMPILER "MS VC++ 17.3 (VS2022)"
#elif _MSC_VER == 1934
#define HOTSPOT_BUILD_COMPILER "MS VC++ 17.4 (VS2022)"
#elif _MSC_VER == 1935
#define HOTSPOT_BUILD_COMPILER "MS VC++ 17.5 (VS2022)"
#elif _MSC_VER == 1936
#define HOTSPOT_BUILD_COMPILER "MS VC++ 17.6 (VS2022)"
#elif _MSC_VER == 1937
#define HOTSPOT_BUILD_COMPILER "MS VC++ 17.7 (VS2022)"
#elif _MSC_VER == 1938
#define HOTSPOT_BUILD_COMPILER "MS VC++ 17.8 (VS2022)"
#else
#define HOTSPOT_BUILD_COMPILER "unknown MS VC++:" XSTR(_MSC_VER)
#endif