Added rpi3_64 to makefile (#74)

This commit is contained in:
Juliano Dorigão 2021-09-15 20:43:25 -04:00 committed by GitHub
parent 9355f252d7
commit 72d32efc61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -71,7 +71,11 @@ ifneq (,$(findstring unix,$(platform)))
else ifneq (,$(findstring rpi2,$(platform))) else ifneq (,$(findstring rpi2,$(platform)))
FLAGS += -mcpu=cortex-a7 -mfpu=neon-vfpv4 -mfloat-abi=hard -marm FLAGS += -mcpu=cortex-a7 -mfpu=neon-vfpv4 -mfloat-abi=hard -marm
else ifneq (,$(findstring rpi3,$(platform))) else ifneq (,$(findstring rpi3,$(platform)))
FLAGS += -mcpu=cortex-a53 -mfpu=neon-fp-armv8 -mfloat-abi=hard -marm ifneq (,$(findstring rpi3_64,$(platform)))
FLAGS += -mcpu=cortex-a53 -mtune=cortex-a53
else
FLAGS += -mcpu=cortex-a53 -mfpu=neon-fp-armv8 -mfloat-abi=hard -marm
endif
else ifneq (,$(findstring rpi4,$(platform))) else ifneq (,$(findstring rpi4,$(platform)))
FLAGS += -mcpu=cortex-a72 -mtune=cortex-a72 FLAGS += -mcpu=cortex-a72 -mtune=cortex-a72
endif endif