1
obj\Debug\src\SQLite3DB.o||In function _static_initialization_and_destruction_0:|
D:\workspace-cpp\boost_1_54_0_beta1\boost\system\error_code.hpp|222|undefined reference to boost::system::generic_category()|
D:\workspace-cpp\boost_1_54_0_beta1\boost\system\error_code.hpp|223|undefined reference to boost::system::generic_category()|
D:\workspace-cpp\boost_1_54_0_beta1\boost\system\error_code.hpp|224|undefined reference to boost::system::system_category()|
||=== Build finished: 3 errors, 0 warnings (0 minutes, 4 seconds) ===|

boost/filesystem.hpp以上是包含到我的项目后的完整错误消息。我看到一些帖子说添加-lboost_system可能会解决这个问题,但我不知道在 CodeBlocks 中的哪里可以做到这一点!
我已经花了一天的时间来解决这个问题。谢谢你的帮助!

4

1 回答 1

2

右键单击项目名称;单击“构建选项...”;转到“链接器设置”;点击“添加”;找到库并添加它。

在此处输入图像描述 在此处输入图像描述 在此处输入图像描述 在此处输入图像描述

此外,您可以添加一些自定义变量来简化调试/发布和 32/64 位目标选项的管理。我会把它留给你。


编辑

这是来自的错误代码error_code.hpp

# ifndef BOOST_SYSTEM_NO_DEPRECATED
    inline const error_category &  get_system_category() { return system_category(); }
    inline const error_category &  get_generic_category() { return generic_category(); }
    inline const error_category &  get_posix_category() { return generic_category(); }
    static const error_category &  posix_category = generic_category();
    static const error_category &  errno_ecat     = generic_category();
    static const error_category &  native_ecat    = system_category();
# endif

如您所见,定义BOOST_SYSTEM_NO_DEPRECATED将禁用它。我已经测试过了,它可以工作。这编译:

#define BOOST_SYSTEM_NO_DEPRECATED
#include <boost/system/error_code.hpp>

int main(void)
{

}
于 2013-10-11T10:54:35.900 回答