Difference between revisions of "Ethereum: Git Clone Genoil"

From OnnoWiki
Jump to navigation Jump to search
Line 1: Line 1:
  apt install git
+
  add-apt-repository -y ppa:ethereum/ethereum
  git clone https://github.com/Genoil/cpp-ethereum
+
sudo apt-get update
 +
sudo apt-get -y install software-properties-common git
 +
  sudo apt-get install git cmake libcryptopp-dev libleveldb-dev libjsoncpp-dev libjson-rpc-cpp-dev \
 +
libboost-all-dev libgmp-dev libreadline-dev libcurl4-gnutls-dev ocl-icd-libopencl1 \
 +
opencl-headers mesa-common-dev libmicrohttpd-dev build-essential -y
  
  mkdir build; cd build
+
cd /usr/local/src/
  cmake ..
+
git clone https://github.com/Genoil/cpp-ethereum/
  cmake --build .
+
cd cpp-ethereum/
 +
  mkdir build
 +
cd build
 +
  cmake -DBUNDLE=miner ..
 +
  make -j8

Revision as of 16:39, 19 November 2017

add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get -y install software-properties-common git
sudo apt-get install git cmake libcryptopp-dev libleveldb-dev libjsoncpp-dev libjson-rpc-cpp-dev \
libboost-all-dev libgmp-dev libreadline-dev libcurl4-gnutls-dev ocl-icd-libopencl1 \
opencl-headers mesa-common-dev libmicrohttpd-dev build-essential -y
cd /usr/local/src/
git clone https://github.com/Genoil/cpp-ethereum/
cd cpp-ethereum/
mkdir build
cd build
cmake -DBUNDLE=miner ..
make -j8