Skip to content

Commit 65b1748

Browse files
Alexey Pavlyutkingnu-andrew
Alexey Pavlyutkin
authored andcommitted
8273176: handle latest VS2019 in abstract_vm_version
Reviewed-by: andrew Backport-of: 0e14bf70cf6e482a2ec7d13ed37df0bee911740d
1 parent daccfee commit 65b1748

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,9 @@ const char* Abstract_VM_Version::internal_vm_info_string() {
260260
#elif _MSC_VER == 1927
261261
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.7 (VS2019)"
262262
#elif _MSC_VER == 1928
263-
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.8 (VS2019)"
263+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.8 / 16.9 (VS2019)"
264+
#elif _MSC_VER == 1929
265+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.10 / 16.11 (VS2019)"
264266
#else
265267
#define HOTSPOT_BUILD_COMPILER "unknown MS VC++:" XSTR(_MSC_VER)
266268
#endif

0 commit comments

Comments
 (0)