aboutsummaryrefslogtreecommitdiff
path: root/thirdparty
diff options
context:
space:
mode:
authorColin Kinloch2017-12-18 15:39:09 +0000
committerColin Kinloch2017-12-23 16:49:04 +0000
commit853b1daa499cf3add4014cf4d825c01603e2d1ea (patch)
treef8e1f70e4701deb88dc591af916ffb4410005eed /thirdparty
parent9969c5c6a1cc103fb7b23c279b7fde0d92a5599a (diff)
downloadgodot-853b1daa499cf3add4014cf4d825c01603e2d1ea.tar.gz
godot-853b1daa499cf3add4014cf4d825c01603e2d1ea.tar.zst
godot-853b1daa499cf3add4014cf4d825c01603e2d1ea.zip
Diffstat (limited to 'thirdparty')
-rw-r--r--thirdparty/libvpx/vpx_config.h9
1 files changed, 8 insertions, 1 deletions
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