On Thu, Jan 10, 2013 at 3:56 PM, klo <[email protected]> wrote: > Hi, > > I run `python3 setup.py config` and then > > python3 setup.py build --compiler=mingw32 > > but it picks that I have MSVC 10 and complains about manifests. > Why, or even better, how to compile with available MinGW compilers?
I reported this issue/bug to the mailing list recently as part of a discussion with Ralf which lead to various fixes being made to get NumPy to compile with either mingw32 or MSCV 10. http://mail.scipy.org/pipermail/numpy-discussion/2012-November/064454.html My workaround is to change the default compiler for Python 3, by creating C:\Python33\Lib\distutils\distutils.cfg containing: [build] compiler=mingw32 Peter _______________________________________________ NumPy-Discussion mailing list [email protected] http://mail.scipy.org/mailman/listinfo/numpy-discussion
