diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2015-01-21 22:45:28 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-01-29 15:36:49 +0000 |
commit | 3bf5b6de3edb0d6589155fc1e2cd284c05532c52 (patch) | |
tree | d23916356c995f2e36a5aaffa953c6fa710c4d33 /meta/recipes-qt/packagegroups | |
parent | e558e5489da890ff28a1360e279726b51edb1a73 (diff) | |
download | poky-3bf5b6de3edb0d6589155fc1e2cd284c05532c52.tar.gz |
arch-mips.inc: Change definition of TRANSLATED_TARGET_ARCH
[YOCTO #7230]
In certain system configurations TRANSLATED_TARGET_ARCH will not
expand in the right order for gcc-cross-candian-mips64n32 to be
generated properly.
This will cause SDKs to fail to generate properly.
Changing the global definition of TRANSLATED_TARGET_ARCH always
expands the ABIEXTENSION, which causes the OVERRIDES to pick it up
as well. This effectively defines a new class of overrides for the 'n32'.
The side effect is that we need to duplicate some mips64 overrides, and
redefine others that were previously 'n32' or 'mips64' exclusive to have
the correct semantics.
(From OE-Core rev: 4b3a2b703b20583bd107f00a297d972e9bfb514a)
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-qt/packagegroups')
3 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-qt/packagegroups/packagegroup-core-qt.bb b/meta/recipes-qt/packagegroups/packagegroup-core-qt.bb index d28e032293..5f6916a430 100644 --- a/meta/recipes-qt/packagegroups/packagegroup-core-qt.bb +++ b/meta/recipes-qt/packagegroups/packagegroup-core-qt.bb | |||
@@ -7,7 +7,7 @@ LICENSE = "MIT" | |||
7 | PR = "r4" | 7 | PR = "r4" |
8 | 8 | ||
9 | # Qt4 could NOT be built on MIPS64 with 64 bits userspace | 9 | # Qt4 could NOT be built on MIPS64 with 64 bits userspace |
10 | COMPATIBLE_HOST_mips64 = "mips64.*-linux-gnun32" | 10 | COMPATIBLE_HOST_mips64 = "null" |
11 | 11 | ||
12 | inherit packagegroup | 12 | inherit packagegroup |
13 | 13 | ||
diff --git a/meta/recipes-qt/packagegroups/packagegroup-core-qt4e.bb b/meta/recipes-qt/packagegroups/packagegroup-core-qt4e.bb index d7a457cff9..d4f0fd1d8c 100644 --- a/meta/recipes-qt/packagegroups/packagegroup-core-qt4e.bb +++ b/meta/recipes-qt/packagegroups/packagegroup-core-qt4e.bb | |||
@@ -3,7 +3,7 @@ PR = "r2" | |||
3 | LICENSE = "MIT" | 3 | LICENSE = "MIT" |
4 | 4 | ||
5 | # Qt4 could NOT be built on MIPS64 with 64 bits userspace | 5 | # Qt4 could NOT be built on MIPS64 with 64 bits userspace |
6 | COMPATIBLE_HOST_mips64 = "mips64.*-linux-gnun32" | 6 | COMPATIBLE_HOST_mips64 = "null" |
7 | 7 | ||
8 | inherit packagegroup | 8 | inherit packagegroup |
9 | 9 | ||
diff --git a/meta/recipes-qt/packagegroups/packagegroup-qt-toolchain-target.inc b/meta/recipes-qt/packagegroups/packagegroup-qt-toolchain-target.inc index fc1ccba9a7..02a032658d 100644 --- a/meta/recipes-qt/packagegroups/packagegroup-qt-toolchain-target.inc +++ b/meta/recipes-qt/packagegroups/packagegroup-qt-toolchain-target.inc | |||
@@ -1,7 +1,7 @@ | |||
1 | LICENSE = "MIT" | 1 | LICENSE = "MIT" |
2 | 2 | ||
3 | # Qt4 could NOT be built on MIPS64 with 64 bits userspace | 3 | # Qt4 could NOT be built on MIPS64 with 64 bits userspace |
4 | COMPATIBLE_HOST_mips64 = "mips64.*-linux-gnun32" | 4 | COMPATIBLE_HOST_mips64 = "null" |
5 | 5 | ||
6 | inherit packagegroup | 6 | inherit packagegroup |
7 | 7 | ||