diff options
| author | Dariqq <dariqq@posteo.net> | 2026-01-18 08:38:31 +0000 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2026-02-20 22:34:56 +0100 |
| commit | 3e9338b923912773db46277e98e14462d4a3fb34 (patch) | |
| tree | 7cc2b61e9ee0b0d39b51208dae158e68d338ce5b /gnu/packages/python-xyz.scm | |
| parent | aa69f0f3e87c22904f3f65b77ebbcb957b546d8f (diff) | |
gnu: Use (target-32bit?) to test for 32bit targets.
* gnu/packages/*.scm: Replace usage of target-64bit? when actually testing for
32bit targets.
* guix/utils.scm (target-hurd32?). Same.
Change-Id: If3ed2b82a1229b72b07fafc694eedc14080e5a04
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Merges: #5710
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 25c6875f72d..497230b1c1c 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -10731,7 +10731,7 @@ For some datatypes the overhead can be reduced by using khash by factor 4-8.") "complex_numbers_cpp" ;; This test fails when running on 24 cores. "cpp_stl_conversion" - #$@(if (not (target-64bit?)) + #$@(if (target-32bit?) ;; XXX: On 32-bit architectures, running the ;; parallel tests fails on many-core systems. ;; See: <https://github.com/cython/cython/issues/2807>. @@ -10792,7 +10792,7 @@ writing C extensions for Python as easy as Python itself.") ;; XXX: On 32-bit architectures, running the parallel tests ;; fails on many-core systems, see ;; <https://github.com/cython/cython/issues/2807>. - #$@(if (not (target-64bit?)) + #$@(if (target-32bit?) #~("-x" "run.parallel") #~()) #$@(if (system-hurd?) |
