PKGBUILDs/core/glibc/PKGBUILD

175 lines
6.1 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
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
2012-12-30 02:45:32 +00:00
pkgver=2.17
2013-04-04 15:29:12 +00:00
pkgrel=4
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')
depends=('linux-api-headers>=3.7' 'tzdata' 'filesystem>=2013.01')
2012-07-07 00:02:56 +00:00
makedepends=('gcc>=4.7')
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-02-10 03:46:53 +00:00
options=('!strip' '!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}
2013-01-27 04:11:06 +00:00
glibc-2.17-sync-with-linux37.patch
2012-07-07 00:02:56 +00:00
local-soname-hack.diff
2013-02-10 03:46:53 +00:00
fix-hf-ld.so.cache.patch
2012-06-11 04:36:17 +00:00
nscd.service
nscd.tmpfiles
2010-02-09 14:19:06 +00:00
locale.gen.txt
locale-gen)
2012-12-30 02:45:32 +00:00
md5sums=('87bf675c8ee523ebda4803e8e1cec638'
2013-01-27 04:11:06 +00:00
'fb99380d94598cc76d793deebf630022'
2012-06-11 04:36:17 +00:00
'589d79041aa767a5179eaa4e2737dd3f'
'ad8a9af15ab7eeaa23dc7ee85024af9f'
'bccbe5619e75cf1d97312ec3681c605c'
'07ac979b6ab5eeb778d55f041529d623'
2010-02-08 08:28:58 +00:00
'476e9113489f93b348b21e144b6a8fcf')
2010-02-09 14:19:06 +00:00
build() {
2012-07-07 00:02:56 +00:00
cd ${srcdir}/${pkgname}-${pkgver}
2011-05-17 03:18:16 +00:00
2013-01-27 04:11:06 +00:00
# combination of upstream commits 318cd0b, b540704 and fc1abbe
patch -p1 -i ${srcdir}/glibc-2.17-sync-with-linux37.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
patch -p1 -i ${srcdir}/fix-hf-ld.so.cache.patch
fi
cd ${srcdir}
mkdir glibc-build
cd glibc-build
if [[ ${CARCH} = "i686" ]]; then
# Hack to fix NPTL issues with Xen, only required on 32bit platforms
2012-07-07 00:02:56 +00:00
# TODO: make separate glibc-xen package for i686
export CFLAGS="${CFLAGS} -mno-tls-direct-seg-refs"
fi
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"
2012-09-14 00:58:25 +00:00
echo "slibdir=/usr/lib" >> configparms
2011-11-01 01:43:03 +00:00
# remove hardening options from CFLAGS for building libraries
CFLAGS=${CFLAGS/-fstack-protector/}
CFLAGS=${CFLAGS/-D_FORTIFY_SOURCE=2/}
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 \
--enable-add-ons=nptl,libidn,ports \
2012-07-07 00:02:56 +00:00
--enable-obsolete-rpc \
--enable-kernel=2.6.27 \
2012-06-11 04:36:17 +00:00
--enable-bind-now --disable-profile \
2012-07-07 00:02:56 +00:00
--enable-stackguard-randomization \
2011-05-17 03:18:16 +00:00
--disable-multi-arch $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
sed -i '2,4d' configparms
2011-05-17 03:18:16 +00:00
}
check() {
2012-12-30 02:45:32 +00:00
# bug to file - the linker commands need to be reordered
LDFLAGS=${LDFLAGS/--as-needed,/}
2011-05-17 03:18:16 +00:00
cd ${srcdir}/glibc-build
2012-07-07 00:02:56 +00:00
#make -k check
}
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
2012-06-11 04:36:17 +00:00
install -m644 ${srcdir}/nscd.service ${pkgdir}/usr/lib/systemd/system
install -m644 ${srcdir}/nscd.tmpfiles ${pkgdir}/usr/lib/tmpfiles.d/nscd.conf
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
# temporary symlink
ln -s ../../sbin/ldconfig ${pkgdir}/usr/bin/ldconfig
# 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
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
strip $STRIP_BINARIES sbin/{ldconfig,sln} \
2012-01-04 22:28:20 +00:00
usr/bin/{gencat,getconf,getent,iconv,locale,localedef} \
usr/bin/{makedb,pcprofiledump,pldd,rpcgen,sprof} \
usr/lib/getconf/* \
usr/sbin/{iconvconfig,nscd}
[[ $CARCH = "i686" ]] && strip $STRIP_BINARIES usr/bin/lddlibc4
2012-01-04 22:28:20 +00:00
strip $STRIP_STATIC usr/lib/*.a
2012-09-14 00:58:25 +00:00
strip $STRIP_SHARED usr/lib/{libanl,libBrokenLocale,libcidn,libcrypt}-*.so \
usr/lib/libnss_{compat,db,dns,files,hesiod,nis,nisplus}-*.so \
usr/lib/{libdl,libm,libnsl,libresolv,librt,libutil}-*.so \
usr/lib/{libmemusage,libpcprofile,libSegFault}.so \
usr/lib/{pt_chown,{audit,gconv}/*.so}
2010-02-09 14:19:06 +00:00
}
2013-02-10 03:46:53 +00:00
md5sums=('87bf675c8ee523ebda4803e8e1cec638'
'6db4d1661cf34282755dc90330465f6d'
'fb99380d94598cc76d793deebf630022'
'fa192d063312907797eb48f59da99588'
'dee46cbd2e544a61c263a0af39cc934c'
'ad8a9af15ab7eeaa23dc7ee85024af9f'
'bccbe5619e75cf1d97312ec3681c605c'
'07ac979b6ab5eeb778d55f041529d623'
'476e9113489f93b348b21e144b6a8fcf')