diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2014-11-10 20:54:11 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-31 10:18:42 +0000 |
commit | 22861f803197c89d3aaf0752a3a4cb0f4b9f389a (patch) | |
tree | dcfb716ad19d0414b1feabfa50966542021d1a1c /meta/lib | |
parent | 74dec87ce207f1ce786c4f2f3d0302595e6cc185 (diff) | |
download | poky-22861f803197c89d3aaf0752a3a4cb0f4b9f389a.tar.gz |
classextend: Do not extend for that already have multilib prefix
If a BSP supports two or more multilibs, for example:
MULTILIBS = "multilib:lib32 multilib:lib64"
and a variable is already extended to include multilib variants,
for example in populate_sdk_base:
commit 396371588c7fd2d691ca9c39cd02287e43cb665b
Author: Richard Purdie <richard.purdie@linuxfoundation.org>
Date: Thu Jul 24 22:09:09 2014 +0100
populate_sdk_base: Extend TOOLCHAIN_TARGET_TASK to include multilib variants
Most people expect the toolchain from a multilib build to contain multilib
components. This change makes that happen and is easy for users to override
should they want something different.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The mapping clsextend.map_depends_variable("TOOLCHAIN_TARGET_TASK")
ends up with a wrong double extended package name like:
lib32-lib64-packagegroup-core-standalone-sdk-target
This patch avoid such issues.
(From OE-Core rev: c4e9b2aa894d59fe951038b3b73795b6891df70a)
(From OE-Core rev: fbb8e9942333befad9e7e5da703c7970eda1c1a4)
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oe/classextend.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/meta/lib/oe/classextend.py b/meta/lib/oe/classextend.py index 68efca32d0..8da87b771a 100644 --- a/meta/lib/oe/classextend.py +++ b/meta/lib/oe/classextend.py | |||
@@ -57,6 +57,13 @@ class ClassExtender(object): | |||
57 | if dep.endswith(("-native", "-native-runtime")) or ('nativesdk-' in dep) or ('cross-canadian' in dep) or ('-crosssdk-' in dep): | 57 | if dep.endswith(("-native", "-native-runtime")) or ('nativesdk-' in dep) or ('cross-canadian' in dep) or ('-crosssdk-' in dep): |
58 | return dep | 58 | return dep |
59 | else: | 59 | else: |
60 | # Do not extend for that already have multilib prefix | ||
61 | var = self.d.getVar("MULTILIB_VARIANTS", True) | ||
62 | if var: | ||
63 | var = var.split() | ||
64 | for v in var: | ||
65 | if dep.startswith(v): | ||
66 | return dep | ||
60 | return self.extend_name(dep) | 67 | return self.extend_name(dep) |
61 | 68 | ||
62 | def map_depends_variable(self, varname, suffix = ""): | 69 | def map_depends_variable(self, varname, suffix = ""): |