*Juanito* <
katehu...@gmail.com> writes:
> OS: OSX 10.6.8
> SBCL: 1.1.7
> ASDF: 2.33
> Quicklisp:
2012112500
>
> Hi. I encounter an error loading another library. And error shows that
> probably my cffi is too old. So I want to update my old CFFI 0.10.7 to
> 0.11.2. So I delete ~/.sbcl/site/cffi_0.10.7.
> Then git clone g...@github.com:cffi/cffi.git to ~/quicklisp/local-projects/and do:
>
> (ql:quickload "cffi")
>
> error occurred:
>
> debugger invoked on a LOAD-SYSTEM-DEFINITION-ERROR in thread #<THREAD "main thread" RUNNING {10037B8FE3}>: Error while trying to load definition for system cffi from pathname /Users/Mac/.sbcl/systems/cffi.asd: Couldn't load #P"/Users/Mac/.sbcl/systems/cffi.asd": file does not exist.
ASDF caches some information about systems, so when you removed the file
on disk the cache got out of date.
You should be able to proceed if you use (asdf:clear-system "cffi") to
clear the cache first.
Zach