sw_apps:zynqmp_fsbl: Corrected compiler flags for R5

Currently for R5, compiler flag for, floating-point ABI is mentioned
as "softfp". This causes abort on encountering floating point arithmetic
operation. Hence changing this flag to "soft".

Signed-off-by: Sarat Chand Savitala <saratcha@xilinx.com>
Acked-by: Krishna Chaitanya Patakamuri <kpataka@xilinx.com>
This commit is contained in:
Sarat Chand Savitala 2015-08-11 19:41:19 +05:30 committed by Nava kishore Manne
parent e9a4597006
commit fe3cd5aba2

View file

@ -129,7 +129,7 @@ proc swapp_generate {} {
set ld_file_a53 "lscript_a53.ld"
file delete -force $ld_file_a53
set new_flags "-Wall -fmessage-length=0 -mcpu=cortex-r5 -mfloat-abi=softfp $def_flags"
set new_flags "-Wall -fmessage-length=0 -mcpu=cortex-r5 -mfloat-abi=soft $def_flags"
} else {
set compiler [common::get_property CONFIG.compiler $proc_instance]