-
Bug
-
Resolution: Unresolved
-
P4
-
25
In make/ZipSecurity.gmk, this piece of code is currently broken:
ifeq ($(call isTargetCpu, x86_64), true)
JGSS_ZIP_NAME = jgss-windows-x64-bin.zip
else
JGSS_ZIP_NAME = jgss-windows-i586-bin.zip
endif
1) There is no 32-bit windows port anymore, but
2) there is an aarch64 port.
The effect of this being missed at both the introduction of aarch64 and removal of x86 is that on aarch64, the file name will be jgss-windows-i586-bin.zip.
This is clearly incorrect.
ifeq ($(call isTargetCpu, x86_64), true)
JGSS_ZIP_NAME = jgss-windows-x64-bin.zip
else
JGSS_ZIP_NAME = jgss-windows-i586-bin.zip
endif
1) There is no 32-bit windows port anymore, but
2) there is an aarch64 port.
The effect of this being missed at both the introduction of aarch64 and removal of x86 is that on aarch64, the file name will be jgss-windows-i586-bin.zip.
This is clearly incorrect.
- relates to
-
JDK-8170481 Update source bundles to include crypto code
-
- Open
-
-
JDK-8343857 compare.sh make script broken on Windows AArch64
-
- Closed
-