Skip to content

juliustip/parity

Repository files navigation

ethcore

Build Status Coverage Status Join the chat at https://gitter.im/trogdoro/xiki GPLv3

Documentation

Building from source

Ubuntu 14.04, 15.04, 15.10
# install rocksdb
add-apt-repository ppa:ethcore/ethcore
apt-get update
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
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
Other Linux
# install rocksdb
git clone --tag v4.1 --depth=1 https://github.com/facebook/rocksdb.git
cd rocksdb
make shared_lib 
sudo cp -a librocksdb.so* /usr/lib 
sudo ldconfig 
cd ..

# install rust beta
curl -sf https://raw.githubusercontent.com/brson/multirust/master/blastoff.sh | sudo sh -s -- --yes

# 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
OSX with Homebrew
# install rocksdb && multirust
brew update
brew install rocksdb
brew install multirust

# 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

About

Fast, light, robust Ethereum implementation

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Rust 56.2%
  • JavaScript 40.2%
  • CSS 3.0%
  • C++ 0.1%
  • Shell 0.1%
  • Swift 0.1%
  • Other 0.3%