andreas pushed a commit to branch core-packages-team
in repository guix.

commit e92e6ae0fee506e924f3e20b63acdaa58b6e5b83
Author: Janneke Nieuwenhuizen <jann...@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 ae52e6798d..2d47e9cfa1 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -11500,7 +11500,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

Reply via email to