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 742b9c511a guile-gi: Fix buildi with gcc-14.
742b9c511a is described below
commit 742b9c511a16ffe180602401c8cc6bccbe372658
Author: Janneke Nieuwenhuizen <[email protected]>
AuthorDate: Sun Jan 5 13:34:57 2025 +0100
guile-gi: Fix buildi with gcc-14.
* gnu/packages/guile-xyz.scm (guile-gi)[arguments]: Add CFLAGS
to #:configure-flags to relax gcc-14's strictness.
Change-Id: I1aa6b2118f09e12e3ce06833e56d624fd047a9ae
---
gnu/packages/guile-xyz.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index fbf63302ea..b3fabf42a8 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -3649,7 +3649,8 @@ list of components. This module takes care of that for
you.")
"019mbhgyga57k2074kg97mh3qsa8ny9l0kjgqids8cg3c6vbjdby"))))
(build-system glib-or-gtk-build-system)
(arguments
- `(#:configure-flags '("--with-gnu-filesystem-hierarchy")
+ `(#:configure-flags '("CFLAGS=-Wno-error=incompatible-pointer-types"
+ "--with-gnu-filesystem-hierarchy")
#:modules ((guix build glib-or-gtk-build-system)
(guix build utils)
(ice-9 popen)