Windows 7에 Boost_1_60_0을 설치하기 위해 몇 가지 단계를 수행한 후 문제가 발생했습니다. 이 문서는 추가 지침을 제공하고 나머지 사항을 명확히 하는 것을 목표로 합니다. 설치 과정에 필요한 단계입니다.
다음 단계:
이미 초기 단계를 성공적으로 실행했으므로 다음을 진행해야 합니다.
원하는 빌드 유형에 따라 다음 b2 명령 중 하나를 선택하고 명령 프롬프트에서 실행합니다.
정적 라이브러리의 경우:
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
동적 스레드 라이브러리의 경우:
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
동적 라이브러리인 경우:
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
"msvc-14.0"을 올바른 Visual Studio로 바꾸는 것을 잊지 마세요. 필요한 경우 도구 세트 버전을 선택하세요.
위 내용은 Windows 7에서 Boost_1_60_0 설치를 완료하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!