From 23fd086b6e38e77704d80ef2d8e679f8df546b5f Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Mon, 30 Apr 2012 22:00:17 -0700 Subject: gcc: Grok for callconvention-hard to enable hard float If callconvention-hard is set then we build gcc defaulting to hard-float ABI (From OE-Core rev: 88dee5cf5265d3ea26fc9d471fc6155e48935dc7) Signed-off-by: Khem Raj Signed-off-by: Richard Purdie --- meta/recipes-devtools/gcc/gcc-common.inc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'meta/recipes-devtools') diff --git a/meta/recipes-devtools/gcc/gcc-common.inc b/meta/recipes-devtools/gcc/gcc-common.inc index f550aab27a..c47940349a 100644 --- a/meta/recipes-devtools/gcc/gcc-common.inc +++ b/meta/recipes-devtools/gcc/gcc-common.inc @@ -10,6 +10,8 @@ inherit autotools gettext FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/gcc-${PV}" def get_gcc_fpu_setting(bb, d): + if d.getVar('ARMPKGSFX_EABI', True) is "hf": + return "--with-float=hard" if d.getVar('TARGET_FPU', True) in [ 'soft' ]: return "--with-float=soft" if d.getVar('TARGET_FPU', True) in [ 'ppc-efd' ]: -- cgit v1.2.3-54-g00ecf