diff --git a/.gitmodules b/.gitmodules index 9ca8bbd4..718db039 100644 --- a/.gitmodules +++ b/.gitmodules @@ -4,3 +4,6 @@ [submodule "etc/iz"] path = etc/iz url = https://www.github.com/BBasile/iz.git +[submodule "etc/stdx-allocator"] + path = etc/stdx-allocator + url = https://github.com/dlang-community/stdx-allocator.git diff --git a/dastworx/build.bat b/dastworx/build.bat index 832a3181..d56d8221 100644 --- a/dastworx/build.bat +++ b/dastworx/build.bat @@ -6,6 +6,10 @@ for /r "../etc/iz/import/" %%F in (*.d) do call set iz=%%iz%% "%%F" set dparse= for /r "../etc/libdparse/src/" %%F in (*.d) do call set dparse=%%dparse%% "%%F" +::stdxalloc sources +set stdxalloc= +for /r "../etc/stdx-allocator/source/" %%F in (*.d) do call set stdxalloc=%%stdxalloc%% "%%F" + ::dast sources set dast= for /r "src/" %%F in (*.d) do call set dast=%%dast%% "%%F" @@ -13,12 +17,12 @@ for /r "src/" %%F in (*.d) do call set dast=%%dast%% "%%F" echo building... ::build -dmd %dast% %dparse% %iz% ^ +dmd %dast% %dparse% %iz% %stdxalloc% ^ -O -release -inline -boundscheck=off ^ --Isrc -I"..\etc\iz\import" -I"..\etc\libdparse\src" ^ +-Isrc -I"..\etc\iz\import" -I"..\etc\libdparse\src" ^ -I"..\etc\stdx-allocator\source" ^ -of"..\bin\dastworx" ::cleanup del ..\bin\dastworx.obj -echo ...done \ No newline at end of file +echo ...done diff --git a/dastworx/build.sh b/dastworx/build.sh index fd77c83a..613b12ea 100644 --- a/dastworx/build.sh +++ b/dastworx/build.sh @@ -8,6 +8,11 @@ cd ../etc/libdparse/src/ dparse=$(find `pwd` -type f -name \*.d) cd ../../../dastworx +#stdx-alloc sources +cd ../etc/stdx-allocator/source/ +stdxalloc=$(find `pwd` -type f -name \*.d) +cd ../../../dastworx + #dast sources cd src/ dast=$(find `pwd` -type f -name \*.d) @@ -16,12 +21,12 @@ cd ../ echo building... #build -dmd ${dast[@]} ${dparse[@]} ${iz[@]} \ +dmd ${dast[@]} ${dparse[@]} ${iz[@]} ${stdxalloc[@]} \ -O -release -inline -boundscheck=off \ --Isrc -I../etc/iz/import -I../etc/libdparse/src \ +-Isrc -I../etc/iz/import -I../etc/libdparse/src -I../etc/stdx-allocator/source \ -of../bin/dastworx #cleanup rm ../bin/dastworx.o -echo ...done \ No newline at end of file +echo ...done diff --git a/etc/libdparse b/etc/libdparse index 7ee734bc..f3323ce9 160000 --- a/etc/libdparse +++ b/etc/libdparse @@ -1 +1 @@ -Subproject commit 7ee734bc5281d0e8d4816f05cfffc7604628330e +Subproject commit f3323ce90a41c24cf874fd257ccbf6cc0b1be285 diff --git a/etc/stdx-allocator b/etc/stdx-allocator new file mode 160000 index 00000000..7487970b --- /dev/null +++ b/etc/stdx-allocator @@ -0,0 +1 @@ +Subproject commit 7487970b58f4a2c0d495679329a8a2857111f3fd