Skip to content

Commit ae1535f

Browse files
committed
Do not print version info when linking using Visual Studio
1 parent c0dd633 commit ae1535f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common

+1-1
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)