-
Notifications
You must be signed in to change notification settings - Fork 20.9k
Installation Instructions for FreeBSD
Felix Lange edited this page Nov 18, 2016
·
5 revisions
Clone the repository to a directory of your choosing:
git clone https://github.com/ethereum/go-ethereum
Building geth
requires the Go compiler:
pkg install go
If your golang version is >= 1.5, build the geth
program using the following command.
cd go-ethereum
make geth
If your golang version is < 1.5 (quarterly packages, for example), use the following command instead.
cd go-ethereum
CC=clang make geth
You can now run build/bin/geth
to start your node.