Merge pull request #95956 from matthewbauer/qemu-cpu-max

runInLinuxVM, test-driver: use -cpu max instead of -cpu host
This commit is contained in:
Matthew Bauer
2020-08-26 12:59:57 -05:00
committed by GitHub
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -74,7 +74,7 @@ let
throw "Non-EFI boot methods are only supported on i686 / x86_64"
else ''
def assemble_qemu_flags():
flags = "-cpu host"
flags = "-cpu max"
${if system == "x86_64-linux"
then ''flags += " -m 768"''
else ''flags += " -m 512 -enable-kvm -machine virt,gic-version=host"''