Mac上编译比特币源码(bitcoin-0.15)

第一步:安装brew(官网:https://brew.sh)

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

第二步:安装x-code 

xcode-select --install

第三步:安装依赖包

brew install automake berkeley-db4 libtool boost --c++11 miniupnpc openssl pkg-config protobuf python3 qt libevent

如果需要打包为dmg文件,还需要安装brew install librsvg

第四步:下载bitcoin-0.15源码 

访问 https://github.com/bitcoin/bitcoin/tree/0.15 下载bitcoin-0.15.zip, 通过命令unzip bitcoin-0.15.zip将源码解压到文件夹bitcoin-0.15中

第五步:编译源码 

cd bitcoin-0.15

./autogen.sh

./configure

make

接下来可以通过命令make deploy 生成dmg文件, 该过程中若遇到如下问题,则先在Finder->Device中,将所有Bitcoin的挂载弹出后再运行。

你可能感兴趣的:(Mac上编译比特币源码(bitcoin-0.15))