1. 程式人生 > >centos7源碼安裝mysql時cmake報錯

centos7源碼安裝mysql時cmake報錯

message download 參數 .net with make cal 添加 mysql

報錯代碼:

CMake Error at cmake/boost.cmake:81 (MESSAGE):
You can download it with -DDOWNLOAD_BOOST=1 -DWITH_BOOST=
解決辦法:
1.在/usr/local下創建一個名為boost的文件夾
mkdir -p /usr/local/boost
2.進入這個新創建的文件夾然後下載boost
wget http://www.sourceforge.net/projects/boost/files/boost/1.59.0/boost_1_59_0.tar.gz
3.解壓
tar -xvzf boost_1_59_0.tar.gz
4.繼續cmake,後面添加以下參數
-DDOWNLOAD_BOOST=1 -DWITH_BOOST=/usr/local/boost/

centos7源碼安裝mysql時cmake報錯