mirror of https://github.com/python/cpython
Issue #4214: Remove ineffectual /pdb:none option from msvc9compiler.py
This commit is contained in:
commit
917c2c3654
|
@ -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']
|
||||
|
||||
|
|
Loading…
Reference in New Issue