diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2012-06-22 18:44:06 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-03 14:54:58 +0100 |
commit | 01e891ad718803e851e46a06539355a18fbade98 (patch) | |
tree | f60baeda4d8383cadfd455771e1762ba3a8acbd7 /meta/classes/populate_sdk_base.bbclass | |
parent | 66d3d3b2289f45f07b3ce407f2c299ca36dc6788 (diff) | |
download | poky-01e891ad718803e851e46a06539355a18fbade98.tar.gz |
populate_sdk: enable basic multilib support
In order to enable basic multilib support for the export of an SDK
image, a number of minor changes had to be made:
The value of MULTIMACH_TARGET_SYS needs to be variable. This way we
can define the value to the appropriate multilib. (Also in some cases
the default PACKAGE_ARCH is set to MACHINE_ARCH which is incorrect for
the SDK.) Add a companion REAL_MULTIMACH_TARGET_SYS, based on code
from meta-environment, to allow for this.
We have to convert the do_populate_sdk into a python call, and then
break up the previous items into three parts.
* Image construction
* Setup of environment files
* Generation of the tarball
Then we can iterate over the multilibs to populate the environment files.
Finally, matching changes were needed in the toolchain-scripts file. And
what I presume is an optimization of immediate evaluation for
TOOLCHAIN_CONFIGSITE_NOCACHE and ..._SYSROOTCACHE needed to be done at
runtime, otherwise the wrong values may be used.
(From OE-Core rev: 42545ffbb37f2646a2a8c20999c21d3300e24f59)
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/populate_sdk_base.bbclass')
-rw-r--r-- | meta/classes/populate_sdk_base.bbclass | 42 |
1 files changed, 38 insertions, 4 deletions
diff --git a/meta/classes/populate_sdk_base.bbclass b/meta/classes/populate_sdk_base.bbclass index 6508bd96cd..6dc66fbbbe 100644 --- a/meta/classes/populate_sdk_base.bbclass +++ b/meta/classes/populate_sdk_base.bbclass | |||
@@ -16,6 +16,10 @@ TOOLCHAIN_OUTPUTNAME ?= "${SDK_NAME}-toolchain-${DISTRO_VERSION}" | |||
16 | SDK_RDEPENDS = "${TOOLCHAIN_TARGET_TASK} ${TOOLCHAIN_HOST_TASK}" | 16 | SDK_RDEPENDS = "${TOOLCHAIN_TARGET_TASK} ${TOOLCHAIN_HOST_TASK}" |
17 | SDK_DEPENDS = "virtual/fakeroot-native sed-native" | 17 | SDK_DEPENDS = "virtual/fakeroot-native sed-native" |
18 | 18 | ||
19 | # We want the MULTIARCH_TARGET_SYS to point to the TUNE_PKGARCH, not PACKAGE_ARCH as it | ||
20 | # could be set to the MACHINE_ARCH | ||
21 | REAL_MULTIMACH_TARGET_SYS = "${TUNE_PKGARCH}${TARGET_VENDOR}-${TARGET_OS}" | ||
22 | |||
19 | PID = "${@os.getpid()}" | 23 | PID = "${@os.getpid()}" |
20 | 24 | ||
21 | EXCLUDE_FROM_WORLD = "1" | 25 | EXCLUDE_FROM_WORLD = "1" |
@@ -27,7 +31,33 @@ python () { | |||
27 | runtime_mapping_rename("TOOLCHAIN_TARGET_TASK", d) | 31 | runtime_mapping_rename("TOOLCHAIN_TARGET_TASK", d) |
28 | } | 32 | } |
29 | 33 | ||
30 | fakeroot do_populate_sdk() { | 34 | fakeroot python do_populate_sdk() { |
35 | bb.build.exec_func("populate_sdk_image", d) | ||
36 | |||
37 | # Handle multilibs in the SDK environment, siteconfig, etc files... | ||
38 | localdata = bb.data.createCopy(d) | ||
39 | |||
40 | # make sure we only use the WORKDIR value from 'd', or it can change | ||
41 | localdata.setVar('WORKDIR', d.getVar('WORKDIR', True)) | ||
42 | |||
43 | # make sure we only use the SDKTARGETSYSROOT value from 'd' | ||
44 | localdata.setVar('SDKTARGETSYSROOT', d.getVar('SDKTARGETSYSROOT', True)) | ||
45 | |||
46 | # Process DEFAULTTUNE | ||
47 | bb.build.exec_func("create_sdk_files", localdata) | ||
48 | |||
49 | variants = d.getVar("MULTILIB_VARIANTS", True) or "" | ||
50 | for item in variants.split(): | ||
51 | # Load overrides from 'd' to avoid having to reset the value... | ||
52 | overrides = d.getVar("OVERRIDES", False) + ":virtclass-multilib-" + item | ||
53 | localdata.setVar("OVERRIDES", overrides) | ||
54 | bb.data.update_data(localdata) | ||
55 | bb.build.exec_func("create_sdk_files", localdata) | ||
56 | |||
57 | bb.build.exec_func("tar_sdk", d) | ||
58 | } | ||
59 | |||
60 | fakeroot populate_sdk_image() { | ||
31 | rm -rf ${SDK_OUTPUT} | 61 | rm -rf ${SDK_OUTPUT} |
32 | mkdir -p ${SDK_OUTPUT} | 62 | mkdir -p ${SDK_OUTPUT} |
33 | 63 | ||
@@ -54,15 +84,19 @@ fakeroot do_populate_sdk() { | |||
54 | 84 | ||
55 | # Link the ld.so.cache file into the hosts filesystem | 85 | # Link the ld.so.cache file into the hosts filesystem |
56 | ln -s /etc/ld.so.cache ${SDK_OUTPUT}/${SDKPATHNATIVE}/etc/ld.so.cache | 86 | ln -s /etc/ld.so.cache ${SDK_OUTPUT}/${SDKPATHNATIVE}/etc/ld.so.cache |
87 | } | ||
57 | 88 | ||
89 | fakeroot create_sdk_files() { | ||
58 | # Setup site file for external use | 90 | # Setup site file for external use |
59 | toolchain_create_sdk_siteconfig ${SDK_OUTPUT}/${SDKPATH}/site-config-${MULTIMACH_TARGET_SYS} | 91 | toolchain_create_sdk_siteconfig ${SDK_OUTPUT}/${SDKPATH}/site-config-${REAL_MULTIMACH_TARGET_SYS} |
60 | 92 | ||
61 | toolchain_create_sdk_env_script | 93 | toolchain_create_sdk_env_script ${SDK_OUTPUT}/${SDKPATH}/environment-setup-${REAL_MULTIMACH_TARGET_SYS} |
62 | 94 | ||
63 | # Add version information | 95 | # Add version information |
64 | toolchain_create_sdk_version ${SDK_OUTPUT}/${SDKPATH}/version-${MULTIMACH_TARGET_SYS} | 96 | toolchain_create_sdk_version ${SDK_OUTPUT}/${SDKPATH}/version-${REAL_MULTIMACH_TARGET_SYS} |
97 | } | ||
65 | 98 | ||
99 | fakeroot tar_sdk() { | ||
66 | # Package it up | 100 | # Package it up |
67 | mkdir -p ${SDK_DEPLOY} | 101 | mkdir -p ${SDK_DEPLOY} |
68 | cd ${SDK_OUTPUT} | 102 | cd ${SDK_OUTPUT} |