summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2016-05-11 10:35:45 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-29 19:36:01 +0100
commitac84a1ce15679602d2107d9f4c223a15c02fccea (patch)
tree484abb67962ecb7c6d91ddc0e391649af1c8de00 /meta/classes
parent2bf1e70e3d3ba58ddbf0e350d86fd78f4ffd47dd (diff)
downloadpoky-ac84a1ce15679602d2107d9f4c223a15c02fccea.tar.gz
gcc-runtime, libgcc: Symlink c++ header and startup files in target_triplet for SDK use
We build SDKs such that gcc-cross-candian is built for only one target *-*-linux and then use -muclibc or -mmusl to let it compile code for other libc variants. This works fine when libc = glibc however it does not work for c++ programs when libc != glibc since there are c++ headers installed under ${includedir}/c++/${BINV}/${TARGET_SYS} which is fine when gcc-runtime and gcc-cross-candian uses same --target options gxx includedir searches in right triplet, but it fails with musl/uclibc since gcc will look for glibc based triplet but gcc-runtime will install them under musl/uclibc triplet. This patch symlinks the musl/uclibc triplet to glibc triplet when libc != glibc This fixes SDKs for musl/uclibc (From OE-Core rev: 610c48be139b046860a234baccf13d1e6fafe2b4) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster@mvista.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/cross-canadian.bbclass1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/cross-canadian.bbclass b/meta/classes/cross-canadian.bbclass
index e07b1bdb6c..d35451dbf2 100644
--- a/meta/classes/cross-canadian.bbclass
+++ b/meta/classes/cross-canadian.bbclass
@@ -68,6 +68,7 @@ python () {
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" or tarch == "armeb": 70 if tarch == "arm" or tarch == "armeb":
71 d.appendVar("CANADIANEXTRAOS", " linux-musleabi linux-uclibceabi")
71 d.setVar("TARGET_OS", "linux-gnueabi") 72 d.setVar("TARGET_OS", "linux-gnueabi")
72 else: 73 else:
73 d.setVar("TARGET_OS", "linux") 74 d.setVar("TARGET_OS", "linux")