robert wrote: > In past I asked for linking Python2.5 and next Pythons on Win against such > standard DLL (MSVCRT4 or MSVCRT.DLL)- yet Martin v. Löwis somehow explained > in > http://groups.google.de/group/comp.lang.python/msg/fcbe41f9df595c35 > somehow that MSVCRT.dll is not intended for normal apps - only for > "system-level components". > > Now I'm stun that MingW by default works with that library by default!
This is what Martin said: """ It used to be possible to link with it. See http://msdn2.microsoft.com/en-us/library/abx4dbyh(VS.80).aspx This is now a "known DLL", and meant for use by system-level components only. """ Note the words "used to" and "now". Mingw is a somewhat old project and was initially developed at a time when MSVCRT.dll *was* intended to be used by applications. It simply hasn't received enough attention recently to move to a different runtime. If you would like to volunteer your time to do the necessary work to allow it to link to modern runtimes, please do so. You will receive the undying thanks of many, many Pythoneers. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had an underlying truth." -- Umberto Eco -- http://mail.python.org/mailman/listinfo/python-list