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 fd72883b33 gnu: libunwind: Fix build with gcc-14 for i686-linux.
fd72883b33 is described below
commit fd72883b338d94efc12e99f7e3ac28182d322c0c
Author: Janneke Nieuwenhuizen <[email protected]>
AuthorDate: Sun Jan 5 16:14:00 2025 +0100
gnu: libunwind: Fix build with gcc-14 for i686-linux.
* gnu/packages/libunwind.scm (libunwind)[arguments]: Extend CFLAGS to relax
gcc-14's strictness even further.
Change-Id: Idafb16976442b3452b16cd993fbaec0655a61af5
---
gnu/packages/libunwind.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/libunwind.scm b/gnu/packages/libunwind.scm
index 3cf42e7939..53dbf8a0a9 100644
--- a/gnu/packages/libunwind.scm
+++ b/gnu/packages/libunwind.scm
@@ -45,7 +45,10 @@
(arguments
(list
#:configure-flags
- #~(list "CFLAGS=-g -O2 -Wno-error=implicit-function-declaration")
+ #~(list #$(string-append
+ "CFLAGS=-g -O2"
+ " -Wno-error=implicit-function-declaration"
+ " -Wno-error=incompatible-pointer-types"))
;; Two tests are failing with newer toolchains:
;; https://github.com/libunwind/libunwind/issues/363
#:make-flags