Go to file
Marek Kotewicz 1e6815877e Building from source guide 2016-02-01 01:08:23 +01:00
docker moved Dockerfile to subdirectory, updated rocksdb from 3.13.1 to 4.2, and use rocksdb ppa 2016-01-28 20:36:16 +01:00
ethash Ethash disk cache 2016-01-30 23:02:55 +01:00
ethcore make json tests optional 2016-01-31 20:14:27 +01:00
evmjit moved rust-evmjit -> evmjit, added clippy and basic docs to rpc crate 2016-01-27 17:08:59 +01:00
parity moving around dirs 2016-01-31 11:08:04 +01:00
rpc rpc net methods returns real peer count && protocol version 2016-01-28 10:54:49 +01:00
sync Removed dup files 2016-01-29 17:17:21 +01:00
util removed tests for ethocore-rpc for default travis build 2016-01-31 14:15:12 +01:00
.gitignore untrusted rlp data length check 2016-01-25 16:40:59 +04:00
.gitmodules moving around dirs 2016-01-31 11:08:04 +01:00
.travis.yml fixed kcov params order 2016-01-31 20:41:41 +01:00
Cargo.toml moving around dirs 2016-01-31 11:08:04 +01:00
LICENSE Change to library. 2015-11-24 21:05:08 +01:00
README.md Building from source guide 2016-02-01 01:08:23 +01:00
cov.sh Incoming connections; Tests 2016-01-24 18:54:05 +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
# 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
LIBRARY_PATH /usr/local/lib

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

# 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
LIBRARY_PATH /usr/local/lib

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