diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2019-09-27 15:29:33 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2019-09-27 15:29:33 +0000 |
commit | 395ca6f9a80b92d1cb779c2c533fa3b7ac13ae8c (patch) | |
tree | 5220c49c76b11159ad44a38891b34f30705931af | |
parent | sasl.h header does not belong at all to openldap package (diff) |
Disable AoT except on amd64
This should be a no-op for all platforms except aarch64. AoT is disabled
on aarch64 due to crashes in internal JDK tests for that feature.
Notes
Notes:
svn path=/head/; revision=513042
-rw-r--r-- | java/openjdk11/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/java/openjdk11/Makefile b/java/openjdk11/Makefile index f15a592d5447..7af53edbe51f 100644 --- a/java/openjdk11/Makefile +++ b/java/openjdk11/Makefile @@ -132,6 +132,9 @@ MAKE_ENV+= USE_CLANG=true CONFIGURE_ARGS+= --disable-warnings-as-errors \ --disable-dtrace .endif +.if ${ARCH} != amd64 +CONFIGURE_ARGS+= --enable-aot=no +.endif .if empty(ICONV_LIB) ICONV_CFLAGS= -DLIBICONV_PLUG |