* 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 79994feb12
commit a74edee228

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