mirror of https://github.com/containers/podman.git
Merge pull request #11442 from scottschreckengaust/main
Adding `-cpu host` for qemu for MacOS
This commit is contained in:
commit
668deb2ff1
|
|
@ -5,7 +5,7 @@ var (
|
||||||
)
|
)
|
||||||
|
|
||||||
func (v *MachineVM) addArchOptions() []string {
|
func (v *MachineVM) addArchOptions() []string {
|
||||||
opts := []string{"-machine", "q35,accel=hvf:tcg"}
|
opts := []string{"-machine", "q35,accel=hvf:tcg", "-cpu", "host"}
|
||||||
return opts
|
return opts
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue