aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--maker.org8
1 files changed, 5 insertions, 3 deletions
diff --git a/maker.org b/maker.org
index 28f0d94..519ddea 100644
--- a/maker.org
+++ b/maker.org
@@ -39,9 +39,11 @@ GDC_FLAGS_RELEASE=-frelease
GDC_FLAG_BINOF=-o
#+end_src
-*** set/select: ~compiler~ & ~debug flags~ [+1]
+*** set/select: ~compiler~ & ~debug flags~ [+1] [2/2]
Set flags:
-**** SET compiler is "SET_D_COMPILER=":
+- [X] Set D_COMPILER (one of DMD LDC or GDC)
+- [X] Set debug flags (using DMD standard flag -debug=)
+**** SET compiler: "SET_D_COMPILER=":
Set D_COMPILER one of DMD LDC or GDC e.g.:
SET_D_COMPILER=DMD
#+BEGIN_SRC makefile :tangle makefile
@@ -49,7 +51,7 @@ Set D_COMPILER one of DMD LDC or GDC e.g.:
SET_D_COMPILER=LDC
#+end_src
-**** SET debug flags are "SET_DC_FLAGS_DEBUG_EXTRA=-debug=":
+**** SET debug flags: "SET_DC_FLAGS_DEBUG_EXTRA=-debug=":
Set debug flags using DMD standard flag -debug= e.g.:
SET_DC_FLAGS_DEBUG_EXTRA=-debug=headings -debug=bookindex
#+BEGIN_SRC makefile :tangle makefile