mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-29 21:41:15 +02:00
gnu: recutils: Fix build with GCC 14.
Fixes: guix/guix#1353. * gnu/packages/databases.scm (recutils)[arguments]<#:configure-flags>: Add -Wno-error=implicit-function-declaration and -Wno-error=incompatible-pointer-types. Change-Id: Id9169dec7fc02c181125986960a9d6be657c8517
This commit is contained in:
@@ -1910,7 +1910,11 @@ organized in a hash table or B+ tree.")
|
||||
#~(list "--disable-static"
|
||||
(string-append "--with-bash-headers="
|
||||
(search-input-directory %build-inputs
|
||||
"include/bash")))
|
||||
"include/bash"))
|
||||
;; Add CFLAGS to relax gcc-14's strictness.
|
||||
(string-append "CFLAGS=-g -O2"
|
||||
" -Wno-error=implicit-function-declaration"
|
||||
" -Wno-error=incompatible-pointer-types"))
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'install 'symlink-bash-loadables
|
||||
|
||||
Reference in New Issue
Block a user