mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-23 00:37:53 +00:00
Correct qemu options for Intel macs
On intel macs, we need to accel=hvf to work correctly. Fixes: #10555 [NO TESTS NEEDED] Signed-off-by: Brent Baude <bbaude@redhat.com>
This commit is contained in:
parent
c7e96edfb2
commit
b6ef7cf21d
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@ var (
|
|||
)
|
||||
|
||||
func (v *MachineVM) addArchOptions() []string {
|
||||
opts := []string{"-cpu", "host"}
|
||||
opts := []string{"-cpu", "host", "-accel", "hvf"}
|
||||
return opts
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue