Browse Source

fix detection of generic ARMv8 CPUs

tags/v0.3.0
Dan Horák 9 years ago
parent
commit
1763e01567
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      cpuid_arm64.c

+ 1
- 1
cpuid_arm64.c 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;



Loading…
Cancel
Save