From 3a7ffa7474dfed34f32d52600a73517c8c6edbfc Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Fri, 7 Aug 2015 19:48:03 -0700 Subject: [PATCH] Issue #4214: Remove ineffectual /pdb:none option from msvc9compiler.py --- Lib/distutils/msvc9compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/distutils/msvc9compiler.py b/Lib/distutils/msvc9compiler.py index 9688f20019c..a5a50100539 100644 --- a/Lib/distutils/msvc9compiler.py +++ b/Lib/distutils/msvc9compiler.py @@ -413,7 +413,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']