mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 03:29:40 -05:00
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.
This commit is contained in:
parent
8902218625
commit
2bae32e1b9
1 changed files with 3 additions and 1 deletions
|
@ -109,7 +109,9 @@ (define-public pcre2
|
||||||
"--enable-pcre2-16"
|
"--enable-pcre2-16"
|
||||||
"--enable-pcre2-32"
|
"--enable-pcre2-32"
|
||||||
;; pcre2_jit_test fails on powerpc32.
|
;; pcre2_jit_test fails on powerpc32.
|
||||||
,@(if (target-ppc32?)
|
;; riscv64-linux is an unsupported architecture.
|
||||||
|
,@(if (or (target-ppc32?)
|
||||||
|
(target-riscv64?))
|
||||||
'()
|
'()
|
||||||
`("--enable-jit"))
|
`("--enable-jit"))
|
||||||
"--disable-static")
|
"--disable-static")
|
||||||
|
|
Loading…
Reference in a new issue