mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00: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:
parent
30cc04367f
commit
0bae6e3586
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue