6502666
From d1343f28dcbe25b100b082b34775bd92ead4602c Mon Sep 17 00:00:00 2001
6502666
From: jzmaddock <john@johnmaddock.co.uk>
6502666
Date: Tue, 25 Jan 2022 09:27:40 +0000
6502666
Subject: [PATCH] Update gcc Intel intrinsic usage config. Fixes
6502666
 https://github.com/boostorg/multiprecision/issues/419.
6502666
6502666
---
6502666
 include/boost/multiprecision/cpp_int/intel_intrinsics.hpp | 6 +++++-
6502666
 1 file changed, 5 insertions(+), 1 deletion(-)
6502666
6502666
diff --git a/include/boost/multiprecision/cpp_int/intel_intrinsics.hpp b/include/boost/multiprecision/cpp_int/intel_intrinsics.hpp
6502666
index eb4624bb4..37717cd51 100644
6502666
--- a/include/boost/multiprecision/cpp_int/intel_intrinsics.hpp
6502666
+++ b/include/boost/multiprecision/cpp_int/intel_intrinsics.hpp
6502666
@@ -19,7 +19,11 @@
6502666
 // If this is GCC/clang, then check that the actual intrinsic exists:
6502666
 //
6502666
 #if defined(__has_builtin) && defined(__GNUC__)
6502666
-#if !__has_builtin(__builtin_ia32_addcarryx_u64) && defined(BOOST_MP_HAS_IMMINTRIN_H) && !(defined(BOOST_GCC) && (__GNUC__ >= 9))
6502666
+#if !__has_builtin(__builtin_ia32_addcarryx_u64) && defined(BOOST_MP_HAS_IMMINTRIN_H) \
6502666
+   && !(defined(BOOST_GCC) && (__GNUC__ >= 9) \
6502666
+      && (defined(__amd64__) || defined(__amd64) || defined(__x86_64__) || defined(__x86_64)\
6502666
+          || defined(i386) || defined(__i386) || defined(__i386__) || defined(_M_AMD64) \
6502666
+          || defined(_M_X64) || defined(__amd64__) || defined(_M_X64)))
6502666
 #undef BOOST_MP_HAS_IMMINTRIN_H
6502666
 #endif
6502666
 #elif defined(BOOST_MP_HAS_IMMINTRIN_H) && defined(__GNUC__) && !(defined(BOOST_GCC) && (__GNUC__ >= 9))