window vs编译并使用Boost库

从http://www.boost.org上下载到目前最新的boost库,快速传送门:boost_1_53_0.zip,当然你也可以从http://sourceforge.net/projects/boost/files/boost-jam/这里得到源代码,快速传送门:boost_1_53_0.zip(98.1 MB)

我使用了后者

 

Boost程序库完全开发指南——深入C++“准”标准库高清PDF版 http://www.linuxidc.com/Linux/2013-07/87574.htm

Ubuntu下编译安装boost库 http://www.linuxidc.com/Linux/2013-07/87573.htm

Ubuntu下编译boost 1.52b http://www.linuxidc.com/Linux/2013-02/79004.htm

Ubuntu编译安装boost并在eclipse C/C++中使用 http://www.linuxidc.com/Linux/2011-04/34790.htm

2、得到源代码之后,使用vs2012的cl.exe编译

进入到源代码目录中

3、建立编译工具bjam.exe----需要执行bootstrap.bat

 

4、指定编译命令 

指定msvc版本11.0对应的是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

vs2013

bjam stage --toolset=msvc-12.0 --without-graph --without-graph_parallel --without-math --without-mpi --without-python --without-wave --stagedir="G:\boost" link=static runtime-link=shared runtime-link=static threading=multi debug release

5、开始使用boost 

首先需要设定文件包含目录:

我的boost库解压在F盘下 


设定库目录: 


“F:\boost\boost_1_53_0\”是我编译的出来lib的目录 

然后建立我们的第一个boost项目,代码如下:


#include <boost/thread.hpp>
#include <conio.h>
#include <iostream>
using namespace std;


void mythread()
{
	cout << " hello,thread! " << endl;

}

int main(int argc, char* argv[])
{

	boost::function<void()> f(mythread);
	boost::thread t(f);
	t.join();
	cout << " thread is over! " << endl;
	
	getch();
}

http://jingyan.baidu.com/article/11c17a2c765763f446e39dc1.html


  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值