From 3e9338b923912773db46277e98e14462d4a3fb34 Mon Sep 17 00:00:00 2001 From: Dariqq Date: Sun, 18 Jan 2026 08:38:31 +0000 Subject: gnu: Use (target-32bit?) to test for 32bit targets. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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 Merges: #5710 --- gnu/packages/python-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/python-xyz.scm') 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: . @@ -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 ;; . - #$@(if (not (target-64bit?)) + #$@(if (target-32bit?) #~("-x" "run.parallel") #~()) #$@(if (system-hurd?) -- cgit v1.3