From 857c55b61b312ea1954705e1ebf70fb428890deb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juliano=20Dorig=C3=A3o?= Date: Sat, 11 Sep 2021 11:47:30 -0400 Subject: [PATCH] Added rpi3_64 to makefile --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f52a3ae..d78c01b 100644 --- a/Makefile +++ b/Makefile @@ -92,7 +92,11 @@ ifneq (,$(findstring unix,$(platform))) else ifneq (,$(findstring rpi2,$(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 + ifneq (,$(findstring rpi3_64,$(platform))) + FLAGS += -DARM -march=armv8-a+crc+simd -mtune=cortex-a53 + else + FLAGS += -DARM -marm -mcpu=cortex-a53 -mfpu=neon-fp-armv8 -mfloat-abi=hard + endif else ifneq (,$(findstring rpi4_64,$(platform))) FLAGS += -DARM -march=armv8-a+crc+simd -mtune=cortex-a72 endif