From: Raymond T. <ray...@er...> - 2005-06-14 16:04:39
|
>>>>> "Ryan" == Ryan Adams <rp...@ca...> writes: Ryan> I've been trying to get Matlisp working with SBCL 0.9.1.28 on Debian. I Ryan> have checked out the latest version of Matlisp from CVS, and I have Ryan> replaced the defsystem.lisp in that source with the latest version from Ryan> the CLOCC CVS repository. I've also changed the 'LOAD-1-FOREIGN' to Ryan> 'LOAD-SHARED-OBJECT' in lazy-loader.lisp.in. I've put a diff of this Ryan> here: Yes, I think that's the basic fix for sbcl. I'll try to get those changes checked in soon. Ryan> I start the REPL in SLIME, and run (load "/home ... /start.lisp"), it Ryan> runs to completion, finishing with the message about using (HELP Ryan> MATLISP) and (use-package "MATLISP"), but when I actually try to do Ryan> either of these things, I get errors. It's probably not a good idea to (use-package "MATLISP") when you're in the CL-USER package. You probably want to do (in-package "MATLISP"). Second, try it without slime. Ray |