Skip to content

Instantly share code, notes, and snippets.

@zimdo
Created December 23, 2016 03:45
Show Gist options
  • Save zimdo/4d55221af35be2b71014b6bf02cd6642 to your computer and use it in GitHub Desktop.
Save zimdo/4d55221af35be2b71014b6bf02cd6642 to your computer and use it in GitHub Desktop.
Static linking in GO!

Static linking in GO 1.5:

go build -ldflags "-extldflags -static" ...

Static linking in GO >= 1.6:

go build -ldflags "-linkmode external -extldflags -static" ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment