Here are few problems I had with numpy and scipy

1) Compiling scipy on  solaris requires running ld -G instead of gcc 
-shared. Apparently, gcc was not passing the correct args to my nongnu 
ld. I could not figure out how to alter setup.py to link using ld 
instead of gcc so I had to link by hand.


2) memmap has to be modified to remove "flush" on Windows. If calls to 
flush are allowed, Python (ActiveState) crashes at program exit.

3) savemat in scipy.io.mio had to be modified to remove type check since 
I am using the class memmap which derives from ndarray. In savemat a 
check is made that the object being save is an Array.

Mathew




-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Numpy-discussion mailing list
Numpy-discussion@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/numpy-discussion

Reply via email to