Merge pull request #3125 from MilhouseVH/le90_fix_aom_neon

aom: disable NEON when not supported
This commit is contained in:
CvH 2018-11-26 08:04:46 +01:00 committed by GitHub
commit 21ce8adb0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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