1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-02 13:29:49 +00:00

uclibc: Upgrade to 0.9.32-rc3

Bring in the uclibc recipes from meta-oe they have been well
tested by now.

Delete 0.9.30.1 recipes

(From OE-Core rev: ac60a936e737680c16b287a3dab6aa285d87c5c0)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Khem Raj
2011-05-22 12:02:12 -07:00
committed by Richard Purdie
parent ed6f039bca
commit 4ea8b2fde4
60 changed files with 7872 additions and 2400 deletions
@@ -0,0 +1,39 @@
SECTION = "base"
require uclibc_git.bb
DEPENDS = "linux-libc-headers ncurses-native virtual/${TARGET_PREFIX}gcc-initial"
PROVIDES = "virtual/${TARGET_PREFIX}libc-initial"
PACKAGES = ""
PACKAGES_DYNAMIC = ""
STAGINGCC = "gcc-cross-initial"
STAGINGCC_virtclass-nativesdk = "gcc-crosssdk-initial"
do_install() {
# Install initial headers into the cross dir
make PREFIX=${D} DEVEL_PREFIX=${prefix}/ RUNTIME_PREFIX=/ \
install_headers install_startfiles
${CC} -nostdlib -nostartfiles -shared -x c /dev/null \
-o lib/libc.so
${CC} -nostdlib -nostartfiles -shared -x c /dev/null \
-o lib/libm.so
install -d ${D}${libdir}
install -m 755 lib/lib[cm].so ${D}${libdir}
# add links to linux-libc-headers: gcc-{cross,crossdk}-intermediate need this.
for t in linux asm asm-generic; do
if [ -d ${D}${includedir}/$t ]; then
rm -rf ${D}${includedir}/$t
fi
ln -sf ${STAGING_DIR_TARGET}${includedir}/$t ${D}${includedir}/
done
}
do_compile() {
:
}
do_siteconfig () {
:
}
do_populate_sysroot[sstate-outputdirs] = "${STAGING_DIR_TCBOOTSTRAP}"