2012-04-22 05:37:11 +08:00
|
|
|
# toolchain build order:
|
|
|
|
# lib32-glibc > binutils-multilib > gcc-multilib > binutils-multilib > lib32-glibc
|
2011-01-14 23:54:01 +08:00
|
|
|
|
2013-04-28 02:56:41 +08:00
|
|
|
_pkgbasename=glibc
|
|
|
|
pkgname=lib32-$_pkgbasename
|
2017-02-18 01:39:45 +08:00
|
|
|
pkgver=2.24
|
2014-09-16 18:24:22 +08:00
|
|
|
pkgrel=1
|
2017-02-19 05:39:21 +08:00
|
|
|
_commit=fdfc9260
|
2014-06-02 03:37:06 +08:00
|
|
|
pkgdesc="GNU C Library (32-bit)"
|
2011-01-14 23:54:01 +08:00
|
|
|
arch=('x86_64')
|
|
|
|
url="http://www.gnu.org/software/libc"
|
|
|
|
license=('GPL' 'LGPL')
|
2017-02-18 01:39:45 +08:00
|
|
|
depends=($_pkgbasename=$pkgver)
|
|
|
|
makedepends=('gcc>=5.2' 'git' 'lib32-gcc-libs')
|
2017-02-19 05:39:21 +08:00
|
|
|
options=('!strip' 'staticlibs' '!emptydirs')
|
|
|
|
source=(git://sourceware.org/git/glibc.git#commit=${_commit}
|
2017-02-18 01:39:45 +08:00
|
|
|
lib32-glibc.conf)
|
|
|
|
md5sums=('SKIP'
|
2011-01-14 23:54:01 +08:00
|
|
|
'6e052f1cb693d5d3203f50f9d4e8c33b')
|
2014-09-16 18:24:22 +08:00
|
|
|
validpgpkeys=('F37CDAB708E65EA183FD1AF625EF0A436C2A4AFF') # Carlos O'Donell
|
2011-01-14 23:54:01 +08:00
|
|
|
|
2013-10-09 17:18:50 +08:00
|
|
|
prepare() {
|
2017-02-18 01:39:45 +08:00
|
|
|
cd ${srcdir}/glibc
|
2013-10-09 17:18:50 +08:00
|
|
|
mkdir ${srcdir}/glibc-build
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${srcdir}/glibc-build
|
2011-10-09 02:35:19 +08:00
|
|
|
|
2011-01-14 23:54:01 +08:00
|
|
|
echo "slibdir=/usr/lib32" >> configparms
|
2014-09-16 18:24:22 +08:00
|
|
|
echo "rtlddir=/usr/lib32" >> configparms
|
2015-08-22 23:35:43 +08:00
|
|
|
echo "sbindir=/usr/sbin" >> configparms
|
|
|
|
echo "rootsbindir=/usr/sbin" >> configparms
|
2011-01-14 23:54:01 +08:00
|
|
|
|
2017-02-19 05:39:21 +08:00
|
|
|
#export CFLAGS="${CFLAGS} -mno-tls-direct-seg-refs"
|
2013-10-09 17:18:50 +08:00
|
|
|
export CC="gcc -m32"
|
|
|
|
export CXX="g++ -m32"
|
|
|
|
|
2013-04-28 02:56:41 +08:00
|
|
|
# remove hardening options for building libraries
|
2014-09-16 18:24:22 +08:00
|
|
|
CFLAGS=${CFLAGS/-fstack-protector-strong/}
|
2013-04-28 02:56:41 +08:00
|
|
|
CPPFLAGS=${CPPFLAGS/-D_FORTIFY_SOURCE=2/}
|
|
|
|
|
2017-02-18 01:39:45 +08:00
|
|
|
${srcdir}/glibc/configure --prefix=/usr \
|
2011-01-14 23:54:01 +08:00
|
|
|
--libdir=/usr/lib32 --libexecdir=/usr/lib32 \
|
|
|
|
--with-headers=/usr/include \
|
2017-02-18 01:39:45 +08:00
|
|
|
--with-bugurl=https://chakralinux.org/bugtracker \
|
2014-09-16 18:24:22 +08:00
|
|
|
--enable-add-ons \
|
2012-11-14 19:02:03 +08:00
|
|
|
--enable-kernel=2.6.32 \
|
2013-04-28 02:56:41 +08:00
|
|
|
--enable-bind-now --disable-profile \
|
|
|
|
--enable-stackguard-randomization \
|
2017-02-19 05:39:21 +08:00
|
|
|
--enable-lock-elision \
|
2015-08-22 23:35:43 +08:00
|
|
|
--enable-multi-arch \
|
|
|
|
--disable-werror \
|
2017-02-19 05:39:21 +08:00
|
|
|
i686-unknown-linux-gnu
|
2011-10-09 02:35:19 +08:00
|
|
|
|
2013-04-28 02:56:41 +08:00
|
|
|
# build libraries with hardening disabled
|
|
|
|
echo "build-programs=no" >> configparms
|
|
|
|
make
|
2013-10-09 17:18:50 +08:00
|
|
|
|
2017-02-19 05:39:21 +08:00
|
|
|
msg "building programs"
|
|
|
|
|
2013-04-28 02:56:41 +08:00
|
|
|
# re-enable hardening for programs
|
|
|
|
sed -i "/build-programs=/s#no#yes#" configparms
|
2017-02-19 05:39:21 +08:00
|
|
|
# ToDo: check why does not compile with this hardening flags enabled
|
|
|
|
#echo "CC += -fstack-protector-strong -D_FORTIFY_SOURCE=2" >> configparms
|
|
|
|
#echo "CXX += -fstack-protector-strong -D_FORTIFY_SOURCE=2" >> configparms
|
2011-10-09 02:35:19 +08:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
check() {
|
2013-10-09 17:18:50 +08:00
|
|
|
cd ${srcdir}/glibc-build
|
2014-09-16 18:24:22 +08:00
|
|
|
|
2017-02-18 01:39:45 +08:00
|
|
|
# remove harding in preparation to run test-suite
|
|
|
|
sed -i '/FORTIFY/d' configparms
|
|
|
|
|
2014-09-16 18:24:22 +08:00
|
|
|
# tst-cleanupx4 failure on i686 is "expected"
|
|
|
|
make check || true
|
2011-01-14 23:54:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd ${srcdir}/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
|
|
|
|
2011-01-14 23:54:01 +08:00
|
|
|
# We need one 32 bit specific header file
|
|
|
|
find ${pkgdir}/usr/include -type f -not -name stubs-32.h -delete
|
|
|
|
|
|
|
|
|
|
|
|
# Dynamic linker
|
2014-09-16 18:24:22 +08:00
|
|
|
install -d -m755 ${pkgdir}/usr/lib
|
|
|
|
ln -s ../lib32/ld-linux.so.2 ${pkgdir}/usr/lib/
|
2011-01-14 23:54:01 +08:00
|
|
|
|
2013-10-09 17:18:50 +08:00
|
|
|
# Add lib32 paths to the default library search path
|
2011-01-14 23:54:01 +08:00
|
|
|
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
|
|
|
|
2014-06-02 03:37:06 +08:00
|
|
|
# remove the static libraries that have a shared counterpart
|
|
|
|
# libc, libdl, libm and libpthread are required for toolchain testsuites
|
|
|
|
# in addition libcrypt appears widely required
|
|
|
|
rm $pkgdir/usr/lib32/lib{anl,BrokenLocale,nsl,resolv,rt,util}.a
|
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
|
|
|
|
strip $STRIP_BINARIES \
|
|
|
|
\
|
|
|
|
\
|
|
|
|
usr/lib32/getconf/*
|
|
|
|
|
|
|
|
|
|
|
|
strip $STRIP_STATIC usr/lib32/*.a
|
|
|
|
|
|
|
|
strip $STRIP_SHARED usr/lib32/{libanl,libBrokenLocale,libcidn,libcrypt}-*.so \
|
|
|
|
usr/lib32/libnss_{compat,db,dns,files,hesiod,nis,nisplus}-*.so \
|
|
|
|
usr/lib32/{libdl,libm,libnsl,libresolv,librt,libutil}-*.so \
|
|
|
|
usr/lib32/{libmemusage,libpcprofile,libSegFault}.so \
|
|
|
|
usr/lib32/{audit,gconv}/*.so
|
2011-01-14 23:54:01 +08:00
|
|
|
}
|