mirror of
https://github.com/libretro/Mu.git
synced 2026-07-08 17:57:01 +00:00
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:
@@ -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)
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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{
|
||||
|
||||
Reference in New Issue
Block a user