c++ - Cannot compile when trying to utilize boost::asio::signal_set -
i'm using mingw 4.5.1 compiling client application (c++, windows xp) utilizing newest version of boost 1_47. reason can't seem determine, when go compile using boost::asio::signal_set
type compile error (boost::asio::signal_set
not define type), , when trying explicitly include either of associated signal_set headers, complaints of no file can found (despite file indeed being expected). have tried including files within same level of directory tree without issue, seems hang on signal_set.hpp
file (although no complaints when using full header asio.hpp has include). same behavior when trying use boost 1_46_1 well.
might have insights going on?
the issue had was not including boost headers thought was. have boost installation in directory on hard drive, c:\boost\some_boost_version. whereas thought pointing new boost version's includes @ c:\boost\boost-1_47\boost, there not level inside directory tree \boost, in c:\boost\boost-1_47. adding new directory (created c:\boost\boost-1_47\boost) , putting includes within that, problem resolved. overlooked when retooled build scripts build boost libraries on machine.
Comments
Post a Comment