Hi,

I'm having trouble building a 64 bit interpreter that works with the  
Numeric or numpy modules on a Mac Pro.  I've searched through the  
archives and settled on the following configure options:

./configure --prefix=${HOME} \
CC="/usr/bin/gcc -m64 -arch x86_64" \
OPT="-Wall -m64 -arch x86_64" \
CFLAGS="-Wall -m64 -arch x86_64" \
LD="/usr/bin/gcc -m64 -arch x86_64" \
LDFLAGS="-Wall -m64 -arch x86_64" \
CXX="/usr/bin/g++ -m64 -arch x86_64" \
CXXFLAGS="-Wall -m64 -arch x86_64" \
--disable-framework --disable-toolbox-glue --disable-universalsdk

When I build a recent source from http://svn.python.org/projects/ 
python/trunk or http://svn.python.org/projects/python/branches/ 
release25-maint I get a lot of the same failed tests. Also, three  
significant tests for the old Numeric module fail. The new numpy  
won't build because it needs the md5 module. I'm able to build and  
run in 64 bit on red hat enterprise. I used to be able to do it on a  
G5 so this seems to be a tiger/intel problem.  Anybody have any  
experience with this configuration?

Chris

2 tests failed:
     test_cookielib test_uuid
41 tests skipped:
     test__locale test_aepack test_al test_applesingle test_bsddb
     test_bsddb3 test_bz2 test_cd test_cl test_ctypes test_dl test_gdbm
     test_gl test_hashlib test_hmac test_imageop test_imgfile
     test_linuxaudiodev test_locale test_macfs test_macostools test_md5
     test_nis test_ossaudiodev test_pep247 test_pep277 test_rgbimg
     test_scriptpackages test_sha test_socket_ssl test_sqlite
     test_startfile test_sunaudiodev test_tcl test_unicodedata
     test_urllib2 test_urllib2_localnet test_urllib2net test_winreg
     test_winsound test_zipfile64
18 skips unexpected on darwin:
     test_hashlib test_hmac test_dl test_aepack test_applesingle
     test_bz2 test_urllib2net test_macostools test_ctypes test_urllib2
     test_tcl test_urllib2_localnet test_sha test_pep247
     test_unicodedata test_md5 test_scriptpackages test_macfs

2 tests failed:
     test_cookielib test_uuid
51 tests skipped:
     test__locale test_aepack test_al test_applesingle test_bsddb
     test_bsddb3 test_bz2 test_cd test_cl test_codecmaps_cn
     test_codecmaps_hk test_codecmaps_jp test_codecmaps_kr
     test_codecmaps_tw test_ctypes test_curses test_dl test_gdbm
     test_gl test_hashlib test_hmac test_imageop test_imgfile
     test_largefile test_linuxaudiodev test_locale test_macostools
     test_md5 test_normalization test_ossaudiodev test_pep247
     test_pep277 test_scriptpackages test_sha test_socket_ssl
     test_socketserver test_sqlite test_startfile test_sunaudiodev
     test_sundry test_tarfile test_tcl test_timeout test_unicodedata
     test_urllib2 test_urllib2_localnet test_urllib2net test_urllibnet
     test_winreg test_winsound test_zipfile64
19 skips unexpected on darwin:
     test_hashlib test_bz2 test_dl test_aepack test_sha
     test_urllib2_localnet test_applesingle test_urllib2net
     test_macostools test_ctypes test_urllib2 test_tcl test_sundry
     test_hmac test_pep247 test_tarfile test_unicodedata test_md5
     test_scriptpackages


_______________________________________________
Pythonmac-SIG maillist  -  Pythonmac-SIG@python.org
http://mail.python.org/mailman/listinfo/pythonmac-sig

Reply via email to