Eclipse+Cygwin+GCC+Boost 使用Asio的环境配置
例子取自Boost的文档
#include <boost/asio.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>
using namespace std;
using namespace boost;
int main() {
boost::asio::io_service io;
boost::asio::deadline_timer t(io, boost::posix_time::seconds(5));
t.wait();
std::cout << "Hello, world!\n";
return 0;
}
问题1:
gcc报需要__USE_W32_SOCKETS,同时我在Boost的文档上发现需要加上预编译__USE_W32_SOCKETS。问题是我自己敲”_ USE_W32_SOCKETS”,折腾了一两个小时,没发现错误。这里非常奇怪的,为什么使用”__”?
问题3: 报一系列的
/usr/lib/gcc/i686-pc-cygwin/3.4.4/include/c++/bits/stl_iterator.h
undefined reference to `_send@16'
undefined reference to `WSAStartup@8'
undefined reference to `_inet_addr@4'
undefined reference to `_htons@4'
undefined reference to `_connect@12'
需要加gcc预编译ws2_32。原因是boost.asio运行在windows的环境下,实际也封装了winsock,所有gcc编译的时候需要这个预编译。这个问题类似于mingw使用winsock。
问题2:
Linker需要库文件libboost_date_time.a, libboost_system.a, libboost_program_options.a
警告:需加上预编译 _WIN32_WINNT
Eclipse的设置如下:
1.Cygwin C++ Compiler->Preprocessor
2. Cygwin C++ Linker->Libraries
3. Cygwin C++ Linker->Miscellaneous