Android Virtual Device ERROR on Android Studio

流过昼夜 提交于 2019-11-30 15:23:24

This error is referring to CPU feature called LZCNT. It was introduced in Intel processors since Haswell (2013) and in AMD since 2007. So if your CPU is older or to any other reason does not support LZCNT - you will get this warning. You can check if your CPU support LZCNT instruction by executing the following command (Linux):

cat /proc/cpuinfo | grep abm

LZCNT can not be checked directly but it is included in the ABM flag (Advanced Bit Manipulations) which indicates both POPCNT and LZCNT are present. So if command output is blank - LZCNT is not supported.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!