On Thu, 18 Aug 2011, Skipper Seabold wrote:
Trying to install gretl 1.9.5 from source due to the known seg
faults
in the downstream ubuntu 11.04 repositories. I have all the
dependencies installed, except my lapack (3.2.2) was built with ATLAS
(3.9.2) with the same version of gcc I have installed. The lapack
stuff seems to be giving me troubles, though I'm not too sure why.
No doubt this should be better documented, but if you want to build
gretl against atlas you should use the LAPACK_LIBS environment
variable. For example:
LAPACK_LIBS='-L/your/atlas/lib -llapack -lf77blas -lcblas -latlas' \
./configure <options>
You can't just replace -lblas with -lcblas, because more libraries
are needed with an atlas build, including crucially libatlas.
Also relevant:
http://ricardo.ecn.wfu.edu/~cottrell/tmp/gretl_speed.html
Allin Cottrell