From c7a22c9bac2233939a6086b0e7faa134b49ef88f Mon Sep 17 00:00:00 2001 From: Edward Diener Date: Fri, 10 Apr 2020 11:56:41 -0400 Subject: [PATCH] Embarcadero C++ clang-based compilers can not handle multiprecision comparisons in lightwieght tests, but gives a linker error. This has been reported to Embarcadero as a bug. --- test/multiprecision_config.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/multiprecision_config.hpp b/test/multiprecision_config.hpp index e423111..623d847 100644 --- a/test/multiprecision_config.hpp +++ b/test/multiprecision_config.hpp @@ -11,7 +11,8 @@ #if (defined(BOOST_MSVC) && (BOOST_MSVC < 1500)) || \ (defined(__clang_major__) && (__clang_major__ == 3) && (__clang_minor__ < 2)) || \ - (defined(BOOST_GCC) && defined(BOOST_GCC_CXX11) && BOOST_GCC < 40800) + (defined(BOOST_GCC) && defined(BOOST_GCC_CXX11) && BOOST_GCC < 40800) || \ + defined(BOOST_EMBTC) #define DISABLE_MP_TESTS #endif