From 8719b9c5bc1a97e62d675c02495ed72dda6fae73 Mon Sep 17 00:00:00 2001 From: Antonio Sánchez Date: Thu, 28 May 2020 17:40:15 +0000 Subject: Disable test for 32-bit systems (e.g. ARM, i386) Both i386 and 32-bit ARM do not define __uint128_t. On most systems, if __uint128_t is defined, then so is the macro __SIZEOF_INT128__. https://stackoverflow.com/questions/18531782/how-to-know-if-uint128-t-is-defined1 --- unsupported/test/cxx11_tensor_uint128.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'unsupported/test/cxx11_tensor_uint128.cpp') diff --git a/unsupported/test/cxx11_tensor_uint128.cpp b/unsupported/test/cxx11_tensor_uint128.cpp index 07691df98..46fceaa19 100644 --- a/unsupported/test/cxx11_tensor_uint128.cpp +++ b/unsupported/test/cxx11_tensor_uint128.cpp @@ -12,7 +12,7 @@ #include -#if EIGEN_COMP_MSVC +#if EIGEN_COMP_MSVC || !defined(__SIZEOF_INT128__) #define EIGEN_NO_INT128 #else typedef __uint128_t uint128_t; -- cgit v1.2.3