X-Git-Url: http://gitweb/?a=blobdiff_plain;f=glibc%2FPkgfile;h=67e1bc7c9e6314221b5cb5f3f16596c805402e1b;hb=c18fcdc8639154fbd518c51c6a1eb1f51465da6c;hp=84e3579b1c1bffc246f8c292830bb529bfee573b;hpb=f27d3ffa8b07c9064c7a742923dcfff2597db7c1;p=crossrootfs.git diff --git a/glibc/Pkgfile b/glibc/Pkgfile index 84e3579..67e1bc7 100644 --- a/glibc/Pkgfile +++ b/glibc/Pkgfile @@ -5,42 +5,26 @@ # Depends on: name=glibc -version=2.13 +version=2.27 release=1 source=(http://ftp.gnu.org/gnu/glibc/glibc-$version.tar.xz \ - ftp://ftp.gnu.org/gnu/$name/$name-ports-$version.tar.bz2 \ - ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.35.6.tar.gz \ - glibc-ignore_origin.patch \ - Optimize-__getpagesize-a-bit.patch \ - $name-$version-cross_hacks-2.patch \ - $name-$version-gnueabihf.patch \ - $name-$version-prelink.patch \ + https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.14.14.tar.xz \ hosts resolv.conf nsswitch.conf host.conf ld.so.conf) build() { # install build kernel headers - cd linux-2.6.35.6 + cd linux-4.14.14 make mrproper make ARCH=arm headers_check make ARCH=arm INSTALL_HDR_PATH=$PKG/usr headers_install cd $SRC - mv $name-ports-$version $name-$version/ports - - pushd $name-$version - patch -p1 -i $SRC/$name-$version-gnueabihf.patch - patch -p1 -i $SRC/$name-$version-prelink.patch - patch -p1 -i $SRC/$name-$version-cross_hacks-2.patch - patch -R -p1 -i $SRC/Optimize-__getpagesize-a-bit.patch - patch -p1 -i $SRC/$name-ignore_origin.patch - popd mkdir build cd build cat > config.cache << EOF -libc_cv_gnu89_inline=yes -ac_cv_sizeof_long_double=0 +libc_cv_forced_unwind=yes EOF ../$name-$version/configure --build=$CHOST \ @@ -49,18 +33,22 @@ EOF --libexecdir=/usr/lib \ --with-headers=$PKG/usr/include \ --with-tls \ - --enable-kernel=2.6.0 \ + --enable-kernel=2.6.25 \ --enable-add-ons \ --disable-profile \ --without-gd \ - --with-__thread + --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} + rm -rf $PKG/usr/share/{info,locale} \ + $PKG/usr/bin/tzselect \ + $PKG/usr/sbin/z{dump,ic} }