Tentative fix for issue 376.

Fixes: https://github.com/boostorg/config/issues/376.
This commit is contained in:
jzmaddock
2021-03-19 17:37:28 +00:00
parent 8039cb27c1
commit 45100b9c04

View File

@ -166,6 +166,13 @@
#elif __has_include(<array>)
# define BOOST_LIBSTDCXX_VERSION 40300
#endif
//
// If BOOST_HAS_FLOAT128 is set, now that we know the std lib is libstdc++3, check to see if the std lib is
// configured to support this type. If not disable it:
//
#if defined(BOOST_HAS_FLOAT128) && !defined(_GLIBCXX_USE_FLOAT128)
# undef BOOST_HAS_FLOAT128
#endif
#if (BOOST_LIBSTDCXX_VERSION >= 100000) && defined(BOOST_HAS_HASH)
//