janneke pushed a commit to branch core-packages-team
in repository guix.
commit 2cc4b2834ba19440b5770f03bd6c2da4b1f9fd41
Author: Janneke Nieuwenhuizen <[email protected]>
AuthorDate: Wed Jan 1 16:32:22 2025 +0100
gnu: zile: Fix build with gcc-14.
* gnu/packages/zile.scm (zile)[arguments]: Add #:configure-flags to relax
gcc-14's strictness.
Change-Id: I2d5551a272392ce0084969dd49300682789da470
---
gnu/packages/zile.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/zile.scm b/gnu/packages/zile.scm
index eea6262773..3adf470853 100644
--- a/gnu/packages/zile.scm
+++ b/gnu/packages/zile.scm
@@ -5,6 +5,7 @@
;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice <[email protected]>
;;; Copyright © 2020 Marius Bakke <[email protected]>
;;; Copyright © 2021 Matthew James Kraai <[email protected]>
+;;; Copyright © 2025 Janneke Nieuwenhuizen <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -55,7 +56,9 @@
"1h2pxsp5rdkr2i4akfpayv19had3yf3226kyf38461j9rf2lpm6m"))))
(build-system gnu-build-system)
(arguments
- `(#:phases
+ `(#:configure-flags
+ '("CFLAGS=-g -O2 -Wno-error=incompatible-pointer-types")
+ #:phases
(modify-phases %standard-phases
(add-before 'configure 'patch-/bin/sh
(lambda* (#:key inputs #:allow-other-keys)