diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-08-08 02:47:36 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-08-08 02:47:36 (GMT) |
commit | 77518434d0dbacb80cc19c7a1bb7c90beee457b8 (patch) | |
tree | 3501d42ce8d06981034eb6d9e58e1b64af3a5762 | |
parent | 311c8d63e581b29a9a086a318d5265d0c124cec5 (diff) | |
download | cpython-77518434d0dbacb80cc19c7a1bb7c90beee457b8.zip cpython-77518434d0dbacb80cc19c7a1bb7c90beee457b8.tar.gz cpython-77518434d0dbacb80cc19c7a1bb7c90beee457b8.tar.bz2 |
Issue #4214: Remove ineffectual /pdb:none option from msvc9compiler.py
-rw-r--r-- | Lib/distutils/msvc9compiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/msvc9compiler.py b/Lib/distutils/msvc9compiler.py index 7ec9b92..22de4ba 100644 --- a/Lib/distutils/msvc9compiler.py +++ b/Lib/distutils/msvc9compiler.py @@ -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'] |