[Numpy-discussion] Cygwin compile: fatal error: fenv/fenv.c:

2012-02-29 Thread Matt Miller
Hi all, I am getting the following error when running `python setup.py install` for Numpy in Cygwin. This error happens on the latest as well as the maintenance branched for 1.5 and 1.6. ... creating build/temp.cygwin-1.7.11-i686-2.6 creating build/temp.cygwin-1.7.11-i686-2.6/build creating

Re: [Numpy-discussion] Cygwin compile: fatal error: fenv/fenv.c

2012-02-29 Thread Matt Miller
That fixed changed my error message to this: numpy/core/src/private/lowlevel_strided_loops.h:404:1: warning: ‘PyArray_PrepareThreeRawArrayIter’ declared ‘static’ but never defined numpy/core/src/private/lowlevel_strided_loops.h:430:1: warning: ‘PyArray_PrepareFourRawArrayIter’ declared ‘static’

Re: [Numpy-discussion] Cygwin compile: fatal error: fenv/fenv.c

2012-02-29 Thread Matt Miller
More reading of the thread linked solved the issue. To reiterate, add numpy/ and change .c to .h in line 590 of ieee754.c.src. Ex: elif defined(__CYGWIN__) include numpy/fenv/fenv.h endif Thanks, On Wed, Feb 29, 2012 at 1:41 PM, Matt Miller mattm...@gmail.com wrote: That fixed changed