# Description: The C library used in the GNU system # URL: http://www.gnu.org/software/libc/ # Maintainer: CRUX System Team, core-ports at crux dot nu # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu # Depends on: name=glibc version=2.24 release=1 source=(http://ftp.gnu.org/gnu/glibc/glibc-$version.tar.xz \ https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.9.5.tar.xz \ hosts resolv.conf nsswitch.conf host.conf ld.so.conf) build() { # install build kernel headers cd linux-4.9.5 make mrproper make ARCH=arm64 headers_check make ARCH=arm64 INSTALL_HDR_PATH=$PKG/usr headers_install cd $SRC mkdir build cd build cat > config.cache << EOF libc_cv_forced_unwind=yes EOF ../$name-$version/configure --build=$CHOST \ --host=$CTARGET \ --prefix=/usr \ --libexecdir=/usr/lib \ --with-headers=$PKG/usr/include \ --with-tls \ --enable-kernel=2.6.25 \ --enable-add-ons \ --disable-profile \ --without-gd \ --with-__thread \ --enable-obsolete-rpc make CC="$CC" CFLAGS="$CFLAGS" make install_root=$PKG install cp $SRC/{hosts,resolv.conf,nsswitch.conf,host.conf,ld.so.conf} $PKG/etc ln -sf ../usr/share/zoneinfo/UTC $PKG/etc/localtime ln -s stubs-hard.h $PKG/usr/include/gnu/stubs-soft.h mkdir -p $PKG/etc/ld.so.conf.d $PKG/usr/lib/locale rm -rf $PKG/usr/share/{info,locale} \ $PKG/usr/bin/tzselect \ $PKG/usr/sbin/z{dump,ic} }