我有以下代码:
#include <iostream>
#include <boost\filesystem.hpp>
int main(){
const char* file_path = "my_path";
std::cout << boost::filesystem::file_size(file_path) << std::endl;
}
当我构建时,我收到以下错误:
1>Main.obj : error LNK2019: unresolved external symbol "class boost::system::error_category const & __cdecl boost::system::system_category(void)" (?system_category@system@boost@@YAAEBVerror_category@12@XZ) referenced in function "void __cdecl boost::system::`dynamic initializer for 'native_ecat''(void)" (??__Enative_ecat@system@boost@@YAXXZ)
1>Main.obj : error LNK2019: unresolved external symbol "class boost::system::error_category const & __cdecl boost::system::generic_category(void)" (?generic_category@system@boost@@YAAEBVerror_category@12@XZ) referenced in function "void __cdecl boost::system::`dynamic initializer for 'errno_ecat''(void)" (??__Eerrno_ecat@system@boost@@YAXXZ)
1>Main.obj : error LNK2019: unresolved external symbol "void __cdecl boost::filesystem::path_traits::convert(char const *,char const *,class std::basic_string<wchar_t,struct std::char_traits<wchar_t>,class std::allocator<wchar_t> > &,class std::codecvt<wchar_t,char,int> const &)" (?convert@path_traits@filesystem@boost@@YAXPEBD0AEAV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@AEBV?$codecvt@_WDH@5@@Z) referenced in function "void __cdecl boost::filesystem::path_traits::dispatch<class std::basic_string<wchar_t,struct std::char_traits<wchar_t>,class std::allocator<wchar_t> > >(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<wchar_t,struct std::char_traits<wchar_t>,class std::allocator<wchar_t> > &,class std::codecvt<wchar_t,char,int> const &)" (??$dispatch@V?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@@path_traits@filesystem@boost@@YAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@4@AEBV?$codecvt@_WDH@4@@Z)
1>Main.obj : error LNK2019: unresolved external symbol "public: static class std::codecvt<wchar_t,char,int> const & __cdecl boost::filesystem::path::codecvt(void)" (?codecvt@path@filesystem@boost@@SAAEBV?$codecvt@_WDH@std@@XZ) referenced in function "public: __cdecl boost::filesystem::path::path<char const [1]>(char const (&)[1],void *)" (??$?0$$BY00$$CBD@path@filesystem@boost@@QEAA@AEAY00$$CBDPEAX@Z)
1>Main.obj : error LNK2019: unresolved external symbol "unsigned __int64 __cdecl boost::filesystem::detail::file_size(class boost::filesystem::path const &,class boost::system::error_code *)" (?file_size@detail@filesystem@boost@@YA_KAEBVpath@23@PEAVerror_code@system@3@@Z) referenced in function "unsigned __int64 __cdecl boost::filesystem::file_size(class boost::filesystem::path const &)" (?file_size@filesystem@boost@@YA_KAEBVpath@12@@Z)
我使用的是Visual Studio,我为链接器设置了额外的库路径以包含"C:\Program Files\Boost\boost_1_54_0\stage\lib;"
。我还设置了包含路径来查看C:\Program Files\Boost\boost_1_54_0;
有人可以帮忙吗? 当我使用boost :: algorithm,boost :: string和boost :: interprocess 时,我的代码构建正常。
编辑:这是我在命令行上完成的链接:
/ OUT:“my_file_path”/ MANIFEST / NXCOMPAT / PDB:“my_file_path” / DYNAMICBASE“kernel32.lib”“user32.lib”“gdi32.lib”“winspool.lib” “comdlg32.lib”“advapi32.lib”“shell32.lib”“ole32.lib”“oleaut32.lib” “uuid.lib”“odbc32.lib”“odbccp32.lib”/ DEBUG / MACHINE:X64 / INCREMENTAL / PGD:“my_file_path”/ MANIFESTUAC:“level ='asInvoker' uiAccess ='false'“/ ManifestFile:”my_file_path“/ ERRORREPORT:PROMPT / NOLOGO / LIBPATH:“C:\ Program Files \ Boost \ boost_1_54_0 \ stage \ lib” / TLBID:1
答案 0 :(得分:10)
我在Visual Studio中构建了类似的未解析的外部组件 解决方案是将使用wchar_t设置为内置处理。
答案 1 :(得分:2)
您遇到的问题与How do I resolve LNK1104 error with Boost Filesystem Library in MSCV?中的问题相同,答案是相同的:Boost.Filesystem依赖于Boost.System,您需要另外链接后一个库。
答案 2 :(得分:1)
在IDE中设置链接器的/VERBOSE
标志(“链接器|常规|显示进度”=“显示所有进度消息(/ VERBOSE)”)。然后看输出;在IDE中,它将位于名为<project-name>.log
的文件的构建输出目录中。
如果要查找boost文件系统库,请确保它存在;如果没有人在寻找,那么你必须在链接器输入中明确添加适当的一个,就像DietmarKühl在一篇现已删除的文章中提到的那样。
此外,由于您看起来正在为x64目标构建,因此请确保您没有尝试与32位增强库进行链接。
答案 3 :(得分:1)
可能会出现此错误的原因有很多。原因通常隐藏在错误之后或之前的警告中。实际的错误消息通常没有什么线索。例如,我的场景显示如下:
我使用VSColorOutput插件以不同方式对错误和警告进行着色。如您所见,提示显示在警告消息中,
warning LNK4272: library machine type 'X86' conflicts with target machine type 'x64'
这基本上意味着我为x32目标编译了Boost库,但项目的目标是x64。所以解决方法是删除stage文件夹并运行以下命令:
b2 variant=debug,release link=static runtime-link=shared threading=multi --with-thread address-model=64
如果您没有看到上述警告,那么您可能想尝试在项目选项中为Linker启用VERBOSE模式&gt;链接器&gt;一般&gt;显示进度。
可能出现此错误消息的其他一些原因:
您尚未编译Boost安装或未在项目选项中设置路径&gt;链接器&gt;一般&gt;其他图书馆目录。在这种情况下,您可能会收到消息:
致命错误LNK1104:无法打开文件&#39; libboost_system-vc90-mt-gd-1_62.lib&#39;
可能发生这种情况的另一个原因是,您的机器或项目上可能已经配置了Boost,以便不使用自动生成的库名称。这称为Boost默认执行的自动链接,这意味着您不需要在项目选项中明确指定实际的.lib文件。相反,Boost auto会生成lib文件的名称并将其添加到链接器。如果关闭此功能,您将收到错误消息。可以在项目级别使用BOOST_ALL_DYN_LINK宏重新启用它。
答案 4 :(得分:0)
这对我有用:在引用其他标题之前,我将#include boost / filesytem.hpp放在我的代码顶部。
Link errors:
#include <iostream>
#include <fstream>
#include <stdio.h>
#include <Windows.h>
//quantlib
#include <ql/quantlib.hpp>
//boost
#include <boost/timer.hpp>
#include <boost/lexical_cast.hpp>
#include <boost/filesystem.hpp>
---------------------------------------------
No Link errors:
#include <iostream>
#include <boost/filesystem.hpp>
#include <fstream>
#include <stdio.h>
#include <Windows.h>
//quantlib
#include <ql/quantlib.hpp>
//boost
#include <boost/timer.hpp>
#include <boost/lexical_cast.hpp>
答案 5 :(得分:0)
通过在标头包含:
之前添加以下内容来解决链接器错误define BOOST_SYSTEM_NO_DEPRECATED