I have the latest cygwin environment and am using gcc 3.4.4. to build numpy.
Configure works:
python setup.py configure --compiler=mingw32
Build fails:
python setup.py build --compiler=mingw32
While building numpy.random.mtrand I get this:
_configtest.c:7:2: #error No _WIN32
and a little bit later the build aborts completely on multiarray with this:
building 'numpy.core.multiarray' extension
compiling C sources
C compiler: gcc -mno-cygwin -mdll -O -Wall
creating build/temp.cygwin-1.5.21-i686-2.5
creating build/temp.cygwin-1.5.21-i686-2.5/numpy
creating build/temp.cygwin-1.5.21-i686-2.5/numpy/core
creating build/temp.cygwin-1.5.21-i686-2.5/numpy/core/src
compile options: '-Ibuild/src.cygwin-1.5.21-i686-2.5/numpy/core/src
-Inumpy/core/include -Ibuild/src.cygwin-1.5.21-i686-2.5/numpy/core
-Inumpy/core/src -Inumpy/core/include -I/usr/local/include/python2.5 -c'
gcc -mno-cygwin -mdll -O -Wall
-Ibuild/src.cygwin-1.5.21-i686-2.5/numpy/core/src -Inumpy/core/include
-Ibuild/src.cygwin-1.5.21-i686-2.5/numpy/core -Inumpy/core/src
-Inumpy/core/include -I/usr/local/include/python2.5 -c
numpy/core/src/multiarraymodule.c -o
build/temp.cygwin-1.5.21-i686-2.5/numpy/core/src/multiarraymodule.o
In file included from /usr/local/include/python2.5/Python.h:57,
from numpy/core/src/multiarraymodule.c:18:
/usr/local/include/python2.5/pyport.h:226:24: sys/select.h: No such file
or directory
In file included from /usr/local/include/python2.5/Python.h:57,
from numpy/core/src/multiarraymodule.c:18:
/usr/local/include/python2.5/pyport.h:226:24: sys/select.h: No such file
or directory
I am puzzled, because /usr/include/sys/select.h actually does exist on
my cygwin installation. But maybe that's not what pyport.h is actually
looking for???
I've been banging away at this for several hours, so I must be doing
something silly. Any help will be much appreciated.
Thanks!
|