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:
parent
e9a4597006
commit
fe3cd5aba2
1 changed files with 1 additions and 1 deletions
|
@ -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]
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue