From 0bf022481b897478e6530f31b5a928936457b440 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juliano=20Dorig=C3=A3o?= Date: Sat, 11 Sep 2021 16:40:55 -0400 Subject: [PATCH] Added rpi3_64 to makefile --- Makefile.libretro | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile.libretro b/Makefile.libretro index 384e6a7..74f8e78 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -82,7 +82,11 @@ ifneq (,$(findstring unix,$(platform))) else ifneq (,$(findstring rpi2,$(platform))) CFLAGS += -mcpu=cortex-a7 -mfpu=neon-vfpv4 -mfloat-abi=hard -marm else ifneq (,$(findstring rpi3,$(platform))) - CFLAGS += -mcpu=cortex-a53 -mfpu=neon-fp-armv8 -mfloat-abi=hard -marm + ifneq (,$(findstring rpi3_64,$(platform))) + CFLAGS += -mcpu=cortex-a53 -mtune=cortex-a53 + else + CFLAGS += -mcpu=cortex-a53 -mfpu=neon-fp-armv8 -mfloat-abi=hard -marm + endif else ifneq (,$(findstring rpi4,$(platform))) CFLAGS += -mcpu=cortex-a72 -mtune=cortex-a72 endif