fix warning about missing object.d when building with make+ldc|gdc (#757)

fix #614
This commit is contained in:
Basile-z 2019-03-31 20:08:58 +02:00 committed by GitHub
parent b51ee472fe
commit 139ecc32ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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