1

几天来我一直试图解决这个问题,但似乎无法找到解决方案。我正在 MSVS 2012 内创建一个 Windows 窗体应用程序(但应用程序本身使用的是 MSVS 2010 二进制文件和 .NET 4.0)。该应用程序需要使用 CLI/CLR 托管代码。

我遵循了入门指南并使用以下方法构建了库:

bootstrap.bat
.\b2.exe --toolset=msvc-10.0 --build-type=complete

我在 Visual Studio 中将目录设置/链接到我的项目:

  • C/C++ > 常规 > 附加包含目录 > "C:\Program Files %28x86%29\Microsoft Visual Studio 11.0\Boost"
  • 链接器 > 常规 > 其他库目录 > "C:\Program Files %28x86%29\Microsoft Visual Studio 11.0\Boost\stage\lib"

这是我在之前编译和执行代码中添加的所有内容:

#define BOOST_LIB_DIAGNOSTIC                 //show diagnostics
#define BOOST_USE_WINDOWS_H                  
#define BOOST_FILESYSTEM_NO_DEPRECATED       //don't use deprecated code
#include <boost/filesystem.hpp>

using namespace boost::filesystem;

这是构建的输出(Release/Win32):

1>------ Build started: Project: PROJECT_NAME (Visual Studio 2010), Configuration: Release Win32 ------
1>  PROJECT_NAME.cpp
1>  Linking to lib file: libboost_filesystem-vc100-mt-1_53.lib
1>  Linking to lib file: libboost_system-vc100-mt-1_53.lib
1>PROEJCT_NAME.obj : error LNK2001: unresolved external symbol "class boost::system::error_category const & __clrcall boost::system::system_category(void)" (?system_category@system@boost@@$$FYMABVerror_category@12@XZ)
1>PROJECT_NAME.obj : error LNK2001: unresolved external symbol "class boost::system::error_category const & __clrcall boost::system::generic_category(void)" (?generic_category@system@boost@@$$FYMABVerror_category@12@XZ)
1>PROJECT_NAME.obj : error LNK2001: unresolved external symbol "void __clrcall boost::filesystem::path_traits::convert(wchar_t const *,wchar_t const *,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &,class std::codecvt<wchar_t,char,int> const &)" (?convert@path_traits@filesystem@boost@@$$FYMXPB_W0AAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$codecvt@_WDH@5@@Z)
1>PROJECT_NAME.obj : error LNK2001: unresolved external symbol "public: static class std::codecvt<wchar_t,char,int> const & __clrcall boost::filesystem::path::codecvt(void)" (?codecvt@path@filesystem@boost@@$$FSMABV?$codecvt@_WDH@std@@XZ)
1>PROJECT_NAME.obj : error LNK2001: unresolved external symbol "class boost::system::error_code __clrcall boost::filesystem::detail::dir_itr_close(void * &)" (?dir_itr_close@detail@filesystem@boost@@$$FYM?AVerror_code@system@3@AAPAX@Z)
1>C:\Users\USERNAME\Documents\Visual Studio 2012\Projects\PROJECT_NAME\Release\PROJECT_NAME.exe : fatal error LNK1120: 5 unresolved externals
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

我仍然没有正确构建/链接的东西吗?让我知道是否需要更多信息,我会提供我能提供的。

4

1 回答 1

1

恢复一个旧帖子,我知道,但我花了很长时间试图找出一个类似的问题,所以我为遇到类似问题的下一个人发帖。

为此,您需要使用 VS2012 构建 Boost 或从Teeks99Sourceforge下载它。我无法使它与 VS2010 一起工作。在项目配置属性中将平台工具集更改为 Visual Studio 2012 (v110)。当我试图找出类似的问题时(#include <boost/filesystem.hpp>在 VS2010 最小示例代码中),这对我有用。确保公共语言运行时支持设置为/clr(NOT /clr:pure)。

于 2013-11-20T13:23:49.303 回答