aboutsummaryrefslogtreecommitdiff
path: root/Makefile.libretro
diff options
context:
space:
mode:
authorRyan 'Swingflip' Hamlin2018-10-12 14:15:33 +0100
committerRyan 'Swingflip' Hamlin2018-10-12 14:15:33 +0100
commitd28150f7f75a53b0410fcd2d6355a4be782c4c3b (patch)
tree7c04a117a24295d6f67905d45a668d2f90fc10f2 /Makefile.libretro
parent8040171d6b79227366189e9bc5cce2225cb4ec6c (diff)
downloadpcsx_rearmed-d28150f7f75a53b0410fcd2d6355a4be782c4c3b.tar.gz
pcsx_rearmed-d28150f7f75a53b0410fcd2d6355a4be782c4c3b.tar.bz2
pcsx_rearmed-d28150f7f75a53b0410fcd2d6355a4be782c4c3b.zip
Adjustments into correct position. Added some echos.
Diffstat (limited to 'Makefile.libretro')
-rw-r--r--Makefile.libretro50
1 files changed, 25 insertions, 25 deletions
diff --git a/Makefile.libretro b/Makefile.libretro
index 587c2de..84e242d 100644
--- a/Makefile.libretro
+++ b/Makefile.libretro
@@ -235,6 +235,31 @@ else ifeq ($(platform), rpi3)
BUILTIN_GPU = neon
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 #armv7-a for older GCC i.e. 4.8
+ ASFLAGS += $(CFLAGS)
+ HAVE_NEON = 1
+ ARCH = arm
+ BUILTIN_GPU = neon
+ USE_DYNAREC = 1
+
+
+#######################################
+
# ARM
else ifneq (,$(findstring armv,$(platform)))
TARGET := $(TARGET_NAME)_libretro.so
@@ -268,31 +293,6 @@ 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