From 1cb3d4d3c785fad883558fa9565cc32f3f52c058 Mon Sep 17 00:00:00 2001 From: Michael Tautschnig Date: Fri, 8 Jun 2018 11:18:32 +0000 Subject: [PATCH] Avoid Visual Studio linker warning Now uses the same basic flags for building build tools as it does for compiling other objects. --- src/common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common b/src/common index 9f83c46e17e..ee9cc79d63f 100644 --- a/src/common +++ b/src/common @@ -138,7 +138,7 @@ else ifeq ($(BUILD_ENV_),MSVC) CP_CXXFLAGS += LINKLIB = lib /NOLOGO /OUT:$@ $^ LINKBIN = $(CXX) $(LINKFLAGS) /Fe$@ $^ $(LIBS) - LINKNATIVE = $(HOSTCXX) /Fe$@ $^ + LINKNATIVE = $(HOSTCXX) /Fe$@ /nologo /EHsc $^ ifeq ($(origin CC),default) CC = cl endif