mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: hurd: Fix build with gcc-14.
* gnu/packages/hurd.scm (hurd)[arguments]: In phase "build-libdde-linux", disable some warnings breaking the build, using "WARNINGS=...". Change-Id: Ib70926a90e1d37080c5b9dd333f19636cdae3013
This commit is contained in:
parent
ef15b48379
commit
ee8a9cdcf3
1 changed files with 6 additions and 0 deletions
|
@ -478,6 +478,12 @@ (define-public hurd
|
|||
"/bin/bash")
|
||||
(string-append "CC="
|
||||
,(cc-for-target))
|
||||
(string-append "WARNINGS="
|
||||
" -Wno-declaration-missing-parameter-type"
|
||||
" -Wno-implicit-function-declaration"
|
||||
" -Wno-implicit-int"
|
||||
" -Wno-int-conversion"
|
||||
" -Wno-strict-prototypes")
|
||||
"ARCH=x86")))
|
||||
(add-after 'install 'install-goodies
|
||||
(lambda* (#:key inputs native-inputs outputs #:allow-other-keys)
|
||||
|
|
Loading…
Reference in a new issue