Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
8295412: support latest VS2022 MSC_VER in abstract_vm_version.cpp
Backport-of: bca7ab3c1109e6cff9b50ecdd3045cb0ae8f6953
  • Loading branch information
GoeLin committed Jan 9, 2023
1 parent e92b7c3 commit ca23550
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 @@ -255,6 +255,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

1 comment on commit ca23550

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.