2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-11 23:52:20 +00:00

* tools/msvc.jam

Add /INCREMENTAL:NO to linker options when linking exes, not only dlls.
  It was omitted from exes by mistake.


[SVN r20692]
This commit is contained in:
Vladimir Prus
2003-11-06 07:16:10 +00:00
parent efa5dc99a7
commit c6fc0b693e

View File

@@ -389,7 +389,7 @@ else # CYGWIN
actions link bind DEF_FILE
{
$(.LD) -nologo $(LINKFLAGS) /out:"$(<[1]:W)" /LIBPATH:"$(LINKPATH:W)" /def:$(DEF_FILE) $(USER_LINKFLAGS) @"$(<[2]:W)"
$(.LD) -nologo $(LINKFLAGS) /out:"$(<[1]:W)" /INCREMENTAL:NO /LIBPATH:"$(LINKPATH:W)" /def:$(DEF_FILE) $(USER_LINKFLAGS) @"$(<[2]:W)"
}
actions link.dll bind DEF_FILE