Update default msvccompiler link options to match the options used for core builds.

This commit is contained in:
Steve Dower 2015-07-30 11:51:30 -07:00
commit e63a329c18

View file

@ -207,10 +207,10 @@ class MSVCCompiler(CCompiler) :
] ]
self.ldflags_shared = [ self.ldflags_shared = [
'/nologo', '/DLL', '/INCREMENTAL:NO' '/nologo', '/DLL', '/INCREMENTAL:NO', '/LTCG', '/nodefaultlib:libucrt.lib', 'ucrt.lib'
] ]
self.ldflags_shared_debug = [ self.ldflags_shared_debug = [
'/nologo', '/DLL', '/INCREMENTAL:no', '/DEBUG:FULL' '/nologo', '/DLL', '/INCREMENTAL:no', '/LTCG', '/DEBUG:FULL', '/nodefaultlib:libucrtd.lib', 'ucrtd.lib'
] ]
self.ldflags_static = [ self.ldflags_static = [
'/nologo' '/nologo'