From bca7ab3c1109e6cff9b50ecdd3045cb0ae8f6953 Mon Sep 17 00:00:00 2001 From: Matthias Baesken Date: Tue, 18 Oct 2022 07:43:59 +0000 Subject: [PATCH] 8295412: support latest VS2022 MSC_VER in abstract_vm_version.cpp Reviewed-by: dholmes, lucy --- src/hotspot/share/runtime/abstract_vm_version.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/hotspot/share/runtime/abstract_vm_version.cpp b/src/hotspot/share/runtime/abstract_vm_version.cpp index b99805f1ecb..8f62996da54 100644 --- a/src/hotspot/share/runtime/abstract_vm_version.cpp +++ b/src/hotspot/share/runtime/abstract_vm_version.cpp @@ -239,6 +239,10 @@ const char* Abstract_VM_Version::internal_vm_info_string() { #define HOTSPOT_BUILD_COMPILER "MS VC++ 17.0 (VS2022)" #elif _MSC_VER == 1931 #define HOTSPOT_BUILD_COMPILER "MS VC++ 17.1 (VS2022)" + #elif _MSC_VER == 1932 + #define HOTSPOT_BUILD_COMPILER "MS VC++ 17.2 (VS2022)" + #elif _MSC_VER == 1933 + #define HOTSPOT_BUILD_COMPILER "MS VC++ 17.3 (VS2022)" #else #define HOTSPOT_BUILD_COMPILER "unknown MS VC++:" XSTR(_MSC_VER) #endif