* [PATCH 0/1] cross-canadian.bbclass: armeb is also gnueabi
@ 2015-09-28 20:48 Peter Seebach
2015-09-28 20:48 ` [PATCH 1/1] cross-canadian.bbclass: big-endian ARM " Peter Seebach
0 siblings, 1 reply; 2+ messages in thread
From: Peter Seebach @ 2015-09-28 20:48 UTC (permalink / raw)
To: OE-core
This only shows up if you're trying to build for an armeb target,
symptom of failure is gcc failing because it can't find a supported
target with the -gnu suffix instead of -gnueabi.
Signed-off-by: Peter Seebach <peter.seebach@windriver.com>
The following changes since commit 4a1dec5c61f73e7cfa430271ed395094bb262f6b:
multilib: Add TARGET_VENDOR to saved variables list (2015-09-28 11:59:17 +0100)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib seebs/armeb
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=seebs/armeb
Peter Seebach (1):
cross-canadian.bbclass: big-endian ARM is also gnueabi.
meta/classes/cross-canadian.bbclass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
2.3.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH 1/1] cross-canadian.bbclass: big-endian ARM is also gnueabi.
2015-09-28 20:48 [PATCH 0/1] cross-canadian.bbclass: armeb is also gnueabi Peter Seebach
@ 2015-09-28 20:48 ` Peter Seebach
0 siblings, 0 replies; 2+ messages in thread
From: Peter Seebach @ 2015-09-28 20:48 UTC (permalink / raw)
To: OE-core
If building for a BE8 ARM target, arch is "armeb" rather than
"arm", but ABI should still be "gnueabi". Otherwise gcc won't
build.
Signed-off-by: Peter Seebach <peter.seebach@windriver.com>
---
meta/classes/cross-canadian.bbclass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/classes/cross-canadian.bbclass b/meta/classes/cross-canadian.bbclass
index d30a168..ea17f09 100644
--- a/meta/classes/cross-canadian.bbclass
+++ b/meta/classes/cross-canadian.bbclass
@@ -67,7 +67,7 @@ python () {
d.appendVar("CANADIANEXTRAOS", " linux-gnuspe linux-uclibcspe linux-muslspe")
elif tarch == "mips64":
d.appendVar("CANADIANEXTRAOS", " linux-gnun32 linux-uclibcn32 linux-musln32")
- if tarch == "arm":
+ if tarch == "arm" or tarch == "armeb":
d.setVar("TARGET_OS", "linux-gnueabi")
else:
d.setVar("TARGET_OS", "linux")
--
2.3.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-09-28 20:48 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-28 20:48 [PATCH 0/1] cross-canadian.bbclass: armeb is also gnueabi Peter Seebach
2015-09-28 20:48 ` [PATCH 1/1] cross-canadian.bbclass: big-endian ARM " Peter Seebach
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox