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
|
@ -48,6 +48,8 @@ Tests
|
|||
Build
|
||||
-----
|
||||
|
||||
- Bug #1534738, win32 debug version of _msi should be _msi_d.pyd.
|
||||
|
||||
- Bug #1530448, ctypes buld failure on Solaris 10 was fixed.
|
||||
|
||||
|
||||
|
|
|
@ -36,11 +36,11 @@
|
|||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="fci.lib msi.lib rpcrt4.lib"
|
||||
OutputFile="./_msi.pyd"
|
||||
OutputFile="./_msi_d.pyd"
|
||||
LinkIncremental="1"
|
||||
SuppressStartupBanner="TRUE"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile=".\./_msi.pdb"
|
||||
ProgramDatabaseFile=".\./_msi_d.pdb"
|
||||
BaseAddress="0x1D160000"
|
||||
ImportLibrary=".\./_msi.lib"
|
||||
TargetMachine="1"/>
|
||||
|
|
Loading…
Reference in New Issue