aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRJ <catalanor0220@gmail.com>2015-12-10 10:45:17 +0800
committerRJ <catalanor0220@gmail.com>2015-12-10 10:45:17 +0800
commit8223abaf2074610c77b2f46b5f1c367c49195d31 (patch)
tree7f90c53de47fc214209544a6a8bee91a650eebd6
parent2385f2ffbc4350f1021b1aed6089861fb6261180 (diff)
downloaddexon-solidity-8223abaf2074610c77b2f46b5f1c367c49195d31.tar
dexon-solidity-8223abaf2074610c77b2f46b5f1c367c49195d31.tar.gz
dexon-solidity-8223abaf2074610c77b2f46b5f1c367c49195d31.tar.bz2
dexon-solidity-8223abaf2074610c77b2f46b5f1c367c49195d31.tar.lz
dexon-solidity-8223abaf2074610c77b2f46b5f1c367c49195d31.tar.xz
dexon-solidity-8223abaf2074610c77b2f46b5f1c367c49195d31.tar.zst
dexon-solidity-8223abaf2074610c77b2f46b5f1c367c49195d31.zip
Update for_Ze_Devs.md
-rw-r--r--docs/for_Ze_Devs.md21
1 files changed, 16 insertions, 5 deletions
diff --git a/docs/for_Ze_Devs.md b/docs/for_Ze_Devs.md
index 75701786..2e223175 100644
--- a/docs/for_Ze_Devs.md
+++ b/docs/for_Ze_Devs.md
@@ -8,16 +8,27 @@
# Set up Homebrew
```
brew update
-brew install boost --c++11 # this takes a while
-brew install cmake qt5 cryptopp miniupnpc leveldb gmp libmicrohttpd libjson-rpc-cpp
-brew install llvm --HEAD --with-clang #only required if you plan on using DEVMJIT
+brew install boost --c++11 # this takes a while
+brew install cmake cryptopp miniupnpc leveldb gmp libmicrohttpd libjson-rpc-cpp
+#for Mix IDE and Alethzero only
+brew install xz d-bus
+brew install llvm --HEAD --with-clang
+brew install qt5 --with-d-bus # add --verbose if long waits with a stale screen drive you crazy as well
```
-# Clone source repo and run this script
+# The Long Wait
+
+Run this if you plan on installing solidity only, ignore errors at the end as they relate only to Alethzero and Mix
```
git clone --recursive https://github.com/ethereum/webthree-umbrella.git
webthree-helpers/scripts/ethupdate.sh --no-push --simple-pull --project solidity #update solidity repo
-./webthree-helpers/scripts/ethbuild.sh --no-git --build-type Debug --project solidity --all --cores 4 -DFATDB=0 -DEVMJIT=0 -DETHASHCL=0 #install solidity
+./webthree-helpers/scripts/ethbuild.sh --no-git --project solidity --all --cores 4 #install solidity
+```
+if you opted to install Alethzero and Mix:
+```
+git clone --recursive https://github.com/ethereum/webthree-umbrella.git
+cd webthree-umbrella && mkdir -p build && cd build
+cmake ..
```
# Bringing it all together