Merge pull request #2291 from mitchellh/b-qemu-default
builder/qemu: default acceleration to tcg on Windows [GH-2284]
This commit is contained in:
commit
3fac725a55
|
@ -7,6 +7,7 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
"runtime"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
@ -153,7 +154,11 @@ func (b *Builder) Prepare(raws ...interface{}) ([]string, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if b.config.Accelerator == "" {
|
if b.config.Accelerator == "" {
|
||||||
b.config.Accelerator = "kvm"
|
if runtime.GOOS == "windows" {
|
||||||
|
b.config.Accelerator = "tcg"
|
||||||
|
} else {
|
||||||
|
b.config.Accelerator = "kvm"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if b.config.HTTPPortMin == 0 {
|
if b.config.HTTPPortMin == 0 {
|
||||||
|
|
Loading…
Reference in New Issue