mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
gnu: sox: Fix build with gcc-14.
* gnu/packages/audio.scm (sox)[arguments]: Add CFLAGS to #:configure-flags to relax gcc-14's strictness. Change-Id: Iaf4dd1bd066f18fe98fb6f1d7efb2304f011e08a
This commit is contained in:
parent
16596f09dd
commit
7e9e1714fa
1 changed files with 4 additions and 3 deletions
|
@ -4398,9 +4398,10 @@ (define-public sox
|
|||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:configure-flags
|
||||
;; The upstream asks to identify the distribution to diagnose SoX
|
||||
;; bug reports.
|
||||
'("--with-distro=Guix System Distribution")))
|
||||
'("CFLAGS=-g -O2 -Wno-error=implicit-function-declaration"
|
||||
;; Upstream asks to identify the distribution to diagnose SoX
|
||||
;; bug reports.
|
||||
"--with-distro=Guix System Distribution")))
|
||||
(native-inputs
|
||||
(list pkg-config))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue