| Submitter | Khem Raj |
|---|---|
| Date | May 21, 2012, 5:11 p.m. |
| Message ID | <10ed6d915f171707a60c779e4cca4629e3fef59e.1337620159.git.raj.khem@gmail.com> |
| Download | mbox | patch |
| Permalink | /patch/28235/ |
| State | Accepted |
| Commit | 88dee5cf5265d3ea26fc9d471fc6155e48935dc7 |
| Headers | show |
Comments
Patch
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' ]:
If callconvention-hard is set then we build gcc defaulting to hard-float ABI Signed-off-by: Khem Raj <raj.khem@gmail.com> --- meta/recipes-devtools/gcc/gcc-common.inc | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)