janneke pushed a commit to branch core-packages-team
in repository guix.
commit 895ec9f04f0a92ceb9cac3be457520096d7871bc
Author: Janneke Nieuwenhuizen <[email protected]>
AuthorDate: Sun Dec 8 13:09:32 2024 +0100
gnu: cmake-bootstrap: Fix build with gcc-14.
Apparently cmake-minimal cannot be updated because of the introducion of a
circular cppdap dependency.
* gnu/packages/cmake.scm (%common-disabled-tests): Add failing "LoadCommand"
and "LoadedCommandOneConfig" tests.
Change-Id: Ic71aa92c327f7853248748d6eab4db9309c90408
---
gnu/packages/cmake.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/cmake.scm b/gnu/packages/cmake.scm
index 1ddcfa4d80..5cf6eba7bd 100644
--- a/gnu/packages/cmake.scm
+++ b/gnu/packages/cmake.scm
@@ -146,7 +146,10 @@ using the CMake build system.")
;; This test requires 'ldconfig' which is not available in Guix.
"RunCMake.install"
;; This test fails for unknown reason.
- "RunCMake.file-GET_RUNTIME_DEPENDENCIES"))
+ "RunCMake.file-GET_RUNTIME_DEPENDENCIES"
+ ;; These tests fail with gcc-14.
+ "LoadCommand"
+ "LoadedCommandOneConfig"))
(define %common-disabled-tests/hurd
'("CTestTestTimeout"