1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

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
Signed-off-by: Andreas Enge <andreas@enge.fr>
This commit is contained in:
Zheng Junjie
2025-07-13 14:21:38 +08:00
committed by Andreas Enge
parent 3dc7044969
commit dbeb5fcf43

View File

@@ -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")