From 853b1daa499cf3add4014cf4d825c01603e2d1ea Mon Sep 17 00:00:00 2001 From: Colin Kinloch Date: Mon, 18 Dec 2017 15:39:09 +0000 Subject: Fixed android arm64v8 --- thirdparty/libvpx/vpx_config.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'thirdparty') diff --git a/thirdparty/libvpx/vpx_config.h b/thirdparty/libvpx/vpx_config.h index 9ed45d400..fb9e13c4a 100644 --- a/thirdparty/libvpx/vpx_config.h +++ b/thirdparty/libvpx/vpx_config.h @@ -42,13 +42,20 @@ #define HAVE_SSE2 1 #define HAVE_SSSE3 1 #define HAVE_AVX2 1 -#elif defined(__arm__) || defined(__TARGET_ARCH_ARM) || defined(_M_ARM) || defined(__aarch64__) +#elif defined(__arm__) || defined(__TARGET_ARCH_ARM) || defined(_M_ARM) #define ARCH_X86 0 #define ARCH_X86_64 0 #define ARCH_ARM 1 #define HAVE_NEON 1 #define HAVE_NEON_ASM 1 +#elif defined(__aarch64__) + #define ARCH_X86 0 + #define ARCH_X86_64 0 + + #define ARCH_ARM 1 + #define HAVE_NEON 0 + #define HAVE_NEON_ASM 0 #else #define ARCH_X86 0 #define ARCH_X86_64 0 -- cgit v1.2.3-70-g09d2