Android Virtual Device ERROR on Android Studio

前端 未结 1 1421
半阙折子戏
半阙折子戏 2021-01-03 05:39

When I try the open Virtual Device, I see the same error. What can I do?

That error :

Emulator: warning: host doesn\'t support requested feature: CP         


        
相关标签:
1条回答
  • 2021-01-03 06:15

    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.

    0 讨论(0)
提交回复
热议问题