PKGBUILDs/core/glibc/PKGBUILD

193 lines
6.9 KiB
Bash
Raw Normal View History

2022-02-15 00:44:32 +00:00
# Maintainer: Giancarlo Razzolini <grazzolini@archlinux.org>
# Maintainer: Frederik Schwan <freswa at archlinux dot org>
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
2017-09-09 16:44:29 +00:00
# Contributor: Allan McRae <allan@archlinux.org>
2010-04-25 04:35:32 +00:00
2022-02-15 00:44:32 +00:00
# toolchain build order: linux-api-headers->glibc->binutils->gcc->glibc->binutils->gcc
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>
2017-12-07 13:46:46 +00:00
# - Specify our build host type
# - Disabled distcc
# - Strip out Arch x86 multilib
2018-08-06 18:07:22 +00:00
# - Don't --enable-cet, x86 only
noautobuild=1
2023-10-03 22:03:39 +00:00
pkgbase=glibc
pkgname=(glibc glibc-locales)
2023-08-03 17:52:01 +00:00
pkgver=2.38
2023-10-03 22:03:39 +00:00
_commit=750a45a783906a19591fb8ff6b7841470f1f5701
2023-10-04 12:43:23 +00:00
pkgrel=7
2017-12-07 13:46:46 +00:00
arch=(x86_64)
2019-06-18 12:41:49 +00:00
url='https://www.gnu.org/software/libc'
2017-06-17 14:32:36 +00:00
license=(GPL LGPL)
2019-04-20 15:33:03 +00:00
makedepends=(git gd python)
2023-01-18 00:30:16 +00:00
options=(staticlibs !lto !distcc)
2022-05-13 23:47:56 +00:00
source=(git+https://sourceware.org/git/glibc.git#commit=${_commit}
2010-02-09 14:19:06 +00:00
locale.gen.txt
2018-01-06 20:22:15 +00:00
locale-gen
2020-09-02 13:44:20 +00:00
sdt.h sdt-config.h
2023-08-05 01:10:24 +00:00
reenable_DT_HASH.patch
2022-03-22 00:17:31 +00:00
)
2019-04-20 15:33:03 +00:00
validpgpkeys=(7273542B39962DF7B299931416792B4EA25340F8 # Carlos O'Donell
BC7C7372637EC10C57D7AA6579C43DFBF1CF2187) # Siddhesh Poyarekar
2022-05-13 23:47:56 +00:00
b2sums=('SKIP'
2022-10-05 23:32:55 +00:00
'c859bf2dfd361754c9e3bbd89f10de31f8e81fd95dc67b77d10cb44e23834b096ba3caa65fbc1bd655a8696c6450dfd5a096c476b3abf5c7e125123f97ae1a72'
2022-06-06 23:38:33 +00:00
'04fbb3b0b28705f41ccc6c15ed5532faf0105370f22133a2b49867e790df0491f5a1255220ff6ebab91a462f088d0cf299491b3eb8ea53534cb8638a213e46e3'
2022-02-15 00:44:32 +00:00
'a6a5e2f2a627cc0d13d11a82458cfd0aa75ec1c5a3c7647e5d5a3bb1d4c0770887a3909bfda1236803d5bc9801bfd6251e13483e9adf797e4725332cd0d91a0e'
'214e995e84b342fe7b2a7704ce011b7c7fc74c2971f98eeb3b4e677b99c860addc0a7d91b8dc0f0b8be7537782ee331999e02ba48f4ccc1c331b60f27d715678'
2023-09-24 17:35:19 +00:00
'35e03ed912e1b0cd23783ab83ce919412885c141344905b8b67bbad4a86c48cf3e893806060e48d5737514ff80cea0b58b0e1f15707c32224579c416dcd810c0')
2013-08-16 22:02:27 +00:00
prepare() {
2017-09-09 16:44:29 +00:00
mkdir -p glibc-build
2018-01-06 20:22:15 +00:00
2022-05-13 23:47:56 +00:00
[[ -d glibc-$pkgver ]] && ln -s glibc-$pkgver glibc
2018-01-06 20:22:15 +00:00
cd glibc
2023-08-05 01:10:24 +00:00
# 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
2017-06-21 00:03:45 +00:00
}
2013-08-16 22:02:27 +00:00
build() {
2017-12-07 13:46:46 +00:00
local _configure_flags=(
--prefix=/usr
--with-headers=/usr/include
--with-bugurl=https://github.com/archlinuxarm/PKGBUILDs/issues
--enable-bind-now
2023-08-03 17:52:01 +00:00
--enable-fortify-source
2017-12-07 13:46:46 +00:00
--disable-multi-arch
--enable-stack-protector=strong
2020-05-14 13:17:43 +00:00
--enable-systemtap
2023-09-24 17:35:19 +00:00
--disable-nscd
2022-10-07 22:40:11 +00:00
--disable-profile
2017-12-07 13:46:46 +00:00
--disable-werror
)
2022-09-11 16:22:46 +00:00
cd "${srcdir}"/glibc-build
2017-03-11 03:35:26 +00:00
2011-05-17 03:18:16 +00:00
# ALARM: Specify build host types
2022-05-29 16:30:45 +00:00
[[ $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)
2023-10-03 22:03:39 +00:00
(
cd glibc-build
2023-10-03 22:03:39 +00:00
echo "slibdir=/usr/lib" >> configparms
echo "rtlddir=/usr/lib" >> configparms
echo "sbindir=/usr/bin" >> configparms
echo "rootsbindir=/usr/bin" >> configparms
2019-06-18 12:41:49 +00:00
2023-10-03 22:03:39 +00:00
# Credits @allanmcrae
# https://github.com/allanmcrae/toolchain/blob/f18604d70c5933c31b51a320978711e4e6791cf1/glibc/PKGBUILD
# remove fortify for building libraries
# CFLAGS=${CFLAGS/-Wp,-D_FORTIFY_SOURCE=2/}
2011-11-01 01:43:03 +00:00
2023-10-03 22:03:39 +00:00
"${srcdir}"/glibc/configure \
--libdir=/usr/lib \
--libexecdir=/usr/lib \
"${_configure_flags[@]}"
2018-04-24 12:14:24 +00:00
2023-10-03 22:03:39 +00:00
make -O
2022-06-06 23:38:33 +00:00
2023-10-03 22:03:39 +00:00
# build info pages manually for reproducibility
make info
)
# pregenerate locales here instead of in package
# functions because localedef does not like fakeroot
make -C "${srcdir}"/glibc/localedata objdir="${srcdir}"/glibc-build \
DESTDIR="${srcdir}"/locales install-locale-files
2011-05-17 03:18:16 +00:00
}
2023-10-03 22:03:39 +00:00
# Credits for _skip_test() and check() @allanmcrae
2022-02-15 00:44:32 +00:00
# https://github.com/allanmcrae/toolchain/blob/f18604d70c5933c31b51a320978711e4e6791cf1/glibc/PKGBUILD
2023-10-03 22:03:39 +00:00
_skip_test() {
2022-08-13 16:06:46 +00:00
test=${1}
file=${2}
2023-08-03 17:52:01 +00:00
sed -i "/\b${test} /d" "${srcdir}"/glibc/${file}
2022-02-15 00:44:32 +00:00
}
2023-10-03 22:03:39 +00:00
check() (
2016-02-22 13:26:01 +00:00
cd glibc-build
2014-09-16 01:42:39 +00:00
2022-02-15 00:44:32 +00:00
# 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:
2022-03-22 00:17:31 +00:00
# --system-call-filter="@clock @memlock @pkey"
2023-10-03 22:03:39 +00:00
_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
2022-02-15 00:44:32 +00:00
make -O check
2023-10-03 22:03:39 +00:00
)
2023-10-03 22:03:39 +00:00
package_glibc() {
2017-12-07 13:46:46 +00:00
pkgdesc='GNU C Library'
depends=('linux-api-headers>=4.10' tzdata filesystem)
2022-03-22 00:17:31 +00:00
optdepends=('gd: for memusagestat'
'perl: for mtrace')
2017-12-07 13:46:46 +00:00
install=glibc.install
backup=(etc/gai.conf
2023-09-24 17:35:19 +00:00
etc/locale.gen)
2017-12-07 13:46:46 +00:00
2023-10-03 22:03:39 +00:00
make -C glibc-build DESTDIR="${pkgdir}" install
2022-09-11 16:22:46 +00:00
rm -f "${pkgdir}"/etc/ld.so.cache
2018-08-16 23:17:09 +00:00
# Shipped in tzdata
2022-09-11 16:22:46 +00:00
rm -f "${pkgdir}"/usr/bin/{tzselect,zdump,zic}
2018-08-16 23:17:09 +00:00
2017-09-09 16:44:29 +00:00
cd glibc
2022-09-11 16:22:46 +00:00
install -dm755 "${pkgdir}"/usr/lib/{locale,systemd/system,tmpfiles.d}
2012-06-11 04:36:17 +00:00
2022-09-11 16:22:46 +00:00
install -m644 posix/gai.conf "${pkgdir}"/etc/gai.conf
2012-06-11 04:36:17 +00:00
2022-09-11 16:22:46 +00:00
install -m755 "${srcdir}"/locale-gen "${pkgdir}"/usr/bin
2013-01-27 04:11:06 +00:00
2018-04-24 12:14:24 +00:00
# Create /etc/locale.gen
2022-09-11 16:22:46 +00:00
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' \
2023-10-03 22:03:39 +00:00
localedata/SUPPORTED >> "${pkgdir}"/etc/locale.gen
2022-09-11 16:22:46 +00:00
2022-10-05 23:32:55 +00:00
# Add SUPPORTED file to pkg
sed -e '1,3d' -e 's|/| |g' -e 's| \\||g' \
2023-10-03 22:03:39 +00:00
localedata/SUPPORTED > "${pkgdir}"/usr/share/i18n/SUPPORTED
2013-10-25 01:54:52 +00:00
2022-06-06 23:38:33 +00:00
# install C.UTF-8 so that it is always available
2023-10-03 22:03:39 +00:00
# should be built into glibc eventually
# https://sourceware.org/glibc/wiki/Proposals/C.UTF-8
# https://bugs.archlinux.org/task/74864
2022-09-11 16:22:46 +00:00
install -dm755 "${pkgdir}"/usr/lib/locale
2023-10-03 22:03:39 +00:00
cp -r "${srcdir}"/locales/usr/lib/locale/C.utf8 -t "${pkgdir}"/usr/lib/locale
2022-09-11 16:22:46 +00:00
sed -i '/#C\.UTF-8 /d' "${pkgdir}"/etc/locale.gen
2022-06-06 23:38:33 +00:00
2019-10-28 12:51:10 +00:00
# Provide tracing probes to libstdc++ for exceptions, possibly for other
# libraries too. Useful for gdb's catch command.
2022-09-11 16:22:46 +00:00
install -Dm644 "${srcdir}"/sdt.h "${pkgdir}"/usr/include/sys/sdt.h
install -Dm644 "${srcdir}"/sdt-config.h "${pkgdir}"/usr/include/sys/sdt-config.h
2010-02-09 14:19:06 +00:00
}
2023-10-03 22:03:39 +00:00
package_glibc-locales() {
pkgdesc='Pregenerated locales for GNU C Library'
depends=("glibc=$pkgver")
cp -r locales/* -t "${pkgdir}"
rm -r "${pkgdir}"/usr/lib/locale/C.utf8
# deduplicate locale data
hardlink -c "${pkgdir}"/usr/lib/locale
}