mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-09 03:31:45 +00:00
2.7 KiB
2.7 KiB
Development Environment Setup
Follow this guide to get a Lighthouse development environment up-and-running.
See the Quick instructions for a summary or the Detailed instructions for clarification.
Quick instructions
- Install Rust + Cargo with rustup.
- Install build dependencies using your package manager.
$ <package-manager> clang protobuf libssl-dev cmake git-lfs- Ensure git-lfs is installed with
git lfs install.
- Clone the sigp/lighthouse, ensuring to initialize submodules.
- In the root of the repo, run the tests with
cargo test --all --release. - Then, build the binaries with
cargo build --all --release. - Lighthouse is now fully built and tested.
Note: first-time compilation may take several minutes.
Detailed instructions
A fully-featured development environment can be achieved with the following steps:
- Install rustup.
- Use the command
rustup showto get information about the Rust installation. You should see that the active tool-chain is the stable version.- Updates can be performed using
rustup update, Lighthouse generally requires a recent version of Rust.
- Updates can be performed using
- Install build dependencies (Arch packages are listed here, your
distribution will likely be similar):
clang: required by RocksDB.protobuf: required for protobuf serialization (gRPC)libssl-dev: also gRPCcmake: required for building protobufgit-lfs: The Git extension for Large File Support (required for Ethereum Foundation test vectors).
- Clone the repository with submodules:
git clone --recursive https://github.com/sigp/lighthouse. If you're already cloned the repo, ensure testing submodules are present:$ git submodule init; git submodule update - Change directory to the root of the repository.
- Run the test suite with
cargo test --all --release. The build and test process can take several minutes. If you experience any failures onmaster, please raise an issue.
Notes:
Lighthouse targets Rust stable but generally runs on nightly too.
Note for Windows users:
Perl may also be required to build lighthouse. You can install Strawberry
Perl, or alternatively use a choco install command
choco install strawberryperl.
Additionally, the dependency protoc-grpcio v0.3.1 is reported to have issues
compiling in Windows. You can specify a known working version by editing
version in protos/Cargo.toml section to protoc-grpcio = "<=0.3.0".