summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikael Urankar <mikael@FreeBSD.org>2021-10-05 14:00:36 +0200
committerMikael Urankar <mikael@FreeBSD.org>2021-10-05 14:00:36 +0200
commit9c7b32b9b7f3c0aea08c32560de1f56eb4ba8394 (patch)
treec84fb1671235687c32335633096bc0921a873222
parentwww/deno: Update to 1.14.3 (diff)
java/openjdk17: Remove enable-aot configure argument.
The Experimental AOT and JIT Compiler were remove in OpenJDK17: https://openjdk.java.net/jeps/410 Remove this configure argument as it causes build failure on aarch64: configure: error: unrecognized options: --enable-aot Approved by: portmgr (build fix blanket)
-rw-r--r--java/openjdk17/Makefile3
1 files changed, 0 insertions, 3 deletions
diff --git a/java/openjdk17/Makefile b/java/openjdk17/Makefile
index 61b9f8f8f71a..b048691e65a1 100644
--- a/java/openjdk17/Makefile
+++ b/java/openjdk17/Makefile
@@ -140,9 +140,6 @@ CONFIGURE_ARGS+= --disable-warnings-as-errors
.if ${ARCH} == aarch64 || (defined(PPC_ABI) && ${PPC_ABI} == ELFv1)
CONFIGURE_ARGS+= --disable-dtrace
.endif
-.if ${ARCH} != amd64 && !${ARCH:Mpowerpc64*}
-CONFIGURE_ARGS+= --enable-aot=no
-.endif
.if ${ARCH} == powerpc64 && ${OSREL:C/\.[0-9]//} == 12
EXTRA_PATCHES= ${PATCHDIR}/extra-patch-src_hotspot_cpu_ppc_vm__version__ppc.hpp
.endif