Skip to content

Commit

Permalink
8295412: support latest VS2022 MSC_VER in abstract_vm_version.cpp
Browse files Browse the repository at this point in the history
Reviewed-by: mdoerr
Backport-of: bca7ab3c1109e6cff9b50ecdd3045cb0ae8f6953
  • Loading branch information
MBaesken committed Oct 26, 2022
1 parent 271d85f commit 5de8b9c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/hotspot/share/runtime/abstract_vm_version.cpp
Expand Up @@ -238,6 +238,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
Expand Down

0 comments on commit 5de8b9c

Please sign in to comment.