mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
180 lines
6.8 KiB
Bash
180 lines
6.8 KiB
Bash
# Maintainer: Giancarlo Razzolini <grazzolini@archlinux.org>
|
|
# Maintainer: Frederik Schwan <freswa at archlinux dot org>
|
|
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
|
# Contributor: Allan McRae <allan@archlinux.org>
|
|
|
|
# toolchain build order: linux-api-headers->glibc->binutils->gcc->glibc->binutils->gcc
|
|
# NOTE: valgrind requires rebuilt with each major glibc version
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - Specify our build host type
|
|
# - Disabled distcc
|
|
# - Strip out Arch x86 multilib
|
|
# - Don't --enable-cet, x86 only
|
|
|
|
noautobuild=1
|
|
|
|
pkgname=glibc
|
|
pkgver=2.36
|
|
_commit=e982657073c4db21459ffd9e17bc505b1d64b876
|
|
pkgrel=3
|
|
arch=(x86_64)
|
|
url='https://www.gnu.org/software/libc'
|
|
license=(GPL LGPL)
|
|
makedepends=(git gd python)
|
|
options=(debug staticlibs !lto !distcc)
|
|
source=(git+https://sourceware.org/git/glibc.git#commit=${_commit}
|
|
locale.gen.txt
|
|
locale-gen
|
|
sdt.h sdt-config.h
|
|
reenable_DT_HASH.patch
|
|
)
|
|
validpgpkeys=(7273542B39962DF7B299931416792B4EA25340F8 # Carlos O'Donell
|
|
BC7C7372637EC10C57D7AA6579C43DFBF1CF2187) # Siddhesh Poyarekar
|
|
b2sums=('SKIP'
|
|
'46d533d25c7a2ce4ae75d452eee7ebb8e3ce4d191af9be3daa43718b78cb81d33cfd8046a117a15d87de9f5e940448c66005b0490515bf731c9e4691c53908d6'
|
|
'04fbb3b0b28705f41ccc6c15ed5532faf0105370f22133a2b49867e790df0491f5a1255220ff6ebab91a462f088d0cf299491b3eb8ea53534cb8638a213e46e3'
|
|
'a6a5e2f2a627cc0d13d11a82458cfd0aa75ec1c5a3c7647e5d5a3bb1d4c0770887a3909bfda1236803d5bc9801bfd6251e13483e9adf797e4725332cd0d91a0e'
|
|
'214e995e84b342fe7b2a7704ce011b7c7fc74c2971f98eeb3b4e677b99c860addc0a7d91b8dc0f0b8be7537782ee331999e02ba48f4ccc1c331b60f27d715678'
|
|
'5fdd133c367af2f5454ea1eea7907de12166fb95eb59dbe33eae16aa9e26209b6585972bc1c80e36a0af4bfb04296acaf940ee78cd624cdcbab9669dff46c051')
|
|
|
|
prepare() {
|
|
mkdir -p glibc-build
|
|
|
|
[[ -d glibc-$pkgver ]] && ln -s glibc-$pkgver glibc
|
|
cd glibc
|
|
|
|
# re-enable `--hash-style=both` for building shared objects due to issues with EPIC's EAC
|
|
# which relies on DT_HASH to be present in these libs.
|
|
# reconsider 2023-01
|
|
patch -Np1 -i "${srcdir}"/reenable_DT_HASH.patch
|
|
}
|
|
|
|
build() {
|
|
local _configure_flags=(
|
|
--prefix=/usr
|
|
--with-headers=/usr/include
|
|
--with-bugurl=https://github.com/archlinuxarm/PKGBUILDs/issues
|
|
--enable-bind-now
|
|
--disable-multi-arch
|
|
--enable-stack-protector=strong
|
|
--enable-systemtap
|
|
--disable-profile
|
|
--disable-crypt
|
|
--disable-werror
|
|
)
|
|
|
|
cd "$srcdir/glibc-build"
|
|
|
|
# ALARM: Specify build host types
|
|
[[ $CARCH == "armv7h" ]] && _configure_flags+=(--host=armv7l-unknown-linux-gnueabihf --build=armv7l-unknown-linux-gnueabihf)
|
|
[[ $CARCH == "aarch64" ]] && _configure_flags+=(--host=aarch64-unknown-linux-gnu --build=aarch64-unknown-linux-gnu --enable-memory-tagging)
|
|
|
|
echo "slibdir=/usr/lib" >> configparms
|
|
echo "rtlddir=/usr/lib" >> configparms
|
|
echo "sbindir=/usr/bin" >> configparms
|
|
echo "rootsbindir=/usr/bin" >> configparms
|
|
|
|
# Credits @allanmcrae
|
|
# https://github.com/allanmcrae/toolchain/blob/f18604d70c5933c31b51a320978711e4e6791cf1/glibc/PKGBUILD
|
|
# remove fortify for building libraries
|
|
CFLAGS=${CFLAGS/-Wp,-D_FORTIFY_SOURCE=2/}
|
|
|
|
"$srcdir/glibc/configure" \
|
|
--libdir=/usr/lib \
|
|
--libexecdir=/usr/lib \
|
|
"${_configure_flags[@]}"
|
|
|
|
# build libraries with fortify disabled
|
|
echo "build-programs=no" >> configparms
|
|
make -O
|
|
|
|
# re-enable fortify for programs
|
|
sed -i "/build-programs=/s#no#yes#" configparms
|
|
echo "CFLAGS += -Wp,-D_FORTIFY_SOURCE=2" >> configparms
|
|
make -O
|
|
|
|
# build info pages manually for reproducibility
|
|
make info
|
|
|
|
# pregenerate C.UTF-8 locale until it is built into glibc
|
|
# (https://sourceware.org/glibc/wiki/Proposals/C.UTF-8, FS#74864)-
|
|
elf/ld.so --library-path "$PWD" locale/localedef -c -f ../glibc/localedata/charmaps/UTF-8 -i ../glibc/localedata/locales/C ../C.UTF-8/
|
|
}
|
|
|
|
# Credits for skip_test() and check() @allanmcrae
|
|
# https://github.com/allanmcrae/toolchain/blob/f18604d70c5933c31b51a320978711e4e6791cf1/glibc/PKGBUILD
|
|
skip_test() {
|
|
test=${1}
|
|
file=${2}
|
|
sed -i "s/\b${test}\b//" "${srcdir}"/glibc/${file}
|
|
}
|
|
|
|
check() {
|
|
cd glibc-build
|
|
|
|
# adjust/remove buildflags that cause false-positive testsuite failures
|
|
sed -i '/FORTIFY/d' configparms # failure to build testsuite
|
|
sed -i 's/-Werror=format-security/-Wformat-security/' config.make # failure to build testsuite
|
|
sed -i '/CFLAGS/s/-fno-plt//' config.make # 16 failures
|
|
sed -i '/CFLAGS/s/-fexceptions//' config.make # 1 failure
|
|
LDFLAGS=${LDFLAGS/,-z,now/} # 10 failures
|
|
|
|
# The following tests fail due to restrictions in the Arch build system
|
|
# The correct fix is to add the following to the systemd-nspawn call:
|
|
# --system-call-filter="@clock @memlock @pkey"
|
|
skip_test test-errno-linux sysdeps/unix/sysv/linux/Makefile
|
|
skip_test tst-mlock2 sysdeps/unix/sysv/linux/Makefile
|
|
skip_test tst-ntp_gettime sysdeps/unix/sysv/linux/Makefile
|
|
skip_test tst-ntp_gettimex sysdeps/unix/sysv/linux/Makefile
|
|
skip_test tst-pkey sysdeps/unix/sysv/linux/Makefile
|
|
skip_test tst-process_mrelease sysdeps/unix/sysv/linux/Makefile
|
|
skip_test tst-adjtime time/Makefile
|
|
skip_test tst-clock2 time/Makefile
|
|
|
|
make -O check
|
|
}
|
|
|
|
package() {
|
|
pkgdesc='GNU C Library'
|
|
depends=('linux-api-headers>=4.10' tzdata filesystem)
|
|
optdepends=('gd: for memusagestat'
|
|
'perl: for mtrace')
|
|
install=glibc.install
|
|
backup=(etc/gai.conf
|
|
etc/locale.gen
|
|
etc/nscd.conf)
|
|
|
|
make -C glibc-build install_root="$pkgdir" install
|
|
rm -f "$pkgdir"/etc/ld.so.cache
|
|
|
|
# Shipped in tzdata
|
|
rm -f "$pkgdir"/usr/bin/{tzselect,zdump,zic}
|
|
|
|
cd glibc
|
|
|
|
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"
|
|
|
|
install -m644 posix/gai.conf "$pkgdir"/etc/gai.conf
|
|
|
|
install -m755 "$srcdir/locale-gen" "$pkgdir/usr/bin"
|
|
|
|
# Create /etc/locale.gen
|
|
install -m644 "$srcdir/locale.gen.txt" "$pkgdir/etc/locale.gen"
|
|
sed -e '1,3d' -e 's|/| |g' -e 's|\\| |g' -e 's|^|#|g' \
|
|
"$srcdir/glibc/localedata/SUPPORTED" >> "$pkgdir/etc/locale.gen"
|
|
|
|
# install C.UTF-8 so that it is always available
|
|
install -dm755 "$pkgdir/usr/lib/locale"
|
|
cp -r "$srcdir/C.UTF-8" -t "$pkgdir/usr/lib/locale"
|
|
sed -i '/#C\.UTF-8 /d' "$pkgdir/etc/locale.gen"
|
|
|
|
# Provide tracing probes to libstdc++ for exceptions, possibly for other
|
|
# libraries too. Useful for gdb's catch command.
|
|
install -Dm644 "$srcdir/sdt.h" "$pkgdir/usr/include/sys/sdt.h"
|
|
install -Dm644 "$srcdir/sdt-config.h" "$pkgdir/usr/include/sys/sdt-config.h"
|
|
}
|