Skip to content

Commit 8b2a6b7

Browse files
ntrelwilzbach
authored andcommitted
Fix dcompiler.dd formatting, add -dip1000
Add missing comma for 2 SWITCH uses. Remove unnecessary DD.
1 parent 015c002 commit 8b2a6b7

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

dcompiler.dd

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ $(WINDOWS
523523
)
524524
)
525525

526-
$(SWITCH $(SWNAME -conf)=$(I path)
526+
$(SWITCH $(SWNAME -conf)=$(I path),
527527
use config file at $(I path)
528528
)
529529

@@ -603,6 +603,10 @@ dmd -cov -unittest myprog.d
603603
implement http://wiki.dlang.org/DIP25 (experimental)
604604
)
605605

606+
$(SWITCH $(SWNAME -dip1000),
607+
implement $(LINK2 https://github.com/dlang/DIPs/blob/master/DIPs/DIP1000.md, DIP1000) (experimental)
608+
)
609+
606610
$(UNIX
607611
$(SWITCH $(SWNAME -fPIC),
608612
generate Position Independent Code (which is used
@@ -823,10 +827,10 @@ dmd -cov -unittest myprog.d
823827
)
824828

825829
$(SWITCH $(SWNAME -od)$(I objdir),
826-
$(DD write object files relative to directory $(I objdir)
830+
write object files relative to directory $(I objdir)
827831
instead of to the current directory. $(SWLINK -op)
828832
can be used if the original package hierarchy should
829-
be retained)
833+
be retained
830834
)
831835
$(SWITCH $(SWNAME -of)$(I filename),
832836
Set output file name to $(I filename) in the output
@@ -855,7 +859,7 @@ dmd -cov -unittest myprog.d
855859
done for system and trusted functions, and assertion failures
856860
are undefined behaviour.
857861
)
858-
$(SWITCH $(SWNAME -run) $(I srcfile args...)
862+
$(SWITCH $(SWNAME -run) $(I srcfile args...),
859863
compile, link, and run the program $(I srcfile) with the
860864
rest of the
861865
command line, $(I args...), as the arguments to the program.

0 commit comments

Comments
 (0)