[Python-checkins] cpython (merge 3.5 -> default): Issue #4214: Remove ineffectual /pdb:none option from msvc9compiler.py
steve.dower
python-checkins at python.org
Sat Aug 8 07:26:22 CEST 2015
https://hg.python.org/cpython/rev/b35df92f69e4
changeset: 97324:b35df92f69e4
parent: 97320:47287c998bb0
parent: 97323:6a1c2c7b0ee0
user: Steve Dower <steve.dower at microsoft.com>
date: Fri Aug 07 19:48:43 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