C++ boost를 설치 및 활용해 보자.
$sudo apt upgrade libboost-all-dev
로 설치하거나
직접 설치하는 방법
$sudo apt-get update
$wget -c 'https://sourceforge.net/projects/boost/files/boost/1.73.0/boost_1_73_0.tar.bz2'
~$ tar -xvf download
3. 설치
~$ cd boost_1_55_0
~$ ./bootstrap.sh
~$ ./b2 install
아래 폴더에 설치됨
/usr/local/include
/usr/local/lib
참고 링크
https://swiftcam.tistory.com/99
boost로 sync acync 구현해보기
TCP
sync
https://elecs.tistory.com/332
async
https://elecs.tistory.com/314
UDP
server
https://gist.github.com/amidvidy/b4883a84a7ac17f0d37a
client
https://gist.github.com/kaimallea/e112f5c22fe8ca6dc627
반응형