Skip to content

Commit

Permalink
Adds libssl-dev dependency to Linux setup instructions
Browse files Browse the repository at this point in the history
Linux setup instructions were missing the libssl-dev dependency, causing the
machida build to fail. This inserts that dependency so users can build
machida properly.

Fixes #1645

[skip ci]
  • Loading branch information
JONBRWN committed Oct 17, 2017
1 parent 5227edf commit d822f00
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions book/getting-started/linux-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ sudo apt-get update
sudo apt-get install -y build-essential
```

## Install libssl-dev

```bash
sudo apt-get install -y libssl-dev
```

### Install GCC 5 or Higher

You'll need to be using at least `gcc-5`. We rely on its atomics support. If you have at least `gcc-5` installed on your machine, you don't need to do anything. If you have gcc 4 or lower, you'll need to upgrade. You can check your `gcc` version by running:
Expand Down

0 comments on commit d822f00

Please sign in to comment.