From 6b3af33af1d65ac59590c28bb1eda0b5d198bf10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Garc=C3=A9s?= Date: Sat, 28 Sep 2019 23:44:33 +0200 Subject: [PATCH] Fix floating point in VHT_HW_TX for both x86 and rpi --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f61b299..eb1da4f 100755 --- a/Makefile +++ b/Makefile @@ -604,7 +604,9 @@ else ifeq ($(CONFIG_PLATFORM_ARM_RPI), y) EXTRA_CFLAGS += -mfloat-abi=softfp else ## For ARM ToolChain use Hardware FLOATING -EXTRA_CFLAGS += -mfloat-abi=hard +# Raspbian kernel is with soft-float. +# 'softfp' allows FP instructions, but no FP on function call interfaces +EXTRA_CFLAGS += -mfloat-abi=softfp endif endif