mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-11 10:07:53 +00:00
Macs no longer support QEMU as a provider, build tag it out. Signed-off-by: Ashley Cui <acui@redhat.com>
15 lines
233 B
Go
15 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
|
|
}
|