mirror of
https://git.freebsd.org/ports.git
synced 2025-07-04 10:59:14 -04:00
$ aomdec ld-elf.so.1: /usr/local/lib/libaom.so.0: Undefined symbol "aom_mse16x16_neon" Pointy hat to: jbeich (for trusting LLD)
13 lines
389 B
CMake
13 lines
389 B
CMake
- Don't enable NEON on armv6 similar to build/cmake/rtcd.pl
|
|
|
|
--- build/cmake/cpu.cmake.orig 2018-11-16 20:24:20 UTC
|
|
+++ build/cmake/cpu.cmake
|
|
@@ -9,7 +9,7 @@
|
|
# can obtain it at www.aomedia.org/license/patent.
|
|
#
|
|
|
|
-if("${AOM_TARGET_CPU}" MATCHES "^arm")
|
|
+if("${AOM_TARGET_CPU}" MATCHES "^arm" AND NOT "${AOM_TARGET_CPU}" MATCHES "^armv6")
|
|
set(ARCH_ARM 1)
|
|
set(RTCD_ARCH_ARM "yes")
|
|
|