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 중국어 웹사이트의 기타 관련 기사를 참조하세요!