Fix floating point in VHT_HW_TX for both x86 and rpi

This commit is contained in:
Carlos Garcés 2019-09-28 23:44:33 +02:00 committed by Carlos Garces
parent 4b162cbf8e
commit 6b3af33af1

View File

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