Go to file
debris bc267f8412 prepare for adding licenses 2016-02-05 13:36:30 +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 forgot root changes 2016-02-05 01:58:58 +03:00
evmjit evmjit homestead merge, compiles but tests do not pass yet 2016-02-04 13:13:08 +01:00
parity Remove println for options. 2016-02-04 00:48:51 +01:00
rpc fix parity version so netstats can parse it 2016-02-03 12:43:58 -05:00
sync indents 2016-02-05 03:01:50 +03:00
util prepare for adding licenses 2016-02-05 13:36:30 +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
add_license.sh prepare for adding licenses 2016-02-05 13:36:30 +01:00
cov.sh decoupling sockets from logic for tests 2016-02-03 03:55:18 +03:00
doc.sh doc.sh 2016-02-02 14:31:12 +01:00
hook.sh Updating git hook 2016-02-03 16:23:02 +01:00
install-deps.sh Additional info on parity build. 2016-02-05 11:51:12 +01:00
install-parity.sh replaced brew tap link with https; deb url from main repo 2016-02-04 15:57:26 +00:00
license_header prepare for adding licenses 2016-02-05 13:36:30 +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