关于 cmake
- 官网:https://cmake.org/
使用 brew 安装
- brew 安装 cmake: https://formulae.brew.sh/formula/cmake
- 安装使用 brew : https://blog.csdn.net/lovechris00/article/details/121613647
brew install make
将安装在 /usr/local/Cellar/cmake/
下,并链接至 /usr/local/bin
/usr/local/Cellar/cmake/3.23.2/bin
下有以下四个可执行文件
- ccmake
- cmake
- cpack
- ctest
查看版本信息
cmake --version
得到如下返回
cmake version 3.23.2
CMake suite maintained and supported by Kitware (kitware.com/cmake).
关于 GNU make
- GNU make 主页:https://www.gnu.org/software/make/
- 手册:https://www.gnu.org/software/make/manual/make.html
方式一:brew
可见 brew 官方文档:https://formulae.brew.sh/formula/make
brew install make
安装包将位于 /usr/local/Cellar/make
,可执行文件为 /usr/local/Cellar/make/4.3/bin/gmake
,被链接到 /usr/local/bin/gmake
获取版本信息:
gmake --version
GNU Make 4.3
Built for x86_64-apple-darwin21.1.0
Copyright (C) 1988-2020 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
方式二:下载源码
- 源码包下载地址:
https://www.gnu.org/software/make/#download - 不同版本索引
https://ftp.gnu.org/gnu/make/
这里我下载:make-4.3.tar.gz
得到压缩包,解压后,进入文件夹,执行如下命令:
./configure
make
sudo make install
既可得到可执行文件: /usr/local/bin/make
查看版本信息:
/usr/local/bin/make --version
得到文章来源:https://www.toymoban.com/news/detail-648484.html
GNU Make 4.3
为 x86_64-apple-darwin22.5.0 编译
Copyright (C) 1988-2020 Free Software Foundation, Inc.
许可证:GPLv3+:GNU 通用公共许可证第 3 版或更新版本<http://gnu.org/licenses/gpl.html>。
本软件是自由软件:您可以自由修改和重新发布它。
在法律允许的范围内没有其他保证
伊织 2023-08-14文章来源地址https://www.toymoban.com/news/detail-648484.html
到了这里,关于macOS - 安装 GNU make、cmake的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!