Files
podman/pkg/machine/qemu/options_windows_amd64.go
Paul Holzinger 5c1ed12d8d enable gofumpt formatter
Based on our discussion gofumpt won the vote so use that one via
golangci-lint.

https://github.com/containers/podman/discussions/27291

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2025-11-11 12:32:46 +01:00

13 lines
435 B
Go

//go:build windows && amd64
package qemu
var QemuCommand = "qemu-system-x86_64w"
func (q *QEMUStubber) 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
}