help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: BLAS and LAPACK libraries


From: c.
Subject: Re: BLAS and LAPACK libraries
Date: Thu, 11 Nov 2010 12:33:33 +0100

On 11 Nov 2010, at 12:11, xnand wrote:

> 
> Hi everyone.
> 
> When I do:
> ./configure --with-blas=/home/software/BLAS
> --with-lapack=/home/software/lapack-3.2.2

> where BLAS and lapack-3.2.2 are directories where BLAS and LAPACK libraries
> are installed respectively,

I think the values for those configure options should be the name of the 
BLAS/LAPACK libraries, not the directories where they are installed, try 
something like:

./configure --with-blas=/home/software/BLAS/libblas.a 
--with-lapack=/home/software/lapack-3.2.2/liblapack.a

or 

./configure --with-blas="-L/home/software/BLAS/ -lblas" 
--with-lapack="-L/home/software/lapack-3.2.2/ -llapack"

> I get:
> configure: error: You are required to have BLAS and LAPACK libraries
> Any suggestions?
> 
> Thank you
> Nands

HTH,
c.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]