よくわからないエンジニア

よく分からないエンジニア(無音鈴鹿)の日々の記録

よくわからないエンジニア

CentOS7 cmakeのソースインストール(バージョンアップ)

とある件でcmakeのバージョンが古く、バージョンアップする必要が出たので、備忘録です。

目次

cmake最新版のダウンロード

# 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/

コンパイル&インストール

READMEを見てみますと、Linuxは「$ ./bootstrap && make && make install」せよとのこと。でもconfigureもありますが…

# cat configure
#!/bin/sh
cmake_source_dir=`cd "\`dirname \"$0\"\`";pwd`
exec "${cmake_source_dir}/bootstrap" "$@"

どうやら引数ごとbootstrapに投げて処理してます。安心してbootstrapを使いましょう。

# ./bootstrap && make && make install
# cmake --version
cmake version 3.9.1

CMake suite maintained and supported by Kitware (kitware.com/cmake).

特に問題なく上がったかと。