lib32/lib32-glibc/PKGBUILD

145 lines
4.4 KiB
Bash
Raw Normal View History

2012-04-22 05:37:11 +08:00
# toolchain build order:
2018-01-27 08:48:21 +08:00
# toolchain build order: lib32-glibc>binutils->lib32-gcc->binutils->lib32-glibc
2013-04-28 02:56:41 +08:00
_pkgbasename=glibc
pkgname=lib32-$_pkgbasename
2018-01-27 08:48:21 +08:00
pkgver=2.26
2014-09-16 18:24:22 +08:00
pkgrel=1
2018-01-27 08:48:21 +08:00
_commit=633e2f7f3d88df6427aa3a7a984d3a6b796d9611 # release/2.26/master
2014-06-02 03:37:06 +08:00
pkgdesc="GNU C Library (32-bit)"
arch=('x86_64')
url="http://www.gnu.org/software/libc"
license=('GPL' 'LGPL')
2017-03-17 14:35:49 +08:00
depends=($_pkgbasename>=$pkgver)
2017-02-18 01:39:45 +08:00
makedepends=('gcc>=5.2' 'git' 'lib32-gcc-libs')
options=('!strip' 'staticlibs' '!emptydirs')
2017-03-17 14:35:49 +08:00
source=(git+https://sourceware.org/git/glibc.git#commit=${_commit}
2018-01-27 08:48:21 +08:00
lib32-glibc.conf
0001-manual-Update-to-mention-ENODEV-for-ttyname-and-ttyn.patch
0002-linux-ttyname-Update-a-reference-to-kernel-docs-for-.patch
0003-linux-ttyname-Change-return-type-of-is_pty-from-int-.patch
0004-linux-ttyname-_r-Make-tty-checks-consistent.patch
0005-linux-ttyname-_r-Don-t-bail-prematurely-BZ-22145.patch
0006-linux-ttyname-_r-Add-tests.patch
bz20338.patch)
2017-03-17 14:35:49 +08:00
2017-02-18 01:39:45 +08:00
md5sums=('SKIP'
2018-01-27 08:48:21 +08:00
'6e052f1cb693d5d3203f50f9d4e8c33b'
'2bb2dfa660fbb4b349f844459f79d5a1'
'299316b1a35426eadf3301a3fad170be'
'41d212e3f8d838bff341102679b2af09'
'8a886e84f950caf2ad1c37cc3a456339'
'fc5af427803b139d9753230849053458'
'eb4e1836f4f3721f1215450a2cca3523'
'dc0d3ad59aeaaf591b085a77de6e03e9')
2013-10-09 17:18:50 +08:00
prepare() {
2018-01-27 08:48:21 +08:00
mkdir -p glibc-build
2017-03-17 14:35:49 +08:00
cd glibc
2018-01-27 08:48:21 +08:00
local i; for i in ${source[@]}; do
case ${i%::*} in
*.patch)
msg2 "Applying ${i}"
patch -p1 -i "$srcdir/${i}"
;;
esac
done
2013-10-09 17:18:50 +08:00
}
build() {
cd ${srcdir}/glibc-build
2011-10-09 02:35:19 +08:00
echo "slibdir=/usr/lib32" >> configparms
2014-09-16 18:24:22 +08:00
echo "rtlddir=/usr/lib32" >> configparms
echo "sbindir=/usr/sbin" >> configparms
echo "rootsbindir=/usr/sbin" >> configparms
#export CFLAGS="${CFLAGS} -mno-tls-direct-seg-refs"
2018-01-27 08:48:21 +08:00
export CC="gcc -m32 -mstackrealign"
export CXX="g++ -m32 -mstackrealign"
2013-10-09 17:18:50 +08:00
2017-03-17 14:35:49 +08:00
# remove fortify for building libraries
2013-04-28 02:56:41 +08:00
CPPFLAGS=${CPPFLAGS/-D_FORTIFY_SOURCE=2/}
2017-03-17 14:35:49 +08:00
../glibc/configure \
--prefix=/usr \
--libdir=/usr/lib32 \
--libexecdir=/usr/lib32 \
--with-headers=/usr/include \
2018-01-27 08:48:21 +08:00
--with-bugurl=https://code.chakralinux.org/ \
2014-09-16 18:24:22 +08:00
--enable-add-ons \
2017-03-17 14:35:49 +08:00
--enable-bind-now \
--enable-lock-elision \
--enable-multi-arch \
2018-01-27 08:48:21 +08:00
--enable-obsolete-nsl \
--enable-obsolete-rpc \
--enable-stack-protector=strong \
--enable-stackguard-randomization \
--disable-profile \
--disable-werror \
2017-03-17 14:35:49 +08:00
i686-pc-linux-gnu
2011-10-09 02:35:19 +08:00
2017-03-17 14:35:49 +08:00
# build libraries with fortify disabled
2013-04-28 02:56:41 +08:00
echo "build-programs=no" >> configparms
make
2013-10-09 17:18:50 +08:00
2017-03-17 14:35:49 +08:00
# re-enable fortify for programs
2013-04-28 02:56:41 +08:00
sed -i "/build-programs=/s#no#yes#" configparms
2017-03-17 14:35:49 +08:00
echo "CC += -D_FORTIFY_SOURCE=2" >> configparms
echo "CXX += -D_FORTIFY_SOURCE=2" >> configparms
2011-10-09 02:35:19 +08:00
make
}
check() {
2017-03-17 14:35:49 +08:00
cd glibc-build
2014-09-16 18:24:22 +08:00
2017-03-17 14:35:49 +08:00
# remove fortify in preparation to run test-suite
2017-02-18 01:39:45 +08:00
sed -i '/FORTIFY/d' configparms
2017-03-17 14:35:49 +08:00
# some failures are "expected"
2014-09-16 18:24:22 +08:00
make check || true
}
package() {
2017-03-17 14:35:49 +08:00
cd glibc-build
make install_root=${pkgdir} install
2012-04-22 05:37:11 +08:00
rm -rf ${pkgdir}/{etc,sbin,usr/{bin,sbin,share},var}
2013-10-09 17:18:50 +08:00
2017-03-17 14:35:49 +08:00
# We need to keep 32 bit specific header files
find ${pkgdir}/usr/include -type f -not -name '*-32.h' -delete
# Dynamic linker
2017-03-17 14:35:49 +08:00
mkdir ${pkgdir}/usr/lib
2014-09-16 18:24:22 +08:00
ln -s ../lib32/ld-linux.so.2 ${pkgdir}/usr/lib/
2013-10-09 17:18:50 +08:00
# Add lib32 paths to the default library search path
install -Dm644 "$srcdir/lib32-glibc.conf" "$pkgdir/etc/ld.so.conf.d/lib32-glibc.conf"
# Symlink /usr/lib32/locale to /usr/lib/locale
ln -s ../lib/locale "$pkgdir/usr/lib32/locale"
2014-09-16 18:24:22 +08:00
2013-10-09 17:18:50 +08: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
2018-01-27 08:48:21 +08:00
strip $STRIP_BINARIES usr/lib32/getconf/*
2017-03-17 14:35:49 +08:00
strip $STRIP_STATIC usr/lib32/lib{anl,BrokenLocale,c{,_nonshared},crypt}.a \
2018-01-27 08:48:21 +08:00
usr/lib32/lib{dl,g,ieee,mcheck,nsl,pthread{,_nonshared}}.a \
usr/lib32/lib{resolv,rpcsvc,rt,util,m}.a
2017-03-17 14:35:49 +08:00
strip $STRIP_SHARED usr/lib32/lib{anl,BrokenLocale,cidn,crypt}-${pkgver}.so \
2018-01-27 08:48:21 +08:00
usr/lib32/libnss_{compat,db,dns,files,hesiod,nis,nisplus}-*.so \
usr/lib32/lib{dl,m,nsl,resolv,rt,util}-${pkgver}.so \
usr/lib32/lib{memusage,pcprofile,SegFault}.so \
usr/lib32/{audit,gconv}/*.so || true
}