diff options
| author | Peter Seebach <peter.seebach@windriver.com> | 2015-09-28 15:48:07 -0500 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-10-01 07:43:33 +0100 |
| commit | 385a5e810501e4e717b646a14b10f0e705c188ad (patch) | |
| tree | 96d0bad5fccf168e4b8b3587f26165a1ce3d66a7 | |
| parent | 7c96fcfb2ee3b8041a3359a6d11fd3eb60a8ce28 (diff) | |
| download | poky-385a5e810501e4e717b646a14b10f0e705c188ad.tar.gz | |
cross-canadian.bbclass: big-endian ARM is also gnueabi.
If building for a BE8 ARM target, arch is "armeb" rather than
"arm", but ABI should still be "gnueabi". Otherwise gcc won't
build.
(From OE-Core rev: d2e1cf176b2a705f3e4bd4ab7c35bb1de5dc6985)
Signed-off-by: Peter Seebach <peter.seebach@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/classes/cross-canadian.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/cross-canadian.bbclass b/meta/classes/cross-canadian.bbclass index d30a1687b3..ea17f09bca 100644 --- a/meta/classes/cross-canadian.bbclass +++ b/meta/classes/cross-canadian.bbclass | |||
| @@ -67,7 +67,7 @@ python () { | |||
| 67 | d.appendVar("CANADIANEXTRAOS", " linux-gnuspe linux-uclibcspe linux-muslspe") | 67 | d.appendVar("CANADIANEXTRAOS", " linux-gnuspe linux-uclibcspe linux-muslspe") |
| 68 | elif tarch == "mips64": | 68 | elif tarch == "mips64": |
| 69 | d.appendVar("CANADIANEXTRAOS", " linux-gnun32 linux-uclibcn32 linux-musln32") | 69 | d.appendVar("CANADIANEXTRAOS", " linux-gnun32 linux-uclibcn32 linux-musln32") |
| 70 | if tarch == "arm": | 70 | if tarch == "arm" or tarch == "armeb": |
| 71 | d.setVar("TARGET_OS", "linux-gnueabi") | 71 | d.setVar("TARGET_OS", "linux-gnueabi") |
| 72 | else: | 72 | else: |
| 73 | d.setVar("TARGET_OS", "linux") | 73 | d.setVar("TARGET_OS", "linux") |
