From 2404d3c89f13d395d547ab63fadb46a9c1695505 Mon Sep 17 00:00:00 2001 From: Shawn Tabrizi <shawntabrizi@gmail.com> Date: Fri, 12 Oct 2018 00:50:07 -0700 Subject: [PATCH] Adding instructions specific for OS X (#899) * Adding instructions specific for OS X * fix link format * fix link format * adding mac libraries and how to start testnet * adding bullets to make it more clear * typo --- substrate/README.adoc | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/substrate/README.adoc b/substrate/README.adoc index 0b0670a8c0c..01d4788705c 100644 --- a/substrate/README.adoc +++ b/substrate/README.adoc @@ -129,9 +129,18 @@ rustup update nightly rustup target add wasm32-unknown-unknown --toolchain nightly rustup update stable cargo install --git https://github.com/alexcrichton/wasm-gc -sudo apt install cmake pkg-config libssl-dev git ---- +You will also need to install the following packages: + + - Linux: +[source, shell] +sudo apt install cmake pkg-config libssl-dev git + + - Mac: +[source, shell] +brew install cmake pkg-config openssl git + Then, grab the Substrate source code: [source, shell] @@ -158,6 +167,10 @@ You can start a development chain with: [source, shell] cargo run -- --dev +Or you can join the BBQ Birch Testnet with: +[source, shell] +cargo run + include::doc/packages/packages.adoc[] include::CONTRIBUTING.adoc[leveloffset=+1] -- GitLab