Ubuntu下安裝C++ boost庫
阿新 • • 發佈:2019-01-09
Boost庫是一個經過千錘百煉、可移植、提供原始碼的C++庫,,作為標準庫的後備,是C++標準化程序的發動機之一,在linux安裝過程如下:
去官方網站下載最新的:http://sourceforge.net/projects/boost/files/boost/1.47.0/ or www.boost.org
一,最簡單的方法:
apt-cache search boost
搜到所有的boost庫
然後:
apt-get install libboost-all-dev
安裝相應的庫
二,編譯安裝,
你需要到官方網站下載最新的版本,最新已經到1.47.0了
1.下載後解壓到/opt/boost_1_47_0
2.解決依賴關係
apt-get install python-dev gccxml
如果還不全,就用apt-cache depends XXXXXXX查去
3.編譯bjam:
#cd /opt/boost_1_47_0
#sudo ./bootstrap.sh
編譯成功
4.編譯boost
#sudo ./bjam
開始編譯
大約要個十幾分鍾
編譯完成後:
The Boost C++ Libraries were successfully built!
The following directory should be added to compiler include paths:
/home/terry/Local/boost_1_47_0
The following directory should be added to linker library paths:
/home/terry/Local/boost_1_47_0/stage/lib
因為我是解壓到/home/terry/Local/boost_1_46_1下了
所以編譯完了是這樣的
5.update動態連結庫:
sudo ldconfig
安裝完畢
三,測試使用:
1.測試程式碼
#cat test.cpp
#include <boost/lexical_cast.hpp>
#include <iostream>
int main()
{
using boost::lexical_cast;
int a= lexical_cast<int>("123456");
double b = lexical_cast<double>("123.456");
std::cout << a << std::endl;
std::cout << b << std::endl;
return 0;
}
2.編譯,執行
–g++ -o test test.cpp
#ls
test test.cpp
#./test
123456
123.456