Merge pull request #177 from vanfanel/master

Add Raspberry Pi 4 64bit platform.
This commit is contained in:
Autechre 2020-12-08 02:25:38 +01:00 committed by GitHub
commit 925e3a6696
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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