Go to file
2016-02-24 14:36:41 +03:00
devtools
docker
ethash
ethcore Fixing clippy warnings. Implementing PartialEq for Uints 2016-02-23 11:40:23 +01:00
evmjit
parity Log formatting 2016-02-23 20:14:37 +01:00
rpc Bumping clippy version Fixes #496 2016-02-23 10:47:57 +01:00
sync fix issue with starting requested block number was not included itself 2016-02-24 14:36:41 +03:00
util Log address 2016-02-23 15:02:08 +01:00
.editorconfig
.gitignore ignore updates 2016-02-14 20:49:36 +03:00
.gitmodules
.travis.yml fixed travis --org GH_TOKEN 2016-02-24 11:19:27 +01:00
add_license.sh
Cargo.lock Log formatting 2016-02-23 20:14:37 +01:00
Cargo.toml Log formatting 2016-02-23 20:14:37 +01:00
cov.sh
doc.sh
hook.sh Fixing clippy warnings. Implementing PartialEq for Uints 2016-02-23 11:40:23 +01:00
install-deps.sh Fix typo in deps script. 2016-02-21 16:32:11 +01:00
install-parity.sh
LICENSE Change to library. 2015-11-24 21:05:08 +01:00
license_header prepare for adding licenses 2016-02-05 13:36:30 +01:00
README.md
test.sh

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