2016-02-06 15:03:44 +01:00
2016-02-01 12:35:52 +01:00
2016-02-05 13:40:41 +01:00
2016-02-05 15:08:18 +01:00
2016-02-05 13:40:41 +01:00
2016-02-05 13:40:41 +01:00
2016-02-05 13:40:41 +01:00
2016-01-25 16:40:59 +04:00
2016-01-31 19:04:47 +04:00
2016-02-05 14:03:10 +01:00
2016-02-05 13:49:36 +01:00
2016-02-03 03:55:18 +03:00
2016-02-02 14:31:12 +01:00
2016-02-03 16:23:02 +01:00
2016-02-06 15:03:44 +01:00
2016-02-05 17:26:09 +00:00
2015-11-24 21:05:08 +01:00
2016-02-05 13:36:30 +01:00
2016-02-05 13:48:53 +01:00

ethcore

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

Building from source

Ubuntu 14.04
# install rocksdb
add-apt-repository "deb http://ppa.launchpad.net/giskou/librocksdb/ubuntu trusty main"
apt-get update
apt-get install -y --force-yes librocksdb

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

# install nightly and make it default
multirust update nightly
multirust default nightly

# download and build parity
git clone https://github.com/ethcore/parity
cd parity
cargo build --release
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 nightly
curl -sf https://raw.githubusercontent.com/brson/multirust/master/blastoff.sh | sudo sh -s -- --yes

# install nightly and make it default
sudo multirust update nightly
sudo multirust default nightly

# download and build parity
git clone https://github.com/ethcore/parity
cd parity
cargo build --release
OSX with Homebrew
# install rocksdb && multirust
brew update
brew install rocksdb
brew install multirust

# install nightly and make it default
multirust update nightly && multirust default nightly

# download and build parity
git clone https://github.com/ethcore/parity
cd parity
cargo build --release
Languages
Rust 99.7%
Shell 0.2%
Dockerfile 0.1%