From 08d2397d316caa0d42e349d0e12308500402ad8e Mon Sep 17 00:00:00 2001 From: kevinw Date: Fri, 10 Aug 2018 08:29:53 -0700 Subject: [PATCH] 8209359: [8u] hotspot needs to recognise cl.exe 19.13 to build with VS2017. Reviewed-by: tbell --- make/windows/makefiles/compile.make | 3 +++ 1 file changed, 3 insertions(+) diff --git a/make/windows/makefiles/compile.make b/make/windows/makefiles/compile.make index 2afae3cab..f91d36827 100644 --- a/make/windows/makefiles/compile.make +++ b/make/windows/makefiles/compile.make @@ -156,6 +156,9 @@ COMPILER_NAME=VS2015 !if "$(MSC_VER)" == "1912" COMPILER_NAME=VS2017 !endif +!if "$(MSC_VER)" == "1913" +COMPILER_NAME=VS2017 +!endif !endif # By default, we do not want to use the debug version of the msvcrt.dll file -- GitLab