【发布时间】:2018-01-06 17:12:49
【问题描述】:
我想编译并运行一个 lisp 源代码来解析 peercoin 区块链,这样我就可以获得前 100 个最富有的地址。我正在使用 lisp 源代码https://github.com/glv2/peercoin-blockchain-parser。 我已经在我的系统上安装了 quicklisp,但是在运行下面的代码时会抛出错误:
debugger invoked on a LOAD-SYSTEM-DEFINITION-ERROR in thread #<THREAD "main thread" RUNNING {1002A8AF63}>:
Error while trying to load definition for system bordeaux-threads from
pathname /home/deepchand/quicklisp/dists/quicklisp/software/bordeaux-threads-v0.8.5/bordeaux-threads.asd:
READ error during COMPILE-FILE:
You need ASDF >= 3.1 to load this system correctly.
(in form starting at line: 1, column: 0, file-position: 0)
如何更新 asdf 以解决此错误?
【问题讨论】:
-
遇到此类错误请提供
(lisp-implementation-type)和(lisp-implementation-version)的结果。 -
@coredump 结果:(lisp-implementation-type) "SBCL" 0] (lisp-implementation-version) "1.1.14.debian" 0]
-
我建议只获取更新版本的 SBCL (1.3.20)。但我仍然想要这个问题的答案:)
标签: lisp common-lisp asdf