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

commit 0153e9ca19835d1d6d04a10cb6df853705a5e950
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 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"

Reply via email to