mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-18 22:37:52 +00:00
Use system call instead of GOARCH to support Windows userspace x86 emulation, as well as native arm Signed-off-by: Jason T. Greene <jason.greene@redhat.com>
12 lines
230 B
Go
12 lines
230 B
Go
//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd
|
|
// +build darwin dragonfly freebsd linux netbsd openbsd
|
|
|
|
package machine
|
|
|
|
import (
|
|
"runtime"
|
|
)
|
|
|
|
func determineFedoraArch() string {
|
|
return runtime.GOARCH
|
|
}
|