Go to file
debris b3eb2b26d5 Merge branch 'doc.sh' into ethcore_docs 2016-02-02 14:59:01 +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 Merge pull request #296 from ethcore/jsonrpcclioptions 2016-02-02 02:37:09 +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 Removed dup files 2016-01-29 17:17:21 +01:00
util uncomment rlp benches 2016-02-02 02:38:15 +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 fixed typo in travis.yml 2016-02-02 02:32:58 +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 Update README.md 2016-02-01 11:28:56 +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

README.md

ethcore

Build Status Coverage Status

Building from source

Ubuntu 14.04 and later
# 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

# export rust LIBRARY_PATH
export LIBRARY_PATH=/usr/local/lib

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

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

# export rust LIBRARY_PATH
export LIBRARY_PATH=/usr/local/lib

# download and build parity
git clone https://github.com/ethcore/parity
cd parity
cargo build --release