From b8eda29c514c464a2311fd4131896aa9991be196 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juliano=20Dorig=C3=A3o?= Date: Mon, 13 Sep 2021 09:03:16 -0400 Subject: [PATCH] [libretro] Added rpi3/4_64 to makefile (#386) --- Makefile.libretro | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile.libretro b/Makefile.libretro index 6d459ee..0ec8ef4 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -86,7 +86,13 @@ ifneq (,$(findstring unix,$(platform))) else ifneq (,$(findstring rpi2,$(platform))) PLATFORM_DEFINES += -DARM -marm -mcpu=cortex-a7 -mfpu=neon-vfpv4 -mfloat-abi=hard else ifneq (,$(findstring rpi3,$(platform))) - PLATFORM_DEFINES += -DARM -marm -mcpu=cortex-a53 -mfpu=neon-fp-armv8 -mfloat-abi=hard + ifneq (,$(findstring rpi3_64,$(platform))) + PLATFORM_DEFINES += -mcpu=cortex-a53 -mtune=cortex-a53 + else + PLATFORM_DEFINES += -DARM -marm -mcpu=cortex-a53 -mfpu=neon-fp-armv8 -mfloat-abi=hard + endif + else ifneq (,$(findstring rpi4,$(platform))) + PLATFORM_DEFINES += -mcpu=cortex-a72 -mtune=cortex-a72 endif endif