如何在Windows 上設定boost_1_60_0
對於那些希望在Windows 上建立boost 的人,這裡有一些分步說明:
找到並下載boost
從Boost 官方網站下載boost_1_60_0 .zip 檔案。
環境設定
建立一個 BOOST_ROOT 環境變量,指向擷取的 boost 檔案的位置。
建置流程
Visual Studio 2015
開啟 Visual Studio 工具命令提示字元並導覽至 ostostost_1_xx_0 目錄目錄。執行以下指令:
call bootstrap.bat- b2 -j8 toolset=msvc-14.0 address-model=64 Architecture=x86 link=static threading=multi runninging=multirunning-kreading=multi --build-type=完整階段2>&1 | tee msvc_static_build.txt(用於靜態庫)
- b2 -j8 toolset=msvc-14.0 address-model=64 Architecture=x86 link=shared threading=multi running-link=shared --with-thread --build -type=最小階段2>&1 | tee msvc_thread_build.txt(用於動態執行緒函式庫)
- b2 -j8 toolset=msvc-14.0 address-model =64 Architecture=x86 link=shared threading=multi running-link=shared --build-type=complete階段2>&1 | tee msvc_dynamic_build.txt(對於所有動態函式庫)
-
MinGW
確保將gcc/mingw 加入您的系統路徑。在命令提示字元中,導覽至boost_1_xx_0 目錄並執行以下命令:
bootstrap.bat mingw- b2 toolset=gcc link=shared threading=mulul>
- b2 toolset=gcc link=shared threading=mulul>
b2 --完成第2階段>&1 | tee mingw_build.txt
注意:對於Boost 1.61.0 及更高版本,您可能需要將bootstrap.bat mingw 替換為bootstrap.bat gcc。
以上是如何在 Windows 上建置 Boost 1.60.0?的詳細內容。更多資訊請關注PHP中文網其他相關文章!