Merge pull request #2856 from CvH/9.0/uae4arm-neon

libretro-uae4arm: fix none neon builds
This commit is contained in:
MilhouseVH 2018-08-01 16:58:01 +01:00 committed by GitHub
commit b605900719
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,13 @@ pre_configure_target() {
} }
make_target() { make_target() {
make HAVE_NEON=1 USE_PICASSO96=1 if target_has_feature neon; then
PKG_HAVE_NEON=1
else
PKG_HAVE_NEON=0
fi
make HAVE_NEON=$PKG_HAVE_NEON USE_PICASSO96=1
} }
makeinstall_target() { makeinstall_target() {