asdf

Emacs 使用 slime 调用 clisp 失败--无法调用 ASDF--已经解决

馋奶兔 提交于 2019-12-03 22:00:54
Emacs 使用 slime 调用 clisp 失败--无法调用 ASDF 执行到如下顺序时出错 ;; Swank started at port: 61252. CL-USER> ;; Loading file /Users/admin/.slime/fasl/2013-04-02/clisp-2.49-unix-unknown/contrib/swank-mrepl.fas ... ;; Loaded file /Users/admin/.slime/fasl/2013-04-02/clisp-2.49-unix-unknown/contrib/swank-mrepl.fas ;; Loading file /Users/admin/LispBox-0.93/slime-2013-04-05/contrib/swank-asdf.lisp ... 错误提示信息如下: Could not load ASDF. Please update your implementation or install ASDF2 and in your ~/.swank.lisp specify: (defparameter swank::*asdf-path* #p"/path/containing/asdf/asdf.lisp") [Condition of type SIMPLE-ERROR]

How to distribute the asdf/quicklisp dependencies along with an app compiled with Embeddable Common Lisp?

限于喜欢 提交于 2019-12-02 03:00:03
问题 I have tried this example ECL repository asdf example , it works fine but it doesn't have any asdf dependencies. If i add :depends-on (#:inferior-shell) to example.asd then running the compiled standalone executable gives this error : Condition of type: SIMPLE-PACKAGE-ERROR There exists no package with name "ASDF/DRIVER" No restarts available. What causes this error, and what is the idiomatic way of dealing with asdf dependencies on ECL ? 回答1: EDIT: this problem is fixed for ECL newer than 16

How to distribute the asdf/quicklisp dependencies along with an app compiled with Embeddable Common Lisp?

孤街醉人 提交于 2019-12-02 02:36:20
I have tried this example ECL repository asdf example , it works fine but it doesn't have any asdf dependencies. If i add :depends-on (#:inferior-shell) to example.asd then running the compiled standalone executable gives this error : Condition of type: SIMPLE-PACKAGE-ERROR There exists no package with name "ASDF/DRIVER" No restarts available. What causes this error, and what is the idiomatic way of dealing with asdf dependencies on ECL ? EDIT: this problem is fixed for ECL newer than 16.1.3 (fixed in develop branch), so no `require' trick should be needed in the upcoming release. In general

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