Skip to content

Commit

Permalink
8320937: support latest VS2022 MSC_VER in abstract_vm_version.cpp
Browse files Browse the repository at this point in the history
Backport-of: eb44bafe7709b108acca06b083f306d6ab7a8050
  • Loading branch information
mrserb committed Jan 2, 2024
1 parent 2da1ac7 commit c241718
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/hotspot/share/runtime/abstract_vm_version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,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
Expand Down

0 comments on commit c241718

Please sign in to comment.