Hi All,
I'm trying to compile the current version of CFFI (0.9.2) in Clisp (2.39) on Ubuntu with asdf. I entered: (asdf:oos 'asdf:load-op :cffi) It then proceeded to load cffi.asd with no problems, and loads utils.fas, features.fas and cffi-clisp.fas without problems, and then complains in the following way: *** - READ: input stream #<INPUT BUFFERED FILE-STREAM CHARACTER #P"/var/cache/common-lisp-controller/1000/clisp/local/home/jon/code/ systems/cffi_0.9.2/src/package.fas" @1> has reached its end Does anyone know why this happens? (If I should go ask this question on the clisp or asdf mailing list, I welcome your directions :). Yes, I'm a newbie. If more information is needed, I'm happy to oblige.
Regards, Jonathan Johansen framlingham(at)gmail(dot)com
On 16/04/07, Jonathan Johansen framlingham@gmail.com wrote:
I'm trying to compile the current version of CFFI (0.9.2) in Clisp (2.39) on Ubuntu with asdf.
[...]
*** - READ: input stream #<INPUT BUFFERED FILE-STREAM CHARACTER #P"/var/cache/common-lisp-controller/1000/clisp/local/home/jon/code/ systems/cffi_0.9.2/src/package.fas" @1> has reached its end
[...]
Does anyone know why this happens?
I'm not familiar with Debian's Common Lisp Controller idiosyncrasies anymore but here's some of the things I'd try, in no particular order:
1. (asdf:oos 'asdf:load-op :cffi :force t) 2. upgrade CLISP to a more recent version 3. delete that "cffi_0.9.2" directory under /var/cache/common-lisp-controller
HTH