Closed knst closed 1 year ago
Macros MINSIGSTKSZ is not a const anymore in glibc 2.35, but a function call
MINSIGSTKSZ
It causes this error:
error: call to non-‘constexpr’ function ‘long int sysconf(int)’ 10822 | static constexpr std::size_t sigStackSize = 32768 >= MINSIGSTKSZ ? 32768 : MINSIGSTKSZ;
Alternate solution to update catch2 library to version 2.13.5 or newer: https://github.com/catchorg/Catch2/blob/devel/docs/release-notes.md#2135
Thanks! Implemented your suggestion (an alternate solution) in #57. Pls test!
not needed due to #57
Macros
MINSIGSTKSZ
is not a const anymore in glibc 2.35, but a function callIt causes this error:
Alternate solution to update catch2 library to version 2.13.5 or newer: https://github.com/catchorg/Catch2/blob/devel/docs/release-notes.md#2135