Files
podman/pkg/machine/qemu/options_linux_amd64.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
233 B
Go

//go:build linux && amd64
package qemu
var (
QemuCommand = "qemu-system-x86_64"
)
func (q *QEMUStubber) addArchOptions(_ *setNewMachineCMDOpts) []string {
opts := []string{
"-accel", "kvm",
"-cpu", "host",
}
return opts
}