quicklisp

Is there a way to get the CLISP compiled with dynamic FFI support on Mac OS?

有些话、适合烂在心里 提交于 2019-12-01 02:30:08
问题 I use clisp 2.48 (2009-07-28) on Mac OS X 10.6.4. I downloaded the clisp with 'sudo port install clisp'. After installing quick lisp, I installed some packages, and most of them are OK. However, when I tried to install "sqlite", I got the following error. [1]> (ql:quickload "sqlite") To load "sqlite": Load 1 ASDF system: sqlite ; Loading "sqlite" [package cffi-sys] *** - CFFI requires CLISP compiled with dynamic FFI support. It says that my clisp installed with mac port doesn't have FFI

How to use buildapp in combination with quicklisp

馋奶兔 提交于 2019-11-30 04:00:57
I want to use buildapp to make the curl-lisp executable given as an example : buildapp --output lisp-curl --asdf-path ~/src/clbuild/systems/ \ --load-system drakma \ --eval '(defun main (args) (write-string (drakma:http-request (second args))))' \ --entry main This will most definitly not work, as I got no path "~/src/clbuild/systems/", as I use quicklisp my systems should be at "~/quicklisp/dists/quicklisp/software", but when I execute: buildapp --output lisp-curl \ --asdf-path ~/quicklisp/dists/quicklisp/software \ --load-system drakma \ --eval '(defun main (args) (write-string (drakma:http

How to add a local project to asdf configured by quicklisp

自作多情 提交于 2019-11-30 00:55:26
I want to add a local project to the known projects by asdf, but due to the fact that asdf was installed and configured by quicklisp and the *central-registry* points to "#P/home/user/quicklisp/quicklisp/", which contains .lisp files. I do not know how to do it as the manual explains that a symbolic link into the directory would do it, but I do not want to mess around inside quicklisp. (It does work as a hotfix, though!) Therefore:How to add a local project to asdf (NOT QUICKLISP) which was installed and configured by quicklisp? If you use Quicklisp you can use the dedicated directory ~

How to add a local project to asdf configured by quicklisp

我与影子孤独终老i 提交于 2019-11-28 22:32:30
问题 I want to add a local project to the known projects by asdf, but due to the fact that asdf was installed and configured by quicklisp and the *central-registry* points to "#P/home/user/quicklisp/quicklisp/", which contains .lisp files. I do not know how to do it as the manual explains that a symbolic link into the directory would do it, but I do not want to mess around inside quicklisp. (It does work as a hotfix, though!) Therefore:How to add a local project to asdf (NOT QUICKLISP) which was