From 04a28c27ff7dfce84621fcea4a70ce05654af80a Mon Sep 17 00:00:00 2001 From: Alex Melville Date: Mon, 29 May 2017 07:45:27 -0700 Subject: [PATCH] Add build-essential install instructions to README (#420) * add build-essentials install to README * use correct ordering of compilers --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 0be90061..6d51d34d 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,15 @@ curl -sSf https://static.rust-lang.org/rustup.sh | sh Windows binaries can be downloaded from [rust-lang website](https://www.rust-lang.org/en-US/downloads.html). +#### Install C and C++ compilers + +You will need the cc and gcc compilers to build some of the dependencies + +``` +sudo apt-get update +sudo apt-get install build-essential +``` + #### Clone and build pbtc Now let's clone `pbtc` and enter it's directory