>백엔드 개발 >C++ >Windows에서 Boost 1.60.0을 빌드하는 방법은 무엇입니까?

Windows에서 Boost 1.60.0을 빌드하는 방법은 무엇입니까?

Susan Sarandon
Susan Sarandon원래의
2024-11-04 07:38:02761검색

How to Build Boost 1.60.0 on Windows?

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

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