diff options
author | Marius Bakke <marius@gnu.org> | 2022-08-11 23:36:10 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-08-11 23:36:10 +0200 |
commit | 77eb3008e350c069e0ae8df6a91bf0ebdcfc2ac0 (patch) | |
tree | b899e65aa79099be3f4b27dfcd565bb143681211 /gnu/packages/check.scm | |
parent | f7e8be231806a904e6817e8ab3404b32f2511db2 (diff) | |
parent | b50eaa67642ebc25e9c896f2e700c08610e0a5da (diff) | |
download | guix-77eb3008e350c069e0ae8df6a91bf0ebdcfc2ac0.tar.gz |
Merge branch 'staging' into core-updates
Diffstat (limited to 'gnu/packages/check.scm')
-rw-r--r-- | gnu/packages/check.scm | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 962dff9ae7..aa7dd41af4 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -452,7 +452,16 @@ multi-paradigm automated test framework for C++ and Objective-C.") (file-name (git-file-name name version)) (sha256 (base32 - "1gdp5wm8khn02g2miz381llw3191k7309qj8s3jd6sasj01rhf23")))) + "1gdp5wm8khn02g2miz381llw3191k7309qj8s3jd6sasj01rhf23")) + (modules '((guix build utils))) + (snippet + '(substitute* '("include/internal/catch_fatal_condition.hpp" + "single_include/catch.hpp") + ;; In glibc 2.34 and later, SIGSTKSZ is no longer a + ;; compile-time constant. Hard code a reasonably large + ;; value. + (("SIGSTKSZ") + "32768"))))) (build-system cmake-build-system) (synopsis "Automated test framework for C++ and Objective-C") (description "Catch2 stands for C++ Automated Test Cases in Headers and is |