我正在尝试使用boost.asio创建一个TCP服务器,并按照示例使用co_spawn在新线程中启动侦听器功能。
当我尝试使用boost::asio::co_spawn
时,Microsoft Visual Studios告诉我它是未定义的,我已经包含了boost example所做的所有文件。
TcpServer.h
#include <iostream>
#include <string>
#include <boost/asio/co_spawn.hpp>
#include <boost/asio/detached.hpp>
#include <boost/asio/io_context.hpp>
#include <boost/asio/ip/tcp.hpp>
#include <boost/asio/signal_set.hpp>
#include <boost/asio/write.hpp>
#include <boost/asio/coroutine.hpp>
using namespace boost::asio;
class TcpServer
{
public:
TcpServer(int port);
~TcpServer();
private:
};
TcpServer.cpp
#include "TcpServer.h"
/*
Create a TcpServer on a given port
*/
TcpServer::TcpServer(int port)
{
io_context ioCtx(1);
/* E0020 identifier "co_spawn" is undefined */
co_spawn();
}
TcpServer::~TcpServer()
{
}
上面的代码告诉我co_spawn
是未定义的,我已经搜索了其他名称空间并检查了替代功能,但没有。我以为可能是过时的文档,但是版本boost.asio
的{{1}}参考仍然将1.70.1
列为自由功能。参见here
我正在使用 提升:1.70.1 Microsoft Visual Studio 2017:v15.9.7
答案 0 :(得分:1)
boost.asio具有预处理器代码来检测编译器的功能,并且只有在编译器支持的情况下才启用协程支持。
对于MSVC,我认为您需要将编译器标志/await
添加到编译器命令行选项列表中。
参考:https://docs.microsoft.com/en-us/cpp/build/reference/await-enable-coroutine-support?view=vs-2019