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