f55d111469
Conflicts: ethcore/src/client.rs |
||
---|---|---|
devtools | ||
docker | ||
ethash | ||
ethcore | ||
evmjit | ||
parity | ||
rpc | ||
sync | ||
util | ||
.editorconfig | ||
.gitignore | ||
.gitmodules | ||
.travis.yml | ||
add_license.sh | ||
Cargo.lock | ||
Cargo.toml | ||
cov.sh | ||
doc.sh | ||
hook.sh | ||
install-deps.sh | ||
install-parity.sh | ||
LICENSE | ||
license_header | ||
README.md | ||
test.sh |
ethcore
Building from source
Ubuntu 14.04, 15.04, 15.10
# install multirust
curl -sf https://raw.githubusercontent.com/brson/multirust/master/blastoff.sh | sh -s -- --yes
# 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
Other Linux
# install rust beta
curl -sf https://raw.githubusercontent.com/brson/multirust/master/blastoff.sh | sudo sh -s -- --yes
# 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
OSX with Homebrew
# install multirust
brew update
brew install multirust
# 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