boost windows 编译
环境:boost 1.78.0
vs 2022 vc143
使用“管理人身份”,打开vs“Developer Command Prompt for VS 2022 Current”。
调整路径
> bootstrap
> b2 --build-dir=build/x64 address-model=64 threading=multi --build_type=complete --stagedir=./stage --toolset=msvc-14.3 -j 12 # 生成64位 DLL / LIB
> b2 --build-dir=build/x86 address-model=32 threading=multi --build_type=complete --stagedir=./stage --toolset=msvc-14.3 -j 12 # 生成32位 DLL / LIB