Go to file
Marek Kotewicz 871428b900 Update README.md 2016-02-08 09:46:27 +01:00
docker updated docker containers 2016-02-01 12:35:52 +01:00
ethash added license in every *.rs file 2016-02-05 13:40:41 +01:00
ethcore Merge pull request #368 from ethcore/state 2016-02-08 03:04:21 +03:00
evmjit added license in every *.rs file 2016-02-05 13:40:41 +01:00
parity Merge pull request #357 from ethcore/ark 2016-02-05 15:19:29 +01:00
rpc added license in every *.rs file 2016-02-05 13:40:41 +01:00
sync added license in every *.rs file 2016-02-05 13:40:41 +01:00
util Panic on missing counters; Client cleanup 2016-02-07 23:07:36 +01:00
.gitignore untrusted rlp data length check 2016-01-25 16:40:59 +04:00
.gitmodules Submodule over https 2016-02-08 00:46:59 +01:00
.travis.yml make slackwebhook secure 2016-02-05 14:03:10 +01:00
Cargo.toml Raise FD limit for macos 2016-02-05 13:49:36 +01:00
LICENSE Change to library. 2015-11-24 21:05:08 +01:00
README.md Update README.md 2016-02-08 09:46:27 +01:00
add_license.sh added license in every *.rs file 2016-02-05 13:40:41 +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 Better install text. 2016-02-06 15:07:26 +01:00
install-parity.sh tabified 2016-02-05 17:26:09 +00:00
license_header prepare for adding licenses 2016-02-05 13:36:30 +01:00

README.md

ethcore

Build Status Coverage Status Join the chat at https://gitter.im/trogdoro/xiki

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

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