Boost安装 gcc4.8 & gcc5.4

网上很多流程,跟着走就行了。

  • 下载boost安装包并解压缩
    到http://www.boost.org/下载boost的安装包
    tar zxvf boost_1_63_0.tar.gz
    cd boost_1_63_0
  • 设置参数
    ./bootstrap.sh --with-libraries=all --with-toolset=gcc
    Notice:all是安装所有的库。如果不是想要安装所有的库,可以在后面指定想编译部分库,库之间用逗号分隔:
    ./bootstrap.sh --with-libraries=system,timer,filesystem --with-toolset=gcc
    boost库:(参考:https://blog.csdn.net/this_capslock/article/details/47170313)
库名 说明
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
  • 编译
    ./b2 toolset=gcc
    这里我有话讲了!
    如果在gcc5.4下想用old_abi,那么需要加上:define=_GLIBCXX_USE_CXX11_ABI=0
    就是:
    ./b2 define=_GLIBCXX_USE_CXX11_ABI=0 toolset=gcc
    src:https://stackoverflow.com/questions/36309021/how-to-compile-boost-with-gcc-5-using-old-abi
    https://boostorg.github.io/build/manual/develop/index.html#bbv2.overview.invocation.properties
    https://boostorg.github.io/build/tutorial.html#buildprocess
  • install
    ./b2 install --prefix=/usr

你可能感兴趣的:(Boost安装 gcc4.8 & gcc5.4)