This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 6d1f417384 gnu: d-tools: Fix build on i686-linux.
6d1f417384 is described below
commit 6d1f4173842af25b28ad410923a155df1099e9ff
Author: Dariqq <[email protected]>
AuthorDate: Mon Aug 24 20:11:32 2026 +0000
gnu: d-tools: Fix build on i686-linux.
This snippet got dropped with 4ac3bf752f7f8cf1414563880b8bd51b5aa98656.
* gnu/packages/dlang.scm (d-tools)[arguments]<#:phases>: Reintroduce target
bit size for the test.
Signed-off-by: Andreas Enge <[email protected]>
---
gnu/packages/dlang.scm | 1 +
1 file changed, 1 insertion(+)
diff --git a/gnu/packages/dlang.scm b/gnu/packages/dlang.scm
index 8467fbe9d5..c1a16238b4 100644
--- a/gnu/packages/dlang.scm
+++ b/gnu/packages/dlang.scm
@@ -944,6 +944,7 @@ needed.")
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "./dtools_rdmd" "rdmd_test.d" "dtools_rdmd"
+ "-m" #$(if (target-64bit?) "64" "32")
"--rdmd-default-compiler" "ldmd2"))))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)