summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorJonas Meeuws <jonas.meeuws@gmail.com>2026-08-04 15:16:23 +0200
committerLiliana Marie Prikler <liliana.prikler@gmail.com>2026-08-22 16:49:14 +0200
commit106a9a89c12ea5a2b2251521b06c48b032b17eab (patch)
treebea060093b784b0a0fffe42182768db4098db719 /gnu
parent63bc0bfea29726a282c5ac61cd7360cab3003db2 (diff)
gnu: dmd: Use G-Expressions.
* gnu/packages/dlang.scm (dmd)[#:phases]: Convert to list of G-expressions. <patch-tests>: Adjust accordingly. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/dlang.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/dlang.scm b/gnu/packages/dlang.scm
index 59be8959453..112c6cbf9c3 100644
--- a/gnu/packages/dlang.scm
+++ b/gnu/packages/dlang.scm
@@ -456,9 +456,9 @@ integration tests...\n")
456 ;; tries to debug 64bit executable 456 ;; tries to debug 64bit executable
457 ;; not in executable format: file format not recognized 457 ;; not in executable format: file format not recognized
458 #$@(if (target-32bit?) 458 #$@(if (target-32bit?)
459 '((delete-file 459 #~(delete-file
460 "dmd/compiler/test/runnable/gdb_slice_debuginfo_64.d")) 460 "dmd/compiler/test/runnable/gdb_slice_debuginfo_64.d")
461 '()) 461 #~())
462 462
463 ;; Locations in stack traces are broken for some reason, 463 ;; Locations in stack traces are broken for some reason,
464 ;; causing these tests to fail. 464 ;; causing these tests to fail.
@@ -577,7 +577,7 @@ compiler for the D programming language.")
577 ((#:make-flags flags ''()) 577 ((#:make-flags flags ''())
578 #~(fold delete #$flags '("HOST_DMD=gdmd" 578 #~(fold delete #$flags '("HOST_DMD=gdmd"
579 "SHARED=0"))) 579 "SHARED=0")))
580 ((#:phases phases '%standard-phases) 580 ((#:phases phases #~%standard-phases)
581 #~(modify-phases #$phases 581 #~(modify-phases #$phases
582 (add-after 'install 'rewrite-references-to-bootstrap 582 (add-after 'install 'rewrite-references-to-bootstrap
583 ;; D compilers can keep references to the include files used to 583 ;; D compilers can keep references to the include files used to