Go to file
Marek Kotewicz cdce3697e0 Merge pull request #446 from ethcore/mordenboot
Add Morden bootnode.
2016-02-16 11:06:16 +01:00
docker
ethash
ethcore Merge pull request #446 from ethcore/mordenboot 2016-02-16 11:06:16 +01:00
evmjit
parity
rpc
sync
util
.editorconfig
.gitignore
.gitmodules
.travis.yml
add_license.sh
Cargo.lock
Cargo.toml
CONTRIBUTING.md
cov.sh
doc.sh
hook.sh
install-deps.sh
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
license_header
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-dev

# 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