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 6683D158094 for ; Mon, 10 Oct 2022 12:20:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B1C9CE0844; Mon, 10 Oct 2022 12:20:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 98F61E0844 for ; Mon, 10 Oct 2022 12:20:19 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BC27334103B for ; Mon, 10 Oct 2022 12:20:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C2C41613 for ; Mon, 10 Oct 2022 12:20:15 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1665404407.2873436957fb527e0fd84838c3d8e09f6b1171d8.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/highway/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/highway/highway-1.0.1-r1.ebuild dev-cpp/highway/highway-1.0.1.ebuild dev-cpp/highway/highway-9999.ebuild X-VCS-Directories: dev-cpp/highway/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 2873436957fb527e0fd84838c3d8e09f6b1171d8 X-VCS-Branch: master Date: Mon, 10 Oct 2022 12:20: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: 741f192c-b6c1-458e-b5ab-c480c26142f1 X-Archives-Hash: c6525e7609aceb0ba436a764756c92d9 commit: 2873436957fb527e0fd84838c3d8e09f6b1171d8 Author: Daniel Novomesky gmail com> AuthorDate: Thu Sep 15 06:44:45 2022 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Mon Oct 10 12:20:07 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28734369 dev-cpp/highway: fix buiding on ARM Neon Bug: https://bugs.gentoo.org/869077 Signed-off-by: Daniel Novomesky gmail.com> Closes: https://github.com/gentoo/gentoo/pull/27263 Signed-off-by: Joonas Niilola gentoo.org> dev-cpp/highway/{highway-1.0.1.ebuild => highway-1.0.1-r1.ebuild} | 3 ++- dev-cpp/highway/highway-9999.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-cpp/highway/highway-1.0.1.ebuild b/dev-cpp/highway/highway-1.0.1-r1.ebuild similarity index 91% rename from dev-cpp/highway/highway-1.0.1.ebuild rename to dev-cpp/highway/highway-1.0.1-r1.ebuild index b9e18db6095b..2aa240199304 100644 --- a/dev-cpp/highway/highway-1.0.1.ebuild +++ b/dev-cpp/highway/highway-1.0.1-r1.ebuild @@ -18,7 +18,7 @@ fi LICENSE="Apache-2.0" SLOT="0" -IUSE="test" +IUSE="cpu_flags_arm_neon test" DEPEND="test? ( dev-cpp/gtest[${MULTILIB_USEDEP}] )" @@ -26,6 +26,7 @@ RESTRICT="!test? ( test )" multilib_src_configure() { local mycmakeargs=( + -DHWY_CMAKE_ARM7=$(usex cpu_flags_arm_neon) -DBUILD_TESTING=$(usex test) -DHWY_WARNINGS_ARE_ERRORS=OFF ) diff --git a/dev-cpp/highway/highway-9999.ebuild b/dev-cpp/highway/highway-9999.ebuild index b9e18db6095b..2aa240199304 100644 --- a/dev-cpp/highway/highway-9999.ebuild +++ b/dev-cpp/highway/highway-9999.ebuild @@ -18,7 +18,7 @@ fi LICENSE="Apache-2.0" SLOT="0" -IUSE="test" +IUSE="cpu_flags_arm_neon test" DEPEND="test? ( dev-cpp/gtest[${MULTILIB_USEDEP}] )" @@ -26,6 +26,7 @@ RESTRICT="!test? ( test )" multilib_src_configure() { local mycmakeargs=( + -DHWY_CMAKE_ARM7=$(usex cpu_flags_arm_neon) -DBUILD_TESTING=$(usex test) -DHWY_WARNINGS_ARE_ERRORS=OFF )