mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: pnet-git: Fix build with gcc 14.
* /gnu/packages/dotnet.scm (pnet-git)[arguments]<#:make-flags>: Add -Wno-error=implicit-function-declaration and -Wno-error=incompatible-pointer-types. Change-Id: Ifbeb5e07f1063d96a0bb9393dcc44daf5ee3f680 Signed-off-by: Zheng Junjie <z572@z572.online>
This commit is contained in:
parent
9bff5e0ecb
commit
5dc7e7a75d
1 changed files with 4 additions and 1 deletions
|
@ -166,7 +166,10 @@ code to handle abstract syntax trees and operations upon the trees.")
|
|||
(list #:configure-flags #~(list "--with-jit"))
|
||||
'())
|
||||
(list #:make-flags
|
||||
#~(list "CFLAGS=-O2 -g -Wno-pointer-to-int-cast"))))
|
||||
#~(list (string-append
|
||||
"CFLAGS=-O2 -g -Wno-pointer-to-int-cast"
|
||||
" -Wno-error=implicit-function-declaration"
|
||||
" -Wno-error=incompatible-pointer-types")))))
|
||||
(native-search-paths
|
||||
(list (search-path-specification
|
||||
(variable "CSCC_LIB_PATH")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue