diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-06-09 22:19:24 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-06-11 13:49:51 +0100 |
commit | 4b55c928c1f0e0060325c13d317cc3f373048c1f (patch) | |
tree | 7b33f27d4b14831070290df9e949601489f7c4bf /meta/recipes-devtools/gcc | |
parent | 53981ad824eda7d24478d97f1dfc9631f5b438c7 (diff) | |
download | poky-4b55c928c1f0e0060325c13d317cc3f373048c1f.tar.gz |
gcc-common: Replace use of TARGET_ARCH with TRANSLATED_TARGET_ARCH
TARGET_ARCH is poured into TRANSLATED_TARGET_ARCH
for gcc-cross family or gcc-crosssdk family
of recipes we have to check for TRANSLATED_TARGET_ARCH
(From OE-Core rev: 03f7322b1f4e1b1cf465a46cba3b82573384ab9e)
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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-common.inc b/meta/recipes-devtools/gcc/gcc-common.inc index 7911ceb0f3..45828bb5f5 100644 --- a/meta/recipes-devtools/gcc/gcc-common.inc +++ b/meta/recipes-devtools/gcc/gcc-common.inc | |||
@@ -19,12 +19,12 @@ def get_gcc_fpu_setting(bb, d): | |||
19 | return "" | 19 | return "" |
20 | 20 | ||
21 | def get_gcc_mips_plt_setting(bb, d): | 21 | def get_gcc_mips_plt_setting(bb, d): |
22 | if d.getVar('TARGET_ARCH', True) in [ 'mips', 'mipsel' ] and 'mplt' in d.getVar('DISTRO_FEATURES',1).split() : | 22 | if d.getVar('TRANSLATED_TARGET_ARCH', True) in [ 'mips', 'mipsel' ] and 'mplt' in d.getVar('DISTRO_FEATURES',1).split() : |
23 | return "--with-mips-plt" | 23 | return "--with-mips-plt" |
24 | return "" | 24 | return "" |
25 | 25 | ||
26 | def get_gcc_multiarch_setting(bb, d): | 26 | def get_gcc_multiarch_setting(bb, d): |
27 | target_arch = d.getVar('TARGET_ARCH', True) | 27 | target_arch = d.getVar('TRANSLATED_TARGET_ARCH', True) |
28 | multiarch_options = { | 28 | multiarch_options = { |
29 | "i586": "--enable-targets=all", | 29 | "i586": "--enable-targets=all", |
30 | "powerpc": "--enable-targets=powerpc64", | 30 | "powerpc": "--enable-targets=powerpc64", |