Windows에서 Boost_1_60_0을 설정하는 방법
Windows에서 Boost를 구축하려는 사용자를 위한 몇 가지 단계별 지침은 다음과 같습니다.
boost 찾아 다운로드
Boost 공식 웹사이트에서 Boost_1_60_0 .zip 파일을 다운로드하세요.
환경 설정
추출된 부스트 파일의 위치를 가리키는 BOOST_ROOT 환경 변수를 생성합니다.
빌드 프로세스
Visual Studio 2015
Visual Studio 도구 명령 프롬프트를 열고 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=완료 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=최소 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 2단계>&1 | tee msvc_dynamic_build.txt(모든 라이브러리의 경우 동적)
MinGW
gcc/mingw가 시스템 경로에 추가되었는지 확인하세요. 명령 프롬프트에서 Boost_1_xx_0 디렉터리로 이동하여 다음 명령을 실행합니다.
- bootstrap.bat mingw
- b2 toolset=gcc link=shared threading=multi --build-type =2단계 완료>&1 | tee mingw_build.txt
참고: Boost 1.61.0 이상의 경우 bootstrap.bat mingw를 bootstrap.bat gcc로 바꿔야 할 수도 있습니다.
위 내용은 Windows에서 Boost 1.60.0을 빌드하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!