svn commit: r513042 - head/java/openjdk11

Greg Lewis glewis at FreeBSD.org
Fri Sep 27 15:29:34 UTC 2019


Author: glewis
Date: Fri Sep 27 15:29:33 2019
New Revision: 513042
URL: https://svnweb.freebsd.org/changeset/ports/513042

Log:
  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.

Modified:
  head/java/openjdk11/Makefile

Modified: head/java/openjdk11/Makefile
==============================================================================
--- head/java/openjdk11/Makefile	Fri Sep 27 15:08:46 2019	(r513041)
+++ head/java/openjdk11/Makefile	Fri Sep 27 15:29:33 2019	(r513042)
@@ -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


More information about the svn-ports-all mailing list