gnu: pcre: Don't enable jit on powerpc-linux.

* gnu/packages/pcre.scm (pcre)[arguments]: When building for
powerpc-linux don't enable jit.
This commit is contained in:
Efraim Flashner 2021-10-03 15:06:25 +03:00
parent f531c977a1
commit af823dc65f
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -55,7 +55,7 @@ (define-public pcre
("readline" ,readline)
("zlib" ,zlib)))
(arguments
'(#:disallowed-references ("doc")
`(#:disallowed-references ("doc")
#:configure-flags '("--enable-utf"
"--enable-pcregrep-libz"
"--enable-pcregrep-libbz2"
@ -63,7 +63,10 @@ (define-public pcre
"--enable-unicode-properties"
"--enable-pcre16"
"--enable-pcre32"
"--enable-jit")
;; pcretest fails on powerpc32.
,@(if (target-ppc32?)
'()
`("--enable-jit")))
#:phases (modify-phases %standard-phases
(add-after 'install 'move-static-libs
(lambda* (#:key outputs #:allow-other-keys)