Skip to content

Commit 4f7dd0c

Browse files
Alexey PavlyutkinYuri Nesterenko
Alexey Pavlyutkin
authored and
Yuri Nesterenko
committedJul 11, 2022
8256722: handle VC++:1927 VS2019 in abstract_vm_version
Backport-of: 146fe86ff68095b5eb0ce1387061699738280c06
1 parent 972112e commit 4f7dd0c

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
 

‎hotspot/src/share/vm/runtime/vm_version.cpp

+10
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,16 @@ const char* Abstract_VM_Version::internal_vm_info_string() {
251251
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.2 (VS2019)"
252252
#elif _MSC_VER == 1923
253253
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.3 (VS2019)"
254+
#elif _MSC_VER == 1924
255+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.4 (VS2019)"
256+
#elif _MSC_VER == 1925
257+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.5 (VS2019)"
258+
#elif _MSC_VER == 1926
259+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.6 (VS2019)"
260+
#elif _MSC_VER == 1927
261+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.7 (VS2019)"
262+
#elif _MSC_VER == 1928
263+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.8 (VS2019)"
254264
#else
255265
#define HOTSPOT_BUILD_COMPILER "unknown MS VC++:" XSTR(_MSC_VER)
256266
#endif

0 commit comments

Comments
 (0)