This is an automated email from the git hooks/post-receive script.
efraim pushed a commit to branch core-updates-frozen
in repository guix.
The following commit(s) were added to refs/heads/core-updates-frozen by this
push:
new bbb0420 gnu: pcre2: Build without JIT on powerpc-linux.
bbb0420 is described below
commit bbb0420e44384f8750377631274fa971e6bf93e2
Author: Efraim Flashner <[email protected]>
AuthorDate: Mon Aug 30 13:46:06 2021 +0300
gnu: pcre2: Build without JIT on powerpc-linux.
* gnu/packages/pcre.scm (pcre2)[arguments]: On powerpc-linux don't
enable JIT.
---
gnu/packages/pcre.scm | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/pcre.scm b/gnu/packages/pcre.scm
index 7e760c9..e11d7c2 100644
--- a/gnu/packages/pcre.scm
+++ b/gnu/packages/pcre.scm
@@ -5,7 +5,7 @@
;;; Copyright © 2016 Leo Famulari <[email protected]>
;;; Copyright © 2017 Marius Bakke <[email protected]>
;;; Copyright © 2017 Ludovic Courtès <[email protected]>
-;;; Copyright © 2017 Efraim Flashner <[email protected]>
+;;; Copyright © 2017, 2021 Efraim Flashner <[email protected]>
;;; Copyright © 2018 Tobias Geerinckx-Rice <[email protected]>
;;; Copyright © 2021 Jean-Baptiste Volatier <[email protected]>
;;; Copyright © 2021 Simon Tournier <[email protected]>
@@ -30,6 +30,7 @@
#:use-module (gnu packages compression)
#:use-module (gnu packages readline)
#:use-module (gnu packages)
+ #:use-module (guix utils)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix build-system gnu))
@@ -105,7 +106,10 @@ POSIX regular expression API.")
"--enable-pcre2test-libreadline"
"--enable-pcre2-16"
"--enable-pcre2-32"
- "--enable-jit"
+ ;; pcre2_jit_test fails on powerpc32.
+ ,@(if (target-ppc32?)
+ '()
+ `("--enable-jit"))
"--disable-static")
#:phases
(modify-phases %standard-phases