Skip to content

Instantly share code, notes, and snippets.

@neewy
Last active December 24, 2017 16:20
Show Gist options
  • Save neewy/39557aa444c3317aeffbdedd9f0f51e2 to your computer and use it in GitHub Desktop.
Save neewy/39557aa444c3317aeffbdedd9f0f51e2 to your computer and use it in GitHub Desktop.
How to install dependencies for Iroha, clone and build the project in development branch
# Dependencies
apt-get -y --no-install-recommends install \
build-essential python-software-properties \
automake libtool \
libssl-dev zlib1g-dev libboost-all-dev \
libc6-dbg golang \
git ssh tar gzip ca-certificates \
python3 python3-pip python3-setuptools \
lcov \
wget curl cmake file unzip gdb \
iputils-ping vim ccache \
gcovr vera++ cppcheck doxygen \
graphviz graphviz-dev; \
apt-get -y clean
# Cloning
git clone https://github.com/hyperledger/iroha -b develop
cd iroha
# Build
cmake -H. -Bbuild
cmake --build build -- -j$(nproc)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment