aboutsummaryrefslogtreecommitdiff
path: root/Makefile.libretro
diff options
context:
space:
mode:
authorRyan 'Swingflip' Hamlin2018-10-12 12:28:06 +0100
committerRyan 'Swingflip' Hamlin2018-10-12 12:28:06 +0100
commit8040171d6b79227366189e9bc5cce2225cb4ec6c (patch)
tree8512637a0e6e7b19e73f0ccc86663ada446a1cba /Makefile.libretro
parent0370856deb325e759179c6835897e2553cef31c2 (diff)
downloadpcsx_rearmed-8040171d6b79227366189e9bc5cce2225cb4ec6c.tar.gz
pcsx_rearmed-8040171d6b79227366189e9bc5cce2225cb4ec6c.tar.bz2
pcsx_rearmed-8040171d6b79227366189e9bc5cce2225cb4ec6c.zip
Added classic_armv7_a7
Diffstat (limited to 'Makefile.libretro')
-rw-r--r--Makefile.libretro25
1 files changed, 25 insertions, 0 deletions
diff --git a/Makefile.libretro b/Makefile.libretro
index cb514b7..587c2de 100644
--- a/Makefile.libretro
+++ b/Makefile.libretro
@@ -268,6 +268,31 @@ else ifneq (,$(findstring armv,$(platform)))
ARCH = arm
USE_DYNAREC = 1
+# Classic Platforms ####################
+# Platform affix = classic_<ISA>_<µARCH>
+
+# (armv7 a7, hard point, neon based) ###
+# NESC, SNESC, C64 mini
+else ifeq ($(platform), classic_armv7_a7)
+ TARGET := $(TARGET_NAME)_libretro.so
+ fpic := -fPIC
+ CFLAGS += -Ofast \
+ -flto=4 -fwhole-program -fuse-linker-plugin \
+ -fdata-sections -ffunction-sections -Wl,--gc-sections \
+ -fno-stack-protector -fno-ident -fomit-frame-pointer \
+ -falign-functions=1 -falign-jumps=1 -falign-loops=1 \
+ -fno-unwind-tables -fno-asynchronous-unwind-tables -fno-unroll-loops \
+ -fmerge-all-constants -fno-math-errno \
+ -marm -march=armv7ve -mtune=cortex-a7 -mfpu=neon-vfpv4 -mfloat-abi=hard
+ ASFLAGS += $(CFLAGS)
+ HAVE_NEON = 1
+ ARCH = arm
+ BUILTIN_GPU = neon
+ USE_DYNAREC = 1
+
+
+#######################################
+
# Windows
else
TARGET := $(TARGET_NAME)_libretro.dll