[Python-checkins] cpython (2.7): Issue #4214: Remove ineffectual /pdb:none option from msvc9compiler.py

steve.dower python-checkins at python.org
Sat Aug 8 07:26:21 CEST 2015


https://hg.python.org/cpython/rev/418095f0d711
changeset:   97321:418095f0d711
branch:      2.7
parent:      97301:08e03dfb7dab
user:        Steve Dower <steve.dower at microsoft.com>
date:        Fri Aug 07 19:47:36 2015 -0700
summary:
  Issue #4214: Remove ineffectual /pdb:none option from msvc9compiler.py

files:
  Lib/distutils/msvc9compiler.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/distutils/msvc9compiler.py b/Lib/distutils/msvc9compiler.py
--- a/Lib/distutils/msvc9compiler.py
+++ b/Lib/distutils/msvc9compiler.py
@@ -426,7 +426,7 @@
         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']
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list