>  기사  >  백엔드 개발  >  Windows에 Boost 1.60.0을 설치하는 방법은 무엇입니까?

Windows에 Boost 1.60.0을 설치하는 방법은 무엇입니까?

Mary-Kate Olsen
Mary-Kate Olsen원래의
2024-11-04 09:17:30189검색

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

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.