5

我正在尝试在没有 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 不需要提升。

所以,接下来我抓取带有 boost 的 asio 库并抓取 boost 文件夹并放入 asio(non boost) 文件夹。

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

4

2 回答 2

9
./configure --prefix=/raspberry/asio/product --without-boost
于 2013-12-20T23:04:35.590 回答
0

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

于 2013-08-08T21:50:48.017 回答