2017-03-11 03:35:26 +00:00
|
|
|
# $Id$
|
2017-09-09 16:44:29 +00:00
|
|
|
# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
|
|
|
# Contributor: Allan McRae <allan@archlinux.org>
|
2010-04-25 04:35:32 +00:00
|
|
|
|
|
|
|
# toolchain build order: linux-api-headers->glibc->binutils->gcc->binutils->glibc
|
2011-11-01 01:43:03 +00:00
|
|
|
# NOTE: valgrind requires rebuilt with each major glibc version
|
2011-01-05 07:28:13 +00:00
|
|
|
|
2011-12-09 20:46:15 +00:00
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
2017-12-07 13:46:46 +00:00
|
|
|
# - Specify our build host type
|
|
|
|
# - Disabled distcc
|
|
|
|
# - Strip out Arch x86 multilib
|
2011-02-05 01:42:15 +00:00
|
|
|
|
|
|
|
noautobuild=1
|
|
|
|
|
2010-02-08 08:28:58 +00:00
|
|
|
pkgname=glibc
|
2017-09-09 16:44:29 +00:00
|
|
|
pkgver=2.26
|
2018-01-24 13:46:45 +00:00
|
|
|
pkgrel=11
|
2017-12-07 13:46:46 +00:00
|
|
|
arch=(x86_64)
|
2017-06-17 14:32:36 +00:00
|
|
|
url='http://www.gnu.org/software/libc'
|
|
|
|
license=(GPL LGPL)
|
2017-09-09 16:44:29 +00:00
|
|
|
makedepends=(git gd)
|
2017-06-17 14:32:36 +00:00
|
|
|
options=(!strip staticlibs !distcc)
|
2018-01-24 13:46:45 +00:00
|
|
|
_commit=de51f431ed6226ec68ca76e578f2cbd55b6262cb
|
2016-02-22 13:26:01 +00:00
|
|
|
source=(git://sourceware.org/git/glibc.git#commit=${_commit}
|
2010-02-09 14:19:06 +00:00
|
|
|
locale.gen.txt
|
2018-01-06 20:22:15 +00:00
|
|
|
locale-gen
|
|
|
|
bz20338.patch)
|
2016-02-22 13:26:01 +00:00
|
|
|
md5sums=('SKIP'
|
2011-01-05 07:28:13 +00:00
|
|
|
'07ac979b6ab5eeb778d55f041529d623'
|
2018-01-06 20:22:15 +00:00
|
|
|
'476e9113489f93b348b21e144b6a8fcf'
|
|
|
|
'dc0d3ad59aeaaf591b085a77de6e03e9')
|
2011-01-05 07:28:13 +00:00
|
|
|
|
2013-08-16 22:02:27 +00:00
|
|
|
prepare() {
|
2017-09-09 16:44:29 +00:00
|
|
|
mkdir -p glibc-build
|
2018-01-06 20:22:15 +00:00
|
|
|
|
|
|
|
cd glibc
|
|
|
|
|
|
|
|
local i; for i in ${source[@]}; do
|
|
|
|
case ${i%::*} in
|
|
|
|
*.patch)
|
|
|
|
msg2 "Applying ${i}"
|
|
|
|
patch -p1 -i "$srcdir/${i}"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
2017-06-21 00:03:45 +00:00
|
|
|
}
|
2011-01-05 07:28:13 +00:00
|
|
|
|
2013-08-16 22:02:27 +00:00
|
|
|
build() {
|
2017-12-07 13:46:46 +00:00
|
|
|
local _configure_flags=(
|
|
|
|
--prefix=/usr
|
|
|
|
--with-headers=/usr/include
|
|
|
|
--with-bugurl=https://github.com/archlinuxarm/PKGBUILDs/issues
|
|
|
|
--enable-add-ons
|
|
|
|
--enable-bind-now
|
|
|
|
--enable-lock-elision
|
|
|
|
--disable-multi-arch
|
|
|
|
--enable-obsolete-nsl
|
|
|
|
--enable-obsolete-rpc
|
|
|
|
--enable-stack-protector=strong
|
|
|
|
--enable-stackguard-randomization
|
|
|
|
--disable-profile
|
|
|
|
--disable-werror
|
|
|
|
)
|
|
|
|
|
|
|
|
cd "$srcdir/glibc-build"
|
2017-03-11 03:35:26 +00:00
|
|
|
|
2011-05-17 03:18:16 +00:00
|
|
|
# ALARM: Specify build host types
|
2012-11-05 17:39:36 +00:00
|
|
|
[[ $CARCH == "arm" ]] && CONFIGFLAG="--host=armv5tel-unknown-linux-gnueabi --build=armv5tel-unknown-linux-gnueabi"
|
2012-11-05 16:58:15 +00:00
|
|
|
[[ $CARCH == "armv6h" ]] && CONFIGFLAG="--host=armv6l-unknown-linux-gnueabihf --build=armv6l-unknown-linux-gnueabihf"
|
|
|
|
[[ $CARCH == "armv7h" ]] && CONFIGFLAG="--host=armv7l-unknown-linux-gnueabihf --build=armv7l-unknown-linux-gnueabihf"
|
2015-07-05 01:45:51 +00:00
|
|
|
[[ $CARCH == "aarch64" ]] && CONFIGFLAG="--host=aarch64-unknown-linux-gnu --build=aarch64-unknown-linux-gnu"
|
2011-01-05 07:28:13 +00:00
|
|
|
|
2012-09-14 00:58:25 +00:00
|
|
|
echo "slibdir=/usr/lib" >> configparms
|
2014-09-16 01:42:39 +00:00
|
|
|
echo "rtlddir=/usr/lib" >> configparms
|
2013-06-03 15:51:35 +00:00
|
|
|
echo "sbindir=/usr/bin" >> configparms
|
|
|
|
echo "rootsbindir=/usr/bin" >> configparms
|
2011-01-05 07:28:13 +00:00
|
|
|
|
2017-03-11 03:35:26 +00:00
|
|
|
# remove fortify for building libraries
|
2013-04-11 00:51:12 +00:00
|
|
|
CPPFLAGS=${CPPFLAGS/-D_FORTIFY_SOURCE=2/}
|
2011-11-01 01:43:03 +00:00
|
|
|
|
2017-09-09 16:44:29 +00:00
|
|
|
"$srcdir/glibc/configure" \
|
2017-03-11 03:35:26 +00:00
|
|
|
--libdir=/usr/lib \
|
|
|
|
--libexecdir=/usr/lib \
|
2017-12-07 13:46:46 +00:00
|
|
|
${_configure_flags[@]} \
|
2015-02-09 04:09:11 +00:00
|
|
|
$CONFIGFLAG
|
2011-11-01 01:43:03 +00:00
|
|
|
|
2017-03-11 03:35:26 +00:00
|
|
|
# build libraries with fortify disabled
|
2011-11-01 01:43:03 +00:00
|
|
|
echo "build-programs=no" >> configparms
|
2012-11-05 17:39:05 +00:00
|
|
|
make
|
2016-02-18 17:40:07 +00:00
|
|
|
|
2017-03-11 03:35:26 +00:00
|
|
|
# re-enable fortify for programs
|
2012-06-11 04:36:17 +00:00
|
|
|
sed -i "/build-programs=/s#no#yes#" configparms
|
2011-11-01 01:43:03 +00:00
|
|
|
|
2017-03-11 03:35:26 +00:00
|
|
|
echo "CC += -D_FORTIFY_SOURCE=2" >> configparms
|
|
|
|
echo "CXX += -D_FORTIFY_SOURCE=2" >> configparms
|
|
|
|
make
|
2011-05-17 03:18:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
check() {
|
2016-02-22 13:26:01 +00:00
|
|
|
cd glibc-build
|
2014-09-16 01:42:39 +00:00
|
|
|
|
2017-03-11 03:35:26 +00:00
|
|
|
# remove fortify in preparation to run test-suite
|
|
|
|
sed -i '/FORTIFY/d' configparms
|
|
|
|
|
2015-08-12 12:11:11 +00:00
|
|
|
# some failures are "expected"
|
2014-09-16 01:42:39 +00:00
|
|
|
make check || true
|
2010-05-27 01:40:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2017-12-07 13:46:46 +00:00
|
|
|
pkgdesc='GNU C Library'
|
|
|
|
depends=('linux-api-headers>=4.10' tzdata filesystem)
|
|
|
|
optdepends=('gd: for memusagestat')
|
|
|
|
install=glibc.install
|
|
|
|
backup=(etc/gai.conf
|
|
|
|
etc/locale.gen
|
|
|
|
etc/nscd.conf)
|
|
|
|
groups=(base)
|
|
|
|
|
2017-09-09 16:44:29 +00:00
|
|
|
install -dm755 "$pkgdir/etc"
|
|
|
|
touch "$pkgdir/etc/ld.so.conf"
|
2012-07-07 00:02:56 +00:00
|
|
|
|
2017-09-09 16:44:29 +00:00
|
|
|
make -C glibc-build install_root="$pkgdir" install
|
|
|
|
rm -f "$pkgdir"/etc/ld.so.{cache,conf}
|
2011-01-05 07:28:13 +00:00
|
|
|
|
2017-09-09 16:44:29 +00:00
|
|
|
cd glibc
|
2011-01-05 07:28:13 +00:00
|
|
|
|
2017-09-09 16:44:29 +00:00
|
|
|
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"
|
2012-06-11 04:36:17 +00:00
|
|
|
|
2017-09-09 16:44:29 +00:00
|
|
|
install -m644 posix/gai.conf "$pkgdir"/etc/gai.conf
|
2012-06-11 04:36:17 +00:00
|
|
|
|
2017-09-09 16:44:29 +00:00
|
|
|
install -m755 "$srcdir/locale-gen" "$pkgdir/usr/bin"
|
2013-01-27 04:11:06 +00:00
|
|
|
|
2011-01-05 07:28:13 +00:00
|
|
|
# create /etc/locale.gen
|
2017-09-09 16:44:29 +00:00
|
|
|
install -m644 "$srcdir/locale.gen.txt" "$pkgdir/etc/locale.gen"
|
2012-07-07 00:02:56 +00:00
|
|
|
sed -e '1,3d' -e 's|/| |g' -e 's|\\| |g' -e 's|^|#|g' \
|
2017-09-09 16:44:29 +00:00
|
|
|
"$srcdir/glibc/localedata/SUPPORTED" >> "$pkgdir/etc/locale.gen"
|
2013-10-25 01:54:52 +00:00
|
|
|
|
2012-07-07 00:02:56 +00:00
|
|
|
# ALARM: symlink ld-linux.so.3 for hard-float
|
2013-02-10 03:46:53 +00:00
|
|
|
[[ $CARCH == "armv6h" || $CARCH == "armv7h" ]] && ln -s /lib/ld-${pkgver}.so ${pkgdir}/usr/lib/ld-linux.so.3
|
2012-07-07 00:02:56 +00:00
|
|
|
|
2012-01-04 22:28:20 +00:00
|
|
|
# Do not strip the following files for improved debugging support
|
|
|
|
# ("improved" as in not breaking gdb and valgrind...):
|
|
|
|
# ld-${pkgver}.so
|
|
|
|
# libc-${pkgver}.so
|
|
|
|
# libpthread-${pkgver}.so
|
|
|
|
# libthread_db-1.0.so
|
2011-01-05 07:28:13 +00:00
|
|
|
|
2017-09-09 16:44:29 +00:00
|
|
|
cd "$pkgdir"
|
2013-06-03 15:51:35 +00:00
|
|
|
strip $STRIP_BINARIES usr/bin/{gencat,getconf,getent,iconv,iconvconfig} \
|
|
|
|
usr/bin/{ldconfig,locale,localedef,nscd,makedb} \
|
|
|
|
usr/bin/{pcprofiledump,pldd,rpcgen,sln,sprof} \
|
|
|
|
usr/lib/getconf/*
|
2011-01-05 07:28:13 +00:00
|
|
|
|
2017-03-11 03:35:26 +00:00
|
|
|
strip $STRIP_STATIC usr/lib/lib{anl,BrokenLocale,c{,_nonshared},crypt}.a \
|
|
|
|
usr/lib/lib{dl,g,ieee,mcheck,nsl,pthread{,_nonshared}}.a \
|
|
|
|
usr/lib/lib{resolv,rpcsvc,rt,util}.a
|
2011-01-05 07:28:13 +00:00
|
|
|
|
2017-03-11 03:35:26 +00:00
|
|
|
strip $STRIP_SHARED usr/lib/lib{anl,BrokenLocale,cidn,crypt}-${pkgver}.so \
|
2012-09-14 00:58:25 +00:00
|
|
|
usr/lib/libnss_{compat,db,dns,files,hesiod,nis,nisplus}-*.so \
|
2017-03-11 03:35:26 +00:00
|
|
|
usr/lib/lib{dl,m,nsl,resolv,rt,util}-${pkgver}.so \
|
2015-08-12 12:11:11 +00:00
|
|
|
usr/lib/lib{memusage,pcprofile,SegFault}.so \
|
|
|
|
usr/lib/{audit,gconv}/*.so || true
|
2010-02-09 14:19:06 +00:00
|
|
|
}
|