From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A1B94158089 for ; Fri, 27 Oct 2023 20:12:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CB60F2BC029; Fri, 27 Oct 2023 20:12:33 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B010A2BC029 for ; Fri, 27 Oct 2023 20:12:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DD541335C2E for ; Fri, 27 Oct 2023 20:12:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 56BD31220 for ; Fri, 27 Oct 2023 20:12:31 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1698437540.fc8b8de231ec20cd7c1a003d1b5270a2949ed966.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/glibc/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/glibc/glibc-2.38-r7.ebuild sys-libs/glibc/glibc-9999.ebuild X-VCS-Directories: sys-libs/glibc/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: fc8b8de231ec20cd7c1a003d1b5270a2949ed966 X-VCS-Branch: master Date: Fri, 27 Oct 2023 20:12:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fee57d0c-48e4-4633-bea7-19b0f46cb930 X-Archives-Hash: 831346698ed29e566bf681932f63a1fe commit: fc8b8de231ec20cd7c1a003d1b5270a2949ed966 Author: Andreas K. Hüttel gentoo org> AuthorDate: Fri Oct 27 20:11:42 2023 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Fri Oct 27 20:12:20 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc8b8de2 sys-libs/glibc: disable aarch64 mathvec for headers-only Signed-off-by: Andreas K. Hüttel gentoo.org> sys-libs/glibc/glibc-2.38-r7.ebuild | 9 ++++++++- sys-libs/glibc/glibc-9999.ebuild | 9 ++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/sys-libs/glibc/glibc-2.38-r7.ebuild b/sys-libs/glibc/glibc-2.38-r7.ebuild index 59f45cf9d469..6326864811df 100644 --- a/sys-libs/glibc/glibc-2.38-r7.ebuild +++ b/sys-libs/glibc/glibc-2.38-r7.ebuild @@ -1165,7 +1165,15 @@ glibc_headers_configure() { popd >/dev/null fi + local myconf=() + case ${CTARGET} in + aarch64*) + # The configure checks fail during cross-build, so disable here + # for headers-only + myconf+=( + --disable-mathvec + ) ;; riscv*) # RISC-V interrogates the compiler to determine which target to # build. If building the headers then we don't strictly need a @@ -1184,7 +1192,6 @@ glibc_headers_configure() { ) ;; esac - local myconf=() myconf+=( --disable-sanity-checks --enable-hacker-mode diff --git a/sys-libs/glibc/glibc-9999.ebuild b/sys-libs/glibc/glibc-9999.ebuild index 41218b9c69d0..512e39736db4 100644 --- a/sys-libs/glibc/glibc-9999.ebuild +++ b/sys-libs/glibc/glibc-9999.ebuild @@ -1165,7 +1165,15 @@ glibc_headers_configure() { popd >/dev/null fi + local myconf=() + case ${CTARGET} in + aarch64*) + # The configure checks fail during cross-build, so disable here + # for headers-only + myconf+=( + --disable-mathvec + ) ;; riscv*) # RISC-V interrogates the compiler to determine which target to # build. If building the headers then we don't strictly need a @@ -1184,7 +1192,6 @@ glibc_headers_configure() { ) ;; esac - local myconf=() myconf+=( --disable-sanity-checks --enable-hacker-mode