Skip to content

Commit 10df11a

Browse files
committed
8365913: Support latest MSC_VER in abstract_vm_version.cpp
Backport-of: af532cc1b227c56cd03caca7d7558d58687d8584
1 parent 2c9bcd3 commit 10df11a

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/hotspot/share/runtime/abstract_vm_version.cpp

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,18 @@ const char* Abstract_VM_Version::internal_vm_info_string() {
250250
#define HOTSPOT_BUILD_COMPILER "MS VC++ 17.7 (VS2022)"
251251
#elif _MSC_VER == 1938
252252
#define HOTSPOT_BUILD_COMPILER "MS VC++ 17.8 (VS2022)"
253+
#elif _MSC_VER == 1939
254+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 17.9 (VS2022)"
255+
#elif _MSC_VER == 1940
256+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 17.10 (VS2022)"
257+
#elif _MSC_VER == 1941
258+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 17.11 (VS2022)"
259+
#elif _MSC_VER == 1942
260+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 17.12 (VS2022)"
261+
#elif _MSC_VER == 1943
262+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 17.13 (VS2022)"
263+
#elif _MSC_VER == 1944
264+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 17.14 (VS2022)"
253265
#else
254266
#define HOTSPOT_BUILD_COMPILER "unknown MS VC++:" XSTR(_MSC_VER)
255267
#endif

0 commit comments

Comments
 (0)