Well Android is full speed with out ARM optimization on RetroArch

Qt on Android is just defective I guess.
This commit is contained in:
meepingsnesroms
2018-10-28 11:32:56 -07:00
parent 6ed141251d
commit 9dc85a2ab3
2 changed files with 12 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
#!/bin/bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR/jni
ndk-build clean
ndk-build
adb push ../libs/armeabi-v7a/libretro.so /data/local/tmp/mu_libretro_android.so
adb shell su -c \"mv -f /data/local/tmp/mu_libretro_android.so /data/data/com.retroarch/cores\"
adb shell su -c \"restorecon -R /data/data/com.retroarch\"

View File

@@ -44,6 +44,6 @@ include $(CORE_DIR)/build/Makefile.common
LOCAL_SRC_FILES += $(SOURCES_C) $(SOURCES_ASM)
LOCAL_CFLAGS += -O3 -std=gnu99 -funroll-loops -D__LIBRETRO__ -DFRONTEND_SUPPORTS_RGB565 -DGIT_VERSION=\"$(GIT_VERSION)\" $(INCFLAGS)
#LOCAL_CFLAGS += -ffast-math
#LOCAL_CFLAGS += -ffast-math #this emu uses doubles to track all the speed ratio calculations, this flag breaks things
include $(BUILD_SHARED_LIBRARY)