Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion include/boost/math/tools/config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,8 @@ namespace boost{ namespace math{
//
// When running windows-2022 or 2025 we see this issue again with GCC 12 and 14
//
#if (defined(__MINGW32__) && ((__GNUC__ < 9) || (__GNUC__ >= 12)) && !defined(__clang__))
// See Also: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83562#c6
#if (defined(__MINGW32__) && ((__GNUC__ < 9) || ((__GNUC__ >= 12) && __GNUC__ < 15 )) && !defined(__clang__))
# define BOOST_MATH_NO_THREAD_LOCAL_WITH_NON_TRIVIAL_TYPES
#endif

Expand Down
Loading