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:49:51 +0100 |
commit | 53981ad824eda7d24478d97f1dfc9631f5b438c7 (patch) | |
tree | 2dcc2939596b3b85e2782b3fe98c12bf0d4d92ae /meta/recipes-devtools/gcc | |
parent | 1a2f20d22358645488525a0e114d5ebcbc6628f7 (diff) | |
download | poky-53981ad824eda7d24478d97f1dfc9631f5b438c7.tar.gz |
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>
Diffstat (limited to 'meta/recipes-devtools/gcc')
-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 | |||
10 | FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/gcc-${PV}" | 10 | FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/gcc-${PV}" |
11 | 11 | ||
12 | def get_gcc_fpu_setting(bb, d): | 12 | def get_gcc_fpu_setting(bb, d): |
13 | if d.getVar('ARMPKGSFX_EABI', True) is "hf": | 13 | if d.getVar('ARMPKGSFX_EABI', True) is "hf" and d.getVar('TRANSLATED_TARGET_ARCH', True) is "arm": |
14 | return "--with-float=hard" | 14 | return "--with-float=hard" |
15 | if d.getVar('TARGET_FPU', True) in [ 'soft' ]: | 15 | if d.getVar('TARGET_FPU', True) in [ 'soft' ]: |
16 | return "--with-float=soft" | 16 | return "--with-float=soft" |