Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i'm trying to learn a lot of python on windows and that includes installing several packages, however everytime i invoke python setup.py install i have a problem with -mno -cygwin for gcc.

i've have read already a lot of articles and it seems they want that these individual packages to wait for the fix on their own builds.

can anyone just provide me a gcc version that i can install that still supports -mno -cygwin so i can go on studying the areas i would like to focus?

thanks!

share|improve this question
1  
The deprecated -mno-cygwin option was removed in gcc 4.7.0. See this question for more details. – Ben Hoyt Dec 6 '12 at 19:26

1 Answer

I had this problem too, and this is a bug in the Python code. The only way I found to fix it was to edit the file C:\Python27\Lib\distutils\cygwinccompiler.py.

In this file you must remove every occurence of -mno-cygwin.

The same goes for GCC installed through MinGW.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.