mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 12:05:19 -06:00
gnu: mcpp: Fix build with gcc@14.
* gnu/packages/cpp.scm (mcpp)[arguments]<#:configure-flags>: Add CFLAGS to declare warnings as non-errors. Change-Id: Iade7774aedb52be59b5a62903825518a001bc641 Signed-off-by: Andreas Enge <andreas@enge.fr>
This commit is contained in:
parent
4962cb0ad2
commit
2f274c57f2
1 changed files with 6 additions and 1 deletions
|
|
@ -2611,7 +2611,12 @@ conversions to and from strings, iteration and related functionality.")
|
|||
"0r48rfghjm90pkdyr4khxg783g9v98rdx2n69xn8f6c5i0hl96rv"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
(list #:configure-flags #~(list "--enable-mcpplib" "--disable-static")))
|
||||
(list #:configure-flags
|
||||
#~(list "--enable-mcpplib"
|
||||
"--disable-static"
|
||||
(string-append "CFLAGS=-g -O2"
|
||||
" -Wno-error=incompatible-pointer-types"
|
||||
" -Wno-error=implicit-function-declaration"))))
|
||||
(home-page "https://mcpp.sourceforge.net/")
|
||||
(synopsis "C/C++ preprocessor")
|
||||
(description
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue