Showing with 5 additions and 5 deletions.
  1. +1 −1 src/magicport/dprinter.d
  2. +2 −2 src/posix.mak
  3. +2 −2 src/win32.mak
2 changes: 1 addition & 1 deletion src/magicport/dprinter.d
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ class DPrinter : Visitor
switch(s)
{
case "NULL": print("null"); return;
case "__IMPORT__": print("\"v\" ~ import(\"VERSION\")[0 .. $ - 1]"); return;
case "__IMPORT__": print("\"v\" ~ import(\"verstr.h\")[1 .. 6]"); return;
case "operator ==": print("opEquals"); return;
case "import", "module", "version", "ref", "scope",
"body", "alias", "is",
Expand Down
4 changes: 2 additions & 2 deletions src/posix.mak
Original file line number Diff line number Diff line change
Expand Up @@ -642,8 +642,8 @@ mars.d : $(SRC) $(ROOT_SRC) magicport.json $(MAGICPORT)

DSRC= $(GENSRC) $(MANUALSRC)

ddmd: mars.d $(MANUALSRC) newdelete.o glue.a backend.a $(HOST_DC)
CC=$(HOST_CC) $(HOST_DC_RUN) $(MODEL_FLAG) $(DSRC) -ofddmd newdelete.o glue.a backend.a -vtls -J.. -d $(DFLAGS)
ddmd: mars.d $(MANUALSRC) newdelete.o glue.a backend.a $(HOST_DC) verstr.h
CC=$(HOST_CC) $(HOST_DC_RUN) $(MODEL_FLAG) $(DSRC) -ofddmd newdelete.o glue.a backend.a -vtls -J. -d $(DFLAGS)

#############################

Expand Down
4 changes: 2 additions & 2 deletions src/win32.mak
Original file line number Diff line number Diff line change
Expand Up @@ -361,8 +361,8 @@ $(GENSRC) : $(SRCS) $(ROOTSRC) magicport.json $(MAGICPORT)

DSRC= $(GENSRC) $(MANUALSRC)

ddmd.exe: $(DSRC) newdelete.obj glue.lib backend.lib
$(HOST_DC) $(DSRC) -ofddmd.exe newdelete.obj glue.lib backend.lib -vtls -J.. -d -L/STACK:8388608 $(DFLAGS)
ddmd.exe: $(DSRC) newdelete.obj glue.lib backend.lib verstr.h
$(HOST_DC) $(DSRC) -ofddmd.exe newdelete.obj glue.lib backend.lib -vtls -J. -d -L/STACK:8388608 $(DFLAGS)

############################ Maintenance Targets #############################

Expand Down