The debug configuration of my app is built against:
PYTHON25_D.DLL
MSVCR80D.DLL
We use Python .PYD files in our application. Some of these .PYD are .PY converted by PY2EXE to .PYD.
When I run PY2EXE on MYSCRIPT.PY, I get the following .PYD and dependencies:
MYSCRIPT.PYD
PYTHON25.DLL
MSVCR71.DLL
KERNEL32.DLL
What I want is the debug version, built against the same C runtime library my app uses (MSVCR80D.DLL).
How can I convert MYSCRIPT.PY into:
MYSCRIPT_D.PYD <-- debug version of .PYD end with "_D"
PYTHON25_D.DLL <-- debug version of Python
MSVCR80D.DLL <-- ver 8.0, Debug
KERNEL32.DLL
How can this be done?