Windows installer with another lisp. Which should I choose?



On 09/23/2013 09:39 PM, Raymond Toy wrote:
> >>>>> "John" == John Lapeyre <lapeyre.math122a at gmail.com> writes:
>
>  John> cffi : only works for me with sbcl and ccl
>
>  I know cffi works with cmucl too.
>
>  Ray

Now, Quicklisp and cl-store work immediately with cmucl.
I don't know what has changed, it's been a long time
since I tried it.

Trying to use cffi, with

(define-foreign-library libgomp
   (:unix (:or "libgomp.so.1" "libgomp.so"))
          (t (:default "libgomp")))

(use-foreign-library libgomp)

I get this error:

Error in function CFFI::FL-ERROR:  Unable to load any of the alternatives:
    ("libgomp.so.1" "libgomp.so")

The same code works with sbcl and ccl.
Any ideas ?

--John