This is an automated email from the git hooks/post-receive script.
janneke pushed a commit to branch core-packages-team
in repository guix.
The following commit(s) were added to refs/heads/core-packages-team by this
push:
new 4935a80661 gnu: rumpkernel: Fix build with gcc-14.
4935a80661 is described below
commit 4935a8066168c3efc0520d132b6c6a3116eb5d54
Author: Yelninei <[email protected]>
AuthorDate: Fri May 9 08:01:19 2025 +0000
gnu: rumpkernel: Fix build with gcc-14.
* gnu/packages/hurd.scm (rumpkernel): Add
-Wno-error=implicit-function-declaration
for the HOST_CC
Change-Id: I4e86cd9900b56a904190e217c21bcfa279c12a5a
---
gnu/packages/hurd.scm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/gnu/packages/hurd.scm b/gnu/packages/hurd.scm
index 4794c8c376..7dc2519c3c 100644
--- a/gnu/packages/hurd.scm
+++ b/gnu/packages/hurd.scm
@@ -850,6 +850,9 @@ in userland processes thanks to the DDE layer.")
" -DNO_PCI_MSI_MSIX=yes"
" -DNUSB_DMA=1"
" -DPAE")
+ "-V" (string-append
+ "HOST_CFLAGS=-O"
+ " -Wno-error=implicit-function-declaration")
"-V" (string-append
"CWARNFLAGS="
" -Wno-error=maybe-uninitialized"