您的位置:首页 > 其它

Ubuntu下安装boost

2016-10-07 12:14 387 查看
今天开始安装配置Ubuntu开发环境(Ubuntu 12.04)。在干活之前就预计到会遇到很多问题,但是没想到一开始就卡壳,可能是linux中各种包的依赖关系太复杂了,决定写个帖子记录一下,免得以后再踩雷。

./boost/python/detail/wrap_python.hpp:75:24: fatal error: patchlevel.h: No such file or directory
compilation terminated.

解决办法
sudo apt-get install python-dev

gcc.compile.c++ bin.v2/libs/iostreams/build/gcc-4.6/release/threading-multi/bzip2.o
libs/iostreams/src/bzip2.cpp:20:56: fatal error: bzlib.h: No such file or directory
compilation terminated.

解决办法
sudo apt-get install libbz2-dev

sudo ./b2重新再编译,等待几分钟之后,终于见到了成功的信息

The Boost C++ Libraries were successfully built!

The following directory should be added to compiler include paths:

/usr/local/boost_1_59_0

The following directory should be added to linker library paths:

/usr/local/boost_1_59_0/stage/lib
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: