mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 13:09:50 +00:00
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>
This commit is contained in:
@@ -10,6 +10,8 @@ inherit autotools gettext
|
|||||||
FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/gcc-${PV}"
|
FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/gcc-${PV}"
|
||||||
|
|
||||||
def get_gcc_fpu_setting(bb, d):
|
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' ]:
|
if d.getVar('TARGET_FPU', True) in [ 'soft' ]:
|
||||||
return "--with-float=soft"
|
return "--with-float=soft"
|
||||||
if d.getVar('TARGET_FPU', True) in [ 'ppc-efd' ]:
|
if d.getVar('TARGET_FPU', True) in [ 'ppc-efd' ]:
|
||||||
|
|||||||
Reference in New Issue
Block a user