这是一段代码,它是cpp-netlib
的一个例子#include <boost/network/protocol/http/server.hpp>
#include <string>
#include <iostream>
namespace http = boost::network::http;
struct hello_world;
typedef http::server<hello_world> server;
struct hello_world {
void operator() (server::request const &request,
server::response &response) {
std::string ip = source(request);
response = server::response::stock_reply(
server::response::ok, std::string("Hello, ") + ip + "!");
}
};
int
main(int argc, char * argv[]) {
if (argc != 3) {
std::cerr << "Usage: " << argv[0] << " address port" << std::endl;
return 1;
}
try {
hello_world handler;
server server_(argv[1], argv[2], handler);
server_.run();
}
catch (std::exception &e) {
std::cerr << e.what() << std::endl;
return 1;
}
return 0;
}
但是在编译时g++ main.cpp -o socke.exe -lboost_system
我收到以下错误
main.cpp:1:50: error: boost/network/protocol/http/server.hpp: No such file or directory
main.cpp:5: error: âboostâ has not been declared
我已经安装了cpnet-lib库和cmake来构建它们。我无法理解为什么编译器无法找到库。
答案 0 :(得分:1)
您没有指定Boost和cpp-netlib标头所在的包含路径。第一个错误行告诉缺少哪个标头。假设您的Boost标头安装在/ a / my_boost下(即带有头文件的/ a / my_boost / boost子目录)和/ a / my_cpp-netlib下的cpp-netlib,则需要为编译器添加-I命令行选项:
g++ main.cpp -o socke.exe -I/a/my_boost -I/a/my_cpp-netlib -lboost_system
如果您使用的是图形IDE或构建系统,项目设置中应该有一个选项来添加包含目录。