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

commit 04223cbda69c46356841df179d5e2b1eb4657f85
Author: Zheng Junjie <[email protected]>
AuthorDate: Sun Jul 13 14:21:38 2025 +0800

    gnu: c-rrb: Fix build with gcc 14.
    
    * gnu/packages/c.scm (c-rrb)[arguments]: Add CFLAGS to fix build with gcc 
14.
    
    Change-Id: Ib69e8086e893aae659c04b872fa8d144ca5955c7
---
 gnu/packages/c.scm | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/gnu/packages/c.scm b/gnu/packages/c.scm
index 02471acda4..1b097b0552 100644
--- a/gnu/packages/c.scm
+++ b/gnu/packages/c.scm
@@ -133,6 +133,11 @@ reference manual.")
               (sha256
                (base32 
"0zmha3xi80vgdcwzb4vwdllf97dvggjpjfgahrpsb5f5qi3yshxa"))))
      (build-system gnu-build-system)
+     (arguments
+      (list #:configure-flags
+            #~(list (string-append
+                   "CFLAGS=-g -O2"
+                  " -Wno-error=incompatible-pointer-types"))))
      (inputs (list libgc))
      (native-inputs (list autoconf automake libtool))
      (home-page "https://github.com/hypirion/c-rrb";)

Reply via email to