提交 1772853d 创建 作者: Antonio Gutierrez's avatar Antonio Gutierrez 提交者: Frans Kaashoek

Add support for qemu-system-x86_64 in 64bit hosts

As x86-64 is a superset of x86, we can use qemu-system-x86_64 to run the OS image. Signed-off-by: 's avatarAntonio Gutierrez <chibby0ne@gmail.com>
上级 906610ef
...@@ -60,6 +60,8 @@ QEMU = $(shell if which qemu > /dev/null; \ ...@@ -60,6 +60,8 @@ QEMU = $(shell if which qemu > /dev/null; \
then echo qemu; exit; \ then echo qemu; exit; \
elif which qemu-system-i386 > /dev/null; \ elif which qemu-system-i386 > /dev/null; \
then echo qemu-system-i386; exit; \ then echo qemu-system-i386; exit; \
elif which qemu-system-x86_64 > /dev/null; \
then echo qemu-system-x86_64; exit; \
else \ else \
qemu=/Applications/Q.app/Contents/MacOS/i386-softmmu.app/Contents/MacOS/i386-softmmu; \ qemu=/Applications/Q.app/Contents/MacOS/i386-softmmu.app/Contents/MacOS/i386-softmmu; \
if test -x $$qemu; then echo $$qemu; exit; fi; fi; \ if test -x $$qemu; then echo $$qemu; exit; fi; fi; \
......
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论