fix detection of generic ARMv8 CPUs

This commit is contained in:
Dan Horák 2017-08-18 14:53:29 +02:00
parent a8a342ccc4
commit 1763e01567
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ int detect(void)
if(p != NULL)
{
if (strstr(p, "AArch64"))
if ((strstr(p, "AArch64")) || (strstr(p, "8")))
{
return CPU_ARMV8;