Commit 32cb34945e9daca0788b099bfb0034b80cc8ebaf

Ryan C. Gordon 2016-11-17T17:03:43

cpuinfo: patched to compile for getauxval() path.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/cpuinfo/SDL_cpuinfo.c b/src/cpuinfo/SDL_cpuinfo.c
index c791baa..69de2be 100644
--- a/src/cpuinfo/SDL_cpuinfo.c
+++ b/src/cpuinfo/SDL_cpuinfo.c
@@ -341,7 +341,7 @@ CPU_haveNEON(void)
     const int error = sysctlbyname("hw.optional.neon", &neon, &length, NULL, 0);
     return (!error) && (neon != 0);
 #elif (defined(__LINUX__) || defined(__ANDROID__)) && defined(HAVE_GETAUXVAL)
-    return ((getauxval(AT_HWCAP) & HWCAP_NEON) == HWCAP_NEON)
+    return ((getauxval(AT_HWCAP) & HWCAP_NEON) == HWCAP_NEON);
 #elif (defined(__LINUX__) || defined(__ANDROID__))
     return readProcAuxvForNeon();   /* Android offers a static library for this, but it just parses /proc/self/auxv */
 #elif (defined(__WINDOWS__) || defined(__WINRT__)) && defined(_M_ARM)