Go to file
Gav Wood 5b6e47c56f Merge pull request #434 from ethcore/cargo-lock
preserving root cargo lock
2016-02-14 20:26:41 +01:00
docker tabified 2016-02-08 19:58:19 +01:00
ethash ignore updates 2016-02-14 20:49:36 +03:00
ethcore ignore updates 2016-02-14 20:49:36 +03:00
evmjit ignore updates 2016-02-14 20:49:36 +03:00
parity Update main.rs 2016-02-12 00:24:10 +01:00
rpc nightly fixes 2016-02-14 12:54:27 +01:00
sync ignore updates 2016-02-14 20:49:36 +03:00
util ignore updates 2016-02-14 20:49:36 +03:00
.editorconfig Editorconfig file. 2016-02-09 10:50:29 +01:00
.gitignore ignore updates 2016-02-14 20:49:36 +03:00
.gitmodules Submodule over https 2016-02-08 00:46:59 +01:00
.travis.yml excluding test code itself from coverage 2016-02-10 03:27:54 +03:00
CONTRIBUTING.md Add contributing agreement. 2016-02-11 10:34:52 +01:00
Cargo.lock preserving root cargo lock 2016-02-14 19:35:45 +03:00
Cargo.toml clippy, returing docopt 2016-02-14 00:58:41 +03:00
LICENSE Change to library. 2015-11-24 21:05:08 +01:00
README.md Update README.md 2016-02-08 14:19:29 +01:00
add_license.sh added license in every *.rs file 2016-02-05 13:40:41 +01:00
cov.sh excluding test code itself from coverage 2016-02-10 03:27:54 +03:00
doc.sh doc.sh 2016-02-02 14:31:12 +01:00
hook.sh Updating git hook 2016-02-03 16:23:02 +01:00
install-deps.sh Deps script. 2016-02-11 11:55:49 +01:00
install-parity.sh Additional help at he end of the install; no need to install sudo. 2016-02-09 12:24:36 +01:00
license_header prepare for adding licenses 2016-02-05 13:36:30 +01:00

README.md

ethcore

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

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

# 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
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 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