[oe-commits] Khem Raj : gcc: Grok for callconvention-hard to enable hard float

git at git.openembedded.org git at git.openembedded.org
Thu May 24 07:51:46 UTC 2012


Module: openembedded-core.git
Branch: master
Commit: 88dee5cf5265d3ea26fc9d471fc6155e48935dc7
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=88dee5cf5265d3ea26fc9d471fc6155e48935dc7

Author: Khem Raj <raj.khem at gmail.com>
Date:   Mon Apr 30 22:00:17 2012 -0700

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 at gmail.com>

---

 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 f550aab..c479403 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' ]:





More information about the Openembedded-commits mailing list