boost::filesystem3::path::codecvt() 未定义的引用

发布于 2024-10-21 02:49:30 字数 343 浏览 5 评论 0原文

尝试使用 boost 文件系统 3,但是当我链接时,我得到以下未定义的引用:

../myfile-g.o: In function `boost::filesystem3::path::codecvt()':
../boost/filesystem/v3/path.hpp:377: undefined reference to
`boost::filesystem3::path::wchar_t_codecvt_facet()'

我在 boost 中的所有地方都进行了 grep 处理,并且没有 wchar_t_codecvt_facet()

这是在哪里定义的?

谢谢

Trying to use boost filesystem 3, but when I link I get the following undefined reference:

../myfile-g.o: In function `boost::filesystem3::path::codecvt()':
../boost/filesystem/v3/path.hpp:377: undefined reference to
`boost::filesystem3::path::wchar_t_codecvt_facet()'

I grep'd everywhere in boost and there is no wchar_t_codecvt_facet()

Where is this defined?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

得不到的就毁灭 2024-10-28 02:49:30

也许您缺少链接库?当我 grep 查找它时,我得到:

filesystem/v3/path.hpp:371  return *wchat_t_codecvt_facet();
filesystem/v3/path.hpp:462  static const codecvt_type *& wchar_t_codecvt_facet();

This is with boost 1.44 on macOS.由于该函数是在头文件中定义的,因此它应该是 libboost_filesystem 的一部分。我不确定您使用的是什么编译器/链接器,但如果 boost 在您的路径上正确并且您使用的是 g++,则标志 -libboost_filesystem 将起作用。

Perhaps you are missing a linked library? When I grep for it I get:

filesystem/v3/path.hpp:371  return *wchat_t_codecvt_facet();
filesystem/v3/path.hpp:462  static const codecvt_type *& wchar_t_codecvt_facet();

This is with boost 1.44 on macosx. Since the function is defined in the header file it should be part of libboost_filesystem . I'm not sure what compiler / linker you are using but the flag -libboost_filesystem will work if boost is properly on your path and you are using g++.

陌若浮生 2024-10-28 02:49:30

尝试为较新版本的 boost 库添加 -lboost_filesystem

Try adding -lboost_filesystem for the newer versions of boost library.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文