[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch core-packages-team updated: gnu: gucharmap: Fix build with gcc-14
From: |
guix-commits |
Subject: |
branch core-packages-team updated: gnu: gucharmap: Fix build with gcc-14. |
Date: |
Sun, 05 Jan 2025 06:04:30 -0500 |
This is an automated email from the git hooks/post-receive script.
janneke pushed a commit to branch core-packages-team
in repository guix.
The following commit(s) were added to refs/heads/core-packages-team by this
push:
new 0824027b5b gnu: gucharmap: Fix build with gcc-14.
0824027b5b is described below
commit 0824027b5b95f4e8a090d3aa8ea7ff3576e11dc7
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Sun Jan 5 12:03:38 2025 +0100
gnu: gucharmap: Fix build with gcc-14.
* gnu/packages/gnome.scm (gucharmap)[argument]: Add CFLAGS to
#:configure-flags
to relax gcc-14's strictness.
Change-Id: I234d21da13a688029e306a793d5348e17c6c9042
---
gnu/packages/gnome.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 712dfc5902..5364679208 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -11272,7 +11272,9 @@ basically a text box in which notes can be written.")
(guix build glib-or-gtk-build-system)
(guix build utils))
#:configure-flags
- (list "--with-unicode-data=../unicode-data")
+ (list
+ "CFLAGS=-g -O2 -Wno-error=incompatible-pointer-types"
+ "--with-unicode-data=../unicode-data")
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'prepare-unicode-data
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch core-packages-team updated: gnu: gucharmap: Fix build with gcc-14.,
guix-commits <=