如何修复模拟器:qemu-system-x86_64:警告:主机不支持请求的功能:CPUID.80000001H:ECX.abm [位5]

时间:2019-02-14 11:52:03

标签: android linux android-studio android-emulator

我在控制台中有此消息,在格式化计算机之前未出现。

Ubuntu 18.04, Intel(R) Core(TM) i5-3470 CPU @ 3.20GHz, cpu_cores: 4
8GB Ram, qemu-kvm x86_64.

Emulator: qemu-system-x86_64: warning: host doesn't support requested feature: CPUID.80000001H:ECX.abm [bit 5]

1 个答案:

答案 0 :(得分:1)

我在 MacOS 上遇到了同样的问题。将 -cpu host 添加到 qemu-system-x86_64 解决了它。

例如:

qemu-system-x86_64 -m 4000 -vga virtio -accel hvf -usb -device usb -tablet -drive file=ubuntu.qcow2,if=virtio -cpu host

在 github here 上找到的解决方案。