From 851434ce9d824047401c7182b5b721dcc9431251 Mon Sep 17 00:00:00 2001 From: Sebastian Wilzbach Date: Sun, 11 Feb 2018 16:09:21 +0100 Subject: [PATCH 1/2] Bump depenencies --- dub.json | 2 +- libdparse | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dub.json b/dub.json index 150064f..4b1ed2d 100644 --- a/dub.json +++ b/dub.json @@ -4,6 +4,6 @@ "targetType": "autodetect", "license": "BSL-1.0", "dependencies": { - "libdparse": "~>0.8.0-alpha.3" + "libdparse": "~>0.8.0-alpha.4" } } diff --git a/libdparse b/libdparse index 687c0ca..f3323ce 160000 --- a/libdparse +++ b/libdparse @@ -1 +1 @@ -Subproject commit 687c0ca751747ebe498c183da1a3ee3119d57932 +Subproject commit f3323ce90a41c24cf874fd257ccbf6cc0b1be285 From c697d88bb2241d22bd00ff5f345367be4ce2841f Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Sun, 11 Feb 2018 20:54:18 +0100 Subject: [PATCH 2/2] update bat file for stdx module names --- build.bat | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/build.bat b/build.bat index 26848d5..2dc8158 100644 --- a/build.bat +++ b/build.bat @@ -7,16 +7,17 @@ set DFLAGS=-g set CORE= set STD= set STDD= -set STDE= +set STDXALLOCATOR= +set STDXALLOCATORBLOCKS= set OBIN=bin\dfmt for %%x in (src\dfmt\*.d) do set CORE=!CORE! %%x for %%x in (libdparse\src\std\experimental\*.d) do set STD=!STD! %%x for %%x in (libdparse\src\dparse\*.d) do set STDD=!STDD! %%x -for %%x in (libdparse\experimental_allocator\src\std\experimental\allocator\*.d) do set STDE=!STDE! %%x -for %%x in (libdparse\experimental_allocator\src\std\experimental\allocator\building_blocks\*.d) do set STDE=!STDE! %%x +for %%x in (stdx-allocator\source\stdx\allocator\*.d) do set STDXALLOCATOR=!STDXALLOCATOR! %%x +for %%x in (stdx-allocator\source\stdx\allocator\building_blocks\*.d) do set STDXALLOCATORBLOCKS=!STDXALLOCATORBLOCKS! %%x @echo on -%DC% %CORE% %STD% %STDD% %STDE% %DFLAGS% -of%OBIN%.exe +%DC% %CORE% %STD% %STDD% %STDE% %STDXALLOCATOR% %STDXALLOCATORBLOCKS% -I"stdx-allocator\source" -I"libdparse\src" %DFLAGS% -of%OBIN%.exe if exist %OBIN%.obj del %OBIN%.obj