Issue 1534738: Win32 debug version of _msi creates _msi.pyd, not _msi_d.pyd (original) (raw)

Issue1534738

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:19 admin set github: 43776
2009-03-30 04:23:29 ajaksu2 set status: open -> closedtype: behaviornosy: + ajaksu2messages: + resolution: out of datestage: resolved
2006-08-04 19:11:53 jpe create