From 110990e920a8931614a2473697d5ec61a61b3647 Mon Sep 17 00:00:00 2001 From: Kinjal Pravinbhai Patel Date: Wed, 25 Feb 2015 20:02:54 +0530 Subject: [PATCH] bsp: cortexa9: change floating point flag This patch modifies floating point flag to vfpv3 in BSP makefile for armcc compiler Signed-off-by: Kinjal Pravinbhai Patel --- lib/bsp/standalone/src/changelog.txt | 2 ++ lib/bsp/standalone/src/cortexa9/armcc/Makefile | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/bsp/standalone/src/changelog.txt b/lib/bsp/standalone/src/changelog.txt index 4b206b46..84b072f4 100755 --- a/lib/bsp/standalone/src/changelog.txt +++ b/lib/bsp/standalone/src/changelog.txt @@ -217,4 +217,6 @@ * removed incorrect initialization of TLB lockdown register to fix * CR#830580 in cortexa9/gcc/boot.S & cpu_init.S, armcc/boot.S * and iccarm/boot.s + * 5.0 pkp 25/02/15 Modified floating point flag to vfpv3 from vfpv3_d16 in BSP MakeFile + * for iccarm and armcc compiler of cortexA9 *****************************************************************************************/ diff --git a/lib/bsp/standalone/src/cortexa9/armcc/Makefile b/lib/bsp/standalone/src/cortexa9/armcc/Makefile index edc0a08c..55920b26 100644 --- a/lib/bsp/standalone/src/cortexa9/armcc/Makefile +++ b/lib/bsp/standalone/src/cortexa9/armcc/Makefile @@ -70,14 +70,14 @@ boot_libs: ifeq ($(findstring boot.S,$(wildcard *.S)),boot.S) ${COMPILER} $(INCLUDES) -E -o boot_post.s boot.S endif - ${AS} --cpu=Cortex-A9 --fpu=VFPv3_FP16 -o boot_post.o boot_post.s + ${AS} --cpu=Cortex-A9 --fpu=VFPv3 -o boot_post.o boot_post.s rm -f boot.S $(AOBJS1): $(ASOURCES1) - ${AS} --cpu=Cortex-A9 --fpu=VFPv3_FP16 -o $@ $< + ${AS} --cpu=Cortex-A9 --fpu=VFPv3 -o $@ $< $(AOBJS2): $(ASOURCES2) - ${AS} --cpu=Cortex-A9 --fpu=VFPv3_FP16 -o $@ $< + ${AS} --cpu=Cortex-A9 --fpu=VFPv3 -o $@ $< %.o: %.c ${COMPILER} -c $(CC_FLAGS) $(ECC_FLAGS) $(INCLUDES) -o $@ $<