efraim pushed a commit to branch master
in repository guix.

commit b89be0f5d2f831c36e217c67461a2b2cf277529f
Author: Efraim Flashner <[email protected]>
AuthorDate: Tue Aug 1 13:55:04 2023 +0300

    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.
---
 gnu/packages/pcre.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/pcre.scm b/gnu/packages/pcre.scm
index 7c53a27685..bc1e7a73e0 100644
--- a/gnu/packages/pcre.scm
+++ b/gnu/packages/pcre.scm
@@ -64,9 +64,8 @@
                             "--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

Reply via email to