mirror of
https://github.com/python/cpython.git
synced 2025-11-17 01:25:57 +00:00
Fix #1534738: win32 debug version of _msi must be _msi_d.pyd, not _msi.pyd.
Fix the name of the pdb file as well.
This commit is contained in:
parent
1798489547
commit
db7b443d8a
2 changed files with 4 additions and 2 deletions
|
|
@ -48,6 +48,8 @@ Tests
|
||||||
Build
|
Build
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
- Bug #1534738, win32 debug version of _msi should be _msi_d.pyd.
|
||||||
|
|
||||||
- Bug #1530448, ctypes buld failure on Solaris 10 was fixed.
|
- Bug #1530448, ctypes buld failure on Solaris 10 was fixed.
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -36,11 +36,11 @@
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalDependencies="fci.lib msi.lib rpcrt4.lib"
|
AdditionalDependencies="fci.lib msi.lib rpcrt4.lib"
|
||||||
OutputFile="./_msi.pyd"
|
OutputFile="./_msi_d.pyd"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
ProgramDatabaseFile=".\./_msi.pdb"
|
ProgramDatabaseFile=".\./_msi_d.pdb"
|
||||||
BaseAddress="0x1D160000"
|
BaseAddress="0x1D160000"
|
||||||
ImportLibrary=".\./_msi.lib"
|
ImportLibrary=".\./_msi.lib"
|
||||||
TargetMachine="1"/>
|
TargetMachine="1"/>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue