在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中文網其他相關文章!