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:
parent
f531c977a1
commit
af823dc65f
1 changed files with 5 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue