Skip to content

Instantly share code, notes, and snippets.

@zmanian
Last active January 10, 2021 02:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zmanian/0ec69c3202c5cc9b6f758d5e8da94950 to your computer and use it in GitHub Desktop.
Save zmanian/0ec69c3202c5cc9b6f758d5e8da94950 to your computer and use it in GitHub Desktop.
Notes on building Gaiad on Windows without WSL

Build gaia on windows without the Windows Subsystem for Linux and with Ledger support.

  1. Install chocolatey

  2. Install git, go and mingw

choco install mingw git go
  1. Clone gaia
git clone https://github.com/cosmos/gaia.git
  1. Build Gaia (Note the makefiles require Windows Subsystem for Linux). Build gaia v2.0.14 or another version.
cd gaia
git checkout v2.0.14 
go build --buildmode=exe -tags="ledger" ./cmd/gaiad
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment