From ce34e879e348cecd4e21329be5974cc4162fa6c4 Mon Sep 17 00:00:00 2001 From: neonloop Date: Wed, 9 Feb 2022 07:15:14 +0000 Subject: Adds experimental ARM dynarec Supports ARMv5 and higher, enable with USE_DYNAREC Makefile variable --- Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index acaf28c..d46fbdd 100644 --- a/Makefile +++ b/Makefile @@ -292,6 +292,7 @@ else ifeq ($(platform), trimui) TARGET := $(TARGET_NAME)_libretro.so CC = $(CROSS_COMPILE)gcc AR = $(CROSS_COMPILE)ar + USE_DYNAREC := 1 SHARED := -shared -Wl,--version-script=link.T -Wl,--no-undefined CFLAGS += -fsingle-precision-constant -fno-PIC -flto CFLAGS += -DLSB_FIRST -DFAST_ALIGNED_LSB_WORD_ACCESS -DRIGHTSHIFT_IS_SAR @@ -630,9 +631,11 @@ ifeq ($(platform), psp1) endif OBJECTS := $(SOURCES_C:.c=.o) +OBJECTS := $(OBJECTS:.S=.o) CXXFLAGS += $(FLAGS) CFLAGS += $(FLAGS) +ASFLAGS += $(FLAGS) OBJOUT = -o LINKOUT = -o -- cgit v1.2.3