Skip to content

Commit e838d71

Browse files
Fairoz MatteDavid Holmes
Fairoz Matte
authored and
David Holmes
committedNov 24, 2020
8256722: handle VC++:1927 VS2019 in abstract_vm_version
Reviewed-by: shade, dholmes
1 parent cc96b0a commit e838d71

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
 

‎src/hotspot/share/runtime/abstract_vm_version.cpp

+10
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,16 @@ const char* Abstract_VM_Version::internal_vm_info_string() {
235235
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.2 (VS2019)"
236236
#elif _MSC_VER == 1923
237237
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.3 (VS2019)"
238+
#elif _MSC_VER == 1924
239+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.4 (VS2019)"
240+
#elif _MSC_VER == 1925
241+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.5 (VS2019)"
242+
#elif _MSC_VER == 1926
243+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.6 (VS2019)"
244+
#elif _MSC_VER == 1927
245+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.7 (VS2019)"
246+
#elif _MSC_VER == 1928
247+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.8 (VS2019)"
238248
#else
239249
#define HOTSPOT_BUILD_COMPILER "unknown MS VC++:" XSTR(_MSC_VER)
240250
#endif

0 commit comments

Comments
 (0)
Please sign in to comment.