PKGBUILDs/core/glibc/PKGBUILD

185 lines
6.3 KiB
Bash
Raw Normal View History

2012-07-07 00:02:56 +00:00
# $Id: PKGBUILD 163008 2012-07-05 13:48:19Z allan $
# Maintainer: 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
2013-10-25 01:54:52 +00:00
# NOTE: adjust version in install script when locale files are updated
2011-12-09 20:46:15 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2013-02-10 03:46:53 +00:00
# - Patch for ld-linux-armhf.so.3 transition and symlink ld-linux.so.3
# - Patch for hard-float ld.so.cache transition
# - Changed configure to enable ports add-on, specify our build host type
2012-11-05 16:58:15 +00:00
# - Disabled distcc
noautobuild=1
2010-02-08 08:28:58 +00:00
pkgname=glibc
2015-08-12 12:11:11 +00:00
pkgver=2.22
pkgrel=4.1
2010-02-08 08:28:58 +00:00
pkgdesc="GNU C Library"
arch=('i686' 'x86_64')
2010-02-08 08:28:58 +00:00
url="http://www.gnu.org/software/libc"
2010-02-09 14:19:06 +00:00
license=('GPL' 'LGPL')
groups=('base')
2015-08-12 12:11:11 +00:00
depends=('linux-api-headers>=4.1' 'tzdata' 'filesystem')
makedepends=('gcc>=5.2')
2011-11-01 01:43:03 +00:00
backup=(etc/gai.conf
etc/locale.gen
2010-02-09 14:19:06 +00:00
etc/nscd.conf)
2013-10-25 01:54:52 +00:00
options=('!strip' 'staticlibs' '!distcc')
2010-02-09 14:19:06 +00:00
install=glibc.install
2012-07-07 00:02:56 +00:00
source=(http://ftp.gnu.org/gnu/libc/${pkgname}-${pkgver}.tar.xz{,.sig}
local-soname-hack.diff
2015-09-06 02:25:17 +00:00
glibc-2.22-roundup.patch
2016-02-17 13:27:38 +00:00
glibc-2.22-CVE-2015-7547.patch
2010-02-09 14:19:06 +00:00
locale.gen.txt
locale-gen)
2015-08-12 12:11:11 +00:00
md5sums=('e51e02bf552a0a1fbbdc948fb2f5e83c'
2013-04-11 00:51:12 +00:00
'SKIP'
2014-01-17 19:46:52 +00:00
'905370139382428ef2b97b247c0970bf'
2016-02-17 13:27:38 +00:00
'd4b9754a2d5e8f113d47c67386f75e7b'
'db053da46e40f25a0fc988936725080b'
'07ac979b6ab5eeb778d55f041529d623'
2014-02-14 13:38:54 +00:00
'476e9113489f93b348b21e144b6a8fcf')
2014-09-16 01:42:39 +00:00
validpgpkeys=('F37CDAB708E65EA183FD1AF625EF0A436C2A4AFF') # Carlos O'Donell
2013-08-16 22:02:27 +00:00
prepare() {
2012-07-07 00:02:56 +00:00
cd ${srcdir}/${pkgname}-${pkgver}
2011-05-17 03:18:16 +00:00
2016-02-17 13:27:38 +00:00
# glibc-2.22..287de30e
# 060f8dbd (and 13ff0739) is reverted as it breaks the testsuite on x86_64
# TODO: figure out why...
2015-09-06 02:25:17 +00:00
patch -p1 -i $srcdir/glibc-2.22-roundup.patch
2014-05-20 11:08:43 +00:00
2016-02-17 13:27:38 +00:00
# CVE-2015-7547 - patch from upstream
patch -p1 -i $srcdir/glibc-2.22-CVE-2015-7547.patch
2012-12-30 02:45:32 +00:00
# ALARM: patch for hard-float ld-linux soname
2013-02-10 03:46:53 +00:00
if [[ $CARCH == "armv6h" || $CARCH == "armv7h" ]]; then
patch -p1 -i ${srcdir}/local-soname-hack.diff
fi
2013-08-16 22:02:27 +00:00
mkdir ${srcdir}/glibc-build
}
2013-08-16 22:02:27 +00:00
build() {
cd ${srcdir}/glibc-build
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"
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
2013-04-11 00:51:12 +00:00
# remove hardening options for building libraries
2011-11-01 01:43:03 +00:00
CFLAGS=${CFLAGS/-fstack-protector/}
2013-04-11 00:51:12 +00:00
CPPFLAGS=${CPPFLAGS/-D_FORTIFY_SOURCE=2/}
2011-11-01 01:43:03 +00:00
# enable unwinding tables so that gdb can unwind the standard functions
CFLAGS+=" -funwind-tables"
2012-07-07 00:02:56 +00:00
${srcdir}/${pkgname}-${pkgver}/configure --prefix=/usr \
--libdir=/usr/lib --libexecdir=/usr/lib \
--with-headers=/usr/include \
2012-12-30 02:45:32 +00:00
--with-bugurl=https://github.com/archlinuxarm/PKGBUILDs/issues \
2014-09-16 01:42:39 +00:00
--enable-add-ons \
2012-07-07 00:02:56 +00:00
--enable-obsolete-rpc \
2014-11-07 05:22:56 +00:00
--enable-kernel=2.6.32 \
2012-06-11 04:36:17 +00:00
--enable-bind-now --disable-profile \
2012-07-07 00:02:56 +00:00
--enable-stackguard-randomization \
2013-08-30 04:14:44 +00:00
--enable-lock-elision \
2015-02-09 04:09:11 +00:00
--disable-multi-arch \
--disable-werror \
$CONFIGFLAG
2011-11-01 01:43:03 +00:00
# build libraries with hardening disabled
echo "build-programs=no" >> configparms
2012-11-05 17:39:05 +00:00
make
2011-11-01 01:43:03 +00:00
# re-enable hardening 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
echo "CC += -fstack-protector -D_FORTIFY_SOURCE=2" >> configparms
echo "CXX += -fstack-protector -D_FORTIFY_SOURCE=2" >> configparms
2012-11-05 16:58:15 +00:00
make
2011-11-01 01:43:03 +00:00
# remove harding in preparation to run test-suite
2014-09-16 01:42:39 +00:00
sed -i '5,7d' configparms
2011-05-17 03:18:16 +00:00
}
check() {
cd ${srcdir}/glibc-build
2014-09-16 01:42:39 +00:00
2015-08-12 12:11:11 +00:00
# some failures are "expected"
2014-09-16 01:42:39 +00:00
make check || true
}
package() {
cd ${srcdir}/glibc-build
2012-07-07 00:02:56 +00:00
install -dm755 ${pkgdir}/etc
touch ${pkgdir}/etc/ld.so.conf
make install_root=${pkgdir} install
rm -f ${pkgdir}/etc/ld.so.{cache,conf}
2013-01-27 04:11:06 +00:00
install -dm755 ${pkgdir}/usr/lib/{locale,systemd/system,tmpfiles.d}
2012-06-11 04:36:17 +00:00
2012-07-07 00:02:56 +00:00
install -m644 ${srcdir}/${pkgname}-${pkgver}/nscd/nscd.conf ${pkgdir}/etc/nscd.conf
2014-02-10 04:02:31 +00:00
install -m644 ${srcdir}/${pkgname}-${pkgver}/nscd/nscd.service ${pkgdir}/usr/lib/systemd/system
install -m644 ${srcdir}/${pkgname}-${pkgver}/nscd/nscd.tmpfiles ${pkgdir}/usr/lib/tmpfiles.d/nscd.conf
2012-06-11 04:36:17 +00:00
2012-07-07 00:02:56 +00:00
install -m644 ${srcdir}/${pkgname}-${pkgver}/posix/gai.conf ${pkgdir}/etc/gai.conf
2013-01-27 04:11:06 +00:00
install -m755 ${srcdir}/locale-gen ${pkgdir}/usr/bin
# create /etc/locale.gen
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' \
2012-12-30 02:45:32 +00:00
${srcdir}/glibc-${pkgver}/localedata/SUPPORTED >> ${pkgdir}/etc/locale.gen
2013-10-25 01:54:52 +00:00
# remove the static libraries that have a shared counterpart
2014-01-08 15:03:12 +00:00
# libc, libdl, libm and libpthread are required for toolchain testsuites
# in addition libcrypt appears widely required
rm $pkgdir/usr/lib/lib{anl,BrokenLocale,nsl,resolv,rt,util}.a
2015-08-12 12:11:11 +00:00
if [[ $CARCH = "x86_64" ]]; then
rm $pkgdir/usr/lib/libmvec.a
fi
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
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/*
2015-08-12 12:11:11 +00:00
if [[ $CARCH = "i686" ]]; then
strip $STRIP_BINARIES usr/bin/lddlibc4
fi
2012-01-04 22:28:20 +00:00
strip $STRIP_STATIC usr/lib/*.a
2015-08-12 12:11:11 +00:00
strip $STRIP_SHARED usr/lib/lib{anl,BrokenLocale,cidn,crypt}-*.so \
2012-09-14 00:58:25 +00:00
usr/lib/libnss_{compat,db,dns,files,hesiod,nis,nisplus}-*.so \
2015-08-12 12:11:11 +00:00
usr/lib/lib{dl,m,nsl,resolv,rt,util}-*.so \
usr/lib/lib{memusage,pcprofile,SegFault}.so \
usr/lib/{audit,gconv}/*.so || true
if [[ $CARCH = "x86_64" ]]; then
strip $STRIP_SHARED usr/lib/libmvec-*.so
fi
2010-02-09 14:19:06 +00:00
}