How do I build boost with new Visual Studio 2013 preview?(如何使用新的 Visual Studio 2013 预览版构建 boost?)
问题描述
尝试为 Boost 1.54 时.com/visualstudio/eng/2013-preview">Visual Studio 2013 Preview (MSVC12) 它警告:
When trying to build Boost 1.54 for Visual Studio 2013 Preview (MSVC12) it warns:
未知编译器版本 - 请运行配置测试并报告结果
Unknown compiler version - please run the configure tests and report the results
然后失败并出现错误:
boost_1_54_0oost/iterator/detail/facade_iterator_category.hpp(166):错误 C2039:assert_not_arg":不是boost::mpl"的成员
boost_1_54_0oost/iterator/detail/facade_iterator_category.hpp(166) : error C2039: 'assert_not_arg' : is not a member of 'boost::mpl'
看起来来自 MSVC11 的旧库不兼容.
And looks like old libs from MSVC11 are not compatible.
我真的真的很想测试新的 IDE/编译器版本并且需要提升.那么,是否可以在新的 Visual Studio 2013 预览版中使用 boost?
I really-really want to test new IDE/Compiler version and need boost. So, is it possible to use boost with new Visual Studio 2013 Preview?
推荐答案
是的.这是可能的.
可能的解决方案是:
- 尝试构建 Boost 1.53:不太新鲜,但出于某种奇怪的原因,它构建了很好.
- 如果您真的需要 Boost 1.54(新的日志库看起来不错:)),请尝试应用 this diff-patch 到您的 Boost 1.54 发行版.它最适合修订版 84920,但您也可以尝试任何其他版本.请注意,我不是此补丁的作者.
- 尝试使用 Subversion 获取最新版本:
svn co http://svn.boost.org/svn/boost/trunk boost-trunk
.在您阅读本文时,贡献者已经解决了问题.
- Try build Boost 1.53: not too fresh, but for some strange reason it builds just fine.
- If you really-really need Boost 1.54 (new Log library looks good :) ), try to apply this diff-patch to your Boost 1.54 distributive. It is best suited for revision 84920, but you can try any other too. Note that I am not author of this patch.
- Try to get latest revision with Subversion:
svn co http://svn.boost.org/svn/boost/trunk boost-trunk
. For a time when you reading this, issue can be already fixed by contributors.
2013 年 8 月 26 日
看起来 boost 人员解决了这些问题.最新的 SVN 修订版 svn co http://svn.boost.org/svn/boost/trunk boost-trunk
构建良好.感谢他们!
Looks like boost folks fixed these issues. Latest SVN revision svn co http://svn.boost.org/svn/boost/trunk boost-trunk
builds fine. Thanks to them!
2013 年 12 月 4 日
引自 TheArtTrooper 评论:
Quote from TheArtTrooper comment:
Boost 1.55.0 使用 Visual Studio 2013 RTM 构建,没有任何附加补丁
Boost 1.55.0 builds with the Visual Studio 2013 RTM without any additional patches
快乐提升!
这篇关于如何使用新的 Visual Studio 2013 预览版构建 boost?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用新的 Visual Studio 2013 预览版构建 boost?
基础教程推荐
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 从 std::cin 读取密码 2021-01-01