[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
40/237: gnu: jack-1: Fix build with gcc-14.
From: |
guix-commits |
Subject: |
40/237: gnu: jack-1: Fix build with gcc-14. |
Date: |
Fri, 24 Jan 2025 11:06:26 -0500 (EST) |
janneke pushed a commit to branch core-packages-team
in repository guix.
commit 47ca3d5655e4c9a01c243a265d8e476d08741a5e
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Wed Dec 11 12:34:53 2024 +0100
gnu: jack-1: Fix build with gcc-14.
* gnu/packages/audio.scm (jack-1)[arguments]: Add CFLAGS to
#:configure-flags
to relax gcc-14's strictness.
Change-Id: Id4506b072e7651991be54f119645d7842757ed0b
---
gnu/packages/audio.scm | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 76b16bc0fd..86420504b2 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -50,6 +50,7 @@
;;; Copyright © 2024 mio <stigma@disroot.org>
;;; Copyright © 2024 Nikita Domnitskii <nikita@domnitskii.me>
;;; Copyright © 2024 Roman Scherer <roman@burningswell.com>
+;;; Copyright © 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -2652,13 +2653,14 @@ especially for creating reverb effects. It supports
impulse responses with 1,
(base32 "0i6l25dmfk2ji2lrakqq9icnwjxklgcjzzk65dmsff91z2zva5rm"))))
(build-system gnu-build-system)
(arguments
- `(#:phases (modify-phases %standard-phases
+ `(#:configure-flags
+ '("CFLAGS=-g -O2 -Wno-error=incompatible-pointer-types")
+ #:phases (modify-phases %standard-phases
(add-after 'unpack 'patch-configure
(lambda _
(substitute* "configure"
;; Install to <out/lib> regardless of platform.
- (("libnn=lib64") "libnn=lib"))
- #t)))))
+ (("libnn=lib64") "libnn=lib")))))))
(inputs
(list alsa-lib readline))
;; uuid.h is included in the JACK type headers
- 225/237: gnu: gcc: Update gcc, gcc-toolchain, libgccjit to 14., (continued)
- 225/237: gnu: gcc: Update gcc, gcc-toolchain, libgccjit to 14., guix-commits, 2025/01/24
- 227/237: gnu: clang-runtime-18: Build with gcc-12., guix-commits, 2025/01/24
- 226/237: gnu: clang-runtime: Remove gcc-12, 13, 14 from native-inputs., guix-commits, 2025/01/24
- 231/237: gnu: gettext: Update to 0.23.1., guix-commits, 2025/01/24
- 229/237: gnu: clang-runtime-17: Build with gcc-13., guix-commits, 2025/01/24
- 233/237: gexp: Improve support of Unicode characters., guix-commits, 2025/01/24
- 234/237: gexp: Attempt to set LC_CTYPE in compiled-modules., guix-commits, 2025/01/24
- 235/237: doc: Update arguments for gexp procedures., guix-commits, 2025/01/24
- 23/237: gnu: guile-lzlib: Fix build with gcc-14., guix-commits, 2025/01/24
- 25/237: gnu: python-lxml: Update to 5.2.2; fixes build with gcc-14., guix-commits, 2025/01/24
- 40/237: gnu: jack-1: Fix build with gcc-14.,
guix-commits <=
- 33/237: gnu: localed: Fix build with gcc-14., guix-commits, 2025/01/24
- 53/237: gnu: slim: Fix build with gcc-14., guix-commits, 2025/01/24
- 43/237: gnu: gn: Fix build with gcc-14., guix-commits, 2025/01/24
- 65/237: gnu: bootstrap: %bootstrap-glibc: Fix linking on armhf-linux., guix-commits, 2025/01/24
- 52/237: gnu: talloc: Update to 2.4.2; fixes build with gcc-14., guix-commits, 2025/01/24
- 50/237: gnu: openblas: Update to 0.3.28; fixes build with gcc-14., guix-commits, 2025/01/24
- 58/237: gnu: netdde: Use -Wno-error=., guix-commits, 2025/01/24
- 47/237: gnu: tdb: Update to 1.4.12; fixes build with gcc-14., guix-commits, 2025/01/24
- 56/237: gnu: flex: Use -Wno-error= for cross-build., guix-commits, 2025/01/24
- 57/237: gnu: hurd: Use -Wno-error=., guix-commits, 2025/01/24