1 2 3 4 5 6 7 8 9
//go:build static // +build static package linkmode // Linkmode returns the linking mode (static/dynamic) for the build. func Linkmode() string { return "static" }