您在按照一些步骤在 Windows 7 上安装 boost_1_60_0 后遇到了困难。本文旨在提供进一步的指导并澄清剩余的问题安装过程所需的步骤。
后续步骤:
由于您已经成功执行了初始步骤,因此您需要继续执行以下操作:
根据您所需的构建类型,选择以下 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中文网其他相关文章!