liunx中boost安装

参考 http://www.linuxidc.com/Linux/2013-07/87573.htm


Boost库是一个经过千锤百炼、可移植、提供源代码的C++库,,作为标准库的后备,是C++标准化进程的发动机之一,在linux安装过程如下:
去官方网站下载最新的:http://sourceforge.net/projects/boost/files/boost/1.47.0/ or www.boost.org

一,最简单的方法:

apt-cache search boost
搜到所有的boost库
然后:
sudo apt-get install libboost-all-dev
安装相应的库  

二,编译安装,

你需要到官方网站下载最新的版本,最新已经到1.47.0了
1.下载后解压到 /opt/boost_1_47_0
2.解决依赖关系  sudo 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


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值