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 77767138359 for ; Mon, 6 Jul 2020 07:38:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 97F28E085A; Mon, 6 Jul 2020 07:38:19 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 7F3BBE085A for ; Mon, 6 Jul 2020 07:38:19 +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 4710734F042 for ; Mon, 6 Jul 2020 07:38:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A575028F for ; Mon, 6 Jul 2020 07:38:15 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1594021074.3dd34a97435475f490756095307aeade0acf86e2.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/rsync/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/rsync/rsync-3.2.2.ebuild X-VCS-Directories: net-misc/rsync/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 3dd34a97435475f490756095307aeade0acf86e2 X-VCS-Branch: master Date: Mon, 6 Jul 2020 07:38:15 +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: df8a297f-6efa-429d-86ee-df48ebb7f94c X-Archives-Hash: 7c86cc70a65863752ca68713b5c20f1f commit: 3dd34a97435475f490756095307aeade0acf86e2 Author: Lars Wendler gentoo org> AuthorDate: Mon Jul 6 07:36:57 2020 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Jul 6 07:37:54 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dd34a97 net-misc/rsync: SIMD is only available on amd64 + glibc Thanks-to: David Seifert gentoo.org> Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Lars Wendler gentoo.org> net-misc/rsync/rsync-3.2.2.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/net-misc/rsync/rsync-3.2.2.ebuild b/net-misc/rsync/rsync-3.2.2.ebuild index c02794fd0b9..fb78f513976 100644 --- a/net-misc/rsync/rsync-3.2.2.ebuild +++ b/net-misc/rsync/rsync-3.2.2.ebuild @@ -81,8 +81,9 @@ src_configure() { $(use_enable zstd) ) - if [[ "${ARCH}" == "amd64" ]] ; then - # SIMD is only available for x86_64 right now (#728868) + if use elibc_glibc && [[ "${ARCH}" == "amd64" ]] ; then + # SIMD is only available for x86_64 right now + # and only on glibc (#728868) myeconfargs+=( $(use_enable cpu_flags_x86_sse2 simd) ) else myeconfargs+=( --disable-simd )