My operating system is Fedora 16 (although I have had the same issue on other distros).
I want to build numpy/scipy linking to serial ATLAS (rather than threaded). It would seem this involves uncommenting the following lines in my site.cfg file:
[DEFAULT]
library_dirs = /usr/lib64/atlas
include_dirs = /usr/local/include
[blas_opt]
libraries = f77blas, cblas, atlas
[lapack_opt]
libraries = lapack, f77blas, cblas, atlas
I have done this, but when I build the package via
python setup.py build
It still links to the threaded libraries eg.
Setting PTATLAS=ATLAS
FOUND:
libraries = ['ptf77blas', 'ptcblas', 'atlas']
library_dirs = ['/usr/lib64/atlas']
language = c
define_macros = [('ATLAS_INFO', '"\\"3.8.4\\""')]
Any ideas?