janneke pushed a commit to branch core-packages-team-old in repository guix.
commit b095b844f0a8ca90a9e6b04b8377a8979ebe451d Author: Janneke Nieuwenhuizen <jann...@gnu.org> AuthorDate: Tue Dec 3 19:49:03 2024 +0100 gnu: bash-minimal: Fix build for x86-linux with gcc-14. * gnu/packages/bash-minimal.scm (bash)[arguments]: When building for x86-linux, also use "CFLAGS=-g -O2 -Wno-implicit-function-declaration". Change-Id: I21af1acdc550c83e63241811a6586598f187b2ef --- gnu/packages/bash.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/bash.scm b/gnu/packages/bash.scm index 642a405985..88133469bf 100644 --- a/gnu/packages/bash.scm +++ b/gnu/packages/bash.scm @@ -266,7 +266,9 @@ without modification.") ;; modules and related code. "ac_cv_func_dlopen=no" - ,@(if (or (target-hurd64?) (%current-target-system)) + ,@(if (or (target-hurd64?) + (%current-target-system) + (and (target-x86?) (target-linux?))) ;; gcc-14 implictly uses -Wimplicit-function-declaration ;; which together with -Werror causes: ;; ./enable.def:492:11: error: implicit declaration of function ‘dlclose’;