[8u-dev] Request for approval: 8209359: [8u] hotspot needs to recognise cl.exe 19.13 to build with VS2017.
Kevin Walls
kevin.walls at oracle.com
Fri Aug 10 13:58:51 UTC 2018
Hi,
I'd like to request approval for jdk8u-dev for this small change to let
the jdk8u/hotspot build system recognise another Microsoft compiler
version:
8209359: [8u] hotspot needs to recognise cl.exe 19.13 to build with VS2017.
https://bugs.openjdk.java.net/browse/JDK-8209359
Diff below, just another if following the same pattern.
build-dev review:
http://mail.openjdk.java.net/pipermail/build-dev/2018-August/022860.html
Thanks
Kevin
bash-4.2$ hg status
M make/windows/makefiles/compile.make
bash-4.2$ hg diff
diff -r b4ee249eb1c4 make/windows/makefiles/compile.make
--- a/make/windows/makefiles/compile.make Tue Aug 07 11:55:44 2018
-0400
+++ b/make/windows/makefiles/compile.make Fri Aug 10 05:26:34 2018
-0700
@@ -156,6 +156,9 @@
!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
More information about the jdk8u-dev
mailing list