Releases: HotswapProjects/openjdk-jdk10
Releases · HotswapProjects/openjdk-jdk10
DCEVM10 beta - linux + windows build
Info
First stable build of JDK10 DCEVM - all tests pass (except field method handle removal) (both plain DCEVM tests and full Hotswap Agent tests).
- jdk10-hotswap.tgz - linux x64 JDK binary bundled with Hotswap Agent.
- jdk10-hotswap.zip - windows x64 JDK binary bundled with Hotswap Agent.
Linux build info
Linux build was done using following steps:
export CONF=linux-x86_64-normal-server-release
- execute following script:
#!/bin/bash
unset CFLAGS
unset CXXFLAGS
unset LDFLAGS
bash configure \
--with-version-build="181" \
--with-stdc++lib=dynamic \
--with-extra-cflags="-O2 -march=x86-64 -mtune=generic -pipe -fstack-protector-strong" \
--with-extra-cxxflags="-O2 -march=x86-64 -mtune=generic -pipe -fstack-protector-strong" \
--with-libjpeg=system \
--with-giflib=system \
--with-libpng=system \
--with-lcms=system \
--with-zlib=system \
--enable-unlimited-crypto \
--disable-warnings-as-errors \
--disable-hotspot-gtest
make images