]> granicus.if.org Git - python/commitdiff
Issue #4214: Remove ineffectual /pdb:none option from msvc9compiler.py
authorSteve Dower <steve.dower@microsoft.com>
Sat, 8 Aug 2015 02:47:36 +0000 (19:47 -0700)
committerSteve Dower <steve.dower@microsoft.com>
Sat, 8 Aug 2015 02:47:36 +0000 (19:47 -0700)
Lib/distutils/msvc9compiler.py

index 7ec9b92a5dcbd0656c3bc4ecf32269d3a9e82202..22de4baecde21066a00f6b63dc82a746e980631a 100644 (file)
@@ -426,7 +426,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']