MinGW-W64용 Windows에서 복잡한(실제로는 아님) Boost 컴파일.
먼저 임시 폴더를 보관할 폴더를 선택합니다. 임시 폴더에는 C:\temp를 사용하고 라이브러리에는 C:\SDKs 또는 C:\libs를 사용합니다. 임시 폴더 위치에 있으면 원하는 부스트 버전을 다운로드합니다. 이 튜토리얼에서는 부스트 1.80.0을 사용할 것입니다. 다운로드하고 다음 간단한 명령을 사용하여 압축을 풀 수 있습니다.
mkdir C:\temp\boost-b2
mkdir C:\{your-preferred-libraries-location}\boost
wget https://boostorg.jfrog.io/artifactory/main/release/1.80.0/source/boost_1_80_0.zip
tar -xf boost_1_80_0.zip # Yes this works on Windows or PowerShell at least.
cd boost_1_80_0/tools/build
tools/build 폴더에 들어가면 다운로드와 함께 제공되는 bootstrap.bat 파일을 사용하여 Boost를 설정할 수 있습니다.
.\bootstrap.bat gcc
# And now we build
.\b2.exe --prefix="C:\boost-b2" install
이제 재미있는 부분입니다. (별로 재미 없음)
C:\temp\boost_1_80_0 폴더로 돌아가서 다음 명령을 사용하여 MinGW용 라이브러리를 컴파일해야 합니다.
b2 --build-dir="C:\temp\boost_1_80_0\build" --build-type=complete --prefix="C:\{your-preferred-libraries-location}\boost" toolset=gcc install
이것은 시간이 걸리므로 컴파일하는 동안 할 일을 찾으십시오.
완료되면 CMAKE가 Boost를 쉽게 찾을 수 있도록 시스템 환경 변수에 C:\SDK를 추가할 수 있습니다. C:\temp 폴더에 생성한 모든 폴더를 제거할 수도 있습니다.
이제 Boost 라이브러리를 쉽게 사용할 수 있습니다! 포함 폴더는 C:{your-preferred-libraries-location}\boost\include\boost-1_80이고 라이브러리는 C:{your-preferred-libraries-location}\boost\lib에 저장됩니다. 행복한 해킹.
Reference
이 문제에 관하여(MinGW-W64용 Windows에서 복잡한(실제로는 아님) Boost 컴파일.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/abdulh4ni/the-complicated-not-really-compiling-of-boost-on-windows-for-mingw-w64-149f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)