From 2bb77432e02bbe79d5da45aeee999637aa2997c5 Mon Sep 17 00:00:00 2001 From: liberodark Date: Wed, 13 Jan 2021 18:57:51 +0100 Subject: [PATCH] add H5 + N2 support --- Makefile.libretro | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/Makefile.libretro b/Makefile.libretro index 6a436eda..e7357052 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -59,6 +59,25 @@ ifneq ($(findstring __thumb__,$(shell $(CC) -E -dD $(CFLAGS) include/arm_feature endif endif +# ODROIDN2 +else ifneq (,$(findstring CortexA73_G12B,$(platform))) + TARGET := $(TARGET_NAME)_libretro.so + fpic := -fPIC + SHARED := -shared -Wl,-version-script=link.T + ARCH = arm64 + CFLAGS += -fomit-frame-pointer -ffast-math -DARM + CPUFLAGS += -march=armv8-a+crc -mfpu=neon-fp-armv8 -mcpu=cortex-a73 -mtune=cortex-a73.cortex-a53 + +# ALLWINNER H5 +else ifneq (,$(findstring h5,$(platform))) + TARGET := $(TARGET_NAME)_libretro.so + fpic := -fPIC + SHARED := -shared -Wl,-version-script=link.T + ARCH = arm64 + DYNAREC ?= lightrec + CFLAGS += -fomit-frame-pointer -ffast-math -DARM + CPUFLAGS += -march=armv8-a+crc -mfpu=neon-fp-armv8 -mcpu=cortex-a53 -mtune=cortex-a53 + else ifeq ($(platform), linux-portable) TARGET := $(TARGET_NAME)_libretro.so fpic := -fPIC -nostdlib -- 2.39.2