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