Ubuntu 8.04で最新バージョンのClispをコンパイルしようとすると、configureを実行した後に常に次のエラーが発生します。
Configure findings:
FFI: no (user requested: default)
readline: yes (user requested: yes)
libsigsegv: no, consider installing GNU libsigsegv
./configure: libsigsegv was not detected, thus some features, such as
generational garbage collection and
stack overflow detection in interpreted Lisp code
cannot be provided.
Please do this:
mkdir tools; cd tools; prefix=`pwd`/i686-pc-linux-gnu
wget http://ftp.gnu.org/pub/gnu/libsigsegv/libsigsegv-2.5.tar.gz
tar xfz libsigsegv-2.5.tar.gz
cd libsigsegv-2.5
./configure --prefix=${prefix} && make && make check && make install
cd ../..
./configure --with-libsigsegv-prefix=${prefix} --with-readline --with-unicode --with-module=i18n --with-module=gdbm --with-module=pcre --with-module=readline --with-module=regexp
If you insist on building without libsigsegv, please pass
--ignore-absence-of-libsigsegv
to this script:
./configure --ignore-absence-of-libsigsegv --with-readline --with-unicode --with-module=i18n --with-module=gdbm --with-module=pcre --with-module=readline --with-module=regexp
私は要求どおりにやってみましたが、役に立ちませんでした--with-libsigsegv-prefix
。オプションを無視しているようです。また、libsigsegvを標準の場所にインストールしてみました(/usr/local
)。ああ、そしてもちろん、Ubuntuはlibsigsegvとlibsigsegv-devがシステムにインストールされていると教えてくれます。
このバージョンのClipsをコンパイルできるようにしたいと思います。これは、Ubuntuに付属しているバージョンに比べていくつかの重大な改善が導入されているためです(PCREも必要です)。