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 <patelki@xilinx.com>
This commit is contained in:
parent
ae8df4249a
commit
110990e920
2 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
*****************************************************************************************/
|
||||
|
|
|
@ -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 $@ $<
|
||||
|
|
Loading…
Add table
Reference in a new issue