gnu: pcre2: Fix building on riscv64-linux.
* gnu/packages/pcre.scm (pcre2)[arguments]: Adjust configure-flags to not build with JIT when building for riscv64-linux.
parent
8902218625
commit
2bae32e1b9
|
@ -109,7 +109,9 @@ POSIX regular expression API.")
|
|||
"--enable-pcre2-16"
|
||||
"--enable-pcre2-32"
|
||||
;; pcre2_jit_test fails on powerpc32.
|
||||
,@(if (target-ppc32?)
|
||||
;; riscv64-linux is an unsupported architecture.
|
||||
,@(if (or (target-ppc32?)
|
||||
(target-riscv64?))
|
||||
'()
|
||||
`("--enable-jit"))
|
||||
"--disable-static")
|
||||
|
|
Reference in New Issue