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: dholmes, lucy
  • Loading branch information
MBaesken committed Oct 18, 2022
1 parent c33ca0c commit bca7ab3
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 @@ -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
Expand Down

0 comments on commit bca7ab3

Please sign in to comment.