Robert <kxrobe...@...> writes:

> 
> On Windows in distutils/distutils.cfg MingW is set instead of VC 
> default
> 
> [build]
> compiler = mingw32
> 
> works well with extensions, including setup.py-method for building 
> Cython modules. But it fails with pyximport method.
> Is this a bug - or how to tell using the MingW compiler?
> 


I just hard coded the required include path and compiler in my installed
pyxbuild.py, as a quick solution, since I didn't find any options to do it
otherwise.

args = [quiet, "build_ext", "--compiler=mingw32",
            r"-Ic:\programs\python25\lib\site-packages\numpy\core\include"]
    
Josef


_______________________________________________
Cython-dev mailing list
[email protected]
http://codespeak.net/mailman/listinfo/cython-dev

Reply via email to