mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-06 21:20:33 +02:00
gnu: icedtea-8: Fix building on powerpc-linux.
* gnu/packages/java.scm (icedtea-8)[arguments]: When building for powerpc-linux add a configure-flag to skip the java flight recorder. Change-Id: I3b9e137c82766507c46ba7a54dff64c3c50c3685
This commit is contained in:
committed by
Ludovic Courtès
parent
8fbae8edf9
commit
71aef8cbcd
@@ -744,6 +744,10 @@ IcedTea build harness.")
|
||||
"--enable-nss"
|
||||
,(string-append "--with-parallel-jobs="
|
||||
(number->string (parallel-job-count)))
|
||||
;; Java Flight Recorder isn't supported on some architectures.
|
||||
,@(if ,(target-ppc32?)
|
||||
`("--enable-jfr=no")
|
||||
'())
|
||||
"--disable-downloading"
|
||||
"--disable-system-pcsc"
|
||||
"--disable-system-sctp"
|
||||
|
||||
Reference in New Issue
Block a user