linux下编译Boost库
Posted 银魔术师
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux下编译Boost库相关的知识,希望对你有一定的参考价值。
下载源码
生成编译工具
# tar axf boost_1_66_0.tar.gz
# cd boost_1_66_0
# yum install gcc gcc-c++ python-devel cmake -y
# ./bootstrap.sh
编译64位boost库
# ./b2 install --with-system --with-thread --with-date_time --with-regex --with-serialization --with-python link=shared runtime-link=shared threading=multi debug
设置boost动态库加载路径
# tee /etc/ld.so.conf.d/boost-x86_64.conf << EOF
/usr/local/lib
EOF
# ldconfig
CMakeLists样例
# vim CMakeLists.txt
cmake_minimum_required(VERSION 2.8)
project(test)
### 此处的动态库名必须和BOOST_PYTHON_MODULE()中定义的保持一致,即最后生成的库必须名为hello.so
set(SRC main.cpp)
add_library(hello SHARED ${SRC})
set_target_properties(hello PROPERTIES PREFIX "")
#dependencies
INCLUDE(FindPkgConfig)
pkg_check_modules(PYTHON REQUIRED python)
include_directories(/usr/local/include ${PYTHON_INCLUDE_DIRS})
link_directories(/usr/local/lib)
target_link_libraries(hello boost_python)
以上是关于linux下编译Boost库的主要内容,如果未能解决你的问题,请参考以下文章