zooko wrote: > A deeper question is: wouldn't it be nice if "./setup.py install" > automatically used the "build -c mingw32" feature when necessary? > Would anyone be interested in extending distutils to do that?
You can configure it to do so already. Making distutils automatically figure out that this is desired and safe is probably more magic than it's worth. http://docs.python.org/inst/config-syntax.html Use a section in your pydistutils.cfg file like this: [build_ext] compiler=mingw32 -- 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 _______________________________________________ Distutils-SIG maillist - [email protected] http://mail.python.org/mailman/listinfo/distutils-sig
