mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
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
This commit is contained in:
parent
d276930d8b
commit
ec4a2494c6
1 changed files with 4 additions and 1 deletions
|
@ -45,7 +45,10 @@ (define-public libunwind
|
|||
(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
|
||||
|
|
Loading…
Reference in a new issue