andreas pushed a commit to branch core-packages-team
in repository guix.

commit 81c410385ab80078361878ef02de55760b12d6f5
Author: Janneke Nieuwenhuizen <jann...@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 2ce1619bfb..cec7c76140 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"

Reply via email to