python - PY2EXE: How to output "*_D.PYD" file (debug) and use MSVCR80D.DLL? -
My app has been created against debug configuration:
PYTHON25_D.DLL MSVCR80D DLL We use Python PYD files in our application. Some of these are .PYD .PYYEXE is converted by PYD by PY
When I run PY 2EXE on MYSCRIPT. PE, I get the following PYD and dependency:
MYSCRIPT.PYD PYTHON25.DLL MSVCR71.DLL KERNEL32.DLL Do I want / Em> debug version is built with the same Runtime Library, uses my app (MSVCR 80D.dll).
How can I convert MYSCRIPT.PY to:
MYSCRIPT_D.PYD & lt; - Debugging version of PYD end with "_D" PYTHON25_D.DLL & lt; - Python MSVCR 80D Debug version of DLL & lt; - Weight 8.0, DebugEEREL 32. DLL How can this be done?
Note that MS debug DLL is descriptive - you should not give them. However, py2exe will properly collect debug versions of all DLLs if you run the debug version of Python, and run the debug version of py2exe compiled version.
Comments
Post a Comment