Skip to content

Commit e149397

Browse files
authored
Merge pull request diffblue#2384 from tautschnig/quiet-vs
Do not print version info when linking using Visual Studio
2 parents 6f98511 + ae1535f commit e149397

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ else ifeq ($(BUILD_ENV_),MSVC)
137137
CP_CFLAGS =
138138
CP_CXXFLAGS +=
139139
LINKLIB = lib /NOLOGO /OUT:$@ $^
140-
LINKBIN = $(CXX) $(LINKFLAGS) /Fe$@ $^ $(LIBS)
140+
LINKBIN = $(CXX) $(LINKFLAGS) /Fe$@ /nologo $^ $(LIBS)
141141
LINKNATIVE = $(HOSTCXX) /Fe$@ /nologo /EHsc $^
142142
ifeq ($(origin CC),default)
143143
CC = cl

0 commit comments

Comments
 (0)