Solution for python22_d.lib

Martin v. Loewis martin at v.loewis.de
Fri Apr 5 02:21:12 EST 2002


samschul at pacbell.net (Samuel Schulenburg) writes:

> I have used the folloing technique to get around the need to have a
> debug library for python. The following technique has been posted
> previously by Tim Peters.

I believe this approach has the flaw of linking the MSVC debug C
libraries to your module. This is undesirable, as it means that you
are simultaneously using the debug and the non-debug C
libraries. This, in turn, is undesirable since you get duplicate
copies of global data of the C libraries, which may interact in funny
ways.

Regards,
Martin




More information about the Python-list mailing list