summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-06-09 11:09:52 +0200
committerGitHub <noreply@github.com>2021-06-09 11:09:52 +0200
commitd22b54442e295d1592aa2d05b896b9fc6f81fecd (patch)
tree092c4107feaec1061c124fccb13de628d6681017
parentb0eeca695d08bbb2994412fcaae23aa3d787d947 (diff)
parentb6ef7cf21dfebdff9064eaa7d8658c2fd4e713e0 (diff)
downloadpodman-d22b54442e295d1592aa2d05b896b9fc6f81fecd.tar.gz
podman-d22b54442e295d1592aa2d05b896b9fc6f81fecd.tar.bz2
podman-d22b54442e295d1592aa2d05b896b9fc6f81fecd.zip
Merge pull request #10605 from baude/3.2hvf
Correct qemu options for Intel macs
-rw-r--r--pkg/machine/qemu/options_darwin_amd64.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/machine/qemu/options_darwin_amd64.go b/pkg/machine/qemu/options_darwin_amd64.go
index 69f7982b2..ef9ad146b 100644
--- a/pkg/machine/qemu/options_darwin_amd64.go
+++ b/pkg/machine/qemu/options_darwin_amd64.go
@@ -5,7 +5,7 @@ var (
)
func (v *MachineVM) addArchOptions() []string {
- opts := []string{"-cpu", "host"}
+ opts := []string{"-cpu", "host", "-accel", "hvf"}
return opts
}