diff options
author | Janneke Nieuwenhuizen <janneke@gnu.org> | 2024-12-08 13:09:32 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:12 +0200 |
commit | 8df0a32579a79e188c7b4fd1d6c6e07474d0f3e1 (patch) | |
tree | 6efb32bba9714602311058318d83fcfca3c07832 | |
parent | df3664f15514871a9e6712bb8e9e33bf01bbf825 (diff) |
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
-rw-r--r-- | gnu/packages/cmake.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/cmake.scm b/gnu/packages/cmake.scm index 95820f013a..608080954f 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" |