summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/eglibc/eglibc-package.inc
diff options
context:
space:
mode:
authorNitin A Kamble <nitin.a.kamble@intel.com>2010-08-05 19:38:06 -0700
committerRichard Purdie <rpurdie@linux.intel.com>2010-09-02 09:52:31 +0100
commit561d875404ef1783f94f37314b6e756766db8411 (patch)
tree664f8afe01c9ba8828ab02b19367e97e52dae842 /meta/recipes-core/eglibc/eglibc-package.inc
parent436d590c4a5b7b5942bac5b51af128bcdd30621f (diff)
downloadpoky-561d875404ef1783f94f37314b6e756766db8411.tar.gz
libc-package.bbclass: merge glibc & eglibc class files
Other enhancements: print qemu's stdio & error on failure glibc: enable locale generation for all arches eglibc: enable binary locale generation for mips And cleanup of code based on the code review. [e]glibc: move common definition in the common file bitbake was complaining about duplicate definition of get_libc_fpu_setting in eglibc.inc & glibc.inc files. And bump PRs Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/recipes-core/eglibc/eglibc-package.inc')
-rw-r--r--meta/recipes-core/eglibc/eglibc-package.inc99
1 files changed, 99 insertions, 0 deletions
diff --git a/meta/recipes-core/eglibc/eglibc-package.inc b/meta/recipes-core/eglibc/eglibc-package.inc
new file mode 100644
index 0000000000..8ee6bba067
--- /dev/null
+++ b/meta/recipes-core/eglibc/eglibc-package.inc
@@ -0,0 +1,99 @@
1#
2# For now, we will skip building of a gcc package if it is a uclibc one
3# and our build is not a uclibc one, and we skip a eglibc one if our build
4# is a uclibc build.
5#
6# See the note in gcc/gcc_3.4.0.oe
7#
8
9python __anonymous () {
10 import bb, re
11 uc_os = (re.match('.*uclibc*', bb.data.getVar('TARGET_OS', d, 1)) != None)
12 if uc_os:
13 raise bb.parse.SkipPackage("incompatible with target %s" %
14 bb.data.getVar('TARGET_OS', d, 1))
15}
16
17# Binary locales are generated at build time if ENABLE_BINARY_LOCALE_GENERATION
18# is set. The idea is to avoid running localedef on the target (at first boot)
19# to decrease initial boot time and avoid localedef being killed by the OOM
20# killer which used to effectively break i18n on machines with < 128MB RAM.
21
22# default to disabled until qemu works for everyone
23ENABLE_BINARY_LOCALE_GENERATION ?= "0"
24
25# BINARY_LOCALE_ARCHES is a space separated list of regular expressions
26BINARY_LOCALE_ARCHES ?= "arm.* i[3-6]86 x86_64 powerpc mips"
27
28# Set this to zero if you don't want ldconfig in the output package
29USE_LDCONFIG ?= "1"
30
31PACKAGES = "eglibc-dbg eglibc catchsegv sln nscd ldd localedef eglibc-utils eglibc-pic eglibc-dev eglibc-doc eglibc-locale libcidn libmemusage libsegfault eglibc-extra-nss eglibc-thread-db eglibc-pcprofile"
32
33PACKAGES_DYNAMIC = " \
34 glibc-gconv-* glibc-charmap-* glibc-localedata-* glibc-binary-localedata-* \
35 eglibc-gconv-* eglibc-charmap-* eglibc-localedata-* eglibc-binary-localedata-* \
36 locale-base-*"
37
38RPROVIDES_eglibc = "glibc"
39RPROVIDES_eglibc-utils = "glibc-utils"
40RPROVIDES_eglibc-pic = "glibc-pic"
41RPROVIDES_eglibc-dev = "glibc-dev"
42RPROVIDES_eglibc-doc = "glibc-doc"
43RPROVIDES_eglibc-locale = "glibc-locale"
44RPROVIDES_eglibc-extra-nss = "glibc-extra-nss"
45RPROVIDES_eglibc-thread-db = "glibc-thread-db"
46RPROVIDES_eglibc-pcprofile = "glibc-pcprofile"
47RPROVIDES_eglibc-dbg = "glibc-dbg"
48libc_baselibs = "${base_libdir}/libcrypt*.so.* ${base_libdir}/libcrypt-*.so ${base_libdir}/libc*.so.* ${base_libdir}/libc*.so ${base_libdir}/libm*.so.* ${base_libdir}/libm-*.so ${base_libdir}/ld*.so.* ${base_libdir}/ld-*.so ${base_libdir}/libpthread*.so.* ${base_libdir}/libpthread-*.so ${base_libdir}/libresolv*.so.* ${base_libdir}/libresolv-*.so ${base_libdir}/librt*.so.* ${base_libdir}/librt-*.so ${base_libdir}/libutil*.so.* ${base_libdir}/libutil-*.so ${base_libdir}/libnsl*.so.* ${base_libdir}/libnsl-*.so ${base_libdir}/libnss_files*.so.* ${base_libdir}/libnss_files-*.so ${base_libdir}/libnss_compat*.so.* ${base_libdir}/libnss_compat-*.so ${base_libdir}/libnss_dns*.so.* ${base_libdir}/libnss_dns-*.so ${base_libdir}/libdl*.so.* ${base_libdir}/libdl-*.so ${base_libdir}/libanl*.so.* ${base_libdir}/libanl-*.so ${base_libdir}/libBrokenLocale*.so.* ${base_libdir}/libBrokenLocale-*.so"
49
50FILES_${PN} = "${libc_baselibs} ${libexecdir}/* ${@base_conditional('USE_LDCONFIG', '1', '${base_sbindir}/ldconfig', '', d)}"
51FILES_ldd = "${bindir}/ldd"
52FILES_libsegfault = "${base_libdir}/libSegFault*"
53FILES_libcidn = "${base_libdir}/libcidn*.so"
54FILES_libmemusage = "${base_libdir}/libmemusage.so"
55FILES_eglibc-extra-nss = "${base_libdir}/libnss*"
56FILES_sln = "/sbin/sln"
57FILES_eglibc-pic = "${libdir}/*_pic.a ${libdir}/*_pic.map ${libdir}/libc_pic/"
58FILES_eglibc-dev_append += "${bindir}/rpcgen ${libdir}/*.a \
59 ${base_libdir}/*.a ${base_libdir}/*.o ${datadir}/aclocal"
60FILES_nscd = "${sbindir}/nscd*"
61FILES_eglibc-utils = "${bindir}/* ${sbindir}/*"
62FILES_eglibc-gconv = "${libdir}/gconv/*"
63FILES_${PN}-dbg += "${libexecdir}/*/.debug ${libdir}/gconv/.debug"
64FILES_catchsegv = "${bindir}/catchsegv"
65RDEPENDS_catchsegv = "libsegfault"
66FILES_eglibc-pcprofile = "${base_libdir}/libpcprofile.so"
67FILES_eglibc-thread-db = "${base_libdir}/libthread_db*"
68FILES_localedef = "${bindir}/localedef"
69RPROVIDES_eglibc-dev += "libc-dev"
70
71DESCRIPTION_sln = "eglibc: create symbolic links between files"
72DESCRIPTION_nscd = "eglibc: name service cache daemon for passwd, group, and hosts"
73DESCRIPTION_eglibc-extra-nss = "eglibc: nis, nisplus and hesiod search services"
74DESCRIPTION_ldd = "eglibc: print shared library dependencies"
75DESCRIPTION_localedef = "eglibc: compile locale definition files"
76DESCRIPTION_eglibc-utils = "eglibc: misc utilities like iconf, local, gencat, tzselect, rpcinfo, ..."
77
78python __anonymous () {
79 enabled = bb.data.getVar("ENABLE_BINARY_LOCALE_GENERATION", d, 1)
80
81 if enabled and int(enabled):
82 import re
83
84 target_arch = bb.data.getVar("TARGET_ARCH", d, 1)
85 binary_arches = bb.data.getVar("BINARY_LOCALE_ARCHES", d, 1) or ""
86
87 for regexp in binary_arches.split(" "):
88 r = re.compile(regexp)
89
90 if r.match(target_arch):
91 depends = bb.data.getVar("DEPENDS", d, 1)
92 depends = "%s qemu-native" % depends
93 bb.data.setVar("DEPENDS", depends, d)
94 bb.data.setVar("GLIBC_INTERNAL_USE_BINARY_LOCALE", "compile", d)
95 break
96}
97
98inherit libc-package
99