From abe261535d1d62398a96961b50670ee4369bee51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Czeka=C5=84ski?= Date: Tue, 22 May 2018 18:17:15 +0200 Subject: [PATCH] updated RPI3 mfpu parameter --- Makefile.rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.rules b/Makefile.rules index ff557cf..1527e09 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -22,7 +22,7 @@ else ifeq ($(strip $(RASPPI)),2) ARCH ?= -march=armv7-a -mtune=cortex-a7 -mfpu=neon-vfpv4 -mfloat-abi=hard -marm -DRPI2=1 CFLAGS += -DRPI2=1 else ifeq ($(strip $(RASPPI)),3) -ARCH ?= -march=armv8-a+crc -mtune=cortex-a53 -mfpu=neon-fp-armv8 -mfloat-abi=hard -marm -DRPI3=1 +ARCH ?= -march=armv8-a+crc -mtune=cortex-a53 -mfpu=crypto-neon-fp-armv8 -mfloat-abi=hard -marm -DRPI3=1 CFLAGS += -DRPI3=1 else $(error RASPPI must be one of: 0, 1, 2, 3)