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 D0FA81581C1 for ; Wed, 17 Jul 2024 04:38:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 89527E2B32; Wed, 17 Jul 2024 04:38: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 6990BE2B32 for ; Wed, 17 Jul 2024 04:38: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 3B38B341B52 for ; Wed, 17 Jul 2024 04:38:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 580471E38 for ; Wed, 17 Jul 2024 04:38:15 +0000 (UTC) From: "Viorel Munteanu" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Viorel Munteanu" Message-ID: <1721191071.8bbb8f7a4cfdae2de325b7d647a8851f9092cf99.ceamac@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/simdjson/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/simdjson/simdjson-3.6.3.ebuild dev-libs/simdjson/simdjson-3.9.1.ebuild dev-libs/simdjson/simdjson-3.9.3.ebuild dev-libs/simdjson/simdjson-3.9.4.ebuild X-VCS-Directories: dev-libs/simdjson/ X-VCS-Committer: ceamac X-VCS-Committer-Name: Viorel Munteanu X-VCS-Revision: 8bbb8f7a4cfdae2de325b7d647a8851f9092cf99 X-VCS-Branch: master Date: Wed, 17 Jul 2024 04: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: cfbf5c1f-c829-47e3-9193-11b543fa063e X-Archives-Hash: 2dfc6bb18b666e2ae2642d28e37044a0 commit: 8bbb8f7a4cfdae2de325b7d647a8851f9092cf99 Author: Matoro Mahri matoro tk> AuthorDate: Tue Jul 16 23:12:44 2024 +0000 Commit: Viorel Munteanu gentoo org> CommitDate: Wed Jul 17 04:37:51 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bbb8f7a dev-libs/simdjson: disable optimizations on x86 The "westmere", "haswell", and "icelake" optimizations all assume 64-bit. Closes: https://bugs.gentoo.org/934642 Signed-off-by: Matoro Mahri matoro.tk> Signed-off-by: Viorel Munteanu gentoo.org> dev-libs/simdjson/simdjson-3.6.3.ebuild | 2 +- dev-libs/simdjson/simdjson-3.9.1.ebuild | 2 +- dev-libs/simdjson/simdjson-3.9.3.ebuild | 2 +- dev-libs/simdjson/simdjson-3.9.4.ebuild | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-libs/simdjson/simdjson-3.6.3.ebuild b/dev-libs/simdjson/simdjson-3.6.3.ebuild index 5b14f6ee1759..a169af083a24 100644 --- a/dev-libs/simdjson/simdjson-3.6.3.ebuild +++ b/dev-libs/simdjson/simdjson-3.6.3.ebuild @@ -85,7 +85,7 @@ src_configure() { if use all-impls; then local -a impls=("fallback") - if use amd64 || use x86; then + if use amd64; then impls+=("westmere" "haswell" "icelake") elif use arm64; then impls+=("arm64") diff --git a/dev-libs/simdjson/simdjson-3.9.1.ebuild b/dev-libs/simdjson/simdjson-3.9.1.ebuild index 0702c1b700bf..8dc1810d9226 100644 --- a/dev-libs/simdjson/simdjson-3.9.1.ebuild +++ b/dev-libs/simdjson/simdjson-3.9.1.ebuild @@ -86,7 +86,7 @@ src_configure() { if use all-impls; then local -a impls=("fallback") - if use amd64 || use x86; then + if use amd64; then impls+=("westmere" "haswell" "icelake") elif use arm64; then impls+=("arm64") diff --git a/dev-libs/simdjson/simdjson-3.9.3.ebuild b/dev-libs/simdjson/simdjson-3.9.3.ebuild index 1936e556eb93..613f210c0376 100644 --- a/dev-libs/simdjson/simdjson-3.9.3.ebuild +++ b/dev-libs/simdjson/simdjson-3.9.3.ebuild @@ -86,7 +86,7 @@ src_configure() { if use all-impls; then local -a impls=("fallback") - if use amd64 || use x86; then + if use amd64; then impls+=("westmere" "haswell" "icelake") elif use arm64; then impls+=("arm64") diff --git a/dev-libs/simdjson/simdjson-3.9.4.ebuild b/dev-libs/simdjson/simdjson-3.9.4.ebuild index 1936e556eb93..613f210c0376 100644 --- a/dev-libs/simdjson/simdjson-3.9.4.ebuild +++ b/dev-libs/simdjson/simdjson-3.9.4.ebuild @@ -86,7 +86,7 @@ src_configure() { if use all-impls; then local -a impls=("fallback") - if use amd64 || use x86; then + if use amd64; then impls+=("westmere" "haswell" "icelake") elif use arm64; then impls+=("arm64")