美文网首页
Mac上常见基础构建工具的安装

Mac上常见基础构建工具的安装

作者: XueYongWei | 来源:发表于2019-07-19 18:09 被阅读0次

安装autoconf

curl -OL http://ftpmirror.gnu.org/autoconf/autoconf-2.69.tar.gz
tar -xzf autoconf-2.69.tar.gz 
cd autoconf-2.69
./configure && make && sudo make install

安装automake

curl -OL http://ftpmirror.gnu.org/automake/automake-1.14.tar.gz
tar -xzf automake-1.14.tar.gz
cd automake-1.14
./configure && make && sudo make install

安装libtool

curl -OL http://ftpmirror.gnu.org/libtool/libtool-2.4.2.tar.gz
tar -xzf libtool-2.4.2.tar.gz
cd libtool-2.4.2
./configure && make && sudo make install

安装pkg-config

与上面同样的命令,分别为:

  1. 下载mac最新版pkg-config
  2. 解压,终端cd到解压文件夹下
  3. 运行配置文件进行系统配置:./configure --with-internal-glib
  4. 编译pkgconfig:make
  5. 安装包自检测: make check
  6. 安装: make install

相关文章

网友评论

      本文标题:Mac上常见基础构建工具的安装

      本文链接:https://www.haomeiwen.com/subject/tdnslctx.html