您在按照一些步驟在 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
以上是如何在Windows 7上完成Boost_1_60_0安裝?的詳細內容。更多資訊請關注PHP中文網其他相關文章!