boost::filesystem3::path::codecvt() 未定义的引用
尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许您缺少链接库?当我 grep 查找它时,我得到:
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:
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++.尝试为较新版本的 boost 库添加
-lboost_filesystem
。Try adding
-lboost_filesystem
for the newer versions of boost library.