EOS源代码运行(二)

2018-01-24  本文已影响342人  wangwei_hz

本文介绍如何手动构建EOS源代码

原文链接:https://wangwei.one/posts/b726a89e.html

官方文档:https://github.com/EOSIO/eos

eos-logo

系统环境

升级XCode和brew

安装依赖工具

编译WASM环境

$ mkdir ~/wasm-compiler
$ cd wasm-compiler
$ git clone --depth 1 --single-branch --branch release_40 https://github.com/llvm-mirror/llvm.git
$ cd llvm/tools
$ git clone --depth 1 --single-branch --branch release_40 http://llvm.org/git/clang.git
$ cd ..
$ mkdir build
$ cd build
$ cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=.. -DLLVM_TARGETS_TO_BUILD= -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=WebAssembly -DCMAKE_BUILD_TYPE=Release ../
$ make -j4 install
配置LLVM环境变量
# 配置wasm
$ echo 'export WASM_LLVM_CONFIG=~/wasm-compiler/llvm/bin/llvm-config' >>  ~/.bash_profile
$ echo "export LLVM_DIR=$(brew --prefix llvm@4)/lib/cmake" >> ~/.bash_profile
$ source ~/.bash_profile

编译EOS代码

编译

$ cd ~
$ git clone https://github.com/eosio/eos --recursive
$ mkdir -p eos/build && cd eos/build
$ cmake -DBINARYEN_BIN=/usr/local/binaryen/bin -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl -DOPENSSL_LIBRARIES=/usr/local/opt/openssl/lib ..
$ make -j4

运行EOS源代码

参考:运行EOS源代码(一)

上一篇下一篇

猜你喜欢

热点阅读