Files
podman/pkg/machine/qemu/options_windows_amd64.go
Arthur Sengileyev 4c249a219e Change default QEMU CPU level to qemu64 on Windows amd64
Signed-off-by: Arthur Sengileyev <arthur.sengileyev@gmail.com>
2023-10-19 00:37:09 +03:00

21 lines
534 B
Go

package qemu
var (
QemuCommand = "qemu-system-x86_64w"
)
func (v *MachineVM) addArchOptions(_ *setNewMachineCMDOpts) []string {
// "qemu64" level is used, because "host" is not supported with "whpx" acceleration.
// It is a stable choice for running on bare metal and inside Hyper-V machine with nested virtualization.
opts := []string{"-machine", "q35,accel=whpx:tcg", "-cpu", "qemu64"}
return opts
}
func (v *MachineVM) prepare() error {
return nil
}
func (v *MachineVM) archRemovalFiles() []string {
return []string{}
}