其它系统请参考:
-
Windows:《Boost【1】安装》
软件环境
-
macOS arm64
-
XCode
1 | brew install p7zip |
brew 安装法
macOS 的 brew 更进 boost 很积极,现在就是最新版 1.76:
1 | # install b2 and boost |
然后跳到文末的“测试安装”。
源码安装法
1. 下载
1 | cd ~/Downloads |
2. 解压
1 | 7z x boost_1_76_0.7z |
3. 编译和安装 b2
1 | cd boost_1_76_0 |
4. 用 b2 编译 Boost
1 | b2 install |
测试安装
可以用以下仓库验证前面操作是否正确:
https://github.com/UMU618/test_boost
1 | git clone https://github.com/UMU618/test_boost |
最终编译出来的程序应该打印“OK!”。