On Wednesday, July 6, 2016, wrote:
> Send NumPy-Discussion mailing list submissions to
> numpy-discussion@scipy.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> https://mail.scipy.org/mailman/listinfo/numpy-discussion
> or, via email, send a message with subjec
I get the following errors in umathmodule.c.src:
D:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\amd64\cl.exe
/c /nolog
o /Ox /MD /W3 /GS- /DNDEBUG -Ibuild\src.win-amd64-2.6\numpy\core\src
-Inumpy\cor
e\include -Ibuild\src.win-amd64-2.6\numpy\core\include/numpy
-Inumpy\core\src -I
>Could you compress win-amd64-2.6\numpy\core\src\umathmodule.c -- it
>should be in the build directory -- and attach it if possible, or at
>least that part that seems to be a problem? Mind that the list has a
rather small size limit.
I think this is the pertinent section:
#ifndef HAVE_F
Thanks Hanni! That did it. Numpy builds and installs by commenting
out:
#ifndef HAVE_FREXPF
static float frexpf(float x, int * i)
{
return (float)frexp((double)(x), i);
}
#endif
#ifndef HAVE_LDEXPF
static float ldexpf(float x, int i)
{
return (float)ldexp((double)(x), i);
}