summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/gcc
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2012-04-30 22:00:17 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-05-24 08:51:35 +0100
commit23fd086b6e38e77704d80ef2d8e679f8df546b5f (patch)
tree355c9a24edfd0479df5846897ccd168fc6d68d69 /meta/recipes-devtools/gcc
parent0fdd04febe83d77ecf431443f4736dbe1220ad8d (diff)
downloadpoky-23fd086b6e38e77704d80ef2d8e679f8df546b5f.tar.gz
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 <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc')
-rw-r--r--meta/recipes-devtools/gcc/gcc-common.inc2
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
10FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/gcc-${PV}" 10FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/gcc-${PV}"
11 11
12def get_gcc_fpu_setting(bb, d): 12def get_gcc_fpu_setting(bb, d):
13 if d.getVar('ARMPKGSFX_EABI', True) is "hf":
14 return "--with-float=hard"
13 if d.getVar('TARGET_FPU', True) in [ 'soft' ]: 15 if d.getVar('TARGET_FPU', True) in [ 'soft' ]:
14 return "--with-float=soft" 16 return "--with-float=soft"
15 if d.getVar('TARGET_FPU', True) in [ 'ppc-efd' ]: 17 if d.getVar('TARGET_FPU', True) in [ 'ppc-efd' ]: