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_gentoo@matoro.tk>
Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
This commit is contained in:
Matoro Mahri
2024-07-16 19:12:44 -04:00
committed by Viorel Munteanu
parent d80378e02e
commit 8bbb8f7a4c
4 changed files with 4 additions and 4 deletions

View File

@@ -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")

View File

@@ -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")

View File

@@ -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")

View File

@@ -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")