CentOS 7.5 Cmake3.6.1 설치중 삽질기록..
CentOS 를 최소 버전으로 설치해놓고 Cmake configure(bootstrap) 실행중 에러 로그에
/bootstrap: line 572: como: command not found
가 나타남.. 뭔가 한참 찾아봐도 안나와서 기록해둠..
Linux C Compiler 가 설치되지 않아서 그런거였듬..
설치 방법 기록합니다.
wget http://www.cmake.org/files/v3.6/cmake-3.6.1.tar.gz
tar -zxvf cmake-3.6.1.tar.gz
cd cmake-3.6.1
./bootstrap
make install
cp -f .
/bin/cmake
.
/bin/cpack
.
/bin/ctest
/bin
설치 확인
cmake -version
만약 bootstrap 또는 configure 시 오류나면 아래 명령 실행
yum -y install gcc gcc-c++
뭐 이딴 삽질을하는지 참네.. 항상 기본으로 깔고 시작해서그런지...몽티새끼야~
'[Program] > Server' 카테고리의 다른 글
log4j 보안취약점 조치방법 (0) | 2021.12.12 |
---|---|
Apache Reverse Proxy 사용하기 (0) | 2018.11.16 |