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 ライブラリについてほとんど知らないので、どこから始めればよいかさえわかりません。
ありがとう!