cmakeのビルドで失敗した際のメモ Could not find CMAKE_ROOT !!!
スポンサードリンク
cmakeをインストールする必要がありインストールは問題なく終わった様に見えたが、実行時に segmentation fault が発生した。
CMake Error: Could not find CMAKE_ROOT !!!
試した手順は以下。
# cat /etc/redhat-release
CentOS Linux release 7.3.1611 (Core)
# wget https://cmake.org/files/v3.9/cmake-3.9.1.tar.gz
# tar xvfz cmake-3.9.1.tar.gz
# cd cmake-3.9.1/
# ./bootstrap && make && make install
# cmake --version
上記の手順ではすでにcmakeの他のバージョンがインストールされているとうまく行かない。
# yum remove cmake
してから再ビルドしたらうまく行った。
# cmake --version
cmake version 3.9.1
Search
Recent Posts
- OpenSSHのエラー「bad ownership or modes for chroot directory component」の原因と解消方法
- Apacheの起動状態をチェックして停止してる場合にApacheを起動するシェルスクリプト
- Amazon LinuxのOSバージョンを調べる方法|/etc/redhat-release の代替ファイル
- MYSQLでダンプファイルを取得する際に発生したエラー「Couldn't execute 'SELECT BINLOG_GTID_POS('', '0')': You are not using binary logging (1381)」の原因と対処方法
- RHEL系Linuxでリポジトリを一覧表示するコマンド(dnf repolist)