1. 下載boost安裝包並解壓縮
到http://www.boost.org/下載boost的安裝包,以boost_1_58_0.tar.gz為例
下載完成后進行解壓縮:
tar zxvf boost_1_58_0.tar.gz
2.設置編譯器和所選庫
先進入解壓縮后的目錄:
cd boost_1_58_0
然后運行bootstrap.sh腳本並設置相關參數:
./bootstrap.sh --with-libraries=all --with-toolset=gcc
--with-libraries指定編譯哪些boost庫,all的話就是全部編譯,只想編譯部分庫的話就把庫的名稱寫上,之間用 , 號分隔即可,可指定的庫有以下幾種:
| 庫名 | 說明 |
|---|---|
| atomic | |
| chrono | |
| context | |
| coroutine | |
| date_time | |
| exception | |
| filesystem | |
| graph | 圖組件和算法 |
| graph_parallel | |
| iostreams | |
| locale | |
| log | |
| math | |
| mpi | 用模板實現的元編程框架 |
| program_options | |
| python | 把C++類和函數映射到Python之中 |
| random | |
| regex | 正則表達式庫 |
| serialization | |
| signals | |
| system | |
| test | |
| thread | 可移植的C++多線程庫 |
| timer | |
| wave |
--with-toolset指定編譯時使用哪種編譯器,Linux下使用gcc即可,如果系統中安裝了多個版本的gcc,在這里可以指定gcc的版本,比如--with-toolset=gcc-4.4
./b2 install --build-type=complete --layout=versioned --with-thread --prefix="/usr/local"
命令執行完成后看到顯示如下即為成功:
Building Boost.Build engine with toolset gcc... tools/build/src/engine/bin.linuxx86_64/b2 Detecting Python version... 2.6 Detecting Python root... /usr Unicode/ICU support for Boost.Regex?... not found. Generating Boost.Build configuration in project-config.jam... Bootstrapping is done. To build, run: ./b2 To adjust configuration, edit 'project-config.jam'. Further information: - Command line help: ./b2 --help - Getting started guide: http://www.boost.org/more/getting_started/unix-variants.html - Boost.Build documentation: http://www.boost.org/build/doc/html/index.html
3.編譯boost
執行以下命令開始進行boost的編譯:
./b2 toolset=gcc
編譯的時間大概要10多分鍾,耐心等待,結束后會有以下提示:
...failed updating 60 targets... ...skipped 21 targets... ...updated 663 targets...
4.安裝boost
最后執行以下命令開始安裝boost:
./b2 install --prefix=/usr
--prefix=/usr用來指定boost的安裝目錄,不加此參數的話默認的頭文件在/usr/local/include/boost目錄下,庫文件在/usr/local/lib/目錄下。這里把安裝目錄指定為--prefix=/usr則boost會直接安裝到系統頭文件目錄和庫文件目錄下,可以省略配置環境變量。
安裝完畢后會有以下提示:
...failed updating 60 targets... ...skipped 21 targets... ...updated 11593 targets...
最后需要注意,如果安裝后想馬上使用boost庫進行編譯,還需要執行一下這個命令:
ldconfig
更新一下系統的動態鏈接庫
5.boost使用測試
以boost_thread為例,測試剛安裝完的boost庫是否能正確使用,測試代碼如下:
#include <boost/thread/thread.hpp> //包含boost頭文件 #include <iostream> #include <cstdlib> using namespace std; volatile bool isRuning = true; void func1() { static int cnt1 = 0; while(isRuning) { cout << "func1:" << cnt1++ << endl; sleep(1); } } void func2() { static int cnt2 = 0; while(isRuning) { cout << "\tfunc2:" << cnt2++ << endl; sleep(2); } } int main() { boost::thread thread1(&func1); boost::thread thread2(&func2); system("read"); isRuning = false; thread2.join(); thread1.join(); cout << "exit" << endl; return 0; }
在編譯程序時,需要加入對boost_thread庫的引用:
g++ main.cpp -g -o main -lboost_thread
如果boost庫的安裝位置不是在系統目錄下,則還需要在編譯時加上-I和-L指定boost頭文件和庫文件的位置
編譯成功后運行程序,利用boost實現的多線程任務正確運行:
func1: func2:00 func1:1 func2:1 func1:2 func1:3 func2:2 func1:4 func1:5 func2:3 func1:6 func1:7 func2:4 func1:8 func1:9 func2:5 func1:10 func1:11 func2:6 func1:12 func1:13 func2:7 func1:14 func1:15 func2:8 func1:16 exit
