[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/05: gnu: cmake-bootstrap: Fix build with gcc-14.
From: |
guix-commits |
Subject: |
04/05: gnu: cmake-bootstrap: Fix build with gcc-14. |
Date: |
Sun, 8 Dec 2024 08:24:13 -0500 (EST) |
janneke pushed a commit to branch core-packages-team
in repository guix.
commit ba77cca4ec48ce147f75bd238c686d5a7bb6f85c
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
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 8310dc55fa..e2cec04946 100644
--- a/gnu/packages/cmake.scm
+++ b/gnu/packages/cmake.scm
@@ -141,7 +141,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"