首页  >  文章  >  后端开发  >  如何在Windows 7上完成Boost_1_60_0安装?

如何在Windows 7上完成Boost_1_60_0安装?

Patricia Arquette
Patricia Arquette原创
2024-11-04 15:00:151004浏览

How to Complete the Boost_1_60_0 Installation on Windows 7?

在 Windows 上安装 boost_1_60_0.zip

您在按照一些步骤在 Windows 7 上安装 boost_1_60_0 后遇到了困难。本文旨在提供进一步的指导并澄清剩余的问题安装过程所需的步骤。

后续步骤:

由于您已经成功执行了初始步骤,因此您需要继续执行以下操作:

  1. 创建一个 BOOSt_ROOT 环境变量,指向 boost 目录的位置(例如 C:boost_1_60_0)。建议其他应用程序正确引用。
  2. 根据您所需的构建类型,选择以下 b2 命令之一并在命令提示符中执行它:

    • 对于静态库:

      b2 -j8 toolset=msvc-14.0 address-model=64 architecture=x86 link=static threading=multi runtime-link=shared --build-type=complete stage
      2>&1 | tee msvc_static_build.txt
    • 对于动态线程库:

      b2 -j8 toolset=msvc-14.0 address-model=64 architecture=x86 link=shared threading=multi runtime-link=shared --with-thread --build-type=minimal stage
      2>&1 | tee msvc_thread_build.txt
    • 对于所有动态库:

      b2 -j8 toolset=msvc-14.0 address-model=64 architecture=x86 link=shared threading=multi runtime-link=shared --build-type=complete stage
      2>&1 | tee msvc_dynamic_build.txt

记住将“msvc-14.0”替换为正确的 Visual Studio如有必要,工具集版本。

以上是如何在Windows 7上完成Boost_1_60_0安装?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn