Go to file
Gav Wood f7ce9314e0 Merge pull request #445 from ethcore/beta-patched
Beta patch to 0.9.1
2016-02-16 10:49:49 +01:00
docker updated docker containers 2016-02-01 12:35:52 +01:00
ethash making beta compiling and passing tests 2016-02-16 07:02:00 +03:00
ethcore ignore transition tests for now, make travis build green again 2016-02-16 07:38:34 +03:00
evmjit making beta compiling and passing tests 2016-02-16 07:02:00 +03:00
parity Merge pull request #357 from ethcore/ark 2016-02-05 15:19:29 +01:00
rpc making beta compiling and passing tests 2016-02-16 07:02:00 +03:00
sync making beta compiling and passing tests 2016-02-16 07:02:00 +03:00
util ongoing pick 2016-02-16 03:37:07 +03:00
.gitignore lock finally valid ignore 2016-02-16 07:05:26 +03:00
.gitmodules Submodule over https 2016-02-08 00:46:59 +01:00
.travis.yml Enable travis build for beta branch 2016-02-08 15:54:13 +01:00
Cargo.lock lock finally valid ignore 2016-02-16 07:05:26 +03:00
Cargo.toml making beta compiling and passing tests 2016-02-16 07:02:00 +03:00
LICENSE Change to library. 2015-11-24 21:05:08 +01:00
README.md Use 1100000 as the homestead transition, fix build instructions. 2016-02-16 03:17:00 +03: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 https link in the installer 2016-02-09 22:34:15 +03: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-dev

# 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