diff options
author | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2015-07-01 17:02:19 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-08-01 07:34:05 +0100 |
commit | ec38dacdec4acaa9cca8fc8c4453d4dd201fd4a5 (patch) | |
tree | c9b86a40b83551fb96f5bcb573da0eefbf69b31a /meta/conf | |
parent | ac692c6af7096c92fe8494ef11dcdfd97e61f268 (diff) | |
download | poky-ec38dacdec4acaa9cca8fc8c4453d4dd201fd4a5.tar.gz |
arch-mips.inc: don't override TRANSLATED_TARGET_ARCH
Currently MIPS64 N32 is broken. There is internal disagreement
between TARGET_ARCH (which doesn't contain ABIEXTENSION) and
TRANSLATED_TARGET_ARCH (which contains ABIEXTENSION). ABI is already
encoded into the TARGET_OS. ARM tunes in the same situation override
neither the TARGET_ARCH nor the TRANSLATED_TARGET_ARCH. So let's drop
this override.
(From OE-Core rev: 3ee5c9ad302bc05c75badbe29dd983a043a114c2)
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/machine/include/mips/arch-mips.inc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/meta/conf/machine/include/mips/arch-mips.inc b/meta/conf/machine/include/mips/arch-mips.inc index c41fa5e864..02626d300e 100644 --- a/meta/conf/machine/include/mips/arch-mips.inc +++ b/meta/conf/machine/include/mips/arch-mips.inc | |||
@@ -100,7 +100,3 @@ TUNE_FEATURES_tune-mips64el-nf = "n64" | |||
100 | BASE_LIB_tune-mips64el-nf = "lib64" | 100 | BASE_LIB_tune-mips64el-nf = "lib64" |
101 | MIPSPKGSFX_VARIANT_tune-mips64el-nf = "${TUNE_ARCH}" | 101 | MIPSPKGSFX_VARIANT_tune-mips64el-nf = "${TUNE_ARCH}" |
102 | PACKAGE_EXTRA_ARCHS_tune-mips64el-nf = "mips64el-nf" | 102 | PACKAGE_EXTRA_ARCHS_tune-mips64el-nf = "mips64el-nf" |
103 | |||
104 | # On mips we need to redefine this to include the ABIEXTENSION | ||
105 | # we can avoid the python bit as there are no _ or - to translate | ||
106 | TRANSLATED_TARGET_ARCH = "${TARGET_ARCH}${ABIEXTENSION}" | ||