2024-01-20

Boost 1.75.0 설치

리눅스에 설치된 boost는 1.74.0 이 설치되어있고, 
log 라이브러리가 설치되어있지도 않다.
이것들을 포함하여 재빌드하여 설치해야, 보드의 환경과 동일하다.

mkdir boost
cd boost
tar xfz boost_1_75_0.tar.gz
cd boost_1_75_0/
./bootstrap.sh
./b2 --with-log
sudo ./b2 install
그냥 알아서 /usr/local/lib에 설치됨.
cmake에 알려줘야지
set(BOOST_ROOT "/usr/local/lib")

끝.

댓글 없음:

댓글 쓰기

How to Convert EUC-KR Source Code to UTF-8

How to Convert EUC-KR Source Code to UTF-8 I found old STM32 firmware code. The files were in EUC-KR encoding. This is an old Korean text f...