Displaying 2 results from an estimated 2 matches for "lptcblas".
Did you mean:
lcblas
2008 Sep 10
0
Trouble compiling R with self-compiled LAPACK/ATLAS under Linux
...ATLAS and LAPACK. ATLAS and LAPACK compiled
correctly and installed fine and passed all of their checks (and yes, I did
compile them all with -fPIC as is required for R). This was my initial
configure line:
./configure --with-x --enable-threads=posix
--with-blas="-L/usr/local/lib -lptf77blas -lptcblas -latlas -lpthread"
--with-lapack="-L/usr/local/lib -llapack -lptf77blas -lptcblas -latlas -lpthread"
--prefix=/usr/local
...this configure line was chosen by examining R-admin.pdf and ./configure --help.
It configured fine, no problem. The trouble was when I attempt to make the
pack...
2009 Mar 26
0
Building R-alpha with ATLAS libraries?
...is finding the ATLAS BLAS all right, but it is not finding
the ATLAS LAPACK. The configure command string is
./configure --enable-threads --disable-R-profiling \
--with-blas="-L/usr/local/atlas/lib -lptf77blas -lpthread -latlas" \
--with-lapack="-L/usr/local/atlas/lib -llapack -lptcblas" \
--with-tcltk --with-cairo --with-libpng --with-jpeglib --with-x \
2>&1 | tee ../R-alpha-config.log
Here's what's in the "R-alpha-config.log" file when it gets to the
library check part:
checking for dgemm_ in -L/usr/local/atlas/lib -lptf77blas -lpthread
-latla...