Skip to content

Commit 6518636

Browse files
committed
8273176: handle latest VS2019 in abstract_vm_version
Backport-of: 0e14bf70cf6e482a2ec7d13ed37df0bee911740d
1 parent 358fc5a commit 6518636

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/hotspot/share/runtime/abstract_vm_version.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,9 @@ const char* Abstract_VM_Version::internal_vm_info_string() {
248248
#elif _MSC_VER == 1927
249249
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.7 (VS2019)"
250250
#elif _MSC_VER == 1928
251-
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.8 (VS2019)"
251+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.8 / 16.9 (VS2019)"
252+
#elif _MSC_VER == 1929
253+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.10 / 16.11 (VS2019)"
252254
#else
253255
#define HOTSPOT_BUILD_COMPILER "unknown MS VC++:" XSTR(_MSC_VER)
254256
#endif

0 commit comments

Comments
 (0)