diff options
author | Chris Larson <clarson@kergoth.com> | 2004-08-10 01:58:26 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-08-10 01:58:26 +0000 |
commit | 2bae3f425726f311e193e7e10b266c0335fd18bd (patch) | |
tree | cd68e50a8dc1059832b4e12af45a42e9090fca51 /uclibc | |
parent | c0e37770b268609e4a2d0505d4aef57bce093643 (diff) |
Resurrect initial libc pass, for the moment.
BKrev: 41182bc2JFBvoGiaKIvQ1VltLvXTVw
Diffstat (limited to 'uclibc')
-rw-r--r-- | uclibc/uclibc-initial_0.9.26.oe | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/uclibc/uclibc-initial_0.9.26.oe b/uclibc/uclibc-initial_0.9.26.oe new file mode 100644 index 0000000000..d838cbfc48 --- /dev/null +++ b/uclibc/uclibc-initial_0.9.26.oe @@ -0,0 +1,32 @@ +include uclibc_${PV}.oe + +FILESPATH = "${@base_set_filespath([ '%s/uclibc-%s' % (os.path.dirname(oe.data.getVar('FILE', d, 1)) ], d), oe.data.getVar('PV', d, 1))}" + +DEPENDS = "patcher-native linux-libc-headers" +PROVIDES = "virtual/${TARGET_PREFIX}libc-initial" +PACKAGES = "" + +do_stage() { + # Install initial headers into the cross dir + make PREFIX= DEVEL_PREFIX=${UCLIBC_PREFIX}/ \ + RUNTIME_PREFIX=${UCLIBC_PREFIX}/ \ + pregen install_dev + + mkdir -p ${CROSS_DIR}/${TARGET_SYS} + mkdir -p ${CROSS_DIR}/${TARGET_SYS}/include + mkdir -p ${CROSS_DIR}/${TARGET_SYS}/lib + ln -sf include ${CROSS_DIR}/${TARGET_SYS}/sys-include + rm -rf ${CROSS_DIR}/${TARGET_SYS}/${prefix} + + # This conflicts with the c++ version of this header + rm -f ${UCLIBC_PREFIX}/include/bits/atomicity.h +} + +do_install() { + : +} + +do_compile () { + : +} + |