aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2015-10-21 22:12:52 -0400
committerRalph Amissah <ralph@amissah.com>2015-10-21 22:12:52 -0400
commitbd4f5240ce78677a58efa5d361f8b805c21ce299 (patch)
treec0ead1ca324f60a7160014c4a8eb7d479add9a67
parentmaker.org make setting debug flags more straightforward, clean (diff)
maker.org touch
-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