Window下编译boost1.68
程序员文章站
2022-05-31 22:12:29
...
下载boost
前往boost官网下载boost1.68
编译
解压释放到D:\boost1.68.0,使用VS工具运行bootstrap.bat,分别运行下面两个命令,其中address-model表示编译的是32位还是64位库,–stagedir=表示输出目录,link表示编译的是静态库还是动态库,runtime-link表示使用的运行时库是静态链接还是动态链接,threading表示使用的运行时库是多线程版本还是单线程版本。
bjam stage --toolset=msvc-14.1 --without-python address-model=32 --build-type=complete --stagedir="D:\boost1.68.0\bin\vc141_32" link=static runtime-link=static threading=multi debug release
bjam stage --toolset=msvc-14.1 --without-python address-model=64 --build-type=complete --stagedir="D:\boost1.68.0\bin\vc141_64" link=static runtime-link=static threading=multi debug release
也可以不带address-model参数,一次生成64位和32位库
bjam stage --toolset=msvc-14.1 --without-python --build-type=complete --stagedir="D:\boost1.68.0\bin" link=static runtime-link=static threading=multi debug release
上一篇: postgreSQL数据库基本操作(三)
推荐阅读
-
Mac系统下源码编译安装MySQL 5.7.17的教程
-
Window 下安装Mysql5.7.17 及设置编码为utf8的方法
-
Chrome Visual Studio 2005下的编译过程
-
Ubuntu下安装并配置VS Code编译C++的方法
-
Linux下nginx编译安装教程和编译参数详解
-
Linux 6 下编译安装 PHP 5.6实例详解
-
Ubuntu下nginx编译安装参数配置
-
如何在window系统下快速建立Django框架
-
WordPress在window2003 IIS ISAPI ReWrite下的URL规则
-
nginx 0.8.54/1.0.0 在cygwin环境下的编译(包括 nginx_mod_h264_streaming-2.2.7)