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 <patelki@xilinx.com>
This commit is contained in:
Kinjal Pravinbhai Patel 2015-02-25 20:02:53 +05:30 committed by Nava kishore Manne
parent 4871302707
commit ae8df4249a

View file

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