From: SourceForge.net <no...@so...> - 2011-03-08 15:49:10
|
Bugs item #1065642, was opened at 2004-11-13 01:27 Message generated for change (Settings changed) made by rtoy You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=104511&aid=1065642&group_id=4511 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: portability bugs Group: None >Status: Closed >Resolution: Fixed Priority: 5 Private: No Submitted By: Denis Bueno (dbueno) Assigned to: Nobody/Anonymous (nobody) Summary: CVS Matlisp minorly broken with latest SBCL Initial Comment: The read-time conditionals for shared library loading in lib/lazy- loader.lisp don't work with the latest incarnations in sbcl. In particular, what used to be LOAD-1-FOREIGN is now called LOAD- SHARED-OBJECT. The included patch should fix the problem. Index: lib/lazy-loader.lisp =========================================== ======================== RCS file: /cvsroot/matlisp/matlisp/lib/lazy-loader.lisp,v retrieving revision 1.7 diff -u -r1.7 lazy-loader.lisp --- lib/lazy-loader.lisp 17 Mar 2004 03:29:15 -0000 1.7 +++ lib/lazy-loader.lisp 13 Nov 2004 06:27:10 -0000 @@ -165,7 +165,7 @@ "@FLIBS@")))) #+:sbcl (defun load-blas-&-lapack-libraries () - (sb-alien:load-1-foreign "matlisp:lib;libmatlisp.so")) + (sb-alien:load-shared-object "matlisp:lib;libmatlisp.so")) ---------------------------------------------------------------------- >Comment By: Raymond Toy (rtoy) Date: 2011-03-08 10:49 Message: Latest Git version is known to work with SBCL now. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=104511&aid=1065642&group_id=4511 |