This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Win32 debug version of _msi creates _msi.pyd, not _msi_d.pyd
Type: behavior Stage: resolved
Components: Build Versions: Python 2.5
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: ajaksu2, jpe, theller
Priority: normal Keywords:

Created on 2006-08-04 19:11 by jpe, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg60961 - (view) Author: John Ehresman (jpe) * Date: 2006-08-04 19:11
The .vcproj file has the the output file set to
_msi.pyd for the debug target instead of _msi_d.pyd so
the incorrect file is created.  This leads to a crash
if python.exe tries to import _msi and _msi.pyd is the
debug version.

The fix is to add a _d to the output file field for the
debug target.
msg60962 - (view) Author: Thomas Heller (theller) * (Python committer) Date: 2006-08-04 19:54
Logged In: YES 
user_id=11105

I made the change to the PCBuild/_msi.vcproj file in SVN
r51114, someone with Visual Studio 2005 should probably fix
PCBuild8/_msi.vcproj as well and close this bug.

Thanks for the heads up, John.
msg84496 - (view) Author: Daniel Diniz (ajaksu2) * (Python triager) Date: 2009-03-30 04:23
Closing due to msi build changes in 2.6, reopen if this is still valid.
History
Date User Action Args
2022-04-11 14:56:19adminsetgithub: 43776
2009-03-30 04:23:29ajaksu2setstatus: open -> closed

type: behavior

nosy: + ajaksu2
messages: + msg84496
resolution: out of date
stage: resolved
2006-08-04 19:11:53jpecreate