Error de Cython: C: \ Python27 \ libs / libpython27.a: error al agregar símbolos

Estoy haciendo mi primera prueba con Cython. Básicamente elhello.pyx ejemplo dehttp://docs.cython.org/src/quickstart/build.html

Cuando quiero compilar me sale el siguiente error:

C:[...]>python setup.py build_ext --inplace
Compiling hello.pyx because it changed.
[1/1] Cythonizing hello.pyx
running build_ext
building 'hello' extension
C:\MinGW\bin\gcc.exe -mdll -O -Wall -IC:\Python27\include -IC:\Python27\PC -c he
llo.c -o build\temp.win32-2.7\Release\hello.o
writing build\temp.win32-2.7\Release\hello.def
C:\MinGW\bin\gcc.exe -shared -s build\temp.win32-2.7\Release\hello.o build\temp.
win32-2.7\Release\hello.def -LC:\Python27\libs -LC:\Python27\PCbuild -lpython27
-lmsvcr90 -o C:\Users\Bernd\Documents\99_Projekte\ONGOING\201412_Laufauswertung\
Repro\Tests\hello.pyd
C:\Python27\libs/libpython27.a: error adding symbols: File format not recognized

collect2.exe: error: ld returned 1 exit status
error: command 'C:\\MinGW\\bin\\gcc.exe' failed with exit status 1

El archivohello.c es generado.

¿Alguna idea?

Editar 1:

Siguiendo la pista de J.J. Hakala, hice lo siguiente: moverlibpython27.a lejos deC:\Python27\libs (por ejemplo, el subdirectorio bak) y copiepython27.dll dec:\windows\system32 to c:\python27\libs

Ahora el resultado es:

C:[...]>python setup.py build_ext --inplace
running build_ext
building 'hello' extension
C:\MinGW\bin\gcc.exe -mdll -O -Wall -IC:\Python27\include -IC:\Python27\PC -c he
llo.c -o build\temp.win32-2.7\Release\hello.o
writing build\temp.win32-2.7\Release\hello.def
C:\MinGW\bin\gcc.exe -shared -s build\temp.win32-2.7\Release\hello.o build\temp.
win32-2.7\Release\hello.def -LC:\Python27\libs -LC:\Python27\PCbuild -lpython27
-lmsvcr90 -o C:\Users\Bernd\Documents\99_Projekte\ONGOING\201412_Laufauswertung\
Repro\Tests\hello.pyd
build\temp.win32-2.7\Release\hello.o:hello.c:(.text+0x2d9): undefined reference
to `_imp___PyThreadState_Current'
build\temp.win32-2.7\Release\hello.o:hello.c:(.text+0x3b3): undefined reference
to `_imp__PyExc_RuntimeError'
build\temp.win32-2.7\Release\hello.o:hello.c:(.text+0x444): undefined reference
to `_imp___Py_NoneStruct'
build\temp.win32-2.7\Release\hello.o:hello.c:(.text+0x8e1): undefined reference
to `_imp__PyExc_ImportError'
collect2.exe: error: ld returned 1 exit status
error: command 'C:\\MinGW\\bin\\gcc.exe' failed with exit status 1

Una carpetabuild\temp.win32-2.7\Release con los archivoshello.def yhello.o es generado.

Edición 2: Quizás la solución esté aquí:compilando Cython con MinGW - PyExc de referencia indefinida

Intentaré instalar Visual Studio y luego intentaré nuevamente. Las recomendaciones sobre cómo hacer que se ejecute en MinGW todavía son bienvenidas.

Respuestas a la pregunta(1)

Su respuesta a la pregunta