1. 程式人生 > >vc2008/2015, linux, mingw 和 mac 環境編譯 boost_1_62_0

vc2008/2015, linux, mingw 和 mac 環境編譯 boost_1_62_0

*** 進入 VC2008/2015 命令列:
cd boost_1_62_0
bootstrap.bat (生成 bjam 程式)
vc2008 編譯:
bjam stage --toolset=msvc-9.0 --build-type=complete --with-filesystem --with-thread
vc2015 編譯:
bjam stage --toolset=msvc-14.0 --build-type=complete --with-filesystem --with-thread
單獨編譯其他常用庫(vc2015 把 9.0 改為 14.0):
bjam stage --toolset=msvc-9.0 --build-type=complete --with-filesystem
bjam stage --toolset=msvc-9.0 --build-type=complete --with-thread
bjam stage --toolset=msvc-9.0 --build-type=complete --with-locale
bjam stage --toolset=msvc-9.0 --build-type=complete --with-regex
bjam stage --toolset=msvc-9.0 --build-type=complete --with-date_time
bjam stage --toolset=msvc-9.0 --build-type=complete --with-atomic
bjam stage --toolset=msvc-9.0 --build-type=complete --with-program_options

bjam stage --toolset=msvc-14.0 --build-type=complete --with-filesystem --with-thread --with-locale --with-regex --with-date_time --with-atomic --with-program_options -j 4


*** linux 環境編譯(centos 為例) : 
sudo ./bjam install --with-filesystem


*** mingw 環境編譯:
bjam -q --toolset=gcc --with-thread
bjam -q --toolset=gcc --with-filesystem


*** mac 環境編譯:
~chmod +x bootstrap.sh
./bootstrap.sh
./b2 toolset=clang --with-filesystem
~./b2 toolset=clang cxxflags="-arch x86_64" linkflags="-arch x86_64" --with-filesystem