mirror of
https://github.com/containers/podman.git
synced 2025-08-01 07:40:22 +08:00
Add support for Windows ARM64
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>
This commit is contained in:
12
pkg/machine/fedora_unix.go
Normal file
12
pkg/machine/fedora_unix.go
Normal file
@ -0,0 +1,12 @@
|
||||
//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
|
||||
}
|
Reference in New Issue
Block a user