[Numpy-discussion] can't build numpy 1.2.0 under python 2.6 (windows-amd64) using VS9

Paul Lucek plucek at ssaris.com
Thu Oct 9 12:17:52 EDT 2008


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);

}

#endif

 

in numpy-1.2.0\numpy\core\src\umathmodule.c.src


NOTICE- This communication (including any attachments) contains confidential and/or privileged information and is intended only for the use of the individual(s) to whom it is addressed for a specific purpose and is protected by law. Any review, use, distribution, disclosure, alteration, copying, transmittal or re-transmittal by persons who are not intended recipients of this communication may be a violation of law and is strictly prohibited. If you are not the intended recipient, please permanently delete all copies of this communication and any attachments from your computer system, destroy any hard copies, and immediately notify the sender or SSARIS Advisors, LLC at compliance at ssaris.com or (203) 328-7200. No waiver of confidentiality or privilege is made by mistransmission.

Any views expressed in this communication are those of the individual sender. This communication and any attachments hereto are for informational purposes only and should not be construed as an offer to sell interests or shares in any investment vehicle managed by SSARIS Advisors, LLC or its affiliates. Any information regarding trading performance must be considered in conjunction with the appropriate disclosure documents. Past performance is not necessarily indicative of future results.

SSARIS Advisors, LLC reserves the right to monitor all communications through its networks.

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/numpy-discussion/attachments/20081009/0f4a6747/attachment.html>


More information about the NumPy-Discussion mailing list