I'm using Python 2.7 in Windows Powershell (I set the environment so I can use Python).
I have Cython installed (using the Windows installer).
I'm trying to follow the tutorial on the Cython website by making a simple "Hello World" extension, but when I try to build the extension I get this error:
dllwrap: gcc exited with status 1
error: command 'dllwrap' failed with exit status 1
How do I resolve this so that I may optimize my python code by C extensions?
gcc exited with status 1line? The fact that it exited doesn't provide enough information.