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:
Thomas Heller 2006-08-04 19:49:31 +00:00
parent 1798489547
commit db7b443d8a
2 changed files with 4 additions and 2 deletions

View File

@ -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.

View File

@ -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"/>