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