상세 컨텐츠

본문 제목

Ubuntu CMake 설치 Ubuntu Install Latest Release CMake

TOOLS/TIPS

by koharin 2021. 3. 20. 15:29

본문

728x90
반응형

설치 환경


  • Ubuntu 16.04 LTS
    • sudo apt-get install cmake 로도 간단하게 CMake를 설치할 수 있지만, Ubuntu 16.04 LTS 버전에서 설치하는 최신 버전은 3.5라서, 따로 Latest Release CMake을 설치해준다.

 

 

기존에 CMake가 설치되어 있는 경우, CMake를 삭제하는 방법


$ sudo apt remove --purge --auto-remove cmake

 

 

CMake 설치


CMake에 필요한 패키지 설치

$ sudo apt-get update && sudo apt update
$ sudo apt install wget build-essential sudo

 

CMake 설치

$ wget https://github.com/Kitware/CMake/releases/tag/v3.19.7/cmake-3.19.7.tar.gz
$ tar zxf cmake-3.19.7.tar.gz
$ cd cmake-3.19.7
$ ./bootstrap --prefix=/usr
$ make
$ sudo make install
  • bootstrap과 make 과정에서 시간이 다소 소요된다.

 

https://github.com/Kitware/CMake/releases/tag

위의 링크에서 원하는 버전을 찾아서 다운받을 수도 있다.

이 경우에는 다음의 과정으로 설치를 진행한다.

$ tar zxf cmake-3.19.7.tar.gz
$ cd cmake-3.19.7
$ ./bootstrap --prefix=/usr
$ make
$ sudo make install

 

CMake 설치 확인


$ cmake --version

728x90
반응형

관련글 더보기