diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-04-30 22:00:17 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-24 08:34:48 +0100 |
commit | 88dee5cf5265d3ea26fc9d471fc6155e48935dc7 (patch) | |
tree | d9fff10998c7ca496adb7b6112281439bb622222 | |
parent | 8df03a0b8bd92cf7b73b816dacf3e362cfce557a (diff) | |
download | openembedded-core-88dee5cf5265d3ea26fc9d471fc6155e48935dc7.tar.gz openembedded-core-88dee5cf5265d3ea26fc9d471fc6155e48935dc7.tar.bz2 openembedded-core-88dee5cf5265d3ea26fc9d471fc6155e48935dc7.zip |
gcc: Grok for callconvention-hard to enable hard float
If callconvention-hard is set then we build gcc defaulting
to hard-float ABI
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-common.inc | 2 |
1 files changed, 2 insertions, 0 deletions
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' ]: |