aom: disable NEON when not supported

This commit is contained in:
MilhouseVH 2018-11-25 22:03:54 +00:00
parent 048c44b131
commit e82603d4e7

View File

@ -15,3 +15,7 @@ PKG_CMAKE_OPTS_TARGET="-DENABLE_CCACHE=1 \
-DENABLE_EXAMPLES=0 \
-DENABLE_TESTS=0 \
-DENABLE_TOOLS=0"
if ! target_has_feature neon; then
PKG_CMAKE_OPTS_TARGET+=" -DENABLE_NEON=0 -DENABLE_NEON_ASM=0"
fi