gnu: pcre2: Enable JIT support of powerpc-linux.

* gnu/packages/pcre.scm (pcre2)[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:56:35 +03:00
parent b89be0f5d2
commit 635e20aae9
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -111,9 +111,8 @@ (define-public pcre2
"--enable-pcre2test-libreadline"
"--enable-pcre2-16"
"--enable-pcre2-32"
;; pcre2_jit_test fails on powerpc32.
;; riscv64-linux is an unsupported architecture.
#$@(if (or (target-ppc32?) (target-riscv64?))
#$@(if (target-riscv64?)
#~()
#~("--enable-jit"))
"--disable-static")