Skip to content

Commit 3f26357

Browse files
committed
Enable bundled JRE for ARM64
Experimental, should allow ARM64 build to become more or less official from the next version. The bundled JRE is AdoptOpenJDK's 8u191 (https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u191-b12/OpenJDK8U-jre_aarch64_linux_hotspot_8u191b12.tar.gz) which we are actively evaluating to replace Oracle's.
1 parent 56f0e96 commit 3f26357

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

build/build.xml

+5
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,13 @@
7171
<property name="LINUX32_BUNDLED_JVM" value="none"/>
7272
<property name="LINUX64_BUNDLED_JVM" value="none"/>
7373
<property name="LINUXARM_BUNDLED_JVM" value="none"/>
74+
<property name="LINUXAARCH64_BUNDLED_JVM" value="none"/>
7475
<condition property="linux-bundle-jvm-task" value="noop">
7576
<and>
7677
<equals arg1="${LINUX32_BUNDLED_JVM}" arg2="none"/>
7778
<equals arg1="${LINUX64_BUNDLED_JVM}" arg2="none"/>
7879
<equals arg1="${LINUXARM_BUNDLED_JVM}" arg2="none"/>
80+
<equals arg1="${LINUXAARCH64_BUNDLED_JVM}" arg2="none"/>
7981
</and>
8082
</condition>
8183
<condition property="linux-bundle-jvm-task" value="bundle">
@@ -89,6 +91,9 @@
8991
<not>
9092
<equals arg1="${LINUXARM_BUNDLED_JVM}" arg2="none"/>
9193
</not>
94+
<not>
95+
<equals arg1="${LINUXAARCH64_BUNDLED_JVM}" arg2="none"/>
96+
</not>
9297
</or>
9398
</condition>
9499

0 commit comments

Comments
 (0)