我想使用 Boost.Beast
https://github.com/boostorg/beast
我把标题放到C文件中。
样本.c
#include <boost/beast.hpp>
并编译它。但不工作
$ gcc sample.c
sample.c:1:10: fatal error: boost/beast.hpp: No such file or directory
1 | #include <boost/beast.hpp>
| ^~~~~~~~~~~~~~~~~
compilation terminated.
如何解决这个问题?请教我。
*稍后添加
我在 Intel 上使用 Ubuntu 20.04
$ git clone --recursive https://github.com/boostorg/boost.git
$ cd beast/
$./bootstrap.sh
$vim sample.c
$ gcc sample.c
sample.c:1:10: fatal error: boost/beast.hpp: No such file or directory
1 | #include <boost/beast.hpp>
| ^~~~~~~~~~~~~~~~~
compilation terminated.