[Lispweb] error starting araneida -- newbie questions...

Alan Shields Alan-Shields at omrf.ouhsc.edu
Tue Jul 19 14:03:38 CDT 2005


On Tue, Jul 19, 2005 at 01:52:33PM -0500, Noah K Tilton wrote:
> Hello, I'm new to Lisp and new to this listserv. I have searched for
> this error, which seems self-explanatory enough, but I'm not sure
> exactly what to do to fix it. This occurs when I try to start araneida
> with the following command:

It means you have stale fasls. These are (roughly) the compiled form of
your lisp files. When SBCL goes between major versions, it can change
the FASL format, in which case the old ones become invalid.

You need to delete the old ones:

find ~/ -name '*.fasl' -exec rm '{}' ';'

That should do it for you.

Alan



More information about the lispweb mailing list