diff --git a/tests/catch2/catch.hpp b/tests/catch2/catch.hpp index 282d1562c83..a8c71c86427 100644 --- a/tests/catch2/catch.hpp +++ b/tests/catch2/catch.hpp @@ -10819,7 +10819,8 @@ namespace Catch { // 32kb for the alternate stack seems to be sufficient. However, this value // is experimentally determined, so that's not guaranteed. - static constexpr std::size_t sigStackSize = 32768 >= MINSIGSTKSZ ? 32768 : MINSIGSTKSZ; + // Update: MINSIGSTKSZ is not const anymore with recent glibc + static constexpr std::size_t sigStackSize = 32768; static SignalDefs signalDefs[] = { { SIGINT, "SIGINT - Terminal interrupt signal" },