简介
在Windows系统上,使用boost时发现未定义的外部符号的链接问题:
thread_test_01.cpp.obj : error LNK2019: 无法解析的外部符号 "void __cdecl boost::
throw_exception(class std::exception const &)" (?throw_exception@boost@@YAXAEBVe
xception@std@@@Z),该符号在函数 "public: __cdecl boost::gregorian::date::date(cl
ass boost::gregorian::greg_year,class boost::gregorian::greg_month,class boost::
gregorian::greg_day)" (??0date@gregorian@boost@@QEAA@Vgreg_year@12@Vgreg_month@1
2@Vgreg_day@12@@Z) 中被引用
thread_test_01.exe : fatal error LNK1120: 1 个无法解析的外部命令
本文总结了该问题的解决思路。
问题分析
搜索代码,发现boost/throw_exception.hpp文件中定义了如下相关的代码:
#ifdef BOOST_NO_EXCEPTIONS
void throw_exception( std::exception const & e ); // user defined
#else
inline void throw_exception_assert_compatibility( std::