gpt4 book ai didi

c++ - 尝试在 Codeblocks 上使用 Boost 库会给出未定义的引用

转载 作者:行者123 更新时间:2023-12-02 10:22:23 25 4
gpt4 key购买 nike

我正在尝试在 CodeBlocks 上使用 boost 库,但我是新手,我似乎无法正确链接它。

boost文件夹(1.70版)与我的main.cpp在同一个文件夹中,我试图访问的库是libboost_filesystem-mgw92-mt-x64-1_70.a;

这是我的代码:

#include <iostream>
#include <boost/filesystem.hpp>


int main()
{

boost::filesystem::path l_path("C:\\Hello.txt");
if(boost::filesystem::exists(l_path))
{
std::cout<<"exists!"<<std::endl;
}
else
{
std::cout<<"no";
}
return 0;
}

还有一些我的设置和错误的截图

The linker settings

The search Directories for compiler an linker(both the same)

And a screenshot of the error

谢谢!

最佳答案

对 _Unwind_Resume 的 undefined reference 建议您使用与项目不同的编译器构建 Boost,或者选择不同类型的异常处理。

检查您是否在两种情况下都使用相同的编译器。

这也可能是由于使用 gcc 而不是 g++ 构建项目造成的。你也应该检查一下。在这种情况下,通过添加 -lstdc++ 切换到 g++ 或显式链接到 libstdc++到编译器标志。

关于c++ - 尝试在 Codeblocks 上使用 Boost 库会给出未定义的引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59542373/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com