Merge pull request #239 from BBasile/fix-win

windows: fix imports for dmd 2.071 + update bat
This commit is contained in:
Brian Schott 2016-04-14 12:36:21 -07:00
commit 049b151bac
2 changed files with 6 additions and 2 deletions

View File

@ -6,6 +6,7 @@ set CORE=
set STD=
set STDD=
set STDE=
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
@ -14,4 +15,6 @@ for %%x in (libdparse\experimental_allocator\src\std\experimental\allocator\*.d)
for %%x in (libdparse\experimental_allocator\src\std\experimental\allocator\building_blocks\*.d) do set STDE=!STDE! %%x
@echo on
dmd %CORE% %STD% %STDD% %STDE% %DFLAGS% -ofbin\dfmt.exe
dmd %CORE% %STD% %STDD% %STDE% %DFLAGS% -of%OBIN%.exe
if exist %OBIN%.obj del %OBIN%.obj

View File

@ -118,6 +118,7 @@ else
version (CRuntime_DigitalMars)
{
import core.atomic : atomicOp;
import core.stdc.stdio: __fhnd_info, FHND_TEXT;
atomicOp!"&="(__fhnd_info[fd], ~FHND_TEXT);
}