Go to file
Tomusdrw 60a8b92e10 Bumping versions. Fixes #496 2016-02-23 10:14:56 +01:00
devtools Delete LICENSE.txt 2016-02-20 12:38:16 +03:00
docker tabified 2016-02-08 19:58:19 +01:00
ethash Get rid of lru_cache dependency 2016-02-18 22:35:14 +01:00
ethcore Merge pull request #481 from ethcore/warnings 2016-02-20 22:00:08 +01:00
evmjit version bump, test script for full suite 2016-02-16 13:40:58 +03:00
parity Update docs. 2016-02-22 18:11:53 +01:00
rpc Remove unneeded deps. 2016-02-21 20:03:01 +01:00
sync Merge branch 'master' of github.com:ethcore/parity into discovery 2016-02-19 13:44:57 +01:00
util Remove unneeded code, fix minor potential issue with length. 2016-02-22 13:59:25 +01:00
.editorconfig Editorconfig file. 2016-02-09 10:50:29 +01:00
.gitignore ignore updates 2016-02-14 20:49:36 +03:00
.gitmodules Submodule over https 2016-02-08 00:46:59 +01:00
.travis.yml do not run benches on travis 2016-02-19 11:03:02 +01:00
Cargo.lock Bumping versions. Fixes #496 2016-02-23 10:14:56 +01:00
Cargo.toml Remove unneeded deps. 2016-02-21 20:03:01 +01:00
LICENSE Change to library. 2015-11-24 21:05:08 +01:00
README.md Merge branch 'master' of github.com:ethcore/parity 2016-02-19 13:55:00 +01:00
add_license.sh added license in every *.rs file 2016-02-05 13:40:41 +01:00
cov.sh excluding test code itself from coverage 2016-02-10 03:27:54 +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 Fix typo in deps script. 2016-02-21 16:32:11 +01:00
install-parity.sh Additional help at he end of the install; no need to install sudo. 2016-02-09 12:24:36 +01:00
license_header prepare for adding licenses 2016-02-05 13:36:30 +01:00
test.sh version bump, test script for full suite 2016-02-16 13:40:58 +03:00

README.md

ethcore

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

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 beta
multirust update beta

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

# parity should be build with rust beta
multirust override beta

# build in release
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 beta
curl -sf https://raw.githubusercontent.com/brson/multirust/master/blastoff.sh | sudo sh -s -- --yes

# install beta
multirust update beta

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

# parity should be build with rust beta
multirust override beta

# build in release
cargo build --release
OSX with Homebrew
# install rocksdb && multirust
brew update
brew install rocksdb
brew install multirust

# install beta
multirust update beta

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

# use rust beta for building parity
multirust override beta

cargo build --release