Boost 1.47.0编译

一、Boost的安装:

1、先到官网下载http://sourceforge.net/projects/boost/files/boost/1.47.0/,现在我下载的版本是1.47.0

2、进入boost_1_47_0/目录运行:bootstrap.bat,生成b2.exe和bjam.exe两个Build文件。

3、用VS2008的Command Prompt (方法:Tools -> Visual Studio 2008 Command Prompt),转到boost目录

执行:bjam toolset=msvc-10.0 variant=debug,release threading=multi runtime-link=static install

toolset=msvc-10.0:Viusal Studio 2010,如果是2008的话就是9.0,2005就是8.0

variant=debug,release 生成哪些库文件。可以单选release也行的

threading=multi:多线程支持

runtime-link=static:静态库

还有一些选项,可以参考说明文件,里面都有详细的说明的

或者执行bjam --toolset=msvc-9.0 --build-type=complete stage

4、编译成的lib文件,放在stage\lib下。这便是我们需要的库

5、设定编译环境:

由于在vs2010中,工具->选项中的C++目录设置的功能已经被否决,我们可以选住自己的项目进行设置,但是这只能用于当前项目,对于新项目需 要重新包含,这是很烦人的。通过搜索可以有一下解决方案:

打开属性管理器,选择项目,打开debug|win32和release|win32,分别设置microoft.cpp.win32.user中的vc++目录就可以了。

你可能感兴趣的:(Boost 1.47.0编译)