github.com/containers/podman/v4@v4.9.4/pkg/machine/fedora_unix.go (about)

     1  //go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd
     2  // +build darwin dragonfly freebsd linux netbsd openbsd
     3  
     4  package machine
     5  
     6  import (
     7  	"runtime"
     8  )
     9  
    10  func DetermineMachineArch() string {
    11  	return runtime.GOARCH
    12  }