From a273092bdb6b757c412b287843110f9ecfccb973 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Mon, 12 Dec 2022 15:27:38 -0500 Subject: [PATCH] Use x64 intrinsic header on x64, instead of simde since conflicts with plugins including x64 intrinsic headers. --- include/simd/common.hpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/include/simd/common.hpp b/include/simd/common.hpp index d5fda224..2a782681 100644 --- a/include/simd/common.hpp +++ b/include/simd/common.hpp @@ -1,4 +1,8 @@ #pragma once -#define SIMDE_ENABLE_NATIVE_ALIASES -#include +#ifdef __SSE4_2__ + #include +#else + #define SIMDE_ENABLE_NATIVE_ALIASES + #include +#endif