Disable cyclone again

As of now its not stable and there isnt plans to reenable it unless someone else can figure out what is wrong since I dont know ARM ASM.
This commit is contained in:
meepingsnesroms
2018-12-28 16:57:58 -08:00
parent d96c0ec8c4
commit abb2e6526b
4 changed files with 17 additions and 15 deletions

View File

@@ -1,3 +1,5 @@
cyclone68k is crasing again when you turn the Palm off then turn it back on
Fixed:
Endian compatibility is broken(the CPU state needs to be standardized)(fixed again with musashi and the other 68k core isn't used right now)
RetroArch port crashes on exit(needed to check if environ_cb returned true, switched to libretro-common filestreams too)

View File

@@ -28,15 +28,15 @@ else ifeq ($(platform), osx)
endif
endif
ifneq (,$(filter qnx vita ctr rpi2 classic_armv7_a7,$(platform)))
EMU_OPTIMIZE_FOR_ARM32 = 1
else ifneq (,$(findstring armv7,$(platform)))
EMU_OPTIMIZE_FOR_ARM32 = 1
else ifneq (,$(findstring armv6,$(platform)))
EMU_OPTIMIZE_FOR_ARM32 = 1
else ifneq (,$(findstring armhf,$(platform)))
EMU_OPTIMIZE_FOR_ARM32 = 1
endif
# ifneq (,$(filter qnx vita ctr rpi2 classic_armv7_a7,$(platform)))
# EMU_OPTIMIZE_FOR_ARM32 = 1
# else ifneq (,$(findstring armv7,$(platform)))
# EMU_OPTIMIZE_FOR_ARM32 = 1
# else ifneq (,$(findstring armv6,$(platform)))
# EMU_OPTIMIZE_FOR_ARM32 = 1
# else ifneq (,$(findstring armhf,$(platform)))
# EMU_OPTIMIZE_FOR_ARM32 = 1
# endif
include $(EMU_PATH)/makefile.all

View File

@@ -8,11 +8,11 @@ GIT_VERSION := " $(shell git rev-parse --short HEAD || echo unknown)"
EMU_OPTIMIZE_FOR_ARM32 := 0
# set ASM CPU core, only use with ARMv4<->7, ARMv8 is its own architecture
ifeq ($(TARGET_ARCH), arm)
ifneq ($(TARGET_ARCH_ABI), arm64-v8a)
EMU_OPTIMIZE_FOR_ARM32 := 1
endif
endif
# ifeq ($(TARGET_ARCH), arm)
# ifneq ($(TARGET_ARCH_ABI), arm64-v8a)
# EMU_OPTIMIZE_FOR_ARM32 := 1
# endif
# endif
include $(CORE_DIR)/build/Makefile.common

View File

@@ -50,7 +50,7 @@ android{
QMAKE_CXXFLAGS += -fopenmp
QMAKE_LFLAGS += -fopenmp
DEFINES += EMU_MULTITHREADED
CONFIG += optimize_for_arm32 # for now, later this will check if building for ARMv4<->7
# CONFIG += optimize_for_arm32 # for now, later this will check if building for ARMv4<->7
}
ios{