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 @@
|
||||||
("readline" ,readline)
|
("readline" ,readline)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
(arguments
|
(arguments
|
||||||
'(#:disallowed-references ("doc")
|
`(#:disallowed-references ("doc")
|
||||||
#:configure-flags '("--enable-utf"
|
#:configure-flags '("--enable-utf"
|
||||||
"--enable-pcregrep-libz"
|
"--enable-pcregrep-libz"
|
||||||
"--enable-pcregrep-libbz2"
|
"--enable-pcregrep-libbz2"
|
||||||
|
@ -63,7 +63,10 @@
|
||||||
"--enable-unicode-properties"
|
"--enable-unicode-properties"
|
||||||
"--enable-pcre16"
|
"--enable-pcre16"
|
||||||
"--enable-pcre32"
|
"--enable-pcre32"
|
||||||
"--enable-jit")
|
;; pcretest fails on powerpc32.
|
||||||
|
,@(if (target-ppc32?)
|
||||||
|
'()
|
||||||
|
`("--enable-jit")))
|
||||||
#:phases (modify-phases %standard-phases
|
#:phases (modify-phases %standard-phases
|
||||||
(add-after 'install 'move-static-libs
|
(add-after 'install 'move-static-libs
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
|
Reference in a new issue