You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Go binaries are statically built by default with no external dependency on system libraries.
You can save some space by building with debugging symbols stripped:go install -ldflags "-s -w" ./...
This cut the binary from 19M to 13M.
If you are using an operating system that supports it, you can try go install -buildmode=shared (optionally with the ldflags) for a dynamically linked binary.
The text was updated successfully, but these errors were encountered: