summaryrefslogtreecommitdiff
path: root/pkg/machine/qemu/options_darwin_amd64.go
blob: ff8d10db1ce2363627dc2e90ab35fa54858882fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package qemu

var (
	QemuCommand = "qemu-system-x86_64"
)

func (v *MachineVM) addArchOptions() []string {
	opts := []string{"-machine", "q35,accel=hvf:tcg", "-cpu", "host"}
	return opts
}

func (v *MachineVM) prepare() error {
	return nil
}

func (v *MachineVM) archRemovalFiles() []string {
	return []string{}
}