X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f3b7e5f4b4d7c87ee3e8827313ec966ea8fc8387..d98472e07969685a4f8f69af3f748e4c6547bd17:/src/include/catch.hpp diff --git a/src/include/catch.hpp b/src/include/catch.hpp index 6c1756a6ce..170f46ce2c 100644 --- a/src/include/catch.hpp +++ b/src/include/catch.hpp @@ -10732,7 +10732,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" },