cpuinfo: more patching for Android. Legacy platform targets are a pain.

Ryan C. Gordon 2016-11-17 16:10:32 -05:00
parent a298e56349
commit 0b33a1188b
1 changed files with 7 additions and 1 deletions

View File

@ -51,7 +51,13 @@
#endif
#if (defined(__LINUX__) || defined(__ANDROID__)) && defined(__ARM_ARCH)
#include <asm/hwcap.h>
/*#include <asm/hwcap.h>*/
#ifndef AT_HWCAP
#define AT_HWCAP 16
#endif
#ifndef HWCAP_NEON
#define HWCAP_NEON (1 << 12)
#endif
#if defined HAVE_GETAUXVAL
#include <sys/auxv.h>
#else