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 084E413835A for ; Wed, 7 Oct 2020 01:03:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 62963E09AB; Wed, 7 Oct 2020 01:03:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 4C478E09A8 for ; Wed, 7 Oct 2020 01:03:41 +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 541B0340E27 for ; Wed, 7 Oct 2020 01:03:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 022D138C for ; Wed, 7 Oct 2020 01:03:39 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1602032612.8a42266d2f49c728e16c39c688a8eb8e633d4fb6.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/spidermonkey/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/spidermonkey/spidermonkey-78.3.1.ebuild X-VCS-Directories: dev-lang/spidermonkey/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 8a42266d2f49c728e16c39c688a8eb8e633d4fb6 X-VCS-Branch: master Date: Wed, 7 Oct 2020 01:03:39 +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: bfaff04d-0481-48d2-a74c-4e65f3b96686 X-Archives-Hash: 7549c9c5508568d264fad14eb89fd6a2 commit: 8a42266d2f49c728e16c39c688a8eb8e633d4fb6 Author: Thomas Deutschmann gentoo org> AuthorDate: Wed Oct 7 01:00:01 2020 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Wed Oct 7 01:03:32 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a42266d dev-lang/spidermonkey: enable SIMD in Rust code Signed-off-by: Thomas Deutschmann gentoo.org> dev-lang/spidermonkey/spidermonkey-78.3.1.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-lang/spidermonkey/spidermonkey-78.3.1.ebuild b/dev-lang/spidermonkey/spidermonkey-78.3.1.ebuild index beec6244426..a0ec34c118f 100644 --- a/dev-lang/spidermonkey/spidermonkey-78.3.1.ebuild +++ b/dev-lang/spidermonkey/spidermonkey-78.3.1.ebuild @@ -160,6 +160,10 @@ src_configure() { $(use_enable test tests) ) + if ! use x86 && [[ ${CHOST} != armv*h* ]] ; then + myeconfargs+=( --enable-rust-simd ) + fi + # Modifications to better support ARM, bug 717344 if use cpu_flags_arm_neon ; then myeconfargs+=( --with-fpu=neon )