centos 下 boost1.55 编译和安装

来源:互联网 发布:io框架java 编辑:程序博客网 时间:2024/05/03 23:01

解压

  1. tar zxvf ./boost_1_55_0.tar.bz2    
进入目录后,执行
  1. ./bootstrap.sh --with-libraries=system,filesystem,log,thread --with-toolset=gcc 
  2. ./b2 toolset=gcc cxxflags="-std=c++11"  

备注:上面红色字体的你容,可以再配置后,看到其他的选项。上面绿色字体内容代表使用c++11标准,编译的库要使用统一标准。不使用,去掉绿色字体内容。


稍等一会,编译成功。安装吧。
  1. ./b2 install --prefix=/usr  

运行./b2 install 命令,默认安装在

/usr/local/lib目录下

头文件在

/usr/local/include/boost目录下

install 后面可以加参数--prefix=/usr 


Component configuration:

    - atomic                   : not building
    - chrono                   : not building
    - context                  : not building
    - coroutine                : not building
    - date_time                : not building
    - exception                : not building
    - filesystem               : building
    - graph                    : not building
    - graph_parallel           : not building
    - iostreams                : not building
    - locale                   : not building
    - log                      : building
    - math                     : not building
    - mpi                      : not building
    - program_options          : not building
    - python                   : not building
    - random                   : not building
    - regex                    : not building
    - serialization            : not building
    - signals                  : not building
    - system                   : building
    - test                     : not building
    - thread                   : building
    - timer                    : not building
    - wave                     : not building

0 0