mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00: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:
parent
8fbae8edf9
commit
71aef8cbcd
1 changed files with 4 additions and 0 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue