[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch core-updates updated: gnu: libjpeg-turbo: Skip failing test on ri
From: |
guix-commits |
Subject: |
branch core-updates updated: gnu: libjpeg-turbo: Skip failing test on riscv64-linux. |
Date: |
Wed, 19 Apr 2023 02:55:07 -0400 |
This is an automated email from the git hooks/post-receive script.
efraim pushed a commit to branch core-updates
in repository guix.
The following commit(s) were added to refs/heads/core-updates by this push:
new 93b07e5eb6 gnu: libjpeg-turbo: Skip failing test on riscv64-linux.
93b07e5eb6 is described below
commit 93b07e5eb612e6966e1c03a0b6ebbc38d9f13991
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Apr 19 09:54:00 2023 +0300
gnu: libjpeg-turbo: Skip failing test on riscv64-linux.
* gnu/packages/image.scm (libjpeg-turbo)[arguments]: Adjust
configure-flags to skip a failing test also on riscv64-linux.
---
gnu/packages/image.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index 754c99a823..37d01eb731 100644
--- a/gnu/packages/image.scm
+++ b/gnu/packages/image.scm
@@ -1688,8 +1688,9 @@ is hereby granted."))))
(list #:configure-flags
#~'("-DCMAKE_INSTALL_LIBDIR:PATH=lib"
"-DENABLE_STATIC=0"
- ;; djpeg-shared-3x2-float-prog-cmp fails on 32-bit PPC.
- #$@(if (string=? "powerpc-linux" (%current-system))
+ ;; djpeg-shared-3x2-float-prog-cmp fails on some systems.
+ #$@(if (or (target-ppc32?)
+ (target-riscv64?))
'("-DFLOATTEST=NO")
'())
;; The build system probes for the current CPU, but
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch core-updates updated: gnu: libjpeg-turbo: Skip failing test on riscv64-linux.,
guix-commits <=