Skip to content

DCEVM beta - windows + linux build

Pre-release
Pre-release
Compare
Choose a tag to compare
@edudant edudant released this 03 Dec 21:24
· 2 commits to dcevm since this release

Info

First stable build of JDK9 DCEVM - all tests pass (both plain DCEVM tests and full Hotswap Agent tests).

Enjoy windows x64 JDK binary bundled with Hotswap Agent. Unzip to c:\jdk9-hotswap and run:

c:\jdk9-hotswap\bin\java -javaagent:c:\jdk9-hotswap\lib\hotswap-agent.jar -version

Enjoy linux 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