add H5 + N2 support
authorliberodark <liberodark@gmail.com>
Wed, 13 Jan 2021 17:57:51 +0000 (18:57 +0100)
committerGitHub <noreply@github.com>
Wed, 13 Jan 2021 17:57:51 +0000 (18:57 +0100)
Makefile.libretro

index 6a436ed..e735705 100644 (file)
@@ -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