Skip to content

Commit

Permalink
Turn off INCREMENTAL linking in the win32 msvc makefiles. It's noise …
Browse files Browse the repository at this point in the history
…we don't

need. [ci skip]
  • Loading branch information
eliotmiranda committed May 7, 2020
1 parent acaf284 commit 28d52b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.win32x86/common/Makefile.msvc.tools
Expand Up @@ -68,8 +68,8 @@ DEFS:= $(COGDEFS) $(MEMACCESS) $(WINVER) \
#############################################################################
# Linker settings
#
LD:= LINK /nologo /MACHINE:$(MACHINE)
LDCXX:= LINK /nologo /MACHINE:$(MACHINE)
LD:= LINK /nologo /MACHINE:$(MACHINE) /INCREMENTAL:NO
LDCXX:= LINK /nologo /MACHINE:$(MACHINE) /INCREMENTAL:NO
LIBRARIAN:=LIB /nologo
# dlltool is used to create import libraries. The alternatives are
# Digital Mars' IMPLIB.EXE (32-bit only?) and mbarcadero's MKEXP.EXE (64-bit)
Expand Down
4 changes: 2 additions & 2 deletions build.win64x64/common/Makefile.msvc.tools
Expand Up @@ -76,8 +76,8 @@ DEFS:= -D$(VM)VM=1 $(COGDEFS) $(MEMACCESS) $(WINVER) \
#############################################################################
# Linker settings
#
LD:= LINK /nologo /MACHINE:$(MACHINE)
LDCXX:= LINK /nologo /MACHINE:$(MACHINE)
LD:= LINK /nologo /MACHINE:$(MACHINE) /INCREMENTAL:NO
LDCXX:= LINK /nologo /MACHINE:$(MACHINE) /INCREMENTAL:NO
LIBRARIAN:=LIB /nologo
# dlltool is used to create import libraries. The alternatives are
# Digital Mars' IMPLIB.EXE (32-bit only?) and mbarcadero's MKEXP.EXE (64-bit)
Expand Down

0 comments on commit 28d52b5

Please sign in to comment.