aboutsummaryrefslogtreecommitdiffhomepage
path: root/makefile
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2020-05-18 14:26:46 -0400
committerRalph Amissah <ralph.amissah@gmail.com>2020-06-03 20:20:13 -0400
commit1b919e36b81624e308b84294db3272b6276d2856 (patch)
treec251b145305b03b5418505bd22267270ea8f7a35 /makefile
parentcatching (diff)
makefile dub build flags
Diffstat (limited to 'makefile')
-rw-r--r--makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/makefile b/makefile
index 05df752..90cc29b 100644
--- a/makefile
+++ b/makefile
@@ -105,10 +105,10 @@ all_ver_clean: clean tangle dmd_ver ldc_ver gdc_ver
all_debug_ver: dmd_debug_ver gdc_debug_ver ldc_debug_ver
all_debug_clean_ver: clean tangle dmd_debug_ver gdc_debug_ver ldc_debug_ver
dmd: dub_upgrade
- $(DUB) --compiler=dmd --config=dmd -b release
+ $(DUB) --compiler=dmd --config=dmd --build=release-nobounds
notify-send -t 0 'D dmd compiled test release executable ready' 'spine-dmd'
dmd_debug:
- $(DUB) --compiler=dmd --config=dmd -b debug
+ $(DUB) --compiler=dmd --config=dmd --build=debug
dmd_ver: dub_upgrade
$(DUB) --compiler=dmd --config=dmd-version
mv bin/spine-dmd-ver bin-archive/spine-$(PROG_VER_DECLARED)-tag-$(PROG_VER_GIT)-dmd
@@ -122,10 +122,10 @@ dmd_rel_expunge_tangle: expunge skel tangle dmd_rel_tangle
dmd_debug_tangle: tangle
$(DUB) --compiler=dmd --config=spine-dmd-debug
gdc: dub_upgrade
- $(DUB) --compiler=gdc --config=gdc -b release
+ $(DUB) --compiler=gdc --config=gdc
notify-send -t 0 'D gdc compiled test release executable ready' 'spine-gdc'
gdc_debug:
- $(DUB) --compiler=gdc --config=gdc -b debug
+ $(DUB) --compiler=gdc --config=gdc --build=debug
gdc_ver: dub_upgrade
$(DUB) --compiler=gdc --config=gdc-version
mv bin/spine-gdc-ver bin-archive/spine-$(PROG_VER_DECLARED)-tag-$(PROG_VER_GIT)-gdc
@@ -139,10 +139,10 @@ gdc_rel_expunge_tangle: expunge skel tangle gdc_rel_tangle
gdc_debug_tangle: tangle
$(DUB) --compiler=gdc --config=spine-gdc-debug
ldc: dub_upgrade
- $(DUB) --compiler=ldc2 --config=ldc -b release
+ $(DUB) --compiler=ldc2 --config=ldc --build=release
notify-send -t 0 'D ldc compiled test release executable ready' 'spine-ldc'
ldc_debug:
- $(DUB) --compiler=ldc2 --config=ldc -b debug
+ $(DUB) --compiler=ldc2 --config=ldc --build=debug
ldc_ver: dub_upgrade
$(DUB) --compiler=ldc2 --config=ldc-version
mv bin/spine-ldc-ver bin-archive/spine-$(PROG_VER_DECLARED)-tag-$(PROG_VER_GIT)-ldc