Issue #4214: Remove ineffectual /pdb:none option from msvc9compiler.py

This commit is contained in:
Steve Dower 2015-08-07 19:48:43 -07:00
commit 9548f1ee38
1 changed files with 1 additions and 1 deletions

View File

@ -416,7 +416,7 @@ class MSVCCompiler(CCompiler) :
self.ldflags_shared = ['/DLL', '/nologo', '/INCREMENTAL:NO']
if self.__version >= 7:
self.ldflags_shared_debug = [
'/DLL', '/nologo', '/INCREMENTAL:no', '/DEBUG', '/pdb:None'
'/DLL', '/nologo', '/INCREMENTAL:no', '/DEBUG'
]
self.ldflags_static = [ '/nologo']