clisp 2.49:asdf 找不到 asd
我的设置是: 视窗Vista clisp 2.49
我运行 clisp 并加载 asdf 没有任何问题。 我将目录路径名推入 asdf:*central-registry*
并将 cl-ppcre.asd 的快捷方式复制到该目录中。然后我尝试使用 (asdf:oos 'asdf:load-op 'cl-ppcre)
加载操作它,并得到“未找到组件 'cl-ppcre'”的响应。有什么建议吗? Asdf 的版本是 2.010。
My setup is:
Windows Vista
clisp 2.49
I run clisp and load asdf without any problems.
I push a directory pathname into asdf:*central-registry*
and copy a shortcut of cl-ppcre.asd into the directory. Then I try to load-op it with (asdf:oos 'asdf:load-op 'cl-ppcre)
and i get a response that "component 'cl-ppcre' not found". Any suggestions? Asdf is version 2.010.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ASDF意味着支持快捷方式。如果支持有问题,请贡献修复。
也就是说,对于 ASDF2,配置 ASDF 的推荐方法是将代码放在标准位置之一,和/或将条目添加到源注册表。
ASDF is meant to support shortcuts. If the support is buggy, please contribute a fix.
That said, with ASDF2, the recommended way of configuring ASDF is to put your code in one of the standard locations, and/or to add entries to the source-registry.
找到解决方案:
http://bc.tech.coop/blog/041113.html
简而言之,问题在于ASDF不喜欢Windows的快捷方式,它想要软链接,而两者并不相同。该链接描述了 2-3 种处理此问题的方法。
Found the solution:
http://bc.tech.coop/blog/041113.html
In a few words, the problem is that ASDF doesn't like Windows' shortcuts, it wants soft links and the two are not the same. The link describes 2-3 ways of dealing with this.