Message213874
Wouldn't this be more correct?
--- Lib/distutils/msvc9compiler.py 2013-08-03T16:17:08+04:00
+++ Lib/distutils/msvc9compiler.py 2014-03-17T18:36:50.078672+04:00
@@ -411,7 +411,11 @@
'/Z7', '/D_DEBUG']
self.ldflags_shared = ['/DLL', '/nologo', '/INCREMENTAL:NO']
- if self.__version >= 7:
+ if self.__version >= 10:
+ self.ldflags_shared = [
+ '/DLL', '/nologo', '/INCREMENTAL:NO', '/DEBUG', '/pdb:None', '/Manifest'
+ ]
+ elif self.__version >= 7:
self.ldflags_shared_debug = [
'/DLL', '/nologo', '/INCREMENTAL:no', '/DEBUG', '/pdb:None'
] |
|
Date |
User |
Action |
Args |
2014-03-17 15:07:17 | max.naumov | set | recipients:
+ max.naumov, loewis, theller, paul.moore, christian.heimes, tim.golden, trent, brian.curtin, cgohlke, silverbacknet, ralf.gommers |
2014-03-17 15:07:16 | max.naumov | set | messageid: <1395068836.92.0.281116961617.issue16296@psf.upfronthosting.co.za> |
2014-03-17 15:07:16 | max.naumov | link | issue16296 messages |
2014-03-17 15:07:16 | max.naumov | create | |
|