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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2D742138359 for ; Tue, 15 Sep 2020 22:15:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54C2EE0935; Tue, 15 Sep 2020 22:15:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2BDFBE0935 for ; Tue, 15 Sep 2020 22:15:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5E27933BE33 for ; Tue, 15 Sep 2020 22:15:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C57622F9 for ; Tue, 15 Sep 2020 22:15:28 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1600208124.d1cd3ed5e4670b1c71b4519256ffd0f9b73642df.slyfox@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.31-r6.ebuild sys-libs/glibc/glibc-2.31-r7.ebuild sys-libs/glibc/glibc-2.32-r1.ebuild sys-libs/glibc/glibc-2.32.ebuild sys-libs/glibc/glibc-9999.ebuild X-VCS-Directories: sys-libs/glibc/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: d1cd3ed5e4670b1c71b4519256ffd0f9b73642df X-VCS-Branch: master Date: Tue, 15 Sep 2020 22:15:28 +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: d4fe2928-0375-442a-8412-6b5814fec1fb X-Archives-Hash: 1356217f1ed585ef859d865f4341282b commit: d1cd3ed5e4670b1c71b4519256ffd0f9b73642df Author: Sergei Trofimovich gentoo org> AuthorDate: Tue Sep 15 22:14:46 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Tue Sep 15 22:15:24 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1cd3ed5 sys-libs/glibc: extend -mcpu= filter from ppc to ppc+ppc64 glibc shares CPU detection code for powerpc/powerpc64. gcc-10 will advertise G5 as power7: $ echo 'int main(){}' | powerpc64-unknown-linux-gnu-gcc \ -mcpu=970 -S -x c - -o - | fgrep machine .machine power7 which is too high for multiarch. Bug: https://sourceware.org/PR26522 Bug: https://bugs.gentoo.org/737996 Package-Manager: Portage-3.0.7, Repoman-3.0.1 Signed-off-by: Sergei Trofimovich gentoo.org> sys-libs/glibc/glibc-2.31-r6.ebuild | 2 +- sys-libs/glibc/glibc-2.31-r7.ebuild | 2 +- sys-libs/glibc/glibc-2.32-r1.ebuild | 2 +- sys-libs/glibc/glibc-2.32.ebuild | 2 +- sys-libs/glibc/glibc-9999.ebuild | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/sys-libs/glibc/glibc-2.31-r6.ebuild b/sys-libs/glibc/glibc-2.31-r6.ebuild index fab85b6f35d..671c8ee63a2 100644 --- a/sys-libs/glibc/glibc-2.31-r6.ebuild +++ b/sys-libs/glibc/glibc-2.31-r6.ebuild @@ -301,7 +301,7 @@ setup_target_flags() { # The mips abi cannot support the GNU style hashes. #233233 filter-ldflags -Wl,--hash-style=gnu -Wl,--hash-style=both ;; - ppc) + ppc|ppc64) # Many arch-specific implementations do not work on ppc with # cache-block not equal to 128 bytes. This breaks memset: # https://sourceware.org/PR26522 diff --git a/sys-libs/glibc/glibc-2.31-r7.ebuild b/sys-libs/glibc/glibc-2.31-r7.ebuild index 91c98436a19..07f25009bd1 100644 --- a/sys-libs/glibc/glibc-2.31-r7.ebuild +++ b/sys-libs/glibc/glibc-2.31-r7.ebuild @@ -301,7 +301,7 @@ setup_target_flags() { # The mips abi cannot support the GNU style hashes. #233233 filter-ldflags -Wl,--hash-style=gnu -Wl,--hash-style=both ;; - ppc) + ppc|ppc64) # Many arch-specific implementations do not work on ppc with # cache-block not equal to 128 bytes. This breaks memset: # https://sourceware.org/PR26522 diff --git a/sys-libs/glibc/glibc-2.32-r1.ebuild b/sys-libs/glibc/glibc-2.32-r1.ebuild index b51024529ad..18d94a7b0ef 100644 --- a/sys-libs/glibc/glibc-2.32-r1.ebuild +++ b/sys-libs/glibc/glibc-2.32-r1.ebuild @@ -302,7 +302,7 @@ setup_target_flags() { # The mips abi cannot support the GNU style hashes. #233233 filter-ldflags -Wl,--hash-style=gnu -Wl,--hash-style=both ;; - ppc) + ppc|ppc64) # Many arch-specific implementations do not work on ppc with # cache-block not equal to 128 bytes. This breaks memset: # https://sourceware.org/PR26522 diff --git a/sys-libs/glibc/glibc-2.32.ebuild b/sys-libs/glibc/glibc-2.32.ebuild index 062f5445621..bf2ba5df852 100644 --- a/sys-libs/glibc/glibc-2.32.ebuild +++ b/sys-libs/glibc/glibc-2.32.ebuild @@ -301,7 +301,7 @@ setup_target_flags() { # The mips abi cannot support the GNU style hashes. #233233 filter-ldflags -Wl,--hash-style=gnu -Wl,--hash-style=both ;; - ppc) + ppc|ppc64) # Many arch-specific implementations do not work on ppc with # cache-block not equal to 128 bytes. This breaks memset: # https://sourceware.org/PR26522 diff --git a/sys-libs/glibc/glibc-9999.ebuild b/sys-libs/glibc/glibc-9999.ebuild index 2319a1e0342..643e0b3883c 100644 --- a/sys-libs/glibc/glibc-9999.ebuild +++ b/sys-libs/glibc/glibc-9999.ebuild @@ -302,7 +302,7 @@ setup_target_flags() { # The mips abi cannot support the GNU style hashes. #233233 filter-ldflags -Wl,--hash-style=gnu -Wl,--hash-style=both ;; - ppc) + ppc|ppc64) # Many arch-specific implementations do not work on ppc with # cache-block not equal to 128 bytes. This breaks memset: # https://sourceware.org/PR26522