Skip to content

Commit 080369a

Browse files
committedApr 7, 2018
[scripts] Add bleeding edge OpenJDK support
1 parent 80ff69d commit 080369a

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed
 

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ Please change the `$BUILD_DIRECTORY` to a valid path.
3737
```
3838
export JDKVER=9 # OpenJDK 9
3939
export JDKVER=10 # OpenJDK 10
40+
export JDKVER=dev # OpenJDK Master+dev (to-be OpenJDK 11 at the time of writing)
4041
export JDKVM=zero # Use Zero interpreter
4142
export JDKVM=client # Use ARM32 JIT
4243
```

‎scripts/config.sh

+11
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,23 @@ elif [ "$JDKVER" == "10" ]; then
6464
HOSTJDK_FILE="$BUILDDIR/openjdk-10_linux-x64_bin.tar.gz"
6565
HOSTJDK_URL="https://download.java.net/java/GA/jdk10/10/binaries/openjdk-10_linux-x64_bin.tar.gz"
6666

67+
# OpenJDK Master+dev
68+
elif [ "$JDKVER" == "dev" ]; then
69+
JAVA_REPO="http://hg.openjdk.java.net/jdk/jdk/"
70+
PATCHVER="jdkdev"
71+
AUTOGEN_PATH="./make/autoconf/autogen.sh"
72+
HOSTJDK="$BUILDDIR/jdk-10"
73+
HOSTJDK_FILE="$BUILDDIR/openjdk-10_linux-x64_bin.tar.gz"
74+
HOSTJDK_URL="https://download.java.net/java/GA/jdk10/10/binaries/openjdk-10_linux-x64_bin.tar.gz"
75+
76+
6777
# invalid or unset version
6878
else
6979
echo "Error! Please specify JDK version to compile via the JDKVER environment variable." >&2
7080
echo "Acceptable values:" >&2
7181
echo "JDKVER=9" >&2
7282
echo "JDKVER=10" >&2
83+
echo "JDKVER=dev" >&2
7384
exit 1
7485
fi
7586

0 commit comments

Comments
 (0)
Please sign in to comment.