VS2008 编译Boost 1_48_0

1.解压后运行bootstrap.bat得到bjam.exe;

2.找到f:\boost_1_48_0\tools\build\v2\user-config.jam,

找到如下所示的字符串。

 #  MSVC configuration  

  #  Configure msvc (default version, searched in standard location  

#  and PATH).  

#  using msvc ;  

  在此字符串下面添加如下命令行,并保存。

 using msvc : 9.0 : : /wd4819 /D_CRT_SECURE_NO_DEPRECATE /D_SCL_SECURE_NO_DEPRECATE  /D_SECURE_SCL=0 ;  

 

3.

4、打开 命令提示符  CD到d:\boost_1_45_0目录。输入如下命令开始编译

运行

cmd

f:--cd boost\boost_1_48_0\

bjam --toolset=msvc-9.0 --build-type=complete。

 

然后这只包含文件,包含库文件就可以了。

你可能感兴趣的:(vs2008)