From ae8df4249a7a1c74e01c5b8a31a9d83d871f802b Mon Sep 17 00:00:00 2001 From: Kinjal Pravinbhai Patel Date: Wed, 25 Feb 2015 20:02:53 +0530 Subject: [PATCH] bsp: cortexa9: change floating point flag This patch changes floating point flag in BSP make file for iar compiler Signed-off-by: Kinjal Pravinbhai Patel --- lib/bsp/standalone/src/cortexa9/iccarm/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/bsp/standalone/src/cortexa9/iccarm/Makefile b/lib/bsp/standalone/src/cortexa9/iccarm/Makefile index e785880f..ea274643 100644 --- a/lib/bsp/standalone/src/cortexa9/iccarm/Makefile +++ b/lib/bsp/standalone/src/cortexa9/iccarm/Makefile @@ -44,7 +44,7 @@ LIB=libxil.a CC_FLAGS = $(COMPILER_FLAGS) ECC_FLAGS = $(EXTRA_COMPILER_FLAGS) -ECC_FLAGS += --cpu=Cortex-A9 --fpu=VFPv3_d16 +ECC_FLAGS += --cpu=Cortex-A9 --fpu=VFPv3 RELEASEDIR=../../../lib INCLUDEDIR=../../../include @@ -64,7 +64,7 @@ libs: banner $(LIBS) clean # rm -f boot.S %.o: %.s - ${AS} --cpu Cortex-A9 --fpu VFPv3_d16 $(INCLUDES) -o $@ $< + ${AS} --cpu Cortex-A9 --fpu VFPv3 $(INCLUDES) -o $@ $< %.o: %.c ${COMPILER} $(CC_FLAGS) $(ECC_FLAGS) $(INCLUDES) -o $@ $<