From nobody Tue Oct 05 12:04:22 2021 X-Original-To: dev-commits-ports-all@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id BC87B17E67C1; Tue, 5 Oct 2021 12:04:22 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HNx8Q4wxTz4v0W; Tue, 5 Oct 2021 12:04:22 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 895D34695; Tue, 5 Oct 2021 12:04:22 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 195C4MZs002855; Tue, 5 Oct 2021 12:04:22 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 195C4MVv002854; Tue, 5 Oct 2021 12:04:22 GMT (envelope-from git) Date: Tue, 5 Oct 2021 12:04:22 GMT Message-Id: <202110051204.195C4MVv002854@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Mikael Urankar Subject: git: 9c7b32b9b7f3 - main - java/openjdk17: Remove enable-aot configure argument. List-Id: Commit messages for all branches of the ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-all@freebsd.org X-BeenThere: dev-commits-ports-all@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: mikael X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 9c7b32b9b7f3c0aea08c32560de1f56eb4ba8394 Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by mikael: URL: https://cgit.FreeBSD.org/ports/commit/?id=9c7b32b9b7f3c0aea08c32560de1f56eb4ba8394 commit 9c7b32b9b7f3c0aea08c32560de1f56eb4ba8394 Author: Mikael Urankar AuthorDate: 2021-10-05 12:00:36 +0000 Commit: Mikael Urankar CommitDate: 2021-10-05 12:00:36 +0000 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) --- java/openjdk17/Makefile | 3 --- 1 file changed, 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