From fe3cd5aba27b418b34ce1e851fc4caa8eb8b6b0f Mon Sep 17 00:00:00 2001 From: Sarat Chand Savitala Date: Tue, 11 Aug 2015 19:41:19 +0530 Subject: [PATCH] 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 Acked-by: Krishna Chaitanya Patakamuri --- lib/sw_apps/zynqmp_fsbl/data/zynqmp_fsbl.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sw_apps/zynqmp_fsbl/data/zynqmp_fsbl.tcl b/lib/sw_apps/zynqmp_fsbl/data/zynqmp_fsbl.tcl index 47f26930..d458e248 100755 --- a/lib/sw_apps/zynqmp_fsbl/data/zynqmp_fsbl.tcl +++ b/lib/sw_apps/zynqmp_fsbl/data/zynqmp_fsbl.tcl @@ -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]