Correct klibc usage of our filter_out convenience function.
authorChris Larson <clarson@kergoth.com>
Thu, 16 Sep 2004 02:25:05 +0000 (02:25 +0000)
committerChris Larson <clarson@kergoth.com>
Thu, 16 Sep 2004 02:25:05 +0000 (02:25 +0000)
BKrev: 4148f981j9NMU7sRjoGEpbjYvFANcA

klibc/klibc_0.157.oe

index e69de29..a97d4eb 100644 (file)
@@ -0,0 +1,33 @@
+DESCRIPTION = "klibc is intended to be a minimalistic libc subset for \
+use with initramfs.  It is deliberately written for small size, \
+minimal entaglement, and portability, not speed."
+MAINTAINER = "Chris Larson <kergoth@handhelds.org>"
+
+SRC_URI = "http://www.kernel.org/pub/linux/libs/klibc/Stable/klibc-${PV}.tar.bz2"
+S = "${WORKDIR}/klibc-${PV}"
+
+# FIXME: This package fails to compile at the moment, and is missing a do_install()
+BROKEN = "1"
+
+EXTRA_OEMAKE = "'ARCH=${KLIBC_ARCH}' \
+               'CROSS=${TARGET_PREFIX}' \
+               'CC=${CC}' \
+               'LD=${LD}' \
+               'AR=${AR}' \
+               'RANLIB=${RANLIB}' \
+               'NM=${TARGET_PREFIX}nm' \
+               'STRIP=echo' \
+               'SHLIBDIR=/lib' \
+               'HOST_CC=${BUILD_CC}' \
+               'HOST_CFLAGS=${BUILD_CFLAGS}' \
+               'HOST_LDFLAGS=${BUILD_LDFLAGS}' \
+               'HOST_LIBS=' \
+               'LDFLAGS=${LDFLAGS}' \
+               'WARNFLAGS=${CFLAGS}' \
+               'OPTFLAGS='"
+
+KLIBC_ARCH := '${TARGET_ARCH}'
+KLIBC_ARCH_armeb = 'arm'
+KLIBC_ARCH_mipsel = 'mips'
+
+CFLAGS := "${@oe_filter_out('-I\S+', '${CFLAGS}', d)} -I${STAGING_KERNEL_DIR}/include"