libretro-mrboom: fix build

This commit is contained in:
CvH 2019-02-17 22:06:31 +01:00
parent de461e3c37
commit a3cfc7e547

View File

@ -14,6 +14,13 @@ PKG_LIBNAME="mrboom_libretro.so"
PKG_LIBPATH="$PKG_LIBNAME"
PKG_LIBVAR="MRBOOM_LIB"
pre_make_target() {
# Disable NEON otherwise build fails
if target_has_feature neon; then
CFLAGS+=" -DDONT_WANT_ARM_OPTIMIZATIONS"
fi
}
make_target() {
make
}