mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: icedtea-8: Fix build with gcc-14.
* gnu/packages/java.scm (icedtea-8)[arguments]: Extend CFLAGS to relax gcc-14's strictness. Change-Id: Ia7a53bfd1649c54505d7d2d033f9e984c531da90
This commit is contained in:
parent
cd352d551e
commit
efb3675fd3
1 changed files with 5 additions and 1 deletions
|
@ -744,7 +744,11 @@ IcedTea build harness.")
|
||||||
(srfi srfi-26)))
|
(srfi srfi-26)))
|
||||||
((#:configure-flags flags)
|
((#:configure-flags flags)
|
||||||
`(let ((jdk (assoc-ref %build-inputs "jdk")))
|
`(let ((jdk (assoc-ref %build-inputs "jdk")))
|
||||||
`("CFLAGS=-fcommon"
|
`(,(string-append "CFLAGS=-fcommon"
|
||||||
|
" -Wno-error=implicit-function-declaration"
|
||||||
|
" -Wno-error=implicit-int"
|
||||||
|
" -Wno-error=incompatible-pointer-types"
|
||||||
|
" -Wno-error=int-conversion")
|
||||||
"CXXFLAGS=-fcommon"
|
"CXXFLAGS=-fcommon"
|
||||||
"--enable-bootstrap"
|
"--enable-bootstrap"
|
||||||
"--enable-nss"
|
"--enable-nss"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue