windows10下编译boost1.74

系列文章目录

文章目录

  • 系列文章目录
  • 前言
  • 一、准备
  • 二、编译步骤

前言

最近公司的项目中用到boost1.74,我机器上已经编译了boost1.79,为了配合项目无奈只有重新编译boost1.74

一、准备

1.visual studio2019(2017也是可以的)
2.下载boost1.74
boost库主页 目前最新版本是1.80
boost所有历史版本
windows10下编译boost1.74_第1张图片

二、编译步骤

1.使用vs2019 命令行,用管理员身份运行
windows10下编译boost1.74_第2张图片

2.使用命令行
敲入命令.\bootstrap.bat (on Windows)或者./bootstrap.sh (on other operating systems)
windows10下编译boost1.74_第3张图片
但是我敲入命令.\bootstrap.bat 这里出错了,于是按照提示我又敲入:.\b2.exe
3.在stage/lib目录下生成lib,但是并没有生成我期待中dll文件
windows10下编译boost1.74_第4张图片
windows10下编译boost1.74_第5张图片
4.命令行中敲入:./b2 install --prefix=“E:\boost\boost_1_74_0_build\x64” --build-type=complete --toolset=msvc-14.2 threading=multi --build-type=complete address-model=64
这时在E:\boost\boost_1_74_0_build\x64路径下就会生成lib和dll
windows10下编译boost1.74_第6张图片

你可能感兴趣的:(Boost,windows,windows编译boost库,boost1.74)