Files
podman/pkg/machine/qemu/options_freebsd_arm64.go
Ashley Cui a9401deadd Build tag out QEMU for Darwin
Macs no longer support QEMU as a provider, build tag it out.

Signed-off-by: Ashley Cui <acui@redhat.com>
2024-02-15 15:53:06 -05:00

16 lines
255 B
Go

//go:build freebsd && arm64
package qemu
var (
QemuCommand = "qemu-system-aarch64"
)
func (v *QEMUStubber) addArchOptions(_ *setNewMachineCMDOpts) []string {
opts := []string{
"-machine", "virt",
"-accel", "tcg",
"-cpu", "host"}
return opts
}