[ci skip] update readme with rust override

This commit is contained in:
Nikolay Volf 2016-02-19 15:21:52 +03:00
parent 57ef5e2691
commit fe979f0d46
1 changed files with 20 additions and 6 deletions

View File

@ -26,12 +26,17 @@ apt-get install -y --force-yes librocksdb-dev
# install multirust
curl -sf https://raw.githubusercontent.com/brson/multirust/master/blastoff.sh | sh -s -- --yes
# install beta and make it default
multirust default beta
# install beta
multirust update beta
# download and build parity
git clone https://github.com/ethcore/parity
cd parity
# parity should be build with rust beta
multirust override beta
# build in release
cargo build --release
```
@ -49,12 +54,17 @@ cd ..
# install rust beta
curl -sf https://raw.githubusercontent.com/brson/multirust/master/blastoff.sh | sudo sh -s -- --yes
# install beta and make it default
sudo multirust default beta
# install rust beta
sudo multirust update beta
# download and build parity
git clone https://github.com/ethcore/parity
cd parity
# parity should be build with rust beta
sudo multirust override beta
# build in release
cargo build --release
```
@ -66,12 +76,16 @@ brew update
brew install rocksdb
brew install multirust
# install beta and make it default
multirust default beta
# install beta
multirust update beta
# download and build parity
git clone https://github.com/ethcore/parity
cd parity
# use rust beta for building parity
multirust override beta
cargo build --release
```