win7下mingw为例编译boost

Boost 版本1.5.4


1.编译

      1)生成bjam.exe

         cd boost_1_54_0\tools\build\v2

         bootstrap.bat mingw

         mingw为编译器参数,根据实际情况指定,如msvc等,具体可见文档

     2)使用bjam编译

        将bjam拷贝至boost根目录,或将其加入环境变量

        cd boost_1_54_0

        bjam --toolset=gcc --build-dir=midfiles --stagedir=stage --build-type=complete --with-thread

        --with-thread 只编译thread库,不加则编译全部

        

你可能感兴趣的:(win7下mingw为例编译boost)