"configure: error: C++ preprocessor "/lib/cpp" fails sanity check"の対処法
# ./configure --prefix=/usr/local/kyotocabinet --enable-lzo --enable-lzma
[中略]
checking how to run the C++ preprocessor... /lib/cpp
configure: error: in `/root/src/kyotocabinet-1.2.76':
configure: error: C++ preprocessor "/lib/cpp" fails sanity check
See `config.log' for more details
対処法:C++コンパイラ(gcc-c++)を入れる
C++コンパイラがインストールされてなかったのが原因のようです。yumで"gcc-c++"を入れたら解決しました。
yum -y install gcc-c++
カテゴリ:
Linux