mirror of https://gitlab.com/basile.b/dexed.git
dastwork sh script supports the env variables "dc" and "mflags"
This commit is contained in:
parent
d5ff97c98e
commit
c376201dc1
|
@ -1,3 +1,8 @@
|
|||
if [[ -z "$DC" ]]; then DC=dmd; fi
|
||||
if [[ "$DC" == "ldc" ]]; then DC=ldmd2; fi
|
||||
if [[ "$DC" == "gdc" ]]; then DC=gdmd; fi
|
||||
if [[ -z "$MFLAGS" ]]; then MFLAGS=-m64; fi
|
||||
|
||||
#iz sources
|
||||
cd ../etc/iz/import/
|
||||
iz=$(find `pwd` -type f -name \*.d)
|
||||
|
@ -18,11 +23,11 @@ cd src/
|
|||
dast=$(find `pwd` -type f -name \*.d)
|
||||
cd ../
|
||||
|
||||
echo building...
|
||||
echo building using $DC...
|
||||
|
||||
#build
|
||||
dmd ${dast[@]} ${dparse[@]} ${iz[@]} ${stdxalloc[@]} \
|
||||
-O -release -inline -boundscheck=off \
|
||||
$DC ${dast[@]} ${dparse[@]} ${iz[@]} ${stdxalloc[@]} \
|
||||
-O -release -inline -boundscheck=off $MFLAGS \
|
||||
-Isrc -I../etc/iz/import -I../etc/libdparse/src -I../etc/stdx-allocator/source \
|
||||
-of../bin/dastworx
|
||||
|
||||
|
|
Loading…
Reference in New Issue