Issue #4214: Remove ineffectual /pdb:none option from msvc9compiler.py
authorSteve Dower <steve.dower@microsoft.com>
Sat, 8 Aug 2015 02:48:03 +0000 (19:48 -0700)
committerSteve Dower <steve.dower@microsoft.com>
Sat, 8 Aug 2015 02:48:03 +0000 (19:48 -0700)
Lib/distutils/msvc9compiler.py

index 9688f20019c828926e525276900cd27dc65d7575..a5a501005391f2164d64e098e66bc44a3f53af2d 100644 (file)
@@ -413,7 +413,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']