fix warning about missing object.d when building with make+ldc|gdc (#757)
fix #614
This commit is contained in:
parent
b51ee472fe
commit
139ecc32ee
4
makefile
4
makefile
|
@ -27,8 +27,8 @@ VERSIONS =
|
||||||
DEBUG_VERSIONS = -version=dparse_verbose
|
DEBUG_VERSIONS = -version=dparse_verbose
|
||||||
DMD_FLAGS = -w -release -O -Jbin -od${OBJ_DIR} -version=StdLoggerDisableWarning
|
DMD_FLAGS = -w -release -O -Jbin -od${OBJ_DIR} -version=StdLoggerDisableWarning
|
||||||
DMD_TEST_FLAGS = -w -g -Jbin -version=StdLoggerDisableWarning
|
DMD_TEST_FLAGS = -w -g -Jbin -version=StdLoggerDisableWarning
|
||||||
override LDC_FLAGS += -O5 -release -oq
|
override LDC_FLAGS += -O5 -release -oq -d-version=StdLoggerDisableWarning
|
||||||
override GDC_FLAGS += -O3 -frelease
|
override GDC_FLAGS += -O3 -frelease -d-version=StdLoggerDisableWarning
|
||||||
SHELL:=/bin/bash
|
SHELL:=/bin/bash
|
||||||
|
|
||||||
all: dmdbuild
|
all: dmdbuild
|
||||||
|
|
Loading…
Reference in New Issue