[Python-checkins] r59913 - python/trunk/PCbuild/_sqlite3.vcproj

Amaury Forgeot d'Arc amauryfa at gmail.com
Fri Jan 11 16:22:34 CET 2008


Thomas Heller wrote:
> Yes, but I'm no longer sure whether sqlite3.dll should be compiled in
> debug mode for a Python debug build at all.
> I made this change only because the debug python cannot import the sqlite3
> module because the (non-debug) MSVCR90.DLL runtime library is not found.
>
> I tried to install the Microsoft.VC90.CRT non-debug runtime in several ways, but I
> did not succeed.  Do you (or anyone else) know how to make that library available
> so that it will be found by sqlite3.dll when running the debug Python?
>
> The same problem occurs with tcl/tk.  Even wish84.exe does not start...

I had the same problem, but managed to tweak the compilation of
external libraries to use debug mode. It was useful more than once to
step into tcl/tk or sqlite3.

Another possible solution is to add the /ALLOWISOLATION:NO linker
option for python_d.exe, then copy msvcr90.dll in the application
directory or somewhere in the PATH. Will try this tonight.

-- 
Amaury Forgeot d'Arc


More information about the Python-checkins mailing list