boost compile 64bit + debug/release + MT 빌드할때마다 폴더 지우고 다시 푼다음에 했음요.
* linux
sudo apt-get install -y build-essential libzip-dev libicu-dev libbz2-dev gcc-multilib g++-multilib libcr-dev
./bootstrap.sh --prefix="/home/crossfire/boost"
./b2 install variant=debug address-model=64 threading=multi link=static --without-mpi --without-python > out.log
./b2 install variant=release address-model=64 threading=multi link=static --without-mpi --without-python > out.log
* windows (C:\Boost에 설치됨)
bootstrap.bat
b2 install -j 4 --toolset=msvc-14.0 variant=debug,release address-model=32 threading=multi runtime-link=static --without-mpi --without-python > out.log
b2 install -j 4 --toolset=msvc-14.0 variant=debug,release address-model=64 threading=multi runtime-link=static --without-mpi --without-python > out.log
'C++' 카테고리의 다른 글
[펌] 서버 클라이언트 구분이 없는 UDP 소켓 프로그래밍 (0) | 2017.04.20 |
---|---|
기초적인 IOCP 서버 개발 팁. 연결에서 종료까지... (0) | 2017.03.27 |
LFH (Low Fragmentation Heap), TBB alloc (0) | 2016.08.08 |
c++ subversion static libray 컴파일 (0) | 2016.02.02 |
스택 사용량 계산 (0) | 2015.03.25 |
nssm curl 사용하여 주시적으로 웹페이지 호출하는 서비스 만들기 (0) | 2014.07.03 |
mongodb client driver 컴파일 (0) | 2014.05.15 |
매크로는 이런식으로 쓰면 좀 편함. (0) | 2014.03.28 |