mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 06:37:08 +01: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 @@ (define-public icedtea-8
|
|||
"--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…
Reference in a new issue