mirror of
https://github.com/libretro/Mu.git
synced 2026-09-23 07:05:37 +00:00
Well Android is full speed with out ARM optimization on RetroArch
Qt on Android is just defective I guess.
This commit is contained in:
11
libretroBuildSystem/installRootedAndroid.sh
Executable file
11
libretroBuildSystem/installRootedAndroid.sh
Executable 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\"
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user