编译没有提升的asio库

时间:2013-08-08 21:48:21

标签: c++ boost boost-asio

我正在尝试编译没有boost库的asio。    http://think-async.com/Asio/Documentation

所以,我做了

 ./configure --prefix=/raspberry/asio/product

我收到了错误

checking boost/noncopyable.hpp usability... no
checking boost/noncopyable.hpp presence... no
checking for boost/noncopyable.hpp... no
Can't find boost headers. Please check the location of the boost
distribution and rerun configure using the --with-boost=DIR option.

我认为这个asio不需要提升。

所以,接下来我抓住了asio的库,用boost并抓住了boost文件夹并放入了asio(非boost)文件夹。

但它仍然给我同样的错误。

2 个答案:

答案 0 :(得分:10)

./configure --prefix=/raspberry/asio/product --without-boost

答案 1 :(得分:0)

构建ASIO需要boost标头。将boost添加到系统上是最简单的方法,但您也可以进行本地安装(在您的某个目录中)并指向它。