diff options
Diffstat (limited to 'meta/lib/oe/sdk.py')
-rw-r--r-- | meta/lib/oe/sdk.py | 51 |
1 files changed, 4 insertions, 47 deletions
diff --git a/meta/lib/oe/sdk.py b/meta/lib/oe/sdk.py index 0d39ea8a91..f20441ccf6 100644 --- a/meta/lib/oe/sdk.py +++ b/meta/lib/oe/sdk.py | |||
@@ -7,52 +7,6 @@ import shutil | |||
7 | import glob | 7 | import glob |
8 | import traceback | 8 | import traceback |
9 | 9 | ||
10 | def generate_locale_archive(d, rootfs): | ||
11 | # Pretty sure we don't need this for SDK archive generation but | ||
12 | # keeping it to be safe... | ||
13 | target_arch = d.getVar('SDK_ARCH') | ||
14 | locale_arch_options = { \ | ||
15 | "arm": ["--uint32-align=4", "--little-endian"], | ||
16 | "armeb": ["--uint32-align=4", "--big-endian"], | ||
17 | "aarch64": ["--uint32-align=4", "--little-endian"], | ||
18 | "aarch64_be": ["--uint32-align=4", "--big-endian"], | ||
19 | "sh4": ["--uint32-align=4", "--big-endian"], | ||
20 | "powerpc": ["--uint32-align=4", "--big-endian"], | ||
21 | "powerpc64": ["--uint32-align=4", "--big-endian"], | ||
22 | "mips": ["--uint32-align=4", "--big-endian"], | ||
23 | "mipsisa32r6": ["--uint32-align=4", "--big-endian"], | ||
24 | "mips64": ["--uint32-align=4", "--big-endian"], | ||
25 | "mipsisa64r6": ["--uint32-align=4", "--big-endian"], | ||
26 | "mipsel": ["--uint32-align=4", "--little-endian"], | ||
27 | "mipsisa32r6el": ["--uint32-align=4", "--little-endian"], | ||
28 | "mips64el": ["--uint32-align=4", "--little-endian"], | ||
29 | "mipsisa64r6el": ["--uint32-align=4", "--little-endian"], | ||
30 | "i586": ["--uint32-align=4", "--little-endian"], | ||
31 | "i686": ["--uint32-align=4", "--little-endian"], | ||
32 | "x86_64": ["--uint32-align=4", "--little-endian"] | ||
33 | } | ||
34 | if target_arch in locale_arch_options: | ||
35 | arch_options = locale_arch_options[target_arch] | ||
36 | else: | ||
37 | bb.error("locale_arch_options not found for target_arch=" + target_arch) | ||
38 | bb.fatal("unknown arch:" + target_arch + " for locale_arch_options") | ||
39 | |||
40 | localedir = oe.path.join(rootfs, d.getVar("libdir_nativesdk"), "locale") | ||
41 | # Need to set this so cross-localedef knows where the archive is | ||
42 | env = dict(os.environ) | ||
43 | env["LOCALEARCHIVE"] = oe.path.join(localedir, "locale-archive") | ||
44 | |||
45 | for name in os.listdir(localedir): | ||
46 | path = os.path.join(localedir, name) | ||
47 | if os.path.isdir(path): | ||
48 | try: | ||
49 | cmd = ["cross-localedef", "--verbose"] | ||
50 | cmd += arch_options | ||
51 | cmd += ["--add-to-archive", path] | ||
52 | subprocess.check_output(cmd, env=env, stderr=subprocess.STDOUT) | ||
53 | except Exception as e: | ||
54 | bb.fatal("Cannot create locale archive: %s" % e.output) | ||
55 | |||
56 | class Sdk(object, metaclass=ABCMeta): | 10 | class Sdk(object, metaclass=ABCMeta): |
57 | def __init__(self, d, manifest_dir): | 11 | def __init__(self, d, manifest_dir): |
58 | self.d = d | 12 | self.d = d |
@@ -144,7 +98,10 @@ class Sdk(object, metaclass=ABCMeta): | |||
144 | for lang in linguas.split(): | 98 | for lang in linguas.split(): |
145 | pm.install("nativesdk-glibc-binary-localedata-%s.utf-8" % lang) | 99 | pm.install("nativesdk-glibc-binary-localedata-%s.utf-8" % lang) |
146 | # Generate a locale archive of them | 100 | # Generate a locale archive of them |
147 | generate_locale_archive(self.d, oe.path.join(self.sdk_host_sysroot, self.sdk_native_path)) | 101 | target_arch = self.d.getVar('SDK_ARCH') |
102 | rootfs = oe.path.join(self.sdk_host_sysroot, self.sdk_native_path) | ||
103 | localedir = oe.path.join(rootfs, self.d.getVar("libdir_nativesdk"), "locale") | ||
104 | generate_locale_archive(self.d, rootfs, target_arch, localedir) | ||
148 | # And now delete the binary locales | 105 | # And now delete the binary locales |
149 | pkgs = fnmatch.filter(pm.list_installed(), "nativesdk-glibc-binary-localedata-*.utf-8") | 106 | pkgs = fnmatch.filter(pm.list_installed(), "nativesdk-glibc-binary-localedata-*.utf-8") |
150 | pm.remove(pkgs) | 107 | pm.remove(pkgs) |