libretro-mrboom: fix build

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

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
}