9 lines
150 B
Go
9 lines
150 B
Go
//go:build static
|
|
|
|
package linkmode
|
|
|
|
// Linkmode returns the linking mode (static/dynamic) for the build.
|
|
func Linkmode() string {
|
|
return "static"
|
|
}
|