guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: python-numpy: Fix building for armhf-linux.


From: guix-commits
Subject: 01/02: gnu: python-numpy: Fix building for armhf-linux.
Date: Wed, 3 May 2023 04:40:45 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 59268c5ef1cd2a5a4be35705f2416a15c881c0ca
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed May 3 10:21:58 2023 +0300

    gnu: python-numpy: Fix building for armhf-linux.
    
    * gnu/packages/python-xyz.scm (python-numpy)[arguments]: Skip another
    test in the 'check phase when building for armhf-linux.
---
 gnu/packages/python-xyz.scm | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e2d082091f..7950d4a775 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -6410,6 +6410,10 @@ include_dirs = ~:*~a/include~%"
                                      `(" and not 
test_identityless_reduction_huge_array"
                                        " and not (TestKind and test_all)")
                                    '())
+                              ;; This test fails when building from 
aarch64-linux.
+                              #$@(if (target-arm32?)
+                                   `(" and not test_features")
+                                   '())
                               ;; These tests seem to fail on machines without
                               ;; an FPU is still under investigation upstream.
                               ;; https://github.com/numpy/numpy/issues/20635



reply via email to

[Prev in Thread] Current Thread [Next in Thread]