Skip to content

Compiling the Kiln branches

Leo Arias edited this page Mar 22, 2022 · 7 revisions

@elopio's experiments

Compiling in Ubuntu 20.04. A droplet in Digital Ocean

Following https://notes.ethereum.org/@launchpad/kiln

geth

sudo apt install make
wget https://go.dev/dl/go1.18.linux-amd64.tar.gz
sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go1.18.linux-amd64.tar.gz
sudo echo "export PATH=\$PATH:/usr/local/go/bin" >> $HOME/.profile
source $HOME/.profile

cd ~ git clone -b merge-kiln-v2 https://github.com/MariusVanDerWijden/go-ethereum.git cd go-ethereum make geth

Clone this wiki locally