首頁 > 後端開發 > C++ > 主體

如何在Windows上安裝Boost 1.60.0?

Mary-Kate Olsen
發布: 2024-11-04 09:17:30
原創
186 人瀏覽過

How to Install Boost 1.60.0 on Windows?

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

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!