Home > Article > Backend Development > How to Complete the Boost_1_60_0 Installation on Windows 7?
You have encountered difficulties after following some steps to install boost_1_60_0 on Windows 7. This article aims to provide further guidance and clarify the remaining steps required for the installation process.
Next Steps:
Since you have already successfully executed the initial steps, you need to proceed with the following:
Based on your desired build type, choose one of the following b2 commands and execute it in the command prompt:
For static libraries:
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
For dynamic thread library:
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
For all as dynamic libraries:
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
Remember to replace "msvc-14.0" with the correct Visual Studio toolset version if necessary.
The above is the detailed content of How to Complete the Boost_1_60_0 Installation on Windows 7?. For more information, please follow other related articles on the PHP Chinese website!