diff options
author | Zheng Junjie <z572@z572.online> | 2025-07-13 14:21:38 +0800 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:52 +0200 |
commit | dbeb5fcf43dfbe2a81b2b10d03a635212cbd29ce (patch) | |
tree | d83de0d462d43ce800beafdb1f5e33f1f4d5eb25 | |
parent | 3dc7044969b3651575098aee17c8d7a0582d361e (diff) |
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>
-rw-r--r-- | gnu/packages/c.scm | 5 |
1 files changed, 5 insertions, 0 deletions
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") |