gnu: pcre: Enable JIT on powerpc-linux.

* gnu/packages/pcre.scm (pcre)[arguments]: When building for
powerpc-linux use the compile flag to enable jit support.
This commit is contained in:
Efraim Flashner 2023-08-01 13:55:04 +03:00
parent 2d8fac3fd9
commit b89be0f5d2
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -64,9 +64,8 @@ (define-public pcre
"--enable-unicode-properties"
"--enable-pcre16"
"--enable-pcre32"
;; pcretest fails on powerpc32.
;; riscv64-linux is an unsupported architecture.
#$@(if (or (target-ppc32?) (target-riscv64?))
#$@(if (target-riscv64?)
#~()
#~("--enable-jit")))
#:phases