|
From: Raymond T. <toy...@gm...> - 2012-03-10 16:32:18
|
On 3/10/12 7:53 AM, Akshay Srinivasan wrote: > This is an automated email from the git hooks/post-receive script. It was > generated because a ref change was pushed to the repository containing > the project "matlisp". > > The branch, master has been updated > via b4755e861709360bf208f0b9b479c388003274de (commit) > from 035339c307401f593732418ecdba8fa6785b678d (commit) > > Those revisions listed above that are new to this repository have > not appeared on any other notification email; so we list those > revisions in full, below. > > - Log ----------------------------------------------------------------- > commit b4755e861709360bf208f0b9b479c388003274de > Author: Akshay Srinivasan <aks...@gm...> > Date: Sat Mar 10 21:13:48 2012 +0530 > > Made sure that CFFI loads our version of BLAS, when it is asked to. > > diff --git a/lib/lazy-loader.lisp.in b/lib/lazy-loader.lisp.in > index 11f3358..f67b5d0 100644 > --- a/lib/lazy-loader.lisp.in > +++ b/lib/lazy-loader.lisp.in > @@ -140,7 +140,7 @@ > (unless @ATLAS_P@ > ;; Use our blas and lapack libraries > (cffi:define-foreign-library blas > - (t (:default "libblas")))) > + (t (:default "@libdir@/libblas")))) > Somehow this doesn't look right. Shouldn't cffi be looking in *foreign-libraries-directories* first? Is that not set up correctly? Ray |