Skip to content

Commit

Permalink
Merge pull request #3024 from burner/makefile_win64_logger_missing
Browse files Browse the repository at this point in the history
the win64 makefile is somehow not including the logger
  • Loading branch information
braddr authored and MartinNowak committed Feb 27, 2015
1 parent a476a61 commit 0233611
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions win64.mak
Expand Up @@ -139,6 +139,10 @@ SRC_STD_ALGO= std\algorithm\package.d std\algorithm\comparison.d \
std\algorithm\searching.d std\algorithm\setops.d \
std\algorithm\sorting.d std\algorithm\internal.d

SRC_STD_LOGGER= std\experimental\logger\core.d std\experimental\logger\filelogger.d \
std\experimental\logger\multilogger.d std\experimental\logger\nulllogger.d \
std\experimental\logger\package.d

SRC_STD_5_HEAVY= $(SRC_STD_ALGO)

SRC_STD_6a=std\variant.d
Expand All @@ -158,10 +162,6 @@ SRC_STD_7= \
std\mathspecial.d \
std\process.d

SRC_STD_LOGGER= std\experimental\logger\core.d std\experimental\logger\filelogger.d \
std\experimental\logger\multilogger.d std\experimental\logger\nulllogger.d \
std\experimental\logger\package.d

SRC_STD_ALL= $(SRC_STD_1_HEAVY) $(SRC_STD_2a_HEAVY) \
$(SRC_STD_math) \
$(SRC_STD_3) $(SRC_STD_3a) $(SRC_STD_3b) $(SRC_STD_3c) $(SRC_STD_4) \
Expand Down Expand Up @@ -462,7 +462,7 @@ unittest : $(LIB)
$(DMD) $(UDFLAGS) -c -unittest -ofunittest6f.obj $(SRC_STD_6f)
$(DMD) $(UDFLAGS) -c -unittest -ofunittest6g.obj $(SRC_STD_CONTAINER)
$(DMD) $(UDFLAGS) -c -unittest -ofunittest6j.obj $(SRC_STD_6j)
$(DMD) $(UDFLAGS) -c -unittest -ofunittest7.obj $(SRC_STD_7)
$(DMD) $(UDFLAGS) -c -unittest -ofunittest7.obj $(SRC_STD_7) $(SRC_STD_LOGGER)
$(DMD) $(UDFLAGS) -c -unittest -ofunittest8.obj $(SRC_TO_COMPILE_NOT_STD)
$(DMD) $(UDFLAGS) -L/OPT:NOICF -unittest unittest.d $(UNITTEST_OBJS) \
$(ZLIB) $(DRUNTIMELIB)
Expand Down

0 comments on commit 0233611

Please sign in to comment.