summaryrefslogtreecommitdiff
path: root/media-libs/x265/files/neon.patch
diff options
context:
space:
mode:
Diffstat (limited to 'media-libs/x265/files/neon.patch')
-rw-r--r--media-libs/x265/files/neon.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/media-libs/x265/files/neon.patch b/media-libs/x265/files/neon.patch
deleted file mode 100644
index 444c899..0000000
--- a/media-libs/x265/files/neon.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-These functions are only built when enabling assembly on ARM; use proper check
-to avoid undefined symbols.
-
-Index: source/common/primitives.cpp
-===================================================================
---- source.orig/common/primitives.cpp
-+++ source/common/primitives.cpp
-@@ -270,7 +270,7 @@ void PFX(cpu_emms)(void) {}
- void PFX(cpu_cpuid)(uint32_t, uint32_t *eax, uint32_t *, uint32_t *, uint32_t *) { *eax = 0; }
- void PFX(cpu_xgetbv)(uint32_t, uint32_t *, uint32_t *) {}
-
--#if X265_ARCH_ARM == 0
-+#if X265_ARCH_ARM == 0 || !defined(ENABLE_ASSEMBLY)
- void PFX(cpu_neon_test)(void) {}
- int PFX(cpu_fast_neon_mrc_test)(void) { return 0; }
- #endif // X265_ARCH_ARM