Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update requirements info in README. #791

Merged
merged 2 commits into from
May 8, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,17 @@ The following are needed for building/running KEVM:
- GNU [libmpfr](http://www.mpfr.org/) and [libtool](https://www.gnu.org/software/libtool/).
- Java 8 JDK (eg. [OpenJDK](http://openjdk.java.net/))

For the exact dependencies check the Dockerfile, but they should look something like this.
On Ubuntu >= 18.04 (for example):

```sh
sudo apt install \
autoconf bison clang++-8 clang-8 cmake curl flex gcc git \
libboost-test-dev libgmp-dev libjemalloc-dev libmpfr-dev \
libprocps-dev libsecp256k1-dev libtool libyaml-dev libz3-dev
lld-8 llvm-8 llvm-8-tools make maven openjdk-11-jdk pandoc \
pkg-config z3 zlib1g-dev
sudo apt-get install --yes \
autoconf bison clang-8 cmake curl flex gcc jq libboost-test-dev \
libcrypto++-dev libffi-dev libgflags-dev libjemalloc-dev libmpfr-dev \
libprocps-dev libsecp256k1-dev libssl-dev libtool libyaml-dev \
lld-8 llvm-8-tools make maven netcat-openbsd openjdk-11-jdk \
pandoc pkg-config python3 python-pygments python-recommonmark \
python-sphinx rapidjson-dev time zlib1g-dev
```

On Ubuntu < 18.04, you'll need to skip `libsecp256k1-dev` and instead build it from source (via our `Makefile`):
Expand Down