# Maintainer: Stephan Springer # Maintainer: Bartłomiej Piotrowski # Contributor: Allan McRae # toolchain build order: linux-api-headers->glibc->binutils->gcc->binutils->glibc # NOTE: valgrind requires rebuilt with each major glibc version pkgname=glibc-2.27 pkgver=2.27 pkgrel=3 arch=(x86_64) pkgdesc='GNU C Library, version 2.27' depends=('linux-api-headers>=4.10' tzdata filesystem) optdepends=('gd: for memusagestat') backup=(opt/glibc-2.27/etc/gai.conf opt/glibc-2.27/etc/locale.gen opt/glibc-2.27/etc/nscd.conf) groups=(base) url='http://www.gnu.org/software/libc' license=(GPL LGPL) makedepends=(git gd) options=(!strip staticlibs) _commit=23158b08a0908f381459f273a984c6fd328363cb #source=(git+https://sourceware.org/git/glibc.git#commit=$_commit source=(https://ftp.gnu.org/gnu/glibc/glibc-$pkgver.tar.xz{,.sig} locale.gen.txt locale-gen bz20338.patch) validpgpkeys=(7273542B39962DF7B299931416792B4EA25340F8) # Carlos O'Donell md5sums=('898cd5656519ffbc3a03fe811dd89e82' 'SKIP' '07ac979b6ab5eeb778d55f041529d623' '476e9113489f93b348b21e144b6a8fcf' 'dc0d3ad59aeaaf591b085a77de6e03e9') prepare() { mkdir -p glibc-build [[ -d glibc-$pkgver ]] && ln -s glibc-$pkgver glibc cd glibc local i; for i in ${source[@]}; do case ${i%::*} in *.patch) msg2 "Applying ${i}" patch -p1 -i "$srcdir/${i}" ;; esac done } build() { local _configure_flags=( --prefix=/usr --with-headers=/usr/include --with-bugurl=https://bugs.archlinux.org/ --enable-add-ons --enable-bind-now --enable-lock-elision --enable-multi-arch --enable-stack-protector=strong --enable-stackguard-randomization --enable-static-pie --disable-profile --disable-werror ) cd "$srcdir/glibc-build" echo "slibdir=/usr/lib" >> configparms echo "rtlddir=/usr/lib" >> configparms echo "sbindir=/usr/bin" >> configparms echo "rootsbindir=/usr/bin" >> configparms # remove fortify for building libraries CPPFLAGS=${CPPFLAGS/-D_FORTIFY_SOURCE=2/} "$srcdir/glibc/configure" \ --libdir=/usr/lib \ --libexecdir=/usr/lib \ ${_configure_flags[@]} # build libraries with fortify disabled echo "build-programs=no" >> configparms make # re-enable fortify for programs sed -i "/build-programs=/s#no#yes#" configparms echo "CC += -D_FORTIFY_SOURCE=2" >> configparms echo "CXX += -D_FORTIFY_SOURCE=2" >> configparms make } check() { cd glibc-build # remove fortify in preparation to run test-suite sed -i '/FORTIFY/d' configparms # some failures are "expected" make check || true } package() { install -dm755 "$pkgdir/etc" touch "$pkgdir/etc/ld.so.conf" make -C glibc-build install_root="$pkgdir" install rm -f "$pkgdir"/etc/ld.so.{cache,conf} cd glibc install -dm755 "$pkgdir"/usr/lib/{locale,systemd/system,tmpfiles.d} install -m644 nscd/nscd.conf "$pkgdir/etc/nscd.conf" install -m644 nscd/nscd.service "$pkgdir/usr/lib/systemd/system" install -m644 nscd/nscd.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/nscd.conf" install -dm755 "$pkgdir/var/db/nscd" install -m644 posix/gai.conf "$pkgdir"/etc/gai.conf install -m755 "$srcdir/locale-gen" "$pkgdir/usr/bin" # Create /etc/locale.gen install -m644 "$srcdir/locale.gen.txt" "$pkgdir/etc/locale.gen" sed -e '1,3d' -e 's|/| |g' -e 's|\\| |g' -e 's|^|#|g' \ "$srcdir/glibc/localedata/SUPPORTED" >> "$pkgdir/etc/locale.gen" if check_option 'debug' n; then find "$pkgdir"/usr/bin -type f -executable -exec strip $STRIP_BINARIES {} + 2> /dev/null || true find "$pkgdir"/usr/lib -name '*.a' -type f -exec strip $STRIP_STATIC {} + 2> /dev/null || true # Do not strip these for gdb and valgrind functionality, but strip the rest find "$pkgdir"/usr/lib \ -not -name 'ld-*.so' \ -not -name 'libc-*.so' \ -not -name 'libpthread-*.so' \ -not -name 'libthread_db-*.so' \ -name '*-*.so' -type f -exec strip $STRIP_SHARED {} + 2> /dev/null || true fi # Finally move everything to /opt _pkgdir="$pkgdir/opt/glibc-2.27" install -dm755 "$_pkgdir" for dir in etc usr var; do mv "$pkgdir/$dir" "$_pkgdir" done rm -rf "$_pkgdir/usr/share/info" }