[Python-checkins] cpython (merge 3.4 -> 3.5): 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/6a1c2c7b0ee0
changeset:   97323:6a1c2c7b0ee0
branch:      3.5
parent:      97319:adb510322c8f
parent:      97322:7c322c296a3b
user:        Steve Dower <steve.dower at microsoft.com>
date:        Fri Aug 07 19:48:26 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
@@ -416,7 +416,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