在 Windows 上安装 Boost 1.60.0 .zip
您已成功下载适用于 Windows 7 的 Boost 1.60.0 并构建了必要的可执行文件。要继续安装:
1.设置 BOOST_ROOT 环境变量:
按照 Boost 用户指南的建议,创建一个名为 BOOST_ROOT 的环境变量,并将其值设置为 Boost 目录的位置。
2 。构建 Boost 库:
对于 Visual Studio 2015(静态库):
cd boost_1_xx_0 call bootstrap.bat 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
对于 Visual Studio 2015(动态线程库):
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
对于 Visual Studio 2015(所有动态库):
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
对于 MinGW(共享库):
cd boost_1_xx_0 bootstrap.bat mingw b2 toolset=gcc link=shared threading=multi --build-type=complete stage 2>&1 | tee mingw_build.txt
构建过程完成后,您将在 Windows 计算机上成功安装 Boost 1.60.0。
以上是如何在Windows上安装Boost 1.60.0?的详细内容。更多信息请关注PHP中文网其他相关文章!