diff options
author | Janneke Nieuwenhuizen <janneke@gnu.org> | 2024-12-31 22:30:11 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:18 +0200 |
commit | 23abb295ec2afe524dc1ade9e0a67116cad0659d (patch) | |
tree | 6689565819f7634ed027d50d48dc30f2def02275 | |
parent | a396a796a98fc1bf4dd397f4ca26b7fb3f021dbe (diff) |
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
-rw-r--r-- | gnu/packages/audio.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 0f8d340810..488cc55357 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -5025,9 +5025,10 @@ control functionality, or just for playing around with the sound effects.") (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 |