mirror of
https://github.com/containers/podman.git
synced 2025-05-20 08:36:23 +08:00
10 lines
170 B
Go
10 lines
170 B
Go
//go:build !static
|
|
// +build !static
|
|
|
|
package linkmode
|
|
|
|
// Linkmode returns the linking mode (static/dynamic) for the build.
|
|
func Linkmode() string {
|
|
return "dynamic"
|
|
}
|