From dc6db9300e9d4392412e5ffcd05911f3746b2e33 Mon Sep 17 00:00:00 2001 From: Vanfanel Date: Wed, 18 Nov 2020 13:17:59 +0100 Subject: [PATCH] Add Raspberry Pi 4 64bit platform. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 8a31a7b..6920013 100644 --- a/Makefile +++ b/Makefile @@ -90,6 +90,8 @@ ifneq (,$(findstring unix,$(platform))) FLAGS += -DARM -marm -mcpu=cortex-a7 -mfpu=neon-vfpv4 -mfloat-abi=hard else ifneq (,$(findstring rpi3,$(platform))) FLAGS += -DARM -marm -mcpu=cortex-a53 -mfpu=neon-fp-armv8 -mfloat-abi=hard + else ifneq (,$(findstring rpi4_64,$(platform))) + FLAGS += -DARM -march=armv8-a+crc+simd -mtune=cortex-a72 endif endif