Skip to content

Commit

Permalink
libretro-mrboom: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
CvH committed Feb 18, 2019
1 parent eaaecb8 commit 22a4e08
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/emulation/libretro-mrboom/package.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 22a4e08

Please sign in to comment.