diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-06-09 22:19:23 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-06-11 13:42:37 +0100 |
commit | f48bb903218e14ba15dab452e8bb43ba25b9ea44 (patch) | |
tree | c808f3d14b3d7c86ef54f1c49eba1cd872d16af0 /meta | |
parent | 80fa01c6ea618ea32ab40d151d8be2347ede30b3 (diff) | |
download | openembedded-core-f48bb903218e14ba15dab452e8bb43ba25b9ea44.tar.gz openembedded-core-f48bb903218e14ba15dab452e8bb43ba25b9ea44.tar.bz2 openembedded-core-f48bb903218e14ba15dab452e8bb43ba25b9ea44.zip |
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.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-common.inc b/meta/recipes-devtools/gcc/gcc-common.inc index c47940349a..7911ceb0f3 100644 --- a/meta/recipes-devtools/gcc/gcc-common.inc +++ b/meta/recipes-devtools/gcc/gcc-common.inc @@ -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" |