Skip to content

Commit 9bc74ce

Browse files
jaokimshipilev
authored andcommitted
8365913: Support latest MSC_VER in abstract_vm_version.cpp
Backport-of: af532cc1b227c56cd03caca7d7558d58687d8584
1 parent 2d8955b commit 9bc74ce

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
@@ -271,6 +271,18 @@ const char* Abstract_VM_Version::internal_vm_info_string() {
271271
#define HOTSPOT_BUILD_COMPILER "MS VC++ 17.7 (VS2022)"
272272
#elif _MSC_VER == 1938
273273
#define HOTSPOT_BUILD_COMPILER "MS VC++ 17.8 (VS2022)"
274+
#elif _MSC_VER == 1939
275+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 17.9 (VS2022)"
276+
#elif _MSC_VER == 1940
277+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 17.10 (VS2022)"
278+
#elif _MSC_VER == 1941
279+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 17.11 (VS2022)"
280+
#elif _MSC_VER == 1942
281+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 17.12 (VS2022)"
282+
#elif _MSC_VER == 1943
283+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 17.13 (VS2022)"
284+
#elif _MSC_VER == 1944
285+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 17.14 (VS2022)"
274286
#else
275287
#define HOTSPOT_BUILD_COMPILER "unknown MS VC++:" XSTR(_MSC_VER)
276288
#endif

0 commit comments

Comments
 (0)