From 139ecc32ee7ee1b3db143b257b63423648db17c2 Mon Sep 17 00:00:00 2001 From: Basile-z <16154339+Basile-z@users.noreply.github.com> Date: Sun, 31 Mar 2019 20:08:58 +0200 Subject: [PATCH] fix warning about missing object.d when building with make+ldc|gdc (#757) fix #614 --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index ae58c77..9f1cb4a 100644 --- a/makefile +++ b/makefile @@ -27,8 +27,8 @@ VERSIONS = DEBUG_VERSIONS = -version=dparse_verbose DMD_FLAGS = -w -release -O -Jbin -od${OBJ_DIR} -version=StdLoggerDisableWarning DMD_TEST_FLAGS = -w -g -Jbin -version=StdLoggerDisableWarning -override LDC_FLAGS += -O5 -release -oq -override GDC_FLAGS += -O3 -frelease +override LDC_FLAGS += -O5 -release -oq -d-version=StdLoggerDisableWarning +override GDC_FLAGS += -O3 -frelease -d-version=StdLoggerDisableWarning SHELL:=/bin/bash all: dmdbuild