5

我在运行 10.5.8 的 Intel Core 2 Duo Macbook 上安装了 SBCL(通过 macports/darwinports)。我已经安装了几个这样的库:

(require 'asdf)
(require 'asdf-install)
(asdf-install:install 'cl-who)

但是当我在下载后尝试以这种方式('clsql)安装 CLSQL 时,我得到了这个:

...
; registering #<SYSTEM CLSQL-UFFI {123D9E01}> as CLSQL-UFFI
; $ cd /Users/ken/.sbcl/site/clsql-5.0.5/uffi/; make
cc -arch x86_64 -arch i386 -bundle /usr/lib/bundle1.o -flat_namespace -undefined suppress clsql_uffi.c -o clsql_uffi.dylib
ld: duplicate symbol dyld_stub_binding_helper in /usr/lib/bundle1.o and /usr/lib/bundle1.o for architecture i386
ld: duplicate symbol dyld_stub_binding_helper in /usr/lib/bundle1.o and /usr/lib/bundle1.o for architecture x86_64
collect2: ld returned 1 exit status
collect2: ld returned 1 exit status
lipo: can't open input file: /var/folders/Nf/Nf4o5ArDFaWBH2OwtnWM3E+++TQ/-Tmp-//ccJyZxou.out (No such file or directory)
make: *** [clsql_uffi.so] Error 1

有什么我忘记了,或者有什么技巧可以让它在 Mac OS X 上构建吗?这些天我对 Mac 上的 C 库知之甚少,所以我什至不知道从哪里开始。

谢谢!

4

3 回答 3

2

使用“裸” ASDF 的 Quicklisp 可能会容易得多。看看https://www.quicklisp.org/beta/

于 2016-09-08T17:22:25.213 回答
0

进展:受此Asterisk 错误报告(“包括 bundle1.o 破坏 Tiger 和 Leopard”)的启发,我-bundle /usr/lib/bundle1.o从所有 4 个地方删除~/.sbcl/site/clsql-5.1.1/uffi/Makefile并重新安装,它在死前更进一步。

我现在看到:

debugger invoked on a SIMPLE-ERROR in thread #<THREAD "initial thread" RUNNING {1193E621}>:
  Couldn't load foreign library "clsql_uffi". (searched CLSQL-SYS:*FOREIGN-LIBRARY-SEARCH-PATHS*)

这有点奇怪,因为:

  • clsql-sys:*foreign-library-search-paths*(#P"/Users/ken/.sbcl/site/clsql-5.1.1/uffi/")

  • clsql-uffi-loader.lisp尝试所有的(uffi:foreign-library-types),即("dylib" "bundle")

  • 有一个~/.sbcl/site/clsql-5.1.1/uffi/clsql_uffi.dylib由 makefile 构建的文件

想法?

于 2010-06-07T01:56:00.400 回答
0

这里有说明,你做完所有的准备步骤了吗?

于 2010-04-19T14:20:51.870 回答