mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-07 11:29:59 +01: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
c6b793a043
commit
372e608b3b
1 changed files with 5 additions and 1 deletions
|
@ -743,7 +743,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
Reference in a new issue