Jim Kleckner wrote:
> It seems that this old problem of compiling Numeric is a problem again 
> (even on my Linux box, not just cygwin):
>  
> http://sourceforge.net/tracker/index.php?func=detail&aid=732520&group_id=1369&atid=301369
>  
>
>
> (The issue was the dlamch.f code)
>
> The patch recommended to run:
>  python setup.py config
> in order to work around the problem.
>
> Note that this no longer runs and gives the error message:
>  unable to execute _configtest.exe: No such file or directory
>
>
> The setup.py and customize.py code interact in complex ways with 
> Python's build tools.
>
> Anyone out there familiar with these and what is going on?
>
> BTW, it looks as though the default Makefile in python2.4/config dir now 
> has -O3 turned on which is stimulating this problem.
>
> Jim
>   

A workaround for this problem in setup.py is to run this simple script 
to create the
config.h file that is failing (probably due to the compile flags):


gcc -fno-strict-aliasing -DNDEBUG -g  -Wall -Wstrict-prototypes 
-IInclude -IPackages/FFT/Include -IPackages/RNG/Include 
-I/usr/include/python2.4 Src/config.c -o mkconfigh
./mkconfigh
mv config.h Src


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Numpy-discussion mailing list
Numpy-discussion@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/numpy-discussion

Reply via email to