分類: 從http://www.上下載到目前最新的boost庫,快速傳送門:boost_1_53_0.zip,當(dāng)然你也可以從http:///projects/boost/files/boost-jam/這里得到源代碼,快速傳送門:boost_1_53_0.zip(98.1 MB) 我使用了后者
Boost程序庫完全開發(fā)指南——深入C++“準(zhǔn)”標(biāo)準(zhǔn)庫高清PDF版 http://www./Linux/2013-07/87574.htm Ubuntu下編譯安裝boost庫 http://www./Linux/2013-07/87573.htm Ubuntu下編譯boost 1.52b http://www./Linux/2013-02/79004.htm Ubuntu編譯安裝boost并在eclipse C/C++中使用 http://www./Linux/2011-04/34790.htm 2、得到源代碼之后,使用vs2012的cl.exe編譯進(jìn)入到源代碼目錄中 3、建立編譯工具bjam.exe----需要執(zhí)行bootstrap.bat
4、指定編譯命令指定msvc版本11.0對應(yīng)的是vs2012,--stagedir是指定編譯后存放的目錄 bjam stage --toolset=msvc-11.0 --without-graph --without-graph_parallel --without-math --without-mpi --without-python --without-serialization --without-wave --stagedir="F:\boost\boost_1_53_0\bin\vc11" link=static runtime-link=shared runtime-link=static threading=multi debug release 稍微等一會,庫就編譯好了…… vs2010 bjam stage --toolset=msvc-10.0 --without-graph --without-graph_parallel --without-math --without-mpi --without-python --without-serialization --without-wave --stagedir="C:\Users\Administrator\git\essearch\doc\rpc\hprose-cpp-master\boost_1_55_0\bin\vc10" link=static runtime-link=shared runtime-link=static threading=multi debug release 5、開始使用boost首先需要設(shè)定文件包含目錄: 我的boost庫解壓在F盤下 設(shè)定庫目錄: “F:\boost\boost_1_53_0\”是我編譯的出來lib的目錄 然后建立我們的第一個(gè)boost項(xiàng)目,代碼如下:
http://jingyan.baidu.com/article/11c17a2c765763f446e39dc1.html |
|