summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDariqq <dariqq@posteo.net>2026-08-23 09:16:31 +0000
committerAndreas Enge <andreas@enge.fr>2026-08-24 16:09:08 +0200
commit5d473033d7d6cf848dc875d5d82325578499b22b (patch)
treee872d509c807b1f0aece05671463263ebf2219aa
parent33e568793efae4557015b7d1211e0c4983afab39 (diff)
gnu: ldc: Fix build on i686-linux.
* gnu/packages/dlang.scm (ldc-bootstrap)[arguments]: In patch-tests add more tests to ignore on 32bit systems. Signed-off-by: Andreas Enge <andreas@enge.fr>
-rw-r--r--gnu/packages/dlang.scm5
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/dlang.scm b/gnu/packages/dlang.scm
index 53120625ecc..8467fbe9d50 100644
--- a/gnu/packages/dlang.scm
+++ b/gnu/packages/dlang.scm
@@ -297,11 +297,16 @@
297 #$@(if (or (target-x86-32?) 297 #$@(if (or (target-x86-32?)
298 (target-arm32?)) 298 (target-arm32?))
299 #~("tests/codegen/mangling.d" 299 #~("tests/codegen/mangling.d"
300 "tests/debuginfo/print_gdb.d"
300 "tests/dmd/runnable_cxx/cppa.d" 301 "tests/dmd/runnable_cxx/cppa.d"
302 "tests/dmd/runnable/gdb_slice_debuginfo_64.d"
301 "tests/instrument/xray_check_pipeline.d" 303 "tests/instrument/xray_check_pipeline.d"
302 "tests/instrument/xray_link.d" 304 "tests/instrument/xray_link.d"
303 "tests/instrument/xray_simple_execution.d" 305 "tests/instrument/xray_simple_execution.d"
304 "tests/PGO/profile_rt_calls.d" 306 "tests/PGO/profile_rt_calls.d"
307 "tests/sanitizers/fuzz_basic.d"
308 "tests/sanitizers/fuzz_mixin.d"
309 "tests/sanitizers/link_fuzzer.d"
305 "tests/sanitizers/msan_noerror.d" 310 "tests/sanitizers/msan_noerror.d"
306 "tests/sanitizers/msan_uninitialized.d") 311 "tests/sanitizers/msan_uninitialized.d")
307 #~()) 312 #~())