mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 05:29:32 +00:00
gcc-common: Enable hardfloat ABI when target is arm
We need to check target to be arm before enabling hard-float ABI. There are crossdk targets or candian-cross targets built for arm and we should not enable it for those class of recipes. (From OE-Core rev: f48bb903218e14ba15dab452e8bb43ba25b9ea44) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -10,7 +10,7 @@ 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":
|
||||
if d.getVar('ARMPKGSFX_EABI', True) is "hf" and d.getVar('TRANSLATED_TARGET_ARCH', True) is "arm":
|
||||
return "--with-float=hard"
|
||||
if d.getVar('TARGET_FPU', True) in [ 'soft' ]:
|
||||
return "--with-float=soft"
|
||||
|
||||
Reference in New Issue
Block a user