Go to file
Gav Wood c531150f44 More documentation. 2016-02-03 13:20:32 +01:00
docker updated docker containers 2016-02-01 12:35:52 +01:00
ethash Ethash disk cache 2016-01-30 23:02:55 +01:00
ethcore More documentation. 2016-02-03 13:20:32 +01:00
evmjit moved rust-evmjit -> evmjit, added clippy and basic docs to rpc crate 2016-01-27 17:08:59 +01:00
parity Merge branch 'master' into travis_fixes 2016-02-02 02:37:43 +01:00
rpc added dumb tests for parity and ethcore-rpc to include them in coverage reports, added TARGETS env variable to travis.yml 2016-02-02 02:04:03 +01:00
sync Peer sync timeouts 2016-02-02 14:54:46 +01:00
util More documentation. 2016-02-03 13:20:32 +01:00
.gitignore untrusted rlp data length check 2016-01-25 16:40:59 +04:00
.gitmodules merge fix 2016-01-31 19:04:47 +04:00
.travis.yml Merge pull request #311 from ethcore/pages 2016-02-03 11:20:57 +01:00
Cargo.toml json tests are not run in default configuration, faster travis build, fixed coverage for ethcore-rpc and ethash 2016-02-01 16:03:43 +01:00
LICENSE Change to library. 2015-11-24 21:05:08 +01:00
README.md Document some stuff. 2016-02-02 23:43:29 +01:00
cov.sh package spec 2016-02-02 03:32:28 -08:00
doc.sh doc.sh 2016-02-02 14:31:12 +01:00
hook.sh Adding git hook 2016-01-22 08:09:16 +01:00
install-deps.sh Add installation dependencies script. 2016-02-02 19:40:45 +01:00

README.md

ethcore

Build Status Coverage Status

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