diff options
| author | Dongxiao Xu <dongxiao.xu@intel.com> | 2011-06-28 14:58:15 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-28 13:44:41 +0100 |
| commit | 8fa9d64f1d5128f304a0d36dbf55f49ccaf784b1 (patch) | |
| tree | ad031554642f4b160ec5b9bd044577c03ef0c5a6 /meta/recipes-core/eglibc/eglibc-locale_2.13.bb | |
| parent | 671e580111c3f37f3c7835956db17e0425f9f937 (diff) | |
| download | poky-8fa9d64f1d5128f304a0d36dbf55f49ccaf784b1.tar.gz | |
libc-locale: split locale handling from libc recipe.
*libc's do_package will cost a lot of time due to the locale handing,
which may delay the other recipe's do_package task and affect the build
performance.
This commit moves locale handling into a separate recipe *libc-locale.
[RP: Add fixup with recent eglibc commit conflict for FILES_pn-dbg and PACKAGES]
(From OE-Core rev: c6d3242f7642f537b02870bb4eb650f0e2094b85)
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/eglibc/eglibc-locale_2.13.bb')
| -rw-r--r-- | meta/recipes-core/eglibc/eglibc-locale_2.13.bb | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/meta/recipes-core/eglibc/eglibc-locale_2.13.bb b/meta/recipes-core/eglibc/eglibc-locale_2.13.bb new file mode 100644 index 0000000000..ed6c099c6c --- /dev/null +++ b/meta/recipes-core/eglibc/eglibc-locale_2.13.bb | |||
| @@ -0,0 +1,58 @@ | |||
| 1 | INHIBIT_DEFAULT_DEPS = "1" | ||
| 2 | LICENSE = "LGPL" | ||
| 3 | |||
| 4 | BPN = "eglibc" | ||
| 5 | |||
| 6 | do_fetch[noexec] = "1" | ||
| 7 | do_unpack[noexec] = "1" | ||
| 8 | do_patch[noexec] = "1" | ||
| 9 | do_configure[noexec] = "1" | ||
| 10 | do_compile[noexec] = "1" | ||
| 11 | |||
| 12 | # Binary locales are generated at build time if ENABLE_BINARY_LOCALE_GENERATION | ||
| 13 | # is set. The idea is to avoid running localedef on the target (at first boot) | ||
| 14 | # to decrease initial boot time and avoid localedef being killed by the OOM | ||
| 15 | # killer which used to effectively break i18n on machines with < 128MB RAM. | ||
| 16 | |||
| 17 | # default to disabled | ||
| 18 | ENABLE_BINARY_LOCALE_GENERATION ?= "0" | ||
| 19 | ENABLE_BINARY_LOCALE_GENERATION_pn-eglibc-locale-nativesdk = "0" | ||
| 20 | |||
| 21 | #enable locale generation on these arches | ||
| 22 | # BINARY_LOCALE_ARCHES is a space separated list of regular expressions | ||
| 23 | BINARY_LOCALE_ARCHES ?= "arm.* i[3-6]86 x86_64 powerpc mips" | ||
| 24 | |||
| 25 | # set "1" to use cross-localedef for locale generation | ||
| 26 | # set "0" for qemu emulation of native localedef for locale generation | ||
| 27 | LOCALE_GENERATION_WITH_CROSS-LOCALEDEF = "1" | ||
| 28 | |||
| 29 | PR = "r0" | ||
| 30 | |||
| 31 | PKGSUFFIX = "" | ||
| 32 | PKGSUFFIX_virtclass-nativesdk = "-nativesdk" | ||
| 33 | |||
| 34 | PACKAGES = "eglibc-locale localedef${PKGSUFFIX}" | ||
| 35 | |||
| 36 | PACKAGES_DYNAMIC = "locale-base-* \ | ||
| 37 | eglibc-gconv-* eglibc-charmap-* eglibc-localedata-* eglibc-binary-localedata-* \ | ||
| 38 | glibc-gconv-*${PKGSUFFIX} glibc-charmap-* glibc-localedata-* glibc-binary-localedata-*" | ||
| 39 | |||
| 40 | PROVIDES = "virtual/libc-locale${PKGSUFFIX}" | ||
| 41 | |||
| 42 | RPROVIDES_eglibc-locale = "glibc-locale" | ||
| 43 | |||
| 44 | FILES_eglibc-gconv = "${libdir}/gconv/*" | ||
| 45 | FILES_localedef${PKGSUFFIX} = "${bindir}/localedef" | ||
| 46 | |||
| 47 | do_install () { | ||
| 48 | cp -fpPR ${STAGING_INCDIR}/eglibc-locale-internal-${MULTIMACH_TARGET_SYS}/* ${D} | ||
| 49 | cp -fpPR ${D}/SUPPORTED ${WORKDIR} | ||
| 50 | } | ||
| 51 | |||
| 52 | DESCRIPTION_localedef = "eglibc: compile locale definition files" | ||
| 53 | |||
| 54 | inherit libc-package | ||
| 55 | |||
| 56 | do_install[depends] += "virtual/libc${PKGSUFFIX}:do_populate_sysroot" | ||
| 57 | |||
| 58 | BBCLASSEXTEND = "nativesdk" | ||
