Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit 3a7ffa7

Browse files
committed
Issue python#4214: Remove ineffectual /pdb:none option from msvc9compiler.py
1 parent d84b29f commit 3a7ffa7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/distutils/msvc9compiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ def initialize(self, plat_name=None):
413413
self.ldflags_shared = ['/DLL', '/nologo', '/INCREMENTAL:NO']
414414
if self.__version >= 7:
415415
self.ldflags_shared_debug = [
416-
'/DLL', '/nologo', '/INCREMENTAL:no', '/DEBUG', '/pdb:None'
416+
'/DLL', '/nologo', '/INCREMENTAL:no', '/DEBUG'
417417
]
418418
self.ldflags_static = [ '/nologo']
419419

0 commit comments

Comments
 (0)