How to compile python 3.5 code with Mingw?

I spent quite a bit of time trying to compile pyd for python 3.5 on windows 10 using the code generated with cython . I know you can do this with MSVS , but I want to use mingw instead because I don't want to load too much garbage. I searched around and I found this SO question: How to compile .c code from Cython with gcc I tried to execute the accepted answer (changing all Python27's to Python35 ), but not using it. I see that it works with python 2.7 , although I was wondering why it does not work properly on 3.5 . If anyone could help me on this, that would be great. Thanks in advance.

+5
source share
1 answer

mingwpy still does not support Python 3.5, but at some point it will change.

See Specific Notes

UPD: mingwpy for python-3.5 can be provided with a significant limitation

+2
source

Source: https://habr.com/ru/post/1238979/


All Articles