红联Linux门户
Linux帮助

解决ubuntu14.04编译boost1.5.4没有thread库生成

发布时间:2016-01-23 15:49:07来源:linux网站作者:固本培元

首先报错如下:

skipped <pbin.v2/libs/thread/build/gcc-4.8/release/link-static/threading-multi>libboost_thread.a(clean) for lack of <pbin.v2/libs/thread/build/gcc-4.8/release/link-static/threading-multi>pthread/thread.o..


编译命令是:

./bjam --with-thread stage

最后发现是个很简单的原因要默认使用 c++ 11。


命令如下:

./bjam --with-thread stage cxxflags="-std=c++11"


本文永久更新地址:http://www.linuxdiyf.com/linux/17609.html