2022-07-05 09:07:58 +00:00
|
|
|
%global glibcsrcdir glibc-2.35.9000-666-g7519dee356
|
2022-02-22 18:27:20 +00:00
|
|
|
%global glibcversion 2.35.9000
|
2013-08-16 13:56:44 +00:00
|
|
|
# Pre-release tarballs are pulled in from git using a command that is
|
|
|
|
# effectively:
|
|
|
|
#
|
|
|
|
# git archive HEAD --format=tar --prefix=$(git describe --match 'glibc-*')/ \
|
|
|
|
# > $(git describe --match 'glibc-*').tar
|
|
|
|
# gzip -9 $(git describe --match 'glibc-*').tar
|
|
|
|
#
|
|
|
|
# glibc_release_url is only defined when we have a release tarball.
|
2021-06-27 13:06:13 +00:00
|
|
|
# Conversly, glibc_autorequires is set for development snapshots, where
|
|
|
|
# dependencies based on symbol versions are inaccurate.
|
2017-10-17 10:55:38 +00:00
|
|
|
%{lua: if string.match(rpm.expand("%glibcsrcdir"), "^glibc%-[0-9.]+$") then
|
2021-06-27 13:06:13 +00:00
|
|
|
rpm.define("glibc_release_url https://ftp.gnu.org/gnu/glibc/")
|
|
|
|
end
|
|
|
|
local major, minor = string.match(rpm.expand("%glibcversion"),
|
|
|
|
"^([0-9]+)%.([0-9]+)%.9000$")
|
|
|
|
if major and minor then
|
|
|
|
rpm.define("glibc_autorequires 1")
|
|
|
|
-- The minor version in a .9000 development version lags the actual
|
|
|
|
-- symbol version by one.
|
|
|
|
local symver = "GLIBC_" .. major .. "." .. (minor + 1)
|
|
|
|
rpm.define("glibc_autorequires_symver " .. symver)
|
|
|
|
else
|
|
|
|
rpm.define("glibc_autorequires 0")
|
|
|
|
end}
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
2018-02-11 09:13:47 +00:00
|
|
|
# We support the following options:
|
2015-08-28 19:29:26 +00:00
|
|
|
# --with/--without,
|
|
|
|
# * testsuite - Running the testsuite.
|
|
|
|
# * benchtests - Running and building benchmark subpackage.
|
|
|
|
# * bootstrap - Bootstrapping the package.
|
|
|
|
# * werror - Build with -Werror
|
|
|
|
# * docs - Build with documentation and the required dependencies.
|
|
|
|
# * valgrind - Run smoke tests with valgrind to verify dynamic loader.
|
|
|
|
#
|
|
|
|
# You must always run the testsuite for production builds.
|
|
|
|
# Default: Always run the testsuite.
|
|
|
|
%bcond_without testsuite
|
|
|
|
# Default: Always build the benchtests.
|
|
|
|
%bcond_without benchtests
|
|
|
|
# Default: Not bootstrapping.
|
|
|
|
%bcond_with bootstrap
|
2021-05-04 14:07:51 +00:00
|
|
|
# Default: Enable using -Werror
|
|
|
|
%bcond_without werror
|
2015-08-28 19:29:26 +00:00
|
|
|
# Default: Always build documentation.
|
|
|
|
%bcond_without docs
|
|
|
|
|
2018-08-02 14:24:00 +00:00
|
|
|
# Default: Always run valgrind tests if there is architecture support.
|
|
|
|
%ifarch %{valgrind_arches}
|
|
|
|
%bcond_without valgrind
|
|
|
|
%else
|
|
|
|
%bcond_with valgrind
|
|
|
|
%endif
|
|
|
|
# Restrict %%{valgrind_arches} further in case there are problems with
|
|
|
|
# the smoke test.
|
2015-08-28 19:29:26 +00:00
|
|
|
%if %{with valgrind}
|
2018-08-02 14:24:00 +00:00
|
|
|
%ifarch ppc64 ppc64p7
|
|
|
|
# The valgrind smoke test does not work on ppc64, ppc64p7 (bug 1273103).
|
2015-08-28 19:29:26 +00:00
|
|
|
%undefine with_valgrind
|
|
|
|
%endif
|
|
|
|
%endif
|
2018-08-02 14:24:00 +00:00
|
|
|
|
2015-08-28 19:29:26 +00:00
|
|
|
%if %{with bootstrap}
|
|
|
|
# Disable benchtests, -Werror, docs, and valgrind if we're bootstrapping
|
|
|
|
%undefine with_benchtests
|
|
|
|
%undefine with_werror
|
|
|
|
%undefine with_docs
|
|
|
|
%undefine with_valgrind
|
2015-01-21 14:48:21 +00:00
|
|
|
%endif
|
2016-02-09 08:48:54 +00:00
|
|
|
|
2021-05-04 14:07:51 +00:00
|
|
|
# The annobin annotations cause binutils to produce broken ARM EABI
|
|
|
|
# unwinding information. Symptom is a hang/test failure for
|
|
|
|
# malloc/tst-malloc-stats-cancellation. See
|
|
|
|
# <https://bugzilla.redhat.com/show_bug.cgi?id=1951492>.
|
|
|
|
%ifarch armv7hl
|
|
|
|
%undefine _annotated_build
|
|
|
|
%endif
|
|
|
|
|
2022-01-24 21:39:19 +00:00
|
|
|
# We do our own build flags management. In particular, see
|
|
|
|
# rpm_inherit_flags below.
|
|
|
|
%undefine _auto_set_build_flags
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# Any architecture/kernel combination that supports running 32-bit and 64-bit
|
|
|
|
# code in userspace is considered a biarch arch.
|
2022-02-22 18:27:20 +00:00
|
|
|
%global biarcharches %{ix86} x86_64 s390 s390x
|
2020-04-03 15:28:28 +00:00
|
|
|
|
|
|
|
# Avoid generating a glibc-headers package on architectures which are
|
|
|
|
# not biarch.
|
|
|
|
%ifarch %{biarcharches}
|
2022-02-22 18:27:20 +00:00
|
|
|
%global need_headers_package 1
|
2021-05-21 16:49:33 +00:00
|
|
|
%if 0%{?rhel} > 0
|
2022-02-22 18:27:20 +00:00
|
|
|
%global headers_package_name glibc-headers
|
2021-05-21 16:49:33 +00:00
|
|
|
%else
|
2020-04-03 15:25:50 +00:00
|
|
|
%ifarch %{ix86} x86_64
|
2022-02-22 18:27:20 +00:00
|
|
|
%global headers_package_name glibc-headers-x86
|
2020-04-03 15:25:50 +00:00
|
|
|
%endif
|
|
|
|
%ifarch s390 s390x
|
2022-02-22 18:27:20 +00:00
|
|
|
%global headers_package_name glibc-headers-s390
|
2020-04-03 15:25:50 +00:00
|
|
|
%endif
|
2021-05-21 16:49:33 +00:00
|
|
|
%dnl !rhel
|
|
|
|
%endif
|
2020-04-03 15:28:28 +00:00
|
|
|
%else
|
2022-02-22 18:27:20 +00:00
|
|
|
%global need_headers_package 0
|
2021-05-21 16:49:33 +00:00
|
|
|
%dnl !biarcharches
|
2020-04-03 15:28:28 +00:00
|
|
|
%endif
|
|
|
|
|
2021-07-30 19:34:25 +00:00
|
|
|
##############################################################################
|
|
|
|
# Utility functions for pre/post scripts. Stick them at the beginning of
|
|
|
|
# any lua %pre, %post, %postun, etc. sections to have them expand into
|
|
|
|
# those scripts. It only works in lua sections and not anywhere else.
|
2022-02-22 18:27:20 +00:00
|
|
|
%global glibc_post_funcs %{expand:
|
2022-02-22 18:55:20 +00:00
|
|
|
-- We use lua because there may be no shell that we can run during
|
|
|
|
-- glibc upgrade. We used to implement much of %%post as a C program,
|
|
|
|
-- but from an overall maintenance perspective the lua in the spec
|
|
|
|
-- file was simpler and safer given the operations required.
|
2022-02-22 18:27:20 +00:00
|
|
|
-- All lua code will be ignored by rpm-ostree; see:
|
|
|
|
-- https://github.com/projectatomic/rpm-ostree/pull/1869
|
|
|
|
-- If we add new lua actions to the %%post code we should coordinate
|
|
|
|
-- with rpm-ostree and ensure that their glibc install is functional.
|
2022-02-22 18:55:20 +00:00
|
|
|
--
|
|
|
|
-- Note: We use _prefix because Fedora's UsrMove says so.
|
|
|
|
function call_ldconfig ()
|
|
|
|
if not rpm.execute("%{_prefix}/sbin/ldconfig") then
|
|
|
|
io.stdout:write ("Error: call to %{_prefix}/sbin/ldconfig failed.\n")
|
2022-02-22 18:27:20 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function update_gconv_modules_cache ()
|
|
|
|
local iconv_dir = "%{_libdir}/gconv"
|
|
|
|
local iconv_cache = iconv_dir .. "/gconv-modules.cache"
|
|
|
|
local iconv_modules = iconv_dir .. "/gconv-modules"
|
2022-02-22 18:55:20 +00:00
|
|
|
if posix.utime(iconv_modules) == 0 then
|
|
|
|
if posix.utime (iconv_cache) == 0 then
|
|
|
|
if not rpm.execute("%{_prefix}/sbin/iconvconfig",
|
|
|
|
"-o", iconv_cache,
|
|
|
|
"--nostdlib",
|
|
|
|
iconv_dir)
|
|
|
|
then
|
|
|
|
io.stdout:write ("Error: call to %{_prefix}/sbin/iconvconfig failed.\n")
|
|
|
|
end
|
2022-02-22 18:27:20 +00:00
|
|
|
else
|
|
|
|
io.stdout:write ("Error: Missing " .. iconv_cache .. " file.\n")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end}
|
2021-07-30 19:34:25 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# %%package glibc - The GNU C Library (glibc) core package.
|
|
|
|
##############################################################################
|
2008-03-05 10:32:39 +00:00
|
|
|
Summary: The GNU libc libraries
|
2004-09-09 05:40:37 +00:00
|
|
|
Name: glibc
|
2009-06-26 15:46:27 +00:00
|
|
|
Version: %{glibcversion}
|
2022-07-05 10:17:25 +00:00
|
|
|
Release: 28%{?dist}
|
2018-07-04 11:02:15 +00:00
|
|
|
|
|
|
|
# In general, GPLv2+ is used by programs, LGPLv2+ is used for
|
|
|
|
# libraries.
|
|
|
|
#
|
|
|
|
# LGPLv2+ with exceptions is used for things that are linked directly
|
|
|
|
# into dynamically linked programs and shared libraries (e.g. crt
|
|
|
|
# files, lib*_nonshared.a). Historically, this exception also applies
|
|
|
|
# to parts of libio.
|
|
|
|
#
|
|
|
|
# GPLv2+ with exceptions is used for parts of the Arm unwinder.
|
|
|
|
#
|
|
|
|
# GFDL is used for the documentation.
|
|
|
|
#
|
|
|
|
# Some other licenses are used in various places (BSD, Inner-Net,
|
|
|
|
# ISC, Public Domain).
|
|
|
|
#
|
|
|
|
# HSRL and FSFAP are only used in test cases, which currently do not
|
|
|
|
# ship in binary RPMs, so they are not listed here. MIT is used for
|
|
|
|
# scripts/install-sh, which does not ship, either.
|
|
|
|
#
|
|
|
|
# GPLv3+ is used by manual/texinfo.tex, which we do not use.
|
|
|
|
#
|
|
|
|
# LGPLv3+ is used by some Hurd code, which we do not build.
|
|
|
|
#
|
|
|
|
# LGPLv2 is used in one place (time/timespec_get.c, by mistake), but
|
|
|
|
# it is not actually compiled, so it does not matter for libraries.
|
|
|
|
License: LGPLv2+ and LGPLv2+ with exceptions and GPLv2+ and GPLv2+ with exceptions and BSD and Inner-Net and ISC and Public Domain and GFDL
|
|
|
|
|
2010-07-12 11:40:50 +00:00
|
|
|
URL: http://www.gnu.org/software/glibc/
|
2018-08-01 08:54:45 +00:00
|
|
|
Source0: %{?glibc_release_url}%{glibcsrcdir}.tar.xz
|
2021-12-13 12:41:58 +00:00
|
|
|
Source1: bench.mk
|
|
|
|
Source2: glibc-bench-compare
|
|
|
|
Source3: glibc.req.in
|
|
|
|
Source4: glibc.attr
|
2021-04-29 15:56:01 +00:00
|
|
|
Source10: wrap-find-debuginfo.sh
|
2020-10-14 13:19:39 +00:00
|
|
|
Source11: parse-SUPPORTED.py
|
2018-02-14 16:07:01 +00:00
|
|
|
# Include in the source RPM for reference.
|
|
|
|
Source12: ChangeLog.old
|
|
|
|
|
2021-04-29 15:56:01 +00:00
|
|
|
######################################################################
|
|
|
|
# Activate the wrapper script for debuginfo generation, by rewriting
|
|
|
|
# the definition of __debug_install_post.
|
|
|
|
%{lua:
|
|
|
|
local wrapper = rpm.expand("%{SOURCE10}")
|
2021-06-15 11:09:37 +00:00
|
|
|
local sysroot = rpm.expand("%{glibc_sysroot}")
|
2021-04-29 15:56:01 +00:00
|
|
|
local original = rpm.expand("%{macrobody:__debug_install_post}")
|
|
|
|
-- Strip leading newline. It confuses the macro redefinition.
|
|
|
|
-- Avoid embedded newlines that confuse the macro definition.
|
|
|
|
original = original:match("^%s*(.-)%s*$"):gsub("\\\n", "")
|
|
|
|
rpm.define("__debug_install_post bash " .. wrapper
|
2021-06-15 11:09:37 +00:00
|
|
|
.. " " .. sysroot .. " " .. original)
|
2021-04-29 15:56:01 +00:00
|
|
|
}
|
|
|
|
|
2021-06-17 12:34:16 +00:00
|
|
|
# The wrapper script relies on the fact that debugedit does not change
|
|
|
|
# build IDs.
|
2022-02-22 18:27:20 +00:00
|
|
|
%global _no_recompute_build_ids 1
|
2021-06-17 12:34:16 +00:00
|
|
|
%undefine _unique_build_ids
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
2018-04-17 19:55:54 +00:00
|
|
|
# Patches:
|
|
|
|
# - See each individual patch file for origin and upstream status.
|
|
|
|
# - For new patches follow template.patch format.
|
|
|
|
##############################################################################
|
2018-08-14 02:43:08 +00:00
|
|
|
Patch4: glibc-fedora-linux-tcsetattr.patch
|
|
|
|
Patch8: glibc-fedora-manual-dircategory.patch
|
|
|
|
Patch9: glibc-rh827510.patch
|
|
|
|
Patch13: glibc-fedora-localedata-rh61908.patch
|
|
|
|
Patch17: glibc-cs-path.patch
|
2018-05-11 13:56:01 +00:00
|
|
|
Patch23: glibc-python3.patch
|
2020-07-21 13:09:22 +00:00
|
|
|
Patch30: glibc-deprecated-selinux-makedb.patch
|
2022-07-05 10:17:25 +00:00
|
|
|
Patch31: glibc-swbz27087.patch
|
2022-01-24 21:39:19 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# Continued list of core "glibc" package information:
|
|
|
|
##############################################################################
|
2008-03-05 10:32:39 +00:00
|
|
|
Obsoletes: glibc-profile < 2.4
|
2021-12-13 12:41:58 +00:00
|
|
|
Obsoletes: nscd < 2.35
|
2004-09-09 05:40:37 +00:00
|
|
|
Provides: ldconfig
|
2013-07-24 11:58:38 +00:00
|
|
|
|
2006-07-11 15:23:42 +00:00
|
|
|
# The dynamic linker supports DT_GNU_HASH
|
|
|
|
Provides: rtld(GNU_HASH)
|
2018-11-29 21:40:16 +00:00
|
|
|
|
|
|
|
# We need libgcc for cancellation support in POSIX threads.
|
|
|
|
Requires: libgcc%{_isa}
|
|
|
|
|
2004-09-09 05:40:37 +00:00
|
|
|
Requires: glibc-common = %{version}-%{release}
|
2013-07-24 11:58:38 +00:00
|
|
|
|
2018-07-23 12:23:36 +00:00
|
|
|
# Various components (regex, glob) have been imported from gnulib.
|
|
|
|
Provides: bundled(gnulib)
|
|
|
|
|
2016-07-22 13:39:33 +00:00
|
|
|
Requires(pre): basesystem
|
2019-10-24 17:05:55 +00:00
|
|
|
Requires: basesystem
|
2013-07-24 11:58:38 +00:00
|
|
|
|
2020-04-29 11:48:49 +00:00
|
|
|
%ifarch %{ix86}
|
|
|
|
# Automatically install the 32-bit variant if the 64-bit variant has
|
|
|
|
# been installed. This covers the case when glibc.i686 is installed
|
|
|
|
# after nss_*.x86_64. (See below for the other ordering.)
|
|
|
|
Recommends: (nss_db(x86-32) if nss_db(x86-64))
|
|
|
|
Recommends: (nss_hesiod(x86-32) if nss_hesiod(x86-64))
|
|
|
|
%endif
|
|
|
|
|
2021-12-13 12:41:58 +00:00
|
|
|
# This is for building auxiliary programs like memusage
|
2004-09-09 05:40:37 +00:00
|
|
|
# For initial glibc bootstraps it can be commented out
|
2017-11-28 17:40:52 +00:00
|
|
|
%if %{without bootstrap}
|
2015-08-28 19:29:26 +00:00
|
|
|
BuildRequires: gd-devel libpng-devel zlib-devel
|
2017-11-28 17:40:52 +00:00
|
|
|
%endif
|
2015-08-28 19:29:26 +00:00
|
|
|
%if %{with docs}
|
|
|
|
%endif
|
|
|
|
%if %{without bootstrap}
|
|
|
|
BuildRequires: libselinux-devel >= 1.33.4-3
|
|
|
|
%endif
|
|
|
|
BuildRequires: audit-libs-devel >= 1.1.3, sed >= 3.95, libcap-devel, gettext
|
2015-09-17 16:24:49 +00:00
|
|
|
# We need procps-ng (/bin/ps), util-linux (/bin/kill), and gawk (/bin/awk),
|
|
|
|
# but it is more flexible to require the actual programs and let rpm infer
|
|
|
|
# the packages. However, until bug 1259054 is widely fixed we avoid the
|
|
|
|
# following:
|
|
|
|
# BuildRequires: /bin/ps, /bin/kill, /bin/awk
|
|
|
|
# And use instead (which should be reverted some time in the future):
|
|
|
|
BuildRequires: procps-ng, util-linux, gawk
|
2011-04-07 11:22:58 +00:00
|
|
|
BuildRequires: systemtap-sdt-devel
|
2013-07-24 11:58:38 +00:00
|
|
|
|
2015-08-28 19:29:26 +00:00
|
|
|
%if %{with valgrind}
|
2015-09-17 16:24:49 +00:00
|
|
|
# Require valgrind for smoke testing the dynamic loader to make sure we
|
|
|
|
# have not broken valgrind.
|
2017-07-27 15:14:26 +00:00
|
|
|
BuildRequires: valgrind
|
2014-09-23 11:28:34 +00:00
|
|
|
%endif
|
|
|
|
|
2018-09-05 09:35:41 +00:00
|
|
|
# We use python for the microbenchmarks and locale data regeneration
|
|
|
|
# from unicode sources (carried out manually). We choose python3
|
|
|
|
# explicitly because it supports both use cases. On some
|
|
|
|
# distributions, python3 does not actually install /usr/bin/python3,
|
|
|
|
# so we also depend on python3-devel.
|
|
|
|
BuildRequires: python3 python3-devel
|
2015-07-15 15:28:17 +00:00
|
|
|
|
2017-11-29 11:59:25 +00:00
|
|
|
# This GCC version is needed for -fstack-clash-protection support.
|
2018-01-05 13:36:28 +00:00
|
|
|
BuildRequires: gcc >= 7.2.1-6
|
2022-02-22 18:27:20 +00:00
|
|
|
%global enablekernel 3.2
|
2010-08-02 12:18:20 +00:00
|
|
|
Conflicts: kernel < %{enablekernel}
|
2022-02-22 18:27:20 +00:00
|
|
|
%global target %{_target_cpu}-redhat-linux
|
2011-07-20 11:54:13 +00:00
|
|
|
%ifarch %{arm}
|
2022-02-22 18:27:20 +00:00
|
|
|
%global target %{_target_cpu}-redhat-linuxeabi
|
2004-09-09 05:54:44 +00:00
|
|
|
%endif
|
2014-05-14 07:21:29 +00:00
|
|
|
%ifarch ppc64le
|
2022-02-22 18:27:20 +00:00
|
|
|
%global target ppc64le-redhat-linux
|
2014-05-14 07:21:29 +00:00
|
|
|
%endif
|
2013-07-24 11:58:38 +00:00
|
|
|
|
2017-10-17 11:52:43 +00:00
|
|
|
# GNU make 4.0 introduced the -O option.
|
|
|
|
BuildRequires: make >= 4.0
|
|
|
|
|
2017-12-04 12:59:23 +00:00
|
|
|
# The intl subsystem generates a parser using bison.
|
|
|
|
BuildRequires: bison >= 2.7
|
|
|
|
|
2018-07-04 14:35:00 +00:00
|
|
|
# binutils 2.30-17 is needed for --generate-missing-build-notes.
|
|
|
|
BuildRequires: binutils >= 2.30-17
|
2018-01-22 14:31:41 +00:00
|
|
|
|
2009-08-24 09:22:26 +00:00
|
|
|
# Earlier releases have broken support for IRELATIVE relocations
|
|
|
|
Conflicts: prelink < 0.4.2
|
2013-07-24 11:58:38 +00:00
|
|
|
|
2017-11-28 17:40:52 +00:00
|
|
|
%if %{without bootstrap}
|
2015-11-27 06:14:36 +00:00
|
|
|
%if %{with testsuite}
|
|
|
|
# The testsuite builds static C++ binaries that require a C++ compiler,
|
|
|
|
# static C++ runtime from libstdc++-static, and lastly static glibc.
|
2015-08-28 19:29:26 +00:00
|
|
|
BuildRequires: gcc-c++
|
2013-07-24 12:54:14 +00:00
|
|
|
BuildRequires: libstdc++-static
|
2015-11-27 06:14:36 +00:00
|
|
|
# A configure check tests for the ability to create static C++ binaries
|
|
|
|
# before glibc is built and therefore we need a glibc-static for that
|
|
|
|
# check to pass even if we aren't going to use any of those objects to
|
|
|
|
# build the tests.
|
|
|
|
BuildRequires: glibc-static
|
2018-01-17 17:42:37 +00:00
|
|
|
|
|
|
|
# libidn2 (but not libidn2-devel) is needed for testing AI_IDN/NI_IDN.
|
|
|
|
BuildRequires: libidn2
|
2020-10-30 02:04:18 +00:00
|
|
|
|
|
|
|
# The testsuite runs mtrace, which is a perl script
|
|
|
|
BuildRequires: perl-interpreter
|
2015-11-27 06:14:36 +00:00
|
|
|
%endif
|
|
|
|
%endif
|
2013-07-24 12:54:14 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# Filter out all GLIBC_PRIVATE symbols since they are internal to
|
2013-07-25 02:45:11 +00:00
|
|
|
# the package and should not be examined by any other tool.
|
2011-08-15 09:29:40 +00:00
|
|
|
%global __filter_GLIBC_PRIVATE 1
|
2021-08-24 14:00:06 +00:00
|
|
|
%global __provides_exclude ^libc_malloc_debug\\.so.*$
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2016-03-01 07:59:24 +00:00
|
|
|
# For language packs we have glibc require a virtual dependency
|
|
|
|
# "glibc-langpack" wich gives us at least one installed langpack.
|
|
|
|
# If no langpack providing 'glibc-langpack' was installed you'd
|
2020-08-20 22:02:31 +00:00
|
|
|
# get language-neutral support e.g. C, POSIX, and C.UTF-8 locales.
|
|
|
|
# In the past we used to install the glibc-all-langpacks by default
|
|
|
|
# but we no longer do this to minimize container and VM sizes.
|
|
|
|
# Today you must actively use the language packs infrastructure to
|
|
|
|
# install language support.
|
2016-03-01 07:59:24 +00:00
|
|
|
Requires: glibc-langpack = %{version}-%{release}
|
2020-08-20 22:02:31 +00:00
|
|
|
Suggests: glibc-minimal-langpack = %{version}-%{release}
|
2016-03-01 07:59:24 +00:00
|
|
|
|
2021-07-23 14:43:21 +00:00
|
|
|
# Suggest extra gconv modules so that they are installed by default but can be
|
|
|
|
# removed if needed to build a minimal OS image.
|
|
|
|
Recommends: glibc-gconv-extra%{_isa} = %{version}-%{release}
|
|
|
|
# Use redhat-rpm-config as a marker for a buildroot configuration, and
|
|
|
|
# unconditionally pull in glibc-gconv-extra in that case.
|
|
|
|
Requires: (glibc-gconv-extra%{_isa} = %{version}-%{release} if redhat-rpm-config)
|
2021-06-14 05:45:03 +00:00
|
|
|
|
2004-09-09 05:40:37 +00:00
|
|
|
%description
|
|
|
|
The glibc package contains standard libraries which are used by
|
|
|
|
multiple programs on the system. In order to save disk space and
|
|
|
|
memory, as well as to make upgrading easier, common system code is
|
|
|
|
kept in one place and shared between programs. This particular package
|
|
|
|
contains the most important sets of shared libraries: the standard C
|
|
|
|
library and the standard math library. Without these two libraries, a
|
|
|
|
Linux system will not function.
|
|
|
|
|
2018-01-11 12:21:53 +00:00
|
|
|
######################################################################
|
|
|
|
# libnsl subpackage
|
|
|
|
######################################################################
|
|
|
|
|
|
|
|
%package -n libnsl
|
|
|
|
Summary: Legacy support library for NIS
|
|
|
|
Requires: %{name}%{_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n libnsl
|
|
|
|
This package provides the legacy version of libnsl library, for
|
|
|
|
accessing NIS services.
|
|
|
|
|
|
|
|
This library is provided for backwards compatibility only;
|
|
|
|
applications should use libnsl2 instead to gain IPv6 support.
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# glibc "devel" sub-package
|
|
|
|
##############################################################################
|
2004-09-09 05:40:37 +00:00
|
|
|
%package devel
|
|
|
|
Summary: Object files for development using standard C libraries.
|
2008-03-05 10:32:39 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2018-01-19 20:39:12 +00:00
|
|
|
Requires: libxcrypt-devel%{_isa} >= 4.0.0
|
2020-04-03 15:28:28 +00:00
|
|
|
Requires: kernel-headers >= 3.2
|
|
|
|
BuildRequires: kernel-headers >= 3.2
|
|
|
|
%if %{need_headers_package}
|
2020-04-03 15:25:50 +00:00
|
|
|
Requires: %{headers_package_name} = %{version}-%{release}
|
|
|
|
%endif
|
2021-05-21 16:49:33 +00:00
|
|
|
%if !(0%{?rhel} > 0 && %{need_headers_package})
|
2020-04-03 15:25:50 +00:00
|
|
|
# For backwards compatibility, when the glibc-headers package existed.
|
2020-04-03 15:28:28 +00:00
|
|
|
Provides: glibc-headers = %{version}-%{release}
|
|
|
|
Provides: glibc-headers(%{_target_cpu})
|
2020-04-03 15:25:50 +00:00
|
|
|
Obsoletes: glibc-headers < %{version}-%{release}
|
2021-05-21 16:49:33 +00:00
|
|
|
%endif
|
2004-09-09 05:40:37 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
The glibc-devel package contains the object files necessary
|
|
|
|
for developing programs which use the standard C libraries (which are
|
|
|
|
used by nearly all programs). If you are developing programs which
|
|
|
|
will use the standard C libraries, your system needs to have these
|
|
|
|
standard object files available in order to create the
|
|
|
|
executables.
|
|
|
|
|
|
|
|
Install glibc-devel if you are going to develop programs which will
|
|
|
|
use the standard C libraries.
|
|
|
|
|
2021-01-23 18:16:05 +00:00
|
|
|
##############################################################################
|
|
|
|
# glibc "doc" sub-package
|
|
|
|
##############################################################################
|
|
|
|
%if %{with docs}
|
|
|
|
%package doc
|
|
|
|
Summary: Documentation for GNU libc
|
|
|
|
BuildArch: noarch
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
# Removing texinfo will cause check-safety.sh test to fail because it seems to
|
|
|
|
# trigger documentation generation based on dependencies. We need to fix this
|
|
|
|
# upstream in some way that doesn't depend on generating docs to validate the
|
|
|
|
# texinfo. I expect it's simply the wrong dependency for that target.
|
|
|
|
BuildRequires: texinfo >= 5.0
|
|
|
|
|
|
|
|
%description doc
|
|
|
|
The glibc-doc package contains The GNU C Library Reference Manual in info
|
|
|
|
format. Additional package documentation is also provided.
|
|
|
|
%endif
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# glibc "static" sub-package
|
|
|
|
##############################################################################
|
2009-02-18 20:47:04 +00:00
|
|
|
%package static
|
|
|
|
Summary: C library static libraries for -static linking.
|
|
|
|
Requires: %{name}-devel = %{version}-%{release}
|
2018-01-19 20:39:12 +00:00
|
|
|
Requires: libxcrypt-static%{?_isa} >= 4.0.0
|
2009-02-18 20:47:04 +00:00
|
|
|
|
|
|
|
%description static
|
|
|
|
The glibc-static package contains the C library static libraries
|
|
|
|
for -static linking. You don't need these, unless you link statically,
|
|
|
|
which is highly discouraged.
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# glibc "headers" sub-package
|
2015-06-17 20:40:15 +00:00
|
|
|
# - The headers package includes all common headers that are shared amongst
|
2020-04-03 15:28:28 +00:00
|
|
|
# the multilib builds. It avoids file conflicts between the architecture-
|
|
|
|
# specific glibc-devel variants.
|
2015-06-17 20:40:15 +00:00
|
|
|
# Files like gnu/stubs.h which have gnu/stubs-32.h (i686) and gnu/stubs-64.h
|
|
|
|
# are included in glibc-headers, but the -32 and -64 files are in their
|
|
|
|
# respective i686 and x86_64 devel packages.
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
2020-04-03 15:28:28 +00:00
|
|
|
%if %{need_headers_package}
|
2020-04-03 15:25:50 +00:00
|
|
|
%package -n %{headers_package_name}
|
|
|
|
Summary: Additional internal header files for glibc-devel.
|
2020-04-03 15:28:28 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2021-05-21 16:49:33 +00:00
|
|
|
%if 0%{?rhel} > 0
|
|
|
|
Provides: %{name}-headers(%{_target_cpu})
|
|
|
|
Obsoletes: glibc-headers-x86 < %{version}-%{release}
|
|
|
|
Obsoletes: glibc-headers-s390 < %{version}-%{release}
|
|
|
|
%else
|
|
|
|
BuildArch: noarch
|
|
|
|
%endif
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2020-04-03 15:25:50 +00:00
|
|
|
%description -n %{headers_package_name}
|
|
|
|
The %{headers_package_name} package contains the architecture-specific
|
2020-04-03 15:28:28 +00:00
|
|
|
header files which cannot be included in glibc-devel package.
|
|
|
|
%endif
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# glibc "common" sub-package
|
|
|
|
##############################################################################
|
2004-09-09 05:40:37 +00:00
|
|
|
%package common
|
|
|
|
Summary: Common binaries and locale data for glibc
|
2008-03-26 12:29:52 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2004-09-09 05:40:37 +00:00
|
|
|
Requires: tzdata >= 2003a
|
|
|
|
|
|
|
|
%description common
|
|
|
|
The glibc-common package includes common binaries for the GNU libc
|
|
|
|
libraries, as well as national language (locale) support.
|
|
|
|
|
2018-02-06 10:25:39 +00:00
|
|
|
######################################################################
|
|
|
|
# File triggers to do ldconfig calls automatically (see rhbz#1380878)
|
|
|
|
######################################################################
|
|
|
|
|
|
|
|
# File triggers for when libraries are added or removed in standard
|
2018-02-07 15:45:49 +00:00
|
|
|
# paths.
|
2022-02-22 15:43:17 +00:00
|
|
|
%transfiletriggerin common -P 2000000 -p <lua> -- /lib /usr/lib /lib64 /usr/lib64
|
|
|
|
%glibc_post_funcs
|
|
|
|
call_ldconfig()
|
2018-02-06 10:25:39 +00:00
|
|
|
%end
|
|
|
|
|
2022-02-22 15:43:17 +00:00
|
|
|
%transfiletriggerpostun common -P 2000000 -p <lua> -- /lib /usr/lib /lib64 /usr/lib64
|
|
|
|
%glibc_post_funcs
|
|
|
|
call_ldconfig()
|
2018-02-06 10:25:39 +00:00
|
|
|
%end
|
|
|
|
|
2019-05-17 01:43:50 +00:00
|
|
|
# We need to run ldconfig manually because __brp_ldconfig assumes that
|
|
|
|
# glibc itself is always installed in $RPM_BUILD_ROOT, but with sysroots
|
|
|
|
# we may be installed into a subdirectory of that path. Therefore we
|
|
|
|
# unset __brp_ldconfig and run ldconfig by hand with the sysroots path
|
|
|
|
# passed to -r.
|
2018-02-06 10:25:39 +00:00
|
|
|
%undefine __brp_ldconfig
|
|
|
|
|
|
|
|
######################################################################
|
|
|
|
|
2016-02-26 09:06:35 +00:00
|
|
|
%package locale-source
|
|
|
|
Summary: The sources for the locales
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: %{name}-common = %{version}-%{release}
|
|
|
|
|
|
|
|
%description locale-source
|
|
|
|
The sources for all locales provided in the language packs.
|
|
|
|
If you are building custom locales you will most likely use
|
|
|
|
these sources as the basis for your new locale.
|
|
|
|
|
2022-04-26 03:28:14 +00:00
|
|
|
# We define a global regular expression to capture all of the locale
|
|
|
|
# sources. We use it later when constructing the various packages.
|
|
|
|
%global locale_rx eo syr *_*
|
|
|
|
|
2017-08-16 11:17:21 +00:00
|
|
|
%{lua:
|
2020-10-14 13:19:39 +00:00
|
|
|
-- To make lua-mode happy: '
|
|
|
|
|
|
|
|
-- List of supported locales. This is used to generate the langpack
|
|
|
|
-- subpackages below. This table needs adjustments if the set of
|
|
|
|
-- glibc locales changes. "code" is the glibc code for the language
|
|
|
|
-- (before the "_". "name" is the English translation of the language
|
|
|
|
-- name (for use in subpackage descriptions). "regions" is a table of
|
|
|
|
-- variant specifiers (after the "_", excluding "@" and "."
|
|
|
|
-- variants/charset specifiers). The table must be sorted by the code
|
|
|
|
-- field, and the regions table must be sorted as well.
|
|
|
|
--
|
|
|
|
-- English translations of language names can be obtained using (for
|
|
|
|
-- the "aa" language in this example):
|
|
|
|
--
|
|
|
|
-- python3 -c 'import langtable; print(langtable.language_name("aa", languageIdQuery="en"))'
|
|
|
|
|
|
|
|
local locales = {
|
|
|
|
{ code="aa", name="Afar", regions={ "DJ", "ER", "ET" } },
|
|
|
|
{ code="af", name="Afrikaans", regions={ "ZA" } },
|
|
|
|
{ code="agr", name="Aguaruna", regions={ "PE" } },
|
|
|
|
{ code="ak", name="Akan", regions={ "GH" } },
|
|
|
|
{ code="am", name="Amharic", regions={ "ET" } },
|
|
|
|
{ code="an", name="Aragonese", regions={ "ES" } },
|
|
|
|
{ code="anp", name="Angika", regions={ "IN" } },
|
|
|
|
{
|
|
|
|
code="ar",
|
|
|
|
name="Arabic",
|
|
|
|
regions={
|
|
|
|
"AE",
|
|
|
|
"BH",
|
|
|
|
"DZ",
|
|
|
|
"EG",
|
|
|
|
"IN",
|
|
|
|
"IQ",
|
|
|
|
"JO",
|
|
|
|
"KW",
|
|
|
|
"LB",
|
|
|
|
"LY",
|
|
|
|
"MA",
|
|
|
|
"OM",
|
|
|
|
"QA",
|
|
|
|
"SA",
|
|
|
|
"SD",
|
|
|
|
"SS",
|
|
|
|
"SY",
|
|
|
|
"TN",
|
|
|
|
"YE"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{ code="as", name="Assamese", regions={ "IN" } },
|
|
|
|
{ code="ast", name="Asturian", regions={ "ES" } },
|
|
|
|
{ code="ayc", name="Southern Aymara", regions={ "PE" } },
|
|
|
|
{ code="az", name="Azerbaijani", regions={ "AZ", "IR" } },
|
|
|
|
{ code="be", name="Belarusian", regions={ "BY" } },
|
|
|
|
{ code="bem", name="Bemba", regions={ "ZM" } },
|
|
|
|
{ code="ber", name="Berber", regions={ "DZ", "MA" } },
|
|
|
|
{ code="bg", name="Bulgarian", regions={ "BG" } },
|
|
|
|
{ code="bhb", name="Bhili", regions={ "IN" } },
|
|
|
|
{ code="bho", name="Bhojpuri", regions={ "IN", "NP" } },
|
|
|
|
{ code="bi", name="Bislama", regions={ "VU" } },
|
|
|
|
{ code="bn", name="Bangla", regions={ "BD", "IN" } },
|
|
|
|
{ code="bo", name="Tibetan", regions={ "CN", "IN" } },
|
|
|
|
{ code="br", name="Breton", regions={ "FR" } },
|
|
|
|
{ code="brx", name="Bodo", regions={ "IN" } },
|
|
|
|
{ code="bs", name="Bosnian", regions={ "BA" } },
|
|
|
|
{ code="byn", name="Blin", regions={ "ER" } },
|
|
|
|
{ code="ca", name="Catalan", regions={ "AD", "ES", "FR", "IT" } },
|
|
|
|
{ code="ce", name="Chechen", regions={ "RU" } },
|
|
|
|
{ code="chr", name="Cherokee", regions={ "US" } },
|
|
|
|
{ code="ckb", name="Central Kurdish", regions={ "IQ" } },
|
|
|
|
{ code="cmn", name="Mandarin Chinese", regions={ "TW" } },
|
|
|
|
{ code="crh", name="Crimean Turkish", regions={ "UA" } },
|
|
|
|
{ code="cs", name="Czech", regions={ "CZ" } },
|
|
|
|
{ code="csb", name="Kashubian", regions={ "PL" } },
|
|
|
|
{ code="cv", name="Chuvash", regions={ "RU" } },
|
|
|
|
{ code="cy", name="Welsh", regions={ "GB" } },
|
|
|
|
{ code="da", name="Danish", regions={ "DK" } },
|
|
|
|
{
|
|
|
|
code="de",
|
|
|
|
name="German",
|
|
|
|
regions={ "AT", "BE", "CH", "DE", "IT", "LI", "LU" }
|
|
|
|
},
|
|
|
|
{ code="doi", name="Dogri", regions={ "IN" } },
|
|
|
|
{ code="dsb", name="Lower Sorbian", regions={ "DE" } },
|
|
|
|
{ code="dv", name="Divehi", regions={ "MV" } },
|
|
|
|
{ code="dz", name="Dzongkha", regions={ "BT" } },
|
|
|
|
{ code="el", name="Greek", regions={ "CY", "GR" } },
|
|
|
|
{
|
|
|
|
code="en",
|
|
|
|
name="English",
|
|
|
|
regions={
|
|
|
|
"AG",
|
|
|
|
"AU",
|
|
|
|
"BW",
|
|
|
|
"CA",
|
|
|
|
"DK",
|
|
|
|
"GB",
|
|
|
|
"HK",
|
|
|
|
"IE",
|
|
|
|
"IL",
|
|
|
|
"IN",
|
|
|
|
"NG",
|
|
|
|
"NZ",
|
|
|
|
"PH",
|
|
|
|
"SC",
|
|
|
|
"SG",
|
|
|
|
"US",
|
|
|
|
"ZA",
|
|
|
|
"ZM",
|
|
|
|
"ZW"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{ code="eo", name="Esperanto", regions={} },
|
|
|
|
{
|
|
|
|
code="es",
|
|
|
|
name="Spanish",
|
|
|
|
regions={
|
|
|
|
"AR",
|
|
|
|
"BO",
|
|
|
|
"CL",
|
|
|
|
"CO",
|
|
|
|
"CR",
|
|
|
|
"CU",
|
|
|
|
"DO",
|
|
|
|
"EC",
|
|
|
|
"ES",
|
|
|
|
"GT",
|
|
|
|
"HN",
|
|
|
|
"MX",
|
|
|
|
"NI",
|
|
|
|
"PA",
|
|
|
|
"PE",
|
|
|
|
"PR",
|
|
|
|
"PY",
|
|
|
|
"SV",
|
|
|
|
"US",
|
|
|
|
"UY",
|
|
|
|
"VE"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{ code="et", name="Estonian", regions={ "EE" } },
|
|
|
|
{ code="eu", name="Basque", regions={ "ES" } },
|
|
|
|
{ code="fa", name="Persian", regions={ "IR" } },
|
|
|
|
{ code="ff", name="Fulah", regions={ "SN" } },
|
|
|
|
{ code="fi", name="Finnish", regions={ "FI" } },
|
|
|
|
{ code="fil", name="Filipino", regions={ "PH" } },
|
|
|
|
{ code="fo", name="Faroese", regions={ "FO" } },
|
|
|
|
{ code="fr", name="French", regions={ "BE", "CA", "CH", "FR", "LU" } },
|
|
|
|
{ code="fur", name="Friulian", regions={ "IT" } },
|
|
|
|
{ code="fy", name="Western Frisian", regions={ "DE", "NL" } },
|
|
|
|
{ code="ga", name="Irish", regions={ "IE" } },
|
|
|
|
{ code="gd", name="Scottish Gaelic", regions={ "GB" } },
|
|
|
|
{ code="gez", name="Geez", regions={ "ER", "ET" } },
|
|
|
|
{ code="gl", name="Galician", regions={ "ES" } },
|
|
|
|
{ code="gu", name="Gujarati", regions={ "IN" } },
|
|
|
|
{ code="gv", name="Manx", regions={ "GB" } },
|
|
|
|
{ code="ha", name="Hausa", regions={ "NG" } },
|
|
|
|
{ code="hak", name="Hakka Chinese", regions={ "TW" } },
|
|
|
|
{ code="he", name="Hebrew", regions={ "IL" } },
|
|
|
|
{ code="hi", name="Hindi", regions={ "IN" } },
|
|
|
|
{ code="hif", name="Fiji Hindi", regions={ "FJ" } },
|
|
|
|
{ code="hne", name="Chhattisgarhi", regions={ "IN" } },
|
|
|
|
{ code="hr", name="Croatian", regions={ "HR" } },
|
|
|
|
{ code="hsb", name="Upper Sorbian", regions={ "DE" } },
|
|
|
|
{ code="ht", name="Haitian Creole", regions={ "HT" } },
|
|
|
|
{ code="hu", name="Hungarian", regions={ "HU" } },
|
|
|
|
{ code="hy", name="Armenian", regions={ "AM" } },
|
|
|
|
{ code="ia", name="Interlingua", regions={ "FR" } },
|
|
|
|
{ code="id", name="Indonesian", regions={ "ID" } },
|
|
|
|
{ code="ig", name="Igbo", regions={ "NG" } },
|
|
|
|
{ code="ik", name="Inupiaq", regions={ "CA" } },
|
|
|
|
{ code="is", name="Icelandic", regions={ "IS" } },
|
|
|
|
{ code="it", name="Italian", regions={ "CH", "IT" } },
|
|
|
|
{ code="iu", name="Inuktitut", regions={ "CA" } },
|
|
|
|
{ code="ja", name="Japanese", regions={ "JP" } },
|
|
|
|
{ code="ka", name="Georgian", regions={ "GE" } },
|
|
|
|
{ code="kab", name="Kabyle", regions={ "DZ" } },
|
|
|
|
{ code="kk", name="Kazakh", regions={ "KZ" } },
|
|
|
|
{ code="kl", name="Kalaallisut", regions={ "GL" } },
|
|
|
|
{ code="km", name="Khmer", regions={ "KH" } },
|
|
|
|
{ code="kn", name="Kannada", regions={ "IN" } },
|
|
|
|
{ code="ko", name="Korean", regions={ "KR" } },
|
|
|
|
{ code="kok", name="Konkani", regions={ "IN" } },
|
|
|
|
{ code="ks", name="Kashmiri", regions={ "IN" } },
|
|
|
|
{ code="ku", name="Kurdish", regions={ "TR" } },
|
|
|
|
{ code="kw", name="Cornish", regions={ "GB" } },
|
|
|
|
{ code="ky", name="Kyrgyz", regions={ "KG" } },
|
|
|
|
{ code="lb", name="Luxembourgish", regions={ "LU" } },
|
|
|
|
{ code="lg", name="Ganda", regions={ "UG" } },
|
|
|
|
{ code="li", name="Limburgish", regions={ "BE", "NL" } },
|
|
|
|
{ code="lij", name="Ligurian", regions={ "IT" } },
|
|
|
|
{ code="ln", name="Lingala", regions={ "CD" } },
|
|
|
|
{ code="lo", name="Lao", regions={ "LA" } },
|
|
|
|
{ code="lt", name="Lithuanian", regions={ "LT" } },
|
|
|
|
{ code="lv", name="Latvian", regions={ "LV" } },
|
|
|
|
{ code="lzh", name="Literary Chinese", regions={ "TW" } },
|
|
|
|
{ code="mag", name="Magahi", regions={ "IN" } },
|
|
|
|
{ code="mai", name="Maithili", regions={ "IN", "NP" } },
|
|
|
|
{ code="mfe", name="Morisyen", regions={ "MU" } },
|
|
|
|
{ code="mg", name="Malagasy", regions={ "MG" } },
|
|
|
|
{ code="mhr", name="Meadow Mari", regions={ "RU" } },
|
|
|
|
{ code="mi", name="Maori", regions={ "NZ" } },
|
|
|
|
{ code="miq", name="Miskito", regions={ "NI" } },
|
|
|
|
{ code="mjw", name="Karbi", regions={ "IN" } },
|
|
|
|
{ code="mk", name="Macedonian", regions={ "MK" } },
|
|
|
|
{ code="ml", name="Malayalam", regions={ "IN" } },
|
|
|
|
{ code="mn", name="Mongolian", regions={ "MN" } },
|
|
|
|
{ code="mni", name="Manipuri", regions={ "IN" } },
|
|
|
|
{ code="mnw", name="Mon", regions={ "MM" } },
|
|
|
|
{ code="mr", name="Marathi", regions={ "IN" } },
|
|
|
|
{ code="ms", name="Malay", regions={ "MY" } },
|
|
|
|
{ code="mt", name="Maltese", regions={ "MT" } },
|
|
|
|
{ code="my", name="Burmese", regions={ "MM" } },
|
|
|
|
{ code="nan", name="Min Nan Chinese", regions={ "TW" } },
|
|
|
|
{ code="nb", name="Norwegian Bokmål", regions={ "NO" } },
|
|
|
|
{ code="nds", name="Low German", regions={ "DE", "NL" } },
|
|
|
|
{ code="ne", name="Nepali", regions={ "NP" } },
|
|
|
|
{ code="nhn", name="Tlaxcala-Puebla Nahuatl", regions={ "MX" } },
|
|
|
|
{ code="niu", name="Niuean", regions={ "NU", "NZ" } },
|
|
|
|
{ code="nl", name="Dutch", regions={ "AW", "BE", "NL" } },
|
|
|
|
{ code="nn", name="Norwegian Nynorsk", regions={ "NO" } },
|
|
|
|
{ code="nr", name="South Ndebele", regions={ "ZA" } },
|
|
|
|
{ code="nso", name="Northern Sotho", regions={ "ZA" } },
|
|
|
|
{ code="oc", name="Occitan", regions={ "FR" } },
|
|
|
|
{ code="om", name="Oromo", regions={ "ET", "KE" } },
|
|
|
|
{ code="or", name="Odia", regions={ "IN" } },
|
|
|
|
{ code="os", name="Ossetic", regions={ "RU" } },
|
|
|
|
{ code="pa", name="Punjabi", regions={ "IN", "PK" } },
|
|
|
|
{ code="pap", name="Papiamento", regions={ "AW", "CW" } },
|
|
|
|
{ code="pl", name="Polish", regions={ "PL" } },
|
|
|
|
{ code="ps", name="Pashto", regions={ "AF" } },
|
|
|
|
{ code="pt", name="Portuguese", regions={ "BR", "PT" } },
|
|
|
|
{ code="quz", name="Cusco Quechua", regions={ "PE" } },
|
|
|
|
{ code="raj", name="Rajasthani", regions={ "IN" } },
|
2022-04-12 00:02:11 +00:00
|
|
|
{ code="rif", name="Tarifit", regions={ "MA" } },
|
2020-10-14 13:19:39 +00:00
|
|
|
{ code="ro", name="Romanian", regions={ "RO" } },
|
|
|
|
{ code="ru", name="Russian", regions={ "RU", "UA" } },
|
|
|
|
{ code="rw", name="Kinyarwanda", regions={ "RW" } },
|
|
|
|
{ code="sa", name="Sanskrit", regions={ "IN" } },
|
|
|
|
{ code="sah", name="Sakha", regions={ "RU" } },
|
|
|
|
{ code="sat", name="Santali", regions={ "IN" } },
|
|
|
|
{ code="sc", name="Sardinian", regions={ "IT" } },
|
|
|
|
{ code="sd", name="Sindhi", regions={ "IN" } },
|
|
|
|
{ code="se", name="Northern Sami", regions={ "NO" } },
|
|
|
|
{ code="sgs", name="Samogitian", regions={ "LT" } },
|
|
|
|
{ code="shn", name="Shan", regions={ "MM" } },
|
|
|
|
{ code="shs", name="Shuswap", regions={ "CA" } },
|
|
|
|
{ code="si", name="Sinhala", regions={ "LK" } },
|
|
|
|
{ code="sid", name="Sidamo", regions={ "ET" } },
|
|
|
|
{ code="sk", name="Slovak", regions={ "SK" } },
|
|
|
|
{ code="sl", name="Slovenian", regions={ "SI" } },
|
|
|
|
{ code="sm", name="Samoan", regions={ "WS" } },
|
|
|
|
{ code="so", name="Somali", regions={ "DJ", "ET", "KE", "SO" } },
|
|
|
|
{ code="sq", name="Albanian", regions={ "AL", "MK" } },
|
|
|
|
{ code="sr", name="Serbian", regions={ "ME", "RS" } },
|
|
|
|
{ code="ss", name="Swati", regions={ "ZA" } },
|
|
|
|
{ code="st", name="Southern Sotho", regions={ "ZA" } },
|
|
|
|
{ code="sv", name="Swedish", regions={ "FI", "SE" } },
|
|
|
|
{ code="sw", name="Swahili", regions={ "KE", "TZ" } },
|
2022-04-26 03:28:14 +00:00
|
|
|
{ code="syr", name="Syriac", regions={} },
|
2020-10-14 13:19:39 +00:00
|
|
|
{ code="szl", name="Silesian", regions={ "PL" } },
|
|
|
|
{ code="ta", name="Tamil", regions={ "IN", "LK" } },
|
|
|
|
{ code="tcy", name="Tulu", regions={ "IN" } },
|
|
|
|
{ code="te", name="Telugu", regions={ "IN" } },
|
|
|
|
{ code="tg", name="Tajik", regions={ "TJ" } },
|
|
|
|
{ code="th", name="Thai", regions={ "TH" } },
|
|
|
|
{ code="the", name="Chitwania Tharu", regions={ "NP" } },
|
|
|
|
{ code="ti", name="Tigrinya", regions={ "ER", "ET" } },
|
|
|
|
{ code="tig", name="Tigre", regions={ "ER" } },
|
|
|
|
{ code="tk", name="Turkmen", regions={ "TM" } },
|
|
|
|
{ code="tl", name="Tagalog", regions={ "PH" } },
|
|
|
|
{ code="tn", name="Tswana", regions={ "ZA" } },
|
|
|
|
{ code="to", name="Tongan", regions={ "TO" } },
|
|
|
|
{ code="tpi", name="Tok Pisin", regions={ "PG" } },
|
|
|
|
{ code="tr", name="Turkish", regions={ "CY", "TR" } },
|
|
|
|
{ code="ts", name="Tsonga", regions={ "ZA" } },
|
|
|
|
{ code="tt", name="Tatar", regions={ "RU" } },
|
|
|
|
{ code="ug", name="Uyghur", regions={ "CN" } },
|
|
|
|
{ code="uk", name="Ukrainian", regions={ "UA" } },
|
|
|
|
{ code="unm", name="Unami language", regions={ "US" } },
|
|
|
|
{ code="ur", name="Urdu", regions={ "IN", "PK" } },
|
|
|
|
{ code="uz", name="Uzbek", regions={ "UZ" } },
|
|
|
|
{ code="ve", name="Venda", regions={ "ZA" } },
|
|
|
|
{ code="vi", name="Vietnamese", regions={ "VN" } },
|
|
|
|
{ code="wa", name="Walloon", regions={ "BE" } },
|
|
|
|
{ code="wae", name="Walser", regions={ "CH" } },
|
|
|
|
{ code="wal", name="Wolaytta", regions={ "ET" } },
|
|
|
|
{ code="wo", name="Wolof", regions={ "SN" } },
|
|
|
|
{ code="xh", name="Xhosa", regions={ "ZA" } },
|
|
|
|
{ code="yi", name="Yiddish", regions={ "US" } },
|
|
|
|
{ code="yo", name="Yoruba", regions={ "NG" } },
|
|
|
|
{ code="yue", name="Cantonese", regions={ "HK" } },
|
|
|
|
{ code="yuw", name="Yau", regions={ "PG" } },
|
|
|
|
{ code="zh", name="Mandarin Chinese", regions={ "CN", "HK", "SG", "TW" } },
|
|
|
|
{ code="zu", name="Zulu", regions={ "ZA" } }
|
|
|
|
}
|
|
|
|
|
|
|
|
-- Prints a list of LANGUAGE "_" REGION pairs. The output is expected
|
|
|
|
-- to be identical to parse-SUPPORTED.py. Called from the %%prep section.
|
|
|
|
function print_locale_pairs()
|
|
|
|
for i = 1, #locales do
|
|
|
|
local locale = locales[i]
|
|
|
|
if #locale.regions == 0 then
|
|
|
|
print(locale.code .. "\n")
|
|
|
|
else
|
|
|
|
for j = 1, #locale.regions do
|
|
|
|
print(locale.code .. "_" .. locale.regions[j] .. "\n")
|
2017-10-06 13:25:50 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-09-20 01:29:06 +00:00
|
|
|
end
|
|
|
|
|
2020-10-14 13:19:39 +00:00
|
|
|
local function compute_supplements(locale)
|
|
|
|
local lang = locale.code
|
|
|
|
local regions = locale.regions
|
2019-09-26 08:51:05 +00:00
|
|
|
result = "langpacks-core-" .. lang
|
2020-10-14 13:19:39 +00:00
|
|
|
for i = 1, #regions do
|
|
|
|
result = result .. " or langpacks-core-" .. lang .. "_" .. regions[i]
|
2017-10-06 13:25:50 +00:00
|
|
|
end
|
|
|
|
return result
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Emit the definition of a language pack package.
|
2020-10-14 13:19:39 +00:00
|
|
|
local function lang_package(locale)
|
|
|
|
local lang = locale.code
|
|
|
|
local langname = locale.name
|
|
|
|
local suppl = compute_supplements(locale)
|
2017-10-06 13:25:50 +00:00
|
|
|
print(rpm.expand([[
|
|
|
|
|
|
|
|
%package langpack-]]..lang..[[
|
|
|
|
|
2019-09-20 01:29:06 +00:00
|
|
|
Summary: Locale data for ]]..langname..[[
|
2017-10-06 13:25:50 +00:00
|
|
|
|
|
|
|
Provides: glibc-langpack = %{version}-%{release}
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: %{name}-common = %{version}-%{release}
|
2018-01-12 10:13:18 +00:00
|
|
|
Supplements: (glibc and (]]..suppl..[[))
|
2017-10-06 13:25:50 +00:00
|
|
|
%description langpack-]]..lang..[[
|
|
|
|
|
|
|
|
The glibc-langpack-]]..lang..[[ package includes the basic information required
|
2019-09-20 01:29:06 +00:00
|
|
|
to support the ]]..langname..[[ language in your applications.
|
2017-10-06 13:25:50 +00:00
|
|
|
%files -f langpack-]]..lang..[[.filelist langpack-]]..lang..[[
|
|
|
|
]]))
|
|
|
|
end
|
|
|
|
|
2020-10-14 13:19:39 +00:00
|
|
|
for i = 1, #locales do
|
|
|
|
lang_package(locales[i])
|
2017-10-06 13:25:50 +00:00
|
|
|
end
|
2017-08-16 11:17:21 +00:00
|
|
|
}
|
2016-02-26 09:06:35 +00:00
|
|
|
|
2016-03-01 07:59:24 +00:00
|
|
|
# The glibc-all-langpacks provides the virtual glibc-langpack,
|
|
|
|
# and thus satisfies glibc's requirement for installed locales.
|
|
|
|
# Users can add one more other langauge packs and then eventually
|
|
|
|
# uninstall all-langpacks to save space.
|
2016-02-26 09:06:35 +00:00
|
|
|
%package all-langpacks
|
2016-03-01 07:59:24 +00:00
|
|
|
Summary: All language packs for %{name}.
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: %{name}-common = %{version}-%{release}
|
|
|
|
Provides: %{name}-langpack = %{version}-%{release}
|
2016-02-26 09:06:35 +00:00
|
|
|
%description all-langpacks
|
2016-03-01 07:59:24 +00:00
|
|
|
|
2020-04-03 12:17:51 +00:00
|
|
|
# No %files, this is an empty package. The C/POSIX and
|
2016-03-01 07:59:24 +00:00
|
|
|
# C.UTF-8 files are already installed by glibc. We create
|
|
|
|
# minimal-langpack because the virtual provide of
|
|
|
|
# glibc-langpack needs at least one package installed
|
|
|
|
# to satisfy it. Given that no-locales installed is a valid
|
|
|
|
# use case we support it here with this package.
|
|
|
|
%package minimal-langpack
|
|
|
|
Summary: Minimal language packs for %{name}.
|
|
|
|
Provides: glibc-langpack = %{version}-%{release}
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: %{name}-common = %{version}-%{release}
|
|
|
|
%description minimal-langpack
|
|
|
|
This is a Meta package that is used to install minimal language packs.
|
|
|
|
This package ensures you can use C, POSIX, or C.UTF-8 locales, but
|
|
|
|
nothing else. It is designed for assembling a minimal system.
|
|
|
|
%files minimal-langpack
|
2016-02-26 09:06:35 +00:00
|
|
|
|
2021-06-14 05:45:03 +00:00
|
|
|
# Infrequently used iconv converter modules.
|
|
|
|
%package gconv-extra
|
|
|
|
Summary: All iconv converter modules for %{name}.
|
2021-07-23 14:43:21 +00:00
|
|
|
Requires: %{name}%{_isa} = %{version}-%{release}
|
2021-06-14 05:45:03 +00:00
|
|
|
Requires: %{name}-common = %{version}-%{release}
|
2021-06-14 13:16:16 +00:00
|
|
|
|
2021-06-14 05:45:03 +00:00
|
|
|
%description gconv-extra
|
|
|
|
This package contains all iconv converter modules built in %{name}.
|
|
|
|
|
2016-07-20 15:09:24 +00:00
|
|
|
##############################################################################
|
2018-03-14 19:33:34 +00:00
|
|
|
# Subpackages for NSS modules except nss_files, nss_compat, nss_dns
|
2016-07-20 15:09:24 +00:00
|
|
|
##############################################################################
|
|
|
|
|
2018-05-22 16:30:32 +00:00
|
|
|
# This should remain it's own subpackage or "Provides: nss_db" to allow easy
|
|
|
|
# migration from old systems that previously had the old nss_db package
|
|
|
|
# installed. Note that this doesn't make the migration that smooth, the
|
|
|
|
# databases still need rebuilding because the formats were different.
|
|
|
|
# The nss_db package was deprecated in F16 and onwards:
|
|
|
|
# https://lists.fedoraproject.org/pipermail/devel/2011-July/153665.html
|
|
|
|
# The different database format does cause some issues for users:
|
|
|
|
# https://lists.fedoraproject.org/pipermail/devel/2011-December/160497.html
|
2016-07-20 15:09:24 +00:00
|
|
|
%package -n nss_db
|
|
|
|
Summary: Name Service Switch (NSS) module using hash-indexed files
|
|
|
|
Requires: %{name}%{_isa} = %{version}-%{release}
|
2020-04-29 11:48:49 +00:00
|
|
|
%ifarch x86_64
|
|
|
|
# Automatically install the 32-bit variant if the 64-bit variant has
|
|
|
|
# been installed. This covers the case when glibc.i686 is installed
|
|
|
|
# before nss_db.x86_64. (See above for the other ordering.)
|
|
|
|
Recommends: (nss_db(x86-32) if glibc(x86-32))
|
|
|
|
%endif
|
2016-07-20 15:09:24 +00:00
|
|
|
|
|
|
|
%description -n nss_db
|
|
|
|
The nss_db Name Service Switch module uses hash-indexed files in /var/db
|
|
|
|
to speed up user, group, service, host name, and other NSS-based lookups.
|
|
|
|
|
|
|
|
%package -n nss_hesiod
|
|
|
|
Summary: Name Service Switch (NSS) module using Hesiod
|
|
|
|
Requires: %{name}%{_isa} = %{version}-%{release}
|
2020-04-29 11:48:49 +00:00
|
|
|
%ifarch x86_64
|
|
|
|
# Automatically install the 32-bit variant if the 64-bit variant has
|
|
|
|
# been installed. This covers the case when glibc.i686 is installed
|
|
|
|
# before nss_hesiod.x86_64. (See above for the other ordering.)
|
|
|
|
Recommends: (nss_hesiod(x86-32) if glibc(x86-32))
|
|
|
|
%endif
|
2016-07-20 15:09:24 +00:00
|
|
|
|
|
|
|
%description -n nss_hesiod
|
|
|
|
The nss_hesiod Name Service Switch module uses the Domain Name System
|
|
|
|
(DNS) as a source for user, group, and service information, following
|
|
|
|
the Hesiod convention of Project Athena.
|
|
|
|
|
|
|
|
%package nss-devel
|
|
|
|
Summary: Development files for directly linking NSS service modules
|
2018-11-27 20:07:47 +00:00
|
|
|
Requires: %{name}%{_isa} = %{version}-%{release}
|
2016-07-20 15:09:24 +00:00
|
|
|
Requires: nss_db%{_isa} = %{version}-%{release}
|
|
|
|
Requires: nss_hesiod%{_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description nss-devel
|
|
|
|
The glibc-nss-devel package contains the object files necessary to
|
|
|
|
compile applications and libraries which directly link against NSS
|
|
|
|
modules supplied by glibc.
|
|
|
|
|
|
|
|
This is a rare and special use case; regular development has to use
|
|
|
|
the glibc-devel package instead.
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# glibc "utils" sub-package
|
|
|
|
##############################################################################
|
2004-09-09 05:40:37 +00:00
|
|
|
%package utils
|
|
|
|
Summary: Development utilities from GNU C library
|
2008-03-05 10:32:39 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2004-09-09 05:40:37 +00:00
|
|
|
|
|
|
|
%description utils
|
|
|
|
The glibc-utils package contains memusage, a memory usage profiler,
|
|
|
|
mtrace, a memory leak tracer and xtrace, a function call tracer
|
|
|
|
which can be helpful during program debugging.
|
|
|
|
|
|
|
|
If unsure if you need this, don't install this package.
|
|
|
|
|
2015-08-28 19:29:26 +00:00
|
|
|
%if %{with benchtests}
|
2015-05-08 06:19:59 +00:00
|
|
|
%package benchtests
|
|
|
|
Summary: Benchmarking binaries and scripts for %{name}
|
|
|
|
%description benchtests
|
|
|
|
This package provides built benchmark binaries and scripts to run
|
|
|
|
microbenchmark tests on the system.
|
|
|
|
%endif
|
|
|
|
|
2018-09-05 07:26:05 +00:00
|
|
|
##############################################################################
|
|
|
|
# compat-libpthread-nonshared
|
|
|
|
# See: https://sourceware.org/bugzilla/show_bug.cgi?id=23500
|
|
|
|
##############################################################################
|
|
|
|
%package -n compat-libpthread-nonshared
|
|
|
|
Summary: Compatibility support for linking against libpthread_nonshared.a.
|
|
|
|
|
|
|
|
%description -n compat-libpthread-nonshared
|
|
|
|
This package provides compatibility support for applications that expect
|
|
|
|
libpthread_nonshared.a to exist. The support provided is in the form of
|
|
|
|
an empty libpthread_nonshared.a that allows dynamic links to succeed.
|
|
|
|
Such applications should be adjusted to avoid linking against
|
|
|
|
libpthread_nonshared.a which is no longer used. The static library
|
|
|
|
libpthread_nonshared.a is an internal implementation detail of the C
|
|
|
|
runtime and should not be expected to exist.
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# Prepare for the build.
|
|
|
|
##############################################################################
|
2004-09-09 05:40:37 +00:00
|
|
|
%prep
|
2018-04-19 11:49:39 +00:00
|
|
|
%autosetup -n %{glibcsrcdir} -p1
|
2016-02-15 11:22:50 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# %%prep - Additional prep required...
|
|
|
|
##############################################################################
|
2015-05-08 06:19:59 +00:00
|
|
|
# Make benchmark scripts executable
|
|
|
|
chmod +x benchtests/scripts/*.py scripts/pylint
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# Remove all files generated from patching.
|
2004-09-09 05:40:37 +00:00
|
|
|
find . -type f -size 0 -o -name "*.orig" -exec rm -f {} \;
|
2013-07-24 11:58:38 +00:00
|
|
|
|
|
|
|
# Ensure timestamps on configure files are current to prevent
|
|
|
|
# regenerating them.
|
2004-09-09 05:40:37 +00:00
|
|
|
touch `find . -name configure`
|
2013-07-24 11:58:38 +00:00
|
|
|
|
|
|
|
# Ensure *-kw.h files are current to prevent regenerating them.
|
2005-12-19 18:04:52 +00:00
|
|
|
touch locale/programs/*-kw.h
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2020-10-14 13:19:39 +00:00
|
|
|
# Verify that our locales table is compatible with the locales table
|
|
|
|
# in the spec file.
|
|
|
|
set +x
|
|
|
|
echo '%{lua: print_locale_pairs()}' > localedata/SUPPORTED.spec
|
|
|
|
set -x
|
|
|
|
python3 %{SOURCE11} localedata/SUPPORTED > localedata/SUPPORTED.glibc
|
|
|
|
diff -u \
|
|
|
|
--label "spec file" localedata/SUPPORTED.spec \
|
|
|
|
--label "glibc localedata/SUPPORTED" localedata/SUPPORTED.glibc
|
|
|
|
rm localedata/SUPPORTED.spec localedata/SUPPORTED.glibc
|
2016-02-26 09:06:35 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# Build glibc...
|
|
|
|
##############################################################################
|
2004-09-09 05:40:37 +00:00
|
|
|
%build
|
2020-04-06 09:23:22 +00:00
|
|
|
# Log osystem information
|
2016-04-28 19:59:56 +00:00
|
|
|
uname -a
|
2017-06-22 12:48:21 +00:00
|
|
|
LD_SHOW_AUXV=1 /bin/true
|
2016-04-28 19:59:56 +00:00
|
|
|
cat /proc/cpuinfo
|
2018-08-02 16:20:05 +00:00
|
|
|
cat /proc/sysinfo 2>/dev/null || true
|
2016-04-28 19:59:56 +00:00
|
|
|
cat /proc/meminfo
|
2016-06-01 06:44:30 +00:00
|
|
|
df
|
2013-07-24 11:58:38 +00:00
|
|
|
|
2013-07-25 02:45:11 +00:00
|
|
|
# We build using the native system compilers.
|
2004-09-09 05:40:37 +00:00
|
|
|
GCC=gcc
|
2006-01-04 08:23:00 +00:00
|
|
|
GXX=g++
|
2013-07-24 11:58:38 +00:00
|
|
|
|
2018-07-05 10:45:10 +00:00
|
|
|
# Part of rpm_inherit_flags. Is overridden below.
|
|
|
|
rpm_append_flag ()
|
|
|
|
{
|
|
|
|
BuildFlags="$BuildFlags $*"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Propagates the listed flags to rpm_append_flag if supplied by
|
|
|
|
# redhat-rpm-config.
|
2018-02-28 11:40:17 +00:00
|
|
|
BuildFlags="-O2 -g"
|
|
|
|
rpm_inherit_flags ()
|
|
|
|
{
|
2018-05-11 14:12:33 +00:00
|
|
|
local reference=" $* "
|
2018-02-28 11:40:17 +00:00
|
|
|
local flag
|
2018-05-11 14:12:33 +00:00
|
|
|
for flag in $RPM_OPT_FLAGS $RPM_LD_FLAGS ; do
|
|
|
|
if echo "$reference" | grep -q -F " $flag " ; then
|
2018-07-05 10:45:10 +00:00
|
|
|
rpm_append_flag "$flag"
|
2018-02-28 11:40:17 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
2016-02-09 08:48:54 +00:00
|
|
|
|
2018-02-28 11:40:17 +00:00
|
|
|
# Propgate select compiler flags from redhat-rpm-config. These flags
|
|
|
|
# are target-dependent, so we use only those which are specified in
|
2018-06-01 10:10:16 +00:00
|
|
|
# redhat-rpm-config. We keep the -m32/-m32/-m64 flags to support
|
|
|
|
# multilib builds.
|
2018-07-11 13:54:24 +00:00
|
|
|
#
|
|
|
|
# Note: For building alternative run-times, care is required to avoid
|
|
|
|
# overriding the architecture flags which go into CC/CXX. The flags
|
|
|
|
# below are passed in CFLAGS.
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2018-02-28 11:40:17 +00:00
|
|
|
rpm_inherit_flags \
|
2018-07-04 08:48:07 +00:00
|
|
|
"-Wp,-D_GLIBCXX_ASSERTIONS" \
|
2018-02-28 11:40:17 +00:00
|
|
|
"-fasynchronous-unwind-tables" \
|
|
|
|
"-fstack-clash-protection" \
|
2022-07-05 09:03:37 +00:00
|
|
|
"-fno-omit-frame-pointer" \
|
2018-02-28 11:40:17 +00:00
|
|
|
"-funwind-tables" \
|
|
|
|
"-m31" \
|
|
|
|
"-m32" \
|
|
|
|
"-m64" \
|
2021-04-09 18:47:11 +00:00
|
|
|
"-march=armv8-a+lse" \
|
|
|
|
"-march=armv8.1-a" \
|
2019-01-10 11:29:48 +00:00
|
|
|
"-march=haswell" \
|
2018-06-01 10:10:16 +00:00
|
|
|
"-march=i686" \
|
|
|
|
"-march=x86-64" \
|
2021-04-09 18:47:11 +00:00
|
|
|
"-march=x86-64-v2" \
|
|
|
|
"-march=x86-64-v3" \
|
|
|
|
"-march=x86-64-v4" \
|
2018-06-01 10:10:16 +00:00
|
|
|
"-march=z13" \
|
|
|
|
"-march=z14" \
|
2020-10-20 10:25:23 +00:00
|
|
|
"-march=z15" \
|
2018-06-01 10:10:16 +00:00
|
|
|
"-march=zEC12" \
|
2020-07-29 08:55:07 +00:00
|
|
|
"-mbranch-protection=standard" \
|
2021-04-09 18:47:11 +00:00
|
|
|
"-mcpu=power10" \
|
|
|
|
"-mcpu=power8" \
|
|
|
|
"-mcpu=power9" \
|
2018-06-01 10:10:16 +00:00
|
|
|
"-mfpmath=sse" \
|
2022-07-05 09:03:37 +00:00
|
|
|
"-mno-omit-leaf-frame-pointer" \
|
2018-06-18 09:51:52 +00:00
|
|
|
"-msse2" \
|
2018-05-11 14:04:30 +00:00
|
|
|
"-mstackrealign" \
|
2018-06-01 10:10:16 +00:00
|
|
|
"-mtune=generic" \
|
2021-04-09 18:47:11 +00:00
|
|
|
"-mtune=power10" \
|
|
|
|
"-mtune=power8" \
|
|
|
|
"-mtune=power9" \
|
2018-06-01 10:10:16 +00:00
|
|
|
"-mtune=z13" \
|
|
|
|
"-mtune=z14" \
|
2020-10-20 10:25:23 +00:00
|
|
|
"-mtune=z15" \
|
2018-06-01 10:10:16 +00:00
|
|
|
"-mtune=zEC12" \
|
2018-03-06 13:37:32 +00:00
|
|
|
"-specs=/usr/lib/rpm/redhat/redhat-annobin-cc1" \
|
2016-09-22 11:20:25 +00:00
|
|
|
|
2021-12-09 00:59:40 +00:00
|
|
|
%if 0%{?_annotated_build} > 0
|
2019-01-23 16:22:30 +00:00
|
|
|
# libc_nonshared.a cannot be built with the default hardening flags
|
|
|
|
# because the glibc build system is incompatible with
|
|
|
|
# -D_FORTIFY_SOURCE. The object files need to be marked as to be
|
|
|
|
# skipped in annobin annotations. (The -specs= variant of activating
|
|
|
|
# annobin does not work here because of flag ordering issues.)
|
|
|
|
# See <https://bugzilla.redhat.com/show_bug.cgi?id=1668822>.
|
|
|
|
BuildFlagsNonshared="-fplugin=annobin -fplugin-arg-annobin-disable -Wa,--generate-missing-build-notes=yes"
|
2021-12-09 00:59:40 +00:00
|
|
|
%endif
|
2018-07-05 10:45:10 +00:00
|
|
|
|
2018-07-04 14:35:00 +00:00
|
|
|
# Special flag to enable annobin annotations for statically linked
|
|
|
|
# assembler code. Needs to be passed to make; not preserved by
|
|
|
|
# configure.
|
2022-02-22 18:27:20 +00:00
|
|
|
%global glibc_make_flags_as ASFLAGS="-g -Wa,--generate-missing-build-notes=yes"
|
|
|
|
%global glibc_make_flags %{glibc_make_flags_as}
|
2018-07-04 14:35:00 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# %%build - Generic options.
|
|
|
|
##############################################################################
|
2004-09-09 05:40:37 +00:00
|
|
|
EnableKernel="--enable-kernel=%{enablekernel}"
|
2013-07-24 11:58:38 +00:00
|
|
|
# Save the used compiler and options into the file "Gcc" for use later
|
|
|
|
# by %%install.
|
2005-07-08 10:21:35 +00:00
|
|
|
echo "$GCC" > Gcc
|
auto-import changelog data from glibc-2.3.3-27.src.rpm
Tue May 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-27
- remove /lib64/tls/librtkaio-2.3.[23].so in glibc_post_upgrade on x86-64,
s390x and ppc64 instead of /lib/tls/librtkaio-2.3.[23].so
- build mq_{send,receive} with -fexceptions
Fri May 07 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-26
- update from CVS
- fix <tgmath.h>
- fix memory leaks in nis, getifaddrs, etc. caused by incorrect use of
realloc
- remove /lib/{tls,i686}/librtkaio-2.3.[23].so in glibc_post_upgrade and
rerun ldconfig if needed, otherwise after glibc upgrade librt.so.1
might be a stale symlink
Wed May 05 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-25
- update from CVS
- disable FUTEX_REQUEUE (work around #115349)
- mq for sparc/sparc64/ia64
Tue May 04 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-24
- update from CVS
- define S_ISSOCK in -D_XOPEN_SOURCE=600 and S_I[FS]SOCK plus F_[SG]ETOWN
also in -D_XOPEN_SOURCE=500 (both included already in XNS5)
- reorder dlopen checks, so that dlopening ET_REL objects complains about
!= ET_DYN != ET_EXEC, not about phentsize (#121606)
- fix strpbrk macro for GCC 3.4+ (BZ #130)
- fix <sys/sysctl.h> (BZ #140)
- sched_[gs]etaffinity documentation fix (BZ #131)
- fix sparc64 build (BZ #139)
- change linuxthreads back to use non-cancellable writes to manager pipes
etc.
- fix sem_timedwait return value in linuxthreads (BZ #133)
- ia64 unnecessary PLT relocs removal
Thu Apr 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-23
- update from CVS
- fix *scanf
- fix shm_unlink, sem_unlink and mq_unlink errno values
- avoid memory leaks in error
- execstack fixes on s390
Mon Apr 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-22
- update from CVS
- mq and timer fixes
- rebuilt with binutils >= 2.15.90.0.3-2 to fix IA-64 statically linked
binaries
- fix linuxthreads librt.so on s390{,x}, so it is no longer DT_TEXTREL
Sat Apr 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-21
- disable rtkaio
- update from CVS
- POSIX message passing support
- fixed SIGEV_THREAD support for POSIX timers
- fix free on non-malloced memory in syslog
- fix ffsl on some 64-bit arches
- fix sched_setaffinity on x86-64, ia64
- fix ppc64 umount
- NETID_AUTHORITATIVE, SERVICES_AUTHORITATIVE support
- various NIS speedups
- fix fwrite with > 2GB sizes on 64-bit arches
- fix pthread_getattr_np guardsize reporting in NPTL
- report PLT relocations in ld.so and libc.so during the build
Thu Mar 25 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-20
- update from CVS
- change NPTL PTHREAD_MUTEX_ADAPTIVE_NP mutexes to spin on SMP
- strtol speed optimization
- don't try to use certainly unimplemented syscalls on ppc64
- kill -debug subpackage, move the libs to glibc-debuginfo{,-common} into
/usr/lib/debug/usr/lib64/ directory
- fix c_stubs with gcc 3.4
- move all the up to 3 builds into %build scriptlet and leave only
installation in the %install scriptlet
Mon Mar 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-19
- update from CVS
- affinity API changes
2004-09-09 05:48:43 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# build()
|
|
|
|
# Build glibc in `build-%{target}$1', passing the rest of the arguments
|
|
|
|
# as CFLAGS to the build (not the same as configure CFLAGS). Several
|
2018-01-19 07:35:09 +00:00
|
|
|
# global values are used to determine build flags, kernel version,
|
|
|
|
# system tap support, etc.
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
2011-07-20 11:54:13 +00:00
|
|
|
build()
|
2005-04-27 12:26:45 +00:00
|
|
|
{
|
2018-02-28 11:40:17 +00:00
|
|
|
local builddir=build-%{target}${1:+-$1}
|
2013-07-25 22:53:13 +00:00
|
|
|
${1+shift}
|
|
|
|
rm -rf $builddir
|
|
|
|
mkdir $builddir
|
|
|
|
pushd $builddir
|
2018-02-28 11:40:17 +00:00
|
|
|
../configure CC="$GCC" CXX="$GXX" CFLAGS="$BuildFlags $*" \
|
2013-07-25 22:53:13 +00:00
|
|
|
--prefix=%{_prefix} \
|
2017-07-04 06:23:12 +00:00
|
|
|
--with-headers=%{_prefix}/include $EnableKernel \
|
2018-07-05 10:45:10 +00:00
|
|
|
--with-nonshared-cflags="$BuildFlagsNonshared" \
|
2017-07-04 06:23:12 +00:00
|
|
|
--enable-bind-now \
|
2013-07-25 22:53:13 +00:00
|
|
|
--build=%{target} \
|
2016-12-26 10:22:24 +00:00
|
|
|
--enable-stack-protector=strong \
|
2017-01-02 12:32:25 +00:00
|
|
|
--enable-tunables \
|
2013-07-25 22:53:13 +00:00
|
|
|
--enable-systemtap \
|
2016-02-09 08:48:54 +00:00
|
|
|
${core_with_options} \
|
2018-07-26 09:59:33 +00:00
|
|
|
%ifarch x86_64 %{ix86}
|
|
|
|
--enable-cet \
|
|
|
|
%endif
|
2017-08-16 09:14:32 +00:00
|
|
|
%ifarch %{ix86}
|
|
|
|
--disable-multi-arch \
|
|
|
|
%endif
|
2015-08-28 19:29:26 +00:00
|
|
|
%if %{without werror}
|
|
|
|
--disable-werror \
|
|
|
|
%endif
|
|
|
|
--disable-profile \
|
|
|
|
%if %{with bootstrap}
|
|
|
|
--without-selinux \
|
2021-03-25 21:13:41 +00:00
|
|
|
%endif
|
|
|
|
%ifarch aarch64
|
|
|
|
--enable-memory-tagging \
|
2009-06-26 15:46:27 +00:00
|
|
|
%endif
|
2021-12-13 12:41:58 +00:00
|
|
|
--disable-crypt \
|
|
|
|
--disable-build-nscd \
|
|
|
|
--disable-nscd ||
|
2013-07-25 22:53:13 +00:00
|
|
|
{ cat config.log; false; }
|
2009-09-01 11:03:11 +00:00
|
|
|
|
2020-07-23 04:03:10 +00:00
|
|
|
%make_build -r %{glibc_make_flags}
|
2013-07-25 22:53:13 +00:00
|
|
|
popd
|
2005-04-27 12:26:45 +00:00
|
|
|
}
|
|
|
|
|
2018-07-11 19:32:56 +00:00
|
|
|
# Default set of compiler options.
|
2011-07-20 11:54:13 +00:00
|
|
|
build
|
2005-04-27 12:26:45 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# Install glibc...
|
|
|
|
##############################################################################
|
2004-09-09 05:40:37 +00:00
|
|
|
%install
|
2014-12-06 01:30:44 +00:00
|
|
|
|
2018-03-14 19:33:34 +00:00
|
|
|
# The built glibc is installed into a subdirectory of $RPM_BUILD_ROOT.
|
|
|
|
# For a system glibc that subdirectory is "/" (the root of the filesystem).
|
|
|
|
# This is called a sysroot (system root) and can be changed if we have a
|
|
|
|
# distribution that supports multiple installed glibc versions.
|
2022-02-22 18:27:20 +00:00
|
|
|
%global glibc_sysroot $RPM_BUILD_ROOT
|
2018-03-14 19:33:34 +00:00
|
|
|
|
2017-08-17 18:14:18 +00:00
|
|
|
# Remove existing file lists.
|
|
|
|
find . -type f -name '*.filelist' -exec rm -rf {} \;
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# Reload compiler and build options that were used during %%build.
|
2004-09-09 05:40:37 +00:00
|
|
|
GCC=`cat Gcc`
|
|
|
|
|
2018-02-10 09:59:27 +00:00
|
|
|
%ifarch riscv64
|
|
|
|
# RISC-V ABI wants to install everything in /lib64/lp64d or /usr/lib64/lp64d.
|
|
|
|
# Make these be symlinks to /lib64 or /usr/lib64 respectively. See:
|
|
|
|
# https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/DRHT5YTPK4WWVGL3GIN5BF2IKX2ODHZ3/
|
2018-03-14 19:33:34 +00:00
|
|
|
for d in %{glibc_sysroot}%{_libdir} %{glibc_sysroot}/%{_lib}; do
|
2018-02-10 09:59:27 +00:00
|
|
|
mkdir -p $d
|
|
|
|
(cd $d && ln -sf . lp64d)
|
|
|
|
done
|
|
|
|
%endif
|
|
|
|
|
2018-03-14 19:33:34 +00:00
|
|
|
# Build and install:
|
2013-07-24 05:27:35 +00:00
|
|
|
pushd build-%{target}
|
2021-04-29 11:17:59 +00:00
|
|
|
%make_build install_root=%{glibc_sysroot} install
|
|
|
|
%make_build install_root=%{glibc_sysroot} \
|
2022-02-10 11:00:48 +00:00
|
|
|
install-locale-files -C ../localedata objdir=`pwd`
|
2013-07-24 05:27:35 +00:00
|
|
|
popd
|
2022-02-10 11:00:48 +00:00
|
|
|
# Locale creation via install-locale-files does not group identical files
|
|
|
|
# via hardlinks, so we must group them ourselves.
|
|
|
|
hardlink -c %{glibc_sysroot}/usr/lib/locale
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-08-09 04:41:01 +00:00
|
|
|
# install_different:
|
|
|
|
# Install all core libraries into DESTDIR/SUBDIR. Either the file is
|
|
|
|
# installed as a copy or a symlink to the default install (if it is the
|
|
|
|
# same). The path SUBDIR_UP is the prefix used to go from
|
|
|
|
# DESTDIR/SUBDIR to the default installed libraries e.g.
|
|
|
|
# ln -s SUBDIR_UP/foo.so DESTDIR/SUBDIR/foo.so.
|
|
|
|
# When you call this function it is expected that you are in the root
|
|
|
|
# of the build directory, and that the default build directory is:
|
|
|
|
# "../build-%{target}" (relatively).
|
|
|
|
# The primary use of this function is to install alternate runtimes
|
|
|
|
# into the build directory and avoid duplicating this code for each
|
|
|
|
# runtime.
|
|
|
|
install_different()
|
|
|
|
{
|
2013-08-09 04:48:21 +00:00
|
|
|
local lib libbase libbaseso dlib
|
2013-08-09 04:41:01 +00:00
|
|
|
local destdir="$1"
|
|
|
|
local subdir="$2"
|
|
|
|
local subdir_up="$3"
|
|
|
|
local libdestdir="$destdir/$subdir"
|
|
|
|
# All three arguments must be non-zero paths.
|
|
|
|
if ! [ "$destdir" \
|
|
|
|
-a "$subdir" \
|
|
|
|
-a "$subdir_up" ]; then
|
|
|
|
echo "One of the arguments to install_different was emtpy."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
# Create the destination directory and the multilib directory.
|
|
|
|
mkdir -p "$destdir"
|
|
|
|
mkdir -p "$libdestdir"
|
|
|
|
# Walk all of the libraries we installed...
|
|
|
|
for lib in libc math/libm nptl/libpthread rt/librt nptl_db/libthread_db
|
|
|
|
do
|
|
|
|
libbase=${lib#*/}
|
|
|
|
# Take care that `libbaseso' has a * that needs expanding so
|
|
|
|
# take care with quoting.
|
2018-03-14 19:33:34 +00:00
|
|
|
libbaseso=$(basename %{glibc_sysroot}/%{_lib}/${libbase}-*.so)
|
2013-08-09 04:41:01 +00:00
|
|
|
# Only install if different from default build library.
|
|
|
|
if cmp -s ${lib}.so ../build-%{target}/${lib}.so; then
|
|
|
|
ln -sf "$subdir_up"/$libbaseso $libdestdir/$libbaseso
|
|
|
|
else
|
|
|
|
cp -a ${lib}.so $libdestdir/$libbaseso
|
|
|
|
fi
|
2018-03-14 19:33:34 +00:00
|
|
|
dlib=$libdestdir/$(basename %{glibc_sysroot}/%{_lib}/${libbase}.so.*)
|
2013-08-09 04:41:01 +00:00
|
|
|
ln -sf $libbaseso $dlib
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
2004-09-09 05:40:37 +00:00
|
|
|
# Remove the files we don't want to distribute
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
# Remove the libNoVersion files.
|
|
|
|
# XXX: This looks like a bug in glibc that accidentally installed these
|
|
|
|
# wrong files. We probably don't need this today.
|
2018-03-14 19:33:34 +00:00
|
|
|
rm -f %{glibc_sysroot}/%{_libdir}/libNoVersion*
|
|
|
|
rm -f %{glibc_sysroot}/%{_lib}/libNoVersion*
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-07-25 03:00:43 +00:00
|
|
|
# Remove the old nss modules.
|
2018-03-14 19:33:34 +00:00
|
|
|
rm -f %{glibc_sysroot}/%{_lib}/libnss1-*
|
|
|
|
rm -f %{glibc_sysroot}/%{_lib}/libnss-*.so.1
|
2005-07-08 10:17:59 +00:00
|
|
|
|
2018-01-03 20:56:50 +00:00
|
|
|
# This statically linked binary is no longer necessary in a world where
|
|
|
|
# the default Fedora install uses an initramfs, and further we have rpm-ostree
|
|
|
|
# which captures the whole userspace FS tree.
|
|
|
|
# Further, see https://github.com/projectatomic/rpm-ostree/pull/1173#issuecomment-355014583
|
2018-03-14 19:33:34 +00:00
|
|
|
rm -f %{glibc_sysroot}/{usr/,}sbin/sln
|
2018-01-03 20:56:50 +00:00
|
|
|
|
2018-01-29 19:42:52 +00:00
|
|
|
######################################################################
|
|
|
|
# Run ldconfig to create all the symbolic links we need
|
|
|
|
######################################################################
|
|
|
|
|
|
|
|
# Note: This has to happen before creating /etc/ld.so.conf.
|
|
|
|
|
2018-03-14 19:33:34 +00:00
|
|
|
mkdir -p %{glibc_sysroot}/var/cache/ldconfig
|
|
|
|
truncate -s 0 %{glibc_sysroot}/var/cache/ldconfig/aux-cache
|
2018-01-29 19:42:52 +00:00
|
|
|
|
|
|
|
# ldconfig is statically linked, so we can use the new version.
|
2018-03-14 19:33:34 +00:00
|
|
|
%{glibc_sysroot}/sbin/ldconfig -N -r %{glibc_sysroot}
|
2018-01-29 19:42:52 +00:00
|
|
|
|
2013-07-25 02:45:11 +00:00
|
|
|
##############################################################################
|
2013-07-25 03:00:43 +00:00
|
|
|
# Install info files
|
2013-07-25 02:45:11 +00:00
|
|
|
##############################################################################
|
|
|
|
|
2015-08-28 19:29:26 +00:00
|
|
|
%if %{with docs}
|
2013-07-24 11:58:38 +00:00
|
|
|
# Move the info files if glibc installed them into the wrong location.
|
2018-03-14 19:33:34 +00:00
|
|
|
if [ -d %{glibc_sysroot}%{_prefix}/info -a "%{_infodir}" != "%{_prefix}/info" ]; then
|
|
|
|
mkdir -p %{glibc_sysroot}%{_infodir}
|
|
|
|
mv -f %{glibc_sysroot}%{_prefix}/info/* %{glibc_sysroot}%{_infodir}
|
|
|
|
rm -rf %{glibc_sysroot}%{_prefix}/info
|
2004-09-09 05:40:37 +00:00
|
|
|
fi
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# Compress all of the info files.
|
2018-03-14 19:33:34 +00:00
|
|
|
gzip -9nvf %{glibc_sysroot}%{_infodir}/libc*
|
2015-11-27 06:14:36 +00:00
|
|
|
|
2021-01-23 18:16:05 +00:00
|
|
|
# Copy the debugger interface documentation over to the right location
|
|
|
|
mkdir -p %{glibc_sysroot}%{_docdir}/glibc
|
|
|
|
cp elf/rtld-debugger-interface.txt %{glibc_sysroot}%{_docdir}/glibc
|
2015-11-27 06:14:36 +00:00
|
|
|
%else
|
2018-03-14 19:33:34 +00:00
|
|
|
rm -f %{glibc_sysroot}%{_infodir}/dir
|
|
|
|
rm -f %{glibc_sysroot}%{_infodir}/libc.info*
|
2015-08-28 19:29:26 +00:00
|
|
|
%endif
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-07-25 03:00:43 +00:00
|
|
|
##############################################################################
|
2016-02-26 09:06:35 +00:00
|
|
|
# Create locale sub-package file lists
|
2013-07-25 03:00:43 +00:00
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
olddir=`pwd`
|
2018-03-14 19:33:34 +00:00
|
|
|
pushd %{glibc_sysroot}%{_prefix}/lib/locale
|
2019-06-05 10:20:08 +00:00
|
|
|
rm -f locale-archive
|
2016-03-01 07:59:24 +00:00
|
|
|
$olddir/build-%{target}/elf/ld.so \
|
|
|
|
--library-path $olddir/build-%{target}/ \
|
|
|
|
$olddir/build-%{target}/locale/localedef \
|
2019-06-01 11:13:40 +00:00
|
|
|
--alias-file=$olddir/intl/locale.alias \
|
2018-03-14 19:33:34 +00:00
|
|
|
--prefix %{glibc_sysroot} --add-to-archive \
|
2022-04-26 03:28:14 +00:00
|
|
|
%locale_rx
|
2019-06-05 10:20:08 +00:00
|
|
|
# Historically, glibc-all-langpacks deleted the file on updates (sic),
|
|
|
|
# so we need to restore it in the posttrans scriptlet (like the old
|
|
|
|
# glibc-all-langpacks versions)
|
|
|
|
ln locale-archive locale-archive.real
|
|
|
|
|
2022-02-24 04:12:00 +00:00
|
|
|
# Almost half the LC_CTYPE files in langpacks are identical to the C.utf8
|
|
|
|
# variant which is installed by default. When we keep them as hardlinks,
|
|
|
|
# each langpack ends up retaining a copy. If we convert these to symbolic
|
|
|
|
# links instead, we save ~350K each when they get installed that way.
|
|
|
|
#
|
|
|
|
# LC_MEASUREMENT and LC_PAPER also have several duplicates but we don't
|
|
|
|
# bother with these because they are only ~30 bytes each.
|
|
|
|
pushd %{glibc_sysroot}/usr/lib/locale
|
2022-04-26 03:28:14 +00:00
|
|
|
for f in $(find %locale_rx -samefile C.utf8/LC_CTYPE); do
|
2022-02-24 04:12:00 +00:00
|
|
|
rm $f && ln -s '../C.utf8/LC_CTYPE' $f
|
|
|
|
done
|
|
|
|
popd
|
|
|
|
|
2016-02-26 09:06:35 +00:00
|
|
|
# Create the file lists for the language specific sub-packages:
|
2022-04-26 03:28:14 +00:00
|
|
|
for i in %locale_rx
|
2016-02-26 09:06:35 +00:00
|
|
|
do
|
|
|
|
lang=${i%%_*}
|
|
|
|
if [ ! -e langpack-${lang}.filelist ]; then
|
|
|
|
echo "%dir %{_prefix}/lib/locale" >> langpack-${lang}.filelist
|
|
|
|
fi
|
|
|
|
echo "%dir %{_prefix}/lib/locale/$i" >> langpack-${lang}.filelist
|
|
|
|
echo "%{_prefix}/lib/locale/$i/*" >> langpack-${lang}.filelist
|
|
|
|
done
|
|
|
|
popd
|
2018-03-14 19:33:34 +00:00
|
|
|
pushd %{glibc_sysroot}%{_prefix}/share/locale
|
2016-02-26 09:06:35 +00:00
|
|
|
for i in */LC_MESSAGES/libc.mo
|
|
|
|
do
|
|
|
|
locale=${i%%%%/*}
|
|
|
|
lang=${locale%%%%_*}
|
|
|
|
echo "%lang($lang) %{_prefix}/share/locale/${i}" \
|
2018-03-14 19:33:34 +00:00
|
|
|
>> %{glibc_sysroot}%{_prefix}/lib/locale/langpack-${lang}.filelist
|
2016-02-26 09:06:35 +00:00
|
|
|
done
|
2013-07-25 03:00:43 +00:00
|
|
|
popd
|
2018-03-14 19:33:34 +00:00
|
|
|
mv %{glibc_sysroot}%{_prefix}/lib/locale/*.filelist .
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# Install configuration files for services
|
|
|
|
##############################################################################
|
|
|
|
|
2004-09-09 05:40:37 +00:00
|
|
|
# Include ld.so.conf
|
2018-03-14 19:33:34 +00:00
|
|
|
echo 'include ld.so.conf.d/*.conf' > %{glibc_sysroot}/etc/ld.so.conf
|
|
|
|
truncate -s 0 %{glibc_sysroot}/etc/ld.so.cache
|
|
|
|
chmod 644 %{glibc_sysroot}/etc/ld.so.conf
|
|
|
|
mkdir -p %{glibc_sysroot}/etc/ld.so.conf.d
|
|
|
|
truncate -s 0 %{glibc_sysroot}/etc/gai.conf
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-07-26 05:59:43 +00:00
|
|
|
# Include %{_libdir}/gconv/gconv-modules.cache
|
2018-03-14 19:33:34 +00:00
|
|
|
truncate -s 0 %{glibc_sysroot}%{_libdir}/gconv/gconv-modules.cache
|
|
|
|
chmod 644 %{glibc_sysroot}%{_libdir}/gconv/gconv-modules.cache
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2018-03-14 19:33:34 +00:00
|
|
|
# Remove any zoneinfo files; they are maintained by tzdata.
|
|
|
|
rm -rf %{glibc_sysroot}%{_prefix}/share/zoneinfo
|
2018-03-01 05:10:04 +00:00
|
|
|
|
|
|
|
# Make sure %config files have the same timestamp across multilib packages.
|
|
|
|
#
|
|
|
|
# XXX: Ideally ld.so.conf should have the timestamp of the spec file, but there
|
|
|
|
# doesn't seem to be any macro to give us that. So we do the next best thing,
|
2019-05-17 01:43:50 +00:00
|
|
|
# which is to at least keep the timestamp consistent. The choice of using
|
|
|
|
# SOURCE0 is arbitrary.
|
2018-03-14 19:33:34 +00:00
|
|
|
touch -r %{SOURCE0} %{glibc_sysroot}/etc/ld.so.conf
|
2020-07-10 10:56:47 +00:00
|
|
|
touch -r inet/etc.rpc %{glibc_sysroot}/etc/rpc
|
2018-03-01 05:10:04 +00:00
|
|
|
|
|
|
|
%if %{with benchtests}
|
|
|
|
# Build benchmark binaries. Ignore the output of the benchmark runs.
|
|
|
|
pushd build-%{target}
|
|
|
|
make BENCH_DURATION=1 bench-build
|
|
|
|
popd
|
|
|
|
|
|
|
|
# Copy over benchmark binaries.
|
2018-03-14 19:33:34 +00:00
|
|
|
mkdir -p %{glibc_sysroot}%{_prefix}/libexec/glibc-benchtests
|
|
|
|
cp $(find build-%{target}/benchtests -type f -executable) %{glibc_sysroot}%{_prefix}/libexec/glibc-benchtests/
|
2018-03-01 05:10:04 +00:00
|
|
|
# ... and the makefile.
|
2021-12-13 12:41:58 +00:00
|
|
|
for b in %{SOURCE1} %{SOURCE2}; do
|
2018-03-14 19:33:34 +00:00
|
|
|
cp $b %{glibc_sysroot}%{_prefix}/libexec/glibc-benchtests/
|
2018-03-01 05:10:04 +00:00
|
|
|
done
|
|
|
|
# .. and finally, the comparison scripts.
|
2018-03-14 19:33:34 +00:00
|
|
|
cp benchtests/scripts/benchout.schema.json %{glibc_sysroot}%{_prefix}/libexec/glibc-benchtests/
|
|
|
|
cp benchtests/scripts/compare_bench.py %{glibc_sysroot}%{_prefix}/libexec/glibc-benchtests/
|
|
|
|
cp benchtests/scripts/import_bench.py %{glibc_sysroot}%{_prefix}/libexec/glibc-benchtests/
|
|
|
|
cp benchtests/scripts/validate_benchout.py %{glibc_sysroot}%{_prefix}/libexec/glibc-benchtests/
|
2019-06-17 13:45:58 +00:00
|
|
|
%endif
|
2018-03-01 05:10:04 +00:00
|
|
|
|
|
|
|
# The #line directives gperf generates do not give the proper
|
|
|
|
# file name relative to the build directory.
|
|
|
|
pushd locale
|
|
|
|
ln -s programs/*.gperf .
|
|
|
|
popd
|
|
|
|
pushd iconv
|
|
|
|
ln -s ../locale/programs/charmap-kw.gperf .
|
|
|
|
popd
|
|
|
|
|
|
|
|
%if %{with docs}
|
|
|
|
# Remove the `dir' info-heirarchy file which will be maintained
|
|
|
|
# by the system as it adds info files to the install.
|
2018-03-14 19:33:34 +00:00
|
|
|
rm -f %{glibc_sysroot}%{_infodir}/dir
|
2018-03-01 05:10:04 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
# Move libpcprofile.so and libmemusage.so into the proper library directory.
|
|
|
|
# They can be moved without any real consequences because users would not use
|
|
|
|
# them directly.
|
2018-03-14 19:33:34 +00:00
|
|
|
mkdir -p %{glibc_sysroot}%{_libdir}
|
|
|
|
mv -f %{glibc_sysroot}/%{_lib}/lib{pcprofile,memusage}.so \
|
|
|
|
%{glibc_sysroot}%{_libdir}
|
2018-03-01 05:10:04 +00:00
|
|
|
|
2021-08-24 14:00:06 +00:00
|
|
|
# Disallow linking against libc_malloc_debug.
|
|
|
|
rm %{glibc_sysroot}%{_libdir}/libc_malloc_debug.so
|
|
|
|
|
2018-03-01 05:10:04 +00:00
|
|
|
# Strip all of the installed object files.
|
2018-03-14 19:33:34 +00:00
|
|
|
strip -g %{glibc_sysroot}%{_libdir}/*.o
|
2018-03-01 05:10:04 +00:00
|
|
|
|
2018-03-14 19:33:34 +00:00
|
|
|
# The xtrace and memusage scripts have hard-coded paths that need to be
|
|
|
|
# translated to a correct set of paths using the $LIB token which is
|
|
|
|
# dynamically translated by ld.so as the default lib directory.
|
|
|
|
for i in %{glibc_sysroot}%{_prefix}/bin/{xtrace,memusage}; do
|
|
|
|
%if %{with bootstrap}
|
|
|
|
test -w $i || continue
|
|
|
|
%endif
|
|
|
|
sed -e 's~=/%{_lib}/libpcprofile.so~=%{_libdir}/libpcprofile.so~' \
|
|
|
|
-e 's~=/%{_lib}/libmemusage.so~=%{_libdir}/libmemusage.so~' \
|
|
|
|
-e 's~='\''/\\\$LIB/libpcprofile.so~='\''%{_prefix}/\\$LIB/libpcprofile.so~' \
|
|
|
|
-e 's~='\''/\\\$LIB/libmemusage.so~='\''%{_prefix}/\\$LIB/libmemusage.so~' \
|
|
|
|
-i $i
|
|
|
|
done
|
|
|
|
|
2018-09-05 07:26:05 +00:00
|
|
|
##############################################################################
|
|
|
|
# Build an empty libpthread_nonshared.a for compatiliby with applications
|
|
|
|
# that have old linker scripts that reference this file. We ship this only
|
|
|
|
# in compat-libpthread-nonshared sub-package.
|
|
|
|
##############################################################################
|
|
|
|
ar cr %{glibc_sysroot}%{_prefix}/%{_lib}/libpthread_nonshared.a
|
|
|
|
|
2018-03-01 05:10:04 +00:00
|
|
|
##############################################################################
|
|
|
|
# Beyond this point in the install process we no longer modify the set of
|
2020-04-06 09:23:22 +00:00
|
|
|
# installed files.
|
2018-03-01 05:10:04 +00:00
|
|
|
##############################################################################
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# Build the file lists used for describing the package and subpackages.
|
|
|
|
##############################################################################
|
2016-07-20 15:09:24 +00:00
|
|
|
# There are several main file lists (and many more for
|
2016-02-26 09:06:35 +00:00
|
|
|
# the langpack sub-packages (langpack-${lang}.filelist)):
|
2018-07-13 20:10:09 +00:00
|
|
|
# * master.filelist
|
2018-03-14 19:33:34 +00:00
|
|
|
# - Master file list from which all other lists are built.
|
|
|
|
# * glibc.filelist
|
|
|
|
# - Files for the glibc packages.
|
2013-07-24 11:58:38 +00:00
|
|
|
# * common.filelist
|
2018-03-14 19:33:34 +00:00
|
|
|
# - Flies for the common subpackage.
|
2013-07-24 11:58:38 +00:00
|
|
|
# * utils.filelist
|
2018-03-14 19:33:34 +00:00
|
|
|
# - Files for the utils subpackage.
|
2013-07-24 11:58:38 +00:00
|
|
|
# * devel.filelist
|
2018-03-14 19:33:34 +00:00
|
|
|
# - Files for the devel subpackage.
|
2021-01-23 18:16:05 +00:00
|
|
|
# * doc.filelist
|
|
|
|
# - Files for the documentation subpackage.
|
2013-07-24 11:58:38 +00:00
|
|
|
# * headers.filelist
|
2018-03-14 19:33:34 +00:00
|
|
|
# - Files for the headers subpackage.
|
2013-07-24 11:58:38 +00:00
|
|
|
# * static.filelist
|
2018-03-14 19:33:34 +00:00
|
|
|
# - Files for the static subpackage.
|
2018-01-11 12:21:53 +00:00
|
|
|
# * libnsl.filelist
|
2018-03-14 19:33:34 +00:00
|
|
|
# - Files for the libnsl subpackage
|
|
|
|
# * nss_db.filelist
|
|
|
|
# * nss_hesiod.filelist
|
2016-07-20 15:09:24 +00:00
|
|
|
# - File lists for nss_* NSS module subpackages.
|
|
|
|
# * nss-devel.filelist
|
|
|
|
# - File list with the .so symbolic links for NSS packages.
|
2018-09-05 07:26:05 +00:00
|
|
|
# * compat-libpthread-nonshared.filelist.
|
|
|
|
# - File list for compat-libpthread-nonshared subpackage.
|
2013-07-24 11:58:38 +00:00
|
|
|
|
2018-03-14 19:33:34 +00:00
|
|
|
# Create the main file lists. This way we can append to any one of them later
|
|
|
|
# wihtout having to create it. Note these are removed at the start of the
|
|
|
|
# install phase.
|
2018-07-13 20:10:09 +00:00
|
|
|
touch master.filelist
|
2018-03-14 19:33:34 +00:00
|
|
|
touch glibc.filelist
|
|
|
|
touch common.filelist
|
|
|
|
touch utils.filelist
|
2021-06-14 05:45:03 +00:00
|
|
|
touch gconv.filelist
|
2018-03-14 19:33:34 +00:00
|
|
|
touch devel.filelist
|
2021-01-23 18:16:05 +00:00
|
|
|
touch doc.filelist
|
2018-03-14 19:33:34 +00:00
|
|
|
touch headers.filelist
|
|
|
|
touch static.filelist
|
|
|
|
touch libnsl.filelist
|
|
|
|
touch nss_db.filelist
|
|
|
|
touch nss_hesiod.filelist
|
|
|
|
touch nss-devel.filelist
|
2018-09-05 07:26:05 +00:00
|
|
|
touch compat-libpthread-nonshared.filelist
|
2018-03-14 19:33:34 +00:00
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Master file list, excluding a few things.
|
|
|
|
###############################################################################
|
2009-06-26 15:46:27 +00:00
|
|
|
{
|
2018-03-14 19:33:34 +00:00
|
|
|
# List all files or links that we have created during install.
|
|
|
|
# Files with 'etc' are configuration files, likewise 'gconv-modules'
|
|
|
|
# and 'gconv-modules.cache' are caches, and we exclude them.
|
|
|
|
find %{glibc_sysroot} \( -type f -o -type l \) \
|
2009-06-26 15:46:27 +00:00
|
|
|
\( \
|
|
|
|
-name etc -printf "%%%%config " -o \
|
|
|
|
-name gconv-modules.cache \
|
2021-07-15 14:58:22 +00:00
|
|
|
-printf "%%%%verify(not md5 size mtime) " -o \
|
|
|
|
-name gconv-modules* \
|
|
|
|
-printf "%%%%verify(not md5 size mtime) %%%%config(noreplace) " \
|
2009-06-26 15:46:27 +00:00
|
|
|
, \
|
2009-07-30 13:39:12 +00:00
|
|
|
! -path "*/lib/debug/*" -printf "/%%P\n" \)
|
2018-03-14 19:33:34 +00:00
|
|
|
# List all directories with a %%dir prefix. We omit the info directory and
|
2014-12-05 06:53:29 +00:00
|
|
|
# all directories in (and including) /usr/share/locale.
|
2018-03-14 19:33:34 +00:00
|
|
|
find %{glibc_sysroot} -type d \
|
2014-12-05 06:53:29 +00:00
|
|
|
\( -path '*%{_prefix}/share/locale' -prune -o \
|
2015-08-28 19:29:26 +00:00
|
|
|
\( -path '*%{_prefix}/share/*' \
|
|
|
|
%if %{with docs}
|
|
|
|
! -path '*%{_infodir}' -o \
|
|
|
|
%endif
|
2010-05-19 12:00:46 +00:00
|
|
|
-path "*%{_prefix}/include/*" \
|
2014-12-05 06:53:29 +00:00
|
|
|
\) -printf "%%%%dir /%%P\n" \)
|
2009-06-26 15:46:27 +00:00
|
|
|
} | {
|
2016-02-26 09:06:35 +00:00
|
|
|
# Also remove the *.mo entries. We will add them to the
|
|
|
|
# language specific sub-packages.
|
2016-07-20 15:09:24 +00:00
|
|
|
# libnss_ files go into subpackages related to NSS modules.
|
2016-02-26 09:06:35 +00:00
|
|
|
# and .*/share/i18n/charmaps/.*), they go into the sub-package
|
2016-07-20 15:09:24 +00:00
|
|
|
# "locale-source":
|
2014-12-05 11:09:35 +00:00
|
|
|
sed -e '\,.*/share/locale/\([^/_]\+\).*/LC_MESSAGES/.*\.mo,d' \
|
2016-02-26 09:06:35 +00:00
|
|
|
-e '\,.*/share/i18n/locales/.*,d' \
|
|
|
|
-e '\,.*/share/i18n/charmaps/.*,d' \
|
2018-03-14 19:33:34 +00:00
|
|
|
-e '\,.*/etc/\(localtime\|nsswitch.conf\|ld\.so\.conf\|ld\.so\.cache\|default\|rpc\|gai\.conf\),d' \
|
|
|
|
-e '\,.*/%{_libdir}/lib\(pcprofile\|memusage\)\.so,d' \
|
|
|
|
-e '\,.*/bin/\(memusage\|mtrace\|xtrace\|pcprofiledump\),d'
|
2018-07-13 20:10:09 +00:00
|
|
|
} | sort > master.filelist
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2018-03-14 19:33:34 +00:00
|
|
|
# The master file list is now used by each subpackage to list their own
|
|
|
|
# files. We go through each package and subpackage now and create their lists.
|
|
|
|
# Each subpackage picks the files from the master list that they need.
|
|
|
|
# The order of the subpackage list generation does not matter.
|
2014-12-05 11:09:35 +00:00
|
|
|
|
2018-07-13 20:10:09 +00:00
|
|
|
# Make the master file list read-only after this point to avoid accidental
|
|
|
|
# modification.
|
|
|
|
chmod 0444 master.filelist
|
|
|
|
|
2018-03-14 19:33:34 +00:00
|
|
|
###############################################################################
|
|
|
|
# glibc
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
# Add all files with the following exceptions:
|
|
|
|
# - The info files '%{_infodir}/dir'
|
|
|
|
# - The partial (lib*_p.a) static libraries, include files.
|
2021-12-13 12:41:58 +00:00
|
|
|
# - The static files, objects, and unversioned DSOs.
|
2018-03-14 19:33:34 +00:00
|
|
|
# - The bin, locale, some sbin, and share.
|
2019-05-17 01:43:50 +00:00
|
|
|
# - We want iconvconfig in the main package and we do this by using
|
|
|
|
# a double negation of -v and [^i] so it removes all files in
|
|
|
|
# sbin *but* iconvconfig.
|
2018-03-14 19:33:34 +00:00
|
|
|
# - All the libnss files (we add back the ones we want later).
|
|
|
|
# - All bench test binaries.
|
|
|
|
# - The aux-cache, since it's handled specially in the files section.
|
2021-06-14 05:45:03 +00:00
|
|
|
# - Extra gconv modules. We add the required modules later.
|
2018-07-13 20:10:09 +00:00
|
|
|
cat master.filelist \
|
2018-03-14 19:33:34 +00:00
|
|
|
| grep -v \
|
|
|
|
-e '%{_infodir}' \
|
|
|
|
-e '%{_libdir}/lib.*_p.a' \
|
|
|
|
-e '%{_prefix}/include' \
|
|
|
|
-e '%{_libdir}/lib.*\.a' \
|
|
|
|
-e '%{_libdir}/.*\.o' \
|
|
|
|
-e '%{_libdir}/lib.*\.so' \
|
2021-06-14 05:45:03 +00:00
|
|
|
-e '%{_libdir}/gconv/.*\.so$' \
|
|
|
|
-e '%{_libdir}/gconv/gconv-modules.d/gconv-modules-extra\.conf$' \
|
2018-03-14 19:33:34 +00:00
|
|
|
-e '%{_prefix}/bin' \
|
|
|
|
-e '%{_prefix}/lib/locale' \
|
2019-05-17 01:43:50 +00:00
|
|
|
-e '%{_prefix}/sbin/[^i]' \
|
2018-03-14 19:33:34 +00:00
|
|
|
-e '%{_prefix}/share' \
|
|
|
|
-e '/var/db/Makefile' \
|
|
|
|
-e '/libnss_.*\.so[0-9.]*$' \
|
|
|
|
-e '/libnsl' \
|
|
|
|
-e 'glibc-benchtests' \
|
|
|
|
-e 'aux-cache' \
|
|
|
|
> glibc.filelist
|
|
|
|
|
|
|
|
# Add specific files:
|
|
|
|
# - The nss_files, nss_compat, and nss_db files.
|
|
|
|
# - The libmemusage.so and libpcprofile.so used by utils.
|
|
|
|
for module in compat files dns; do
|
2018-07-13 20:10:09 +00:00
|
|
|
cat master.filelist \
|
2018-03-14 19:33:34 +00:00
|
|
|
| grep -E \
|
|
|
|
-e "/libnss_$module(\.so\.[0-9.]+|-[0-9.]+\.so)$" \
|
|
|
|
>> glibc.filelist
|
2004-09-09 05:40:37 +00:00
|
|
|
done
|
2018-07-13 20:10:09 +00:00
|
|
|
grep -e "libmemusage.so" -e "libpcprofile.so" master.filelist >> glibc.filelist
|
2018-03-14 19:33:34 +00:00
|
|
|
|
2021-06-14 05:45:03 +00:00
|
|
|
###############################################################################
|
|
|
|
# glibc-gconv-extra
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
grep -e "gconv-modules-extra.conf" master.filelist > gconv.filelist
|
|
|
|
|
|
|
|
# Put the essential gconv modules into the main package.
|
|
|
|
GconvBaseModules="ANSI_X3.110 ISO8859-15 ISO8859-1 CP1252"
|
|
|
|
GconvBaseModules="$GconvBaseModules UNICODE UTF-16 UTF-32 UTF-7"
|
|
|
|
%ifarch s390 s390x
|
|
|
|
GconvBaseModules="$GconvBaseModules ISO-8859-1_CP037_Z900 UTF8_UTF16_Z9"
|
|
|
|
GconvBaseModules="$GconvBaseModules UTF16_UTF32_Z9 UTF8_UTF32_Z9"
|
|
|
|
%endif
|
|
|
|
GconvAllModules=$(cat master.filelist |
|
|
|
|
sed -n 's|%{_libdir}/gconv/\(.*\)\.so|\1|p')
|
|
|
|
|
|
|
|
# Put the base modules into glibc and the rest into glibc-gconv-extra
|
|
|
|
for conv in $GconvAllModules; do
|
|
|
|
if echo $GconvBaseModules | grep -q $conv; then
|
|
|
|
grep -E -e "%{_libdir}/gconv/$conv.so$" \
|
|
|
|
master.filelist >> glibc.filelist
|
|
|
|
else
|
|
|
|
grep -E -e "%{_libdir}/gconv/$conv.so$" \
|
|
|
|
master.filelist >> gconv.filelist
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2018-03-14 19:33:34 +00:00
|
|
|
###############################################################################
|
|
|
|
# glibc-devel
|
|
|
|
###############################################################################
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2021-05-25 15:44:07 +00:00
|
|
|
# Static libraries that land in glibc-devel, not glibc-static.
|
2021-07-05 04:00:05 +00:00
|
|
|
devel_static_library_pattern='/lib\(\(c\|nldbl\|mvec\)_nonshared\|g\|ieee\|mcheck\|pthread\|dl\|rt\|util\|anl\)\.a$'
|
2021-05-25 15:44:07 +00:00
|
|
|
# Static libraries neither in glibc-devel nor in glibc-static.
|
|
|
|
other_static_library_pattern='/libpthread_nonshared\.a'
|
|
|
|
|
2018-07-13 20:10:09 +00:00
|
|
|
grep '%{_libdir}/lib.*\.a' master.filelist \
|
2021-05-25 15:44:07 +00:00
|
|
|
| grep "$devel_static_library_pattern" \
|
|
|
|
| grep -v "$other_static_library_pattern" \
|
2021-01-23 18:16:05 +00:00
|
|
|
> devel.filelist
|
2018-03-14 19:33:34 +00:00
|
|
|
|
|
|
|
# Put all of the object files and *.so (not the versioned ones) into the
|
|
|
|
# devel package.
|
2018-07-13 20:10:09 +00:00
|
|
|
grep '%{_libdir}/.*\.o' < master.filelist >> devel.filelist
|
|
|
|
grep '%{_libdir}/lib.*\.so' < master.filelist >> devel.filelist
|
2018-03-14 19:33:34 +00:00
|
|
|
# The exceptions are:
|
|
|
|
# - libmemusage.so and libpcprofile.so in glibc used by utils.
|
|
|
|
# - libnss_*.so which are in nss-devel.
|
|
|
|
sed -i -e '\,libmemusage.so,d' \
|
|
|
|
-e '\,libpcprofile.so,d' \
|
|
|
|
-e '\,/libnss_[a-z]*\.so$,d' \
|
|
|
|
devel.filelist
|
|
|
|
|
2021-06-27 13:06:13 +00:00
|
|
|
%if %{glibc_autorequires}
|
|
|
|
mkdir -p %{glibc_sysroot}/%{_rpmconfigdir} %{glibc_sysroot}/%{_fileattrsdir}
|
2021-12-13 12:41:58 +00:00
|
|
|
sed < %{SOURCE3} \
|
2021-06-27 13:06:13 +00:00
|
|
|
-e s/@VERSION@/%{version}/ \
|
|
|
|
-e s/@RELEASE@/%{release}/ \
|
|
|
|
-e s/@SYMVER@/%{glibc_autorequires_symver}/ \
|
|
|
|
> %{glibc_sysroot}/%{_rpmconfigdir}/glibc.req
|
2021-12-13 12:41:58 +00:00
|
|
|
cp %{SOURCE4} %{glibc_sysroot}/%{_fileattrsdir}/glibc.attr
|
2021-06-27 13:06:13 +00:00
|
|
|
%endif
|
|
|
|
|
2021-01-23 18:16:05 +00:00
|
|
|
###############################################################################
|
|
|
|
# glibc-doc
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
%if %{with docs}
|
|
|
|
# Put the info files into the doc file list, but exclude the generated dir.
|
|
|
|
grep '%{_infodir}' master.filelist | grep -v '%{_infodir}/dir' > doc.filelist
|
|
|
|
grep '%{_docdir}' master.filelist >> doc.filelist
|
|
|
|
%endif
|
|
|
|
|
2018-03-14 19:33:34 +00:00
|
|
|
###############################################################################
|
|
|
|
# glibc-headers
|
|
|
|
###############################################################################
|
|
|
|
|
2020-04-03 15:28:28 +00:00
|
|
|
%if %{need_headers_package}
|
2015-06-17 20:40:15 +00:00
|
|
|
# The glibc-headers package includes only common files which are identical
|
|
|
|
# across all multilib packages. We must keep gnu/stubs.h and gnu/lib-names.h
|
|
|
|
# in the glibc-headers package, but the -32, -64, -64-v1, and -64-v2 versions
|
2020-04-03 15:28:28 +00:00
|
|
|
# go into glibc-devel.
|
2018-07-13 20:10:09 +00:00
|
|
|
grep '%{_prefix}/include/gnu/stubs-.*\.h$' < master.filelist >> devel.filelist || :
|
|
|
|
grep '%{_prefix}/include/gnu/lib-names-.*\.h$' < master.filelist >> devel.filelist || :
|
2013-07-24 11:58:38 +00:00
|
|
|
# Put the include files into headers file list.
|
2018-07-13 20:10:09 +00:00
|
|
|
grep '%{_prefix}/include' < master.filelist \
|
2022-07-05 09:03:37 +00:00
|
|
|
| grep -E -v '%{_prefix}/include/gnu/stubs-.*\.h$' \
|
|
|
|
| grep -E -v '%{_prefix}/include/gnu/lib-names-.*\.h$' \
|
2015-06-17 20:40:15 +00:00
|
|
|
> headers.filelist
|
2020-04-03 15:28:28 +00:00
|
|
|
%else
|
|
|
|
# If there is no glibc-headers package, all header files go into the
|
|
|
|
# glibc-devel package.
|
|
|
|
grep '%{_prefix}/include' < master.filelist >> devel.filelist
|
|
|
|
%endif
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2018-03-14 19:33:34 +00:00
|
|
|
###############################################################################
|
|
|
|
# glibc-static
|
|
|
|
###############################################################################
|
2013-07-24 11:58:38 +00:00
|
|
|
|
|
|
|
# Put the rest of the static files into the static package.
|
2018-07-13 20:10:09 +00:00
|
|
|
grep '%{_libdir}/lib.*\.a' < master.filelist \
|
2021-05-25 15:44:07 +00:00
|
|
|
| grep -v "$devel_static_library_pattern" \
|
|
|
|
| grep -v "$other_static_library_pattern" \
|
2009-02-18 20:47:04 +00:00
|
|
|
> static.filelist
|
2013-07-24 11:58:38 +00:00
|
|
|
|
2018-03-14 19:33:34 +00:00
|
|
|
###############################################################################
|
|
|
|
# glibc-common
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
# All of the bin and certain sbin files go into the common package except
|
2021-12-13 12:41:58 +00:00
|
|
|
# iconvconfig which needs to go in glibc. The iconvconfig binary is kept in
|
|
|
|
# the main glibc package because we use it in the post-install scriptlet to
|
|
|
|
# rebuild the gconv-modules.cache. The makedb binary is in nss_db.
|
2019-08-27 19:07:36 +00:00
|
|
|
grep '%{_prefix}/bin' master.filelist \
|
|
|
|
| grep -v '%{_prefix}/bin/makedb' \
|
|
|
|
>> common.filelist
|
2019-05-17 01:43:50 +00:00
|
|
|
grep '%{_prefix}/sbin' master.filelist \
|
2021-12-13 12:41:58 +00:00
|
|
|
| grep -v '%{_prefix}/sbin/iconvconfig' >> common.filelist
|
2018-03-14 19:33:34 +00:00
|
|
|
# All of the files under share go into the common package since they should be
|
|
|
|
# multilib-independent.
|
|
|
|
# Exceptions:
|
|
|
|
# - The actual share directory, not owned by us.
|
2021-01-23 18:16:05 +00:00
|
|
|
# - The info files which go into doc, and the info directory.
|
|
|
|
# - All documentation files, which go into doc.
|
2018-07-13 20:10:09 +00:00
|
|
|
grep '%{_prefix}/share' master.filelist \
|
2018-03-14 19:33:34 +00:00
|
|
|
| grep -v \
|
|
|
|
-e '%{_prefix}/share/info/libc.info.*' \
|
|
|
|
-e '%%dir %{prefix}/share/info' \
|
|
|
|
-e '%%dir %{prefix}/share' \
|
2021-01-23 18:16:05 +00:00
|
|
|
-e '%{_docdir}' \
|
2018-03-14 19:33:34 +00:00
|
|
|
>> common.filelist
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2018-03-14 19:33:34 +00:00
|
|
|
###############################################################################
|
|
|
|
# glibc-utils
|
|
|
|
###############################################################################
|
2013-07-24 11:58:38 +00:00
|
|
|
|
|
|
|
# Add the utils scripts and programs to the utils subpackage.
|
2011-09-16 12:17:45 +00:00
|
|
|
cat > utils.filelist <<EOF
|
2017-11-28 17:40:52 +00:00
|
|
|
%if %{without bootstrap}
|
2004-09-09 05:40:37 +00:00
|
|
|
%{_prefix}/bin/memusage
|
|
|
|
%{_prefix}/bin/memusagestat
|
2019-02-17 11:02:24 +00:00
|
|
|
%endif
|
2019-02-19 08:00:34 +00:00
|
|
|
%{_prefix}/bin/mtrace
|
2004-09-09 05:40:37 +00:00
|
|
|
%{_prefix}/bin/pcprofiledump
|
|
|
|
%{_prefix}/bin/xtrace
|
|
|
|
EOF
|
|
|
|
|
2018-03-14 19:33:34 +00:00
|
|
|
###############################################################################
|
|
|
|
# nss_db, nss_hesiod
|
|
|
|
###############################################################################
|
|
|
|
|
2016-07-20 15:09:24 +00:00
|
|
|
# Move the NSS-related files to the NSS subpackages. Be careful not
|
|
|
|
# to pick up .debug files, and the -devel symbolic links.
|
2018-03-14 19:33:34 +00:00
|
|
|
for module in db hesiod; do
|
2021-06-15 11:09:37 +00:00
|
|
|
grep -E "/libnss_$module\\.so\\.[0-9.]+\$" \
|
2018-07-13 20:10:09 +00:00
|
|
|
master.filelist > nss_$module.filelist
|
2016-07-20 15:09:24 +00:00
|
|
|
done
|
2019-08-27 19:07:36 +00:00
|
|
|
grep -E "%{_prefix}/bin/makedb$" master.filelist >> nss_db.filelist
|
2018-03-14 19:33:34 +00:00
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# nss-devel
|
|
|
|
###############################################################################
|
|
|
|
|
2016-07-20 15:09:24 +00:00
|
|
|
# Symlinks go into the nss-devel package (instead of the main devel
|
|
|
|
# package).
|
2018-07-13 20:10:09 +00:00
|
|
|
grep '/libnss_[a-z]*\.so$' master.filelist > nss-devel.filelist
|
2018-03-14 19:33:34 +00:00
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# libnsl
|
|
|
|
###############################################################################
|
2016-07-20 15:09:24 +00:00
|
|
|
|
2018-01-11 12:21:53 +00:00
|
|
|
# Prepare the libnsl-related file lists.
|
2021-06-15 11:09:37 +00:00
|
|
|
grep -E '/libnsl\.so\.[0-9]+$' master.filelist > libnsl.filelist
|
2018-01-11 12:21:53 +00:00
|
|
|
test $(wc -l < libnsl.filelist) -eq 1
|
2018-03-14 19:33:34 +00:00
|
|
|
|
2019-02-17 11:02:24 +00:00
|
|
|
%if %{with benchtests}
|
2018-03-14 19:33:34 +00:00
|
|
|
###############################################################################
|
|
|
|
# glibc-benchtests
|
|
|
|
###############################################################################
|
2018-01-11 12:21:53 +00:00
|
|
|
|
2018-03-01 05:10:04 +00:00
|
|
|
# List of benchmarks.
|
2015-05-08 06:19:59 +00:00
|
|
|
find build-%{target}/benchtests -type f -executable | while read b; do
|
|
|
|
echo "%{_prefix}/libexec/glibc-benchtests/$(basename $b)"
|
|
|
|
done >> benchtests.filelist
|
|
|
|
# ... and the makefile.
|
2021-12-13 12:41:58 +00:00
|
|
|
for b in %{SOURCE1} %{SOURCE2}; do
|
2015-05-08 06:19:59 +00:00
|
|
|
echo "%{_prefix}/libexec/glibc-benchtests/$(basename $b)" >> benchtests.filelist
|
|
|
|
done
|
2018-03-01 05:10:04 +00:00
|
|
|
# ... and finally, the comparison scripts.
|
2015-05-08 06:19:59 +00:00
|
|
|
echo "%{_prefix}/libexec/glibc-benchtests/benchout.schema.json" >> benchtests.filelist
|
|
|
|
echo "%{_prefix}/libexec/glibc-benchtests/compare_bench.py*" >> benchtests.filelist
|
|
|
|
echo "%{_prefix}/libexec/glibc-benchtests/import_bench.py*" >> benchtests.filelist
|
|
|
|
echo "%{_prefix}/libexec/glibc-benchtests/validate_benchout.py*" >> benchtests.filelist
|
|
|
|
%endif
|
|
|
|
|
2018-09-05 07:26:05 +00:00
|
|
|
###############################################################################
|
|
|
|
# compat-libpthread-nonshared
|
|
|
|
###############################################################################
|
|
|
|
echo "%{_libdir}/libpthread_nonshared.a" >> compat-libpthread-nonshared.filelist
|
|
|
|
|
2014-09-06 18:15:15 +00:00
|
|
|
##############################################################################
|
|
|
|
# Run the glibc testsuite
|
|
|
|
##############################################################################
|
|
|
|
%check
|
2015-08-28 19:29:26 +00:00
|
|
|
%if %{with testsuite}
|
2014-09-27 03:44:17 +00:00
|
|
|
|
2018-01-19 11:02:32 +00:00
|
|
|
# Run the glibc tests. If any tests fail to build we exit %check with
|
|
|
|
# an error, otherwise we print the test failure list and the failed
|
|
|
|
# test output and continue. Write to standard error to avoid
|
|
|
|
# synchronization issues with make and shell tracing output if
|
|
|
|
# standard output and standard error are different pipes.
|
2014-09-27 03:44:17 +00:00
|
|
|
run_tests () {
|
2018-01-19 11:02:32 +00:00
|
|
|
# This hides a test suite build failure, which should be fatal. We
|
|
|
|
# check "Summary of test results:" below to verify that all tests
|
|
|
|
# were built and run.
|
2020-07-23 04:03:10 +00:00
|
|
|
%make_build check |& tee rpmbuild.check.log >&2
|
2018-01-19 11:02:32 +00:00
|
|
|
test -n tests.sum
|
|
|
|
if ! grep -q '^Summary of test results:$' rpmbuild.check.log ; then
|
|
|
|
echo "FAIL: test suite build of target: $(basename "$(pwd)")" >& 2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
set +x
|
|
|
|
grep -v ^PASS: tests.sum > rpmbuild.tests.sum.not-passing || true
|
|
|
|
if test -n rpmbuild.tests.sum.not-passing ; then
|
|
|
|
echo ===================FAILED TESTS===================== >&2
|
|
|
|
echo "Target: $(basename "$(pwd)")" >& 2
|
|
|
|
cat rpmbuild.tests.sum.not-passing >&2
|
|
|
|
while read failed_code failed_test ; do
|
|
|
|
for suffix in out test-result ; do
|
|
|
|
if test -e "$failed_test.$suffix"; then
|
|
|
|
echo >&2
|
|
|
|
echo "=====$failed_code $failed_test.$suffix=====" >&2
|
|
|
|
cat -- "$failed_test.$suffix" >&2
|
|
|
|
echo >&2
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
done <rpmbuild.tests.sum.not-passing
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Unconditonally dump differences in the system call list.
|
|
|
|
echo "* System call consistency checks:" >&2
|
|
|
|
cat misc/tst-syscall-list.out >&2
|
|
|
|
set -x
|
2014-09-27 03:44:17 +00:00
|
|
|
}
|
|
|
|
|
2014-09-06 18:15:15 +00:00
|
|
|
# Increase timeouts
|
|
|
|
export TIMEOUTFACTOR=16
|
|
|
|
parent=$$
|
|
|
|
echo ====================TESTING=========================
|
2018-07-11 13:54:24 +00:00
|
|
|
|
|
|
|
# Default libraries.
|
2014-09-06 18:15:15 +00:00
|
|
|
pushd build-%{target}
|
2014-09-27 03:44:17 +00:00
|
|
|
run_tests
|
2014-09-06 18:15:15 +00:00
|
|
|
popd
|
|
|
|
|
|
|
|
echo ====================TESTING END=====================
|
|
|
|
PLTCMD='/^Relocation section .*\(\.rela\?\.plt\|\.rela\.IA_64\.pltoff\)/,/^$/p'
|
|
|
|
echo ====================PLT RELOCS LD.SO================
|
2018-03-14 19:33:34 +00:00
|
|
|
readelf -Wr %{glibc_sysroot}/%{_lib}/ld-*.so | sed -n -e "$PLTCMD"
|
2014-09-06 18:15:15 +00:00
|
|
|
echo ====================PLT RELOCS LIBC.SO==============
|
2018-03-14 19:33:34 +00:00
|
|
|
readelf -Wr %{glibc_sysroot}/%{_lib}/libc-*.so | sed -n -e "$PLTCMD"
|
2014-09-06 18:15:15 +00:00
|
|
|
echo ====================PLT RELOCS END==================
|
|
|
|
|
2019-04-11 19:53:43 +00:00
|
|
|
# Obtain a way to run the dynamic loader. Avoid matching the symbolic
|
|
|
|
# link and then pick the first loader (although there should be only
|
2021-06-15 11:09:37 +00:00
|
|
|
# one). See wrap-find-debuginfo.sh.
|
|
|
|
ldso_path="$(find %{glibc_sysroot}/ -regextype posix-extended \
|
|
|
|
-regex '.*/ld(-.*|64|)\.so\.[0-9]+$' -type f | LC_ALL=C sort | head -n1)"
|
|
|
|
run_ldso="$ldso_path --library-path %{glibc_sysroot}/%{_lib}"
|
2017-06-22 12:48:21 +00:00
|
|
|
|
|
|
|
# Show the auxiliary vector as seen by the new library
|
|
|
|
# (even if we do not perform the valgrind test).
|
2019-04-11 19:53:43 +00:00
|
|
|
LD_SHOW_AUXV=1 $run_ldso /bin/true
|
2017-06-22 12:48:21 +00:00
|
|
|
|
2020-12-16 21:20:12 +00:00
|
|
|
%if 0%{?_enable_debug_packages}
|
2019-04-11 19:53:43 +00:00
|
|
|
# Finally, check if valgrind runs with the new glibc.
|
|
|
|
# We want to fail building if valgrind is not able to run with this glibc so
|
|
|
|
# that we can then coordinate with valgrind to get it fixed before we update
|
|
|
|
# glibc.
|
2017-06-22 12:48:21 +00:00
|
|
|
%if %{with valgrind}
|
2019-04-11 19:53:43 +00:00
|
|
|
$run_ldso /usr/bin/valgrind --error-exitcode=1 \
|
|
|
|
$run_ldso /usr/bin/true
|
|
|
|
# true --help performs some memory allocations.
|
|
|
|
$run_ldso /usr/bin/valgrind --error-exitcode=1 \
|
|
|
|
$run_ldso /usr/bin/true --help >/dev/null
|
2014-09-23 11:28:34 +00:00
|
|
|
%endif
|
2020-12-16 21:20:12 +00:00
|
|
|
%endif
|
2014-09-23 11:28:34 +00:00
|
|
|
|
2019-06-17 13:45:58 +00:00
|
|
|
%endif
|
2014-09-06 18:15:15 +00:00
|
|
|
|
|
|
|
|
2010-11-12 12:29:24 +00:00
|
|
|
%pre -p <lua>
|
|
|
|
-- Check that the running kernel is new enough
|
|
|
|
required = '%{enablekernel}'
|
2010-12-13 16:58:18 +00:00
|
|
|
rel = posix.uname("%r")
|
|
|
|
if rpm.vercmp(rel, required) < 0 then
|
|
|
|
error("FATAL: kernel too old", 0)
|
2010-11-12 12:29:24 +00:00
|
|
|
end
|
|
|
|
|
2019-05-17 01:43:50 +00:00
|
|
|
%post -p <lua>
|
2021-07-30 19:34:25 +00:00
|
|
|
%glibc_post_funcs
|
2019-05-17 01:43:50 +00:00
|
|
|
-- (1) Remove multilib libraries from previous installs.
|
|
|
|
-- In order to support in-place upgrades, we must immediately remove
|
|
|
|
-- obsolete platform directories after installing a new glibc
|
|
|
|
-- version. RPM only deletes files removed by updates near the end
|
|
|
|
-- of the transaction. If we did not remove the obsolete platform
|
|
|
|
-- directories here, they may be preferred by the dynamic linker
|
|
|
|
-- during the execution of subsequent RPM scriptlets, likely
|
|
|
|
-- resulting in process startup failures.
|
|
|
|
|
|
|
|
-- Full set of libraries glibc may install.
|
|
|
|
install_libs = { "anl", "BrokenLocale", "c", "dl", "m", "mvec",
|
|
|
|
"nss_compat", "nss_db", "nss_dns", "nss_files",
|
|
|
|
"nss_hesiod", "pthread", "resolv", "rt", "SegFault",
|
|
|
|
"thread_db", "util" }
|
|
|
|
|
|
|
|
-- We are going to remove these libraries. Generally speaking we remove
|
|
|
|
-- all core libraries in the multilib directory.
|
2021-06-15 11:09:37 +00:00
|
|
|
-- For the versioned install names, the version are [2.0,9.9*], so we
|
2019-05-17 01:43:50 +00:00
|
|
|
-- match "libc-2.0.so" and so on up to "libc-9.9*".
|
2021-06-15 11:09:37 +00:00
|
|
|
-- For the unversioned install names, we match the library plus ".so."
|
|
|
|
-- followed by digests.
|
2019-05-17 01:43:50 +00:00
|
|
|
remove_regexps = {}
|
|
|
|
for i = 1, #install_libs do
|
2021-06-15 11:09:37 +00:00
|
|
|
-- Versioned install name.
|
2021-07-24 10:23:35 +00:00
|
|
|
remove_regexps[#remove_regexps + 1] = ("lib" .. install_libs[i]
|
|
|
|
.. "%%-[2-9]%%.[0-9]+%%.so$")
|
2021-06-15 11:09:37 +00:00
|
|
|
-- Unversioned install name.
|
2021-07-24 10:23:35 +00:00
|
|
|
remove_regexps[#remove_regexps + 1] = ("lib" .. install_libs[i]
|
|
|
|
.. "%%.so%%.[0-9]+$")
|
2019-05-17 01:43:50 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
-- Two exceptions:
|
|
|
|
remove_regexps[#install_libs + 1] = "libthread_db%%-1%%.0%%.so"
|
|
|
|
remove_regexps[#install_libs + 2] = "libSegFault%%.so"
|
|
|
|
|
|
|
|
-- We are going to search these directories.
|
|
|
|
local remove_dirs = { "%{_libdir}/i686",
|
|
|
|
"%{_libdir}/i686/nosegneg",
|
|
|
|
"%{_libdir}/power6",
|
|
|
|
"%{_libdir}/power7",
|
2021-05-07 09:41:27 +00:00
|
|
|
"%{_libdir}/power8",
|
|
|
|
"%{_libdir}/power9",
|
|
|
|
}
|
2019-05-17 01:43:50 +00:00
|
|
|
|
2021-07-19 11:40:55 +00:00
|
|
|
-- Add all the subdirectories of the glibc-hwcaps subdirectory.
|
|
|
|
repeat
|
|
|
|
local iter = posix.files("%{_libdir}/glibc-hwcaps")
|
|
|
|
if iter ~= nil then
|
|
|
|
for entry in iter do
|
|
|
|
if entry ~= "." and entry ~= ".." then
|
|
|
|
local path = "%{_libdir}/glibc-hwcaps/" .. entry
|
|
|
|
if posix.access(path .. "/.", "x") then
|
|
|
|
remove_dirs[#remove_dirs + 1] = path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
until true
|
|
|
|
|
2019-05-17 01:43:50 +00:00
|
|
|
-- Walk all the directories with files we need to remove...
|
|
|
|
for _, rdir in ipairs (remove_dirs) do
|
|
|
|
if posix.access (rdir) then
|
|
|
|
-- If the directory exists we look at all the files...
|
|
|
|
local remove_files = posix.files (rdir)
|
|
|
|
for rfile in remove_files do
|
|
|
|
for _, rregexp in ipairs (remove_regexps) do
|
|
|
|
-- Does it match the regexp?
|
|
|
|
local dso = string.match (rfile, rregexp)
|
|
|
|
if (dso ~= nil) then
|
|
|
|
-- Removing file...
|
|
|
|
os.remove (rdir .. '/' .. rfile)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- (2) Update /etc/ld.so.conf
|
|
|
|
-- Next we update /etc/ld.so.conf to ensure that it starts with
|
|
|
|
-- a literal "include ld.so.conf.d/*.conf".
|
|
|
|
|
|
|
|
local ldsoconf = "/etc/ld.so.conf"
|
|
|
|
local ldsoconf_tmp = "/etc/glibc_post_upgrade.ld.so.conf"
|
|
|
|
|
|
|
|
if posix.access (ldsoconf) then
|
|
|
|
|
|
|
|
-- We must have a "include ld.so.conf.d/*.conf" line.
|
|
|
|
local have_include = false
|
|
|
|
for line in io.lines (ldsoconf) do
|
|
|
|
-- This must match, and we don't ignore whitespace.
|
|
|
|
if string.match (line, "^include ld.so.conf.d/%%*%%.conf$") ~= nil then
|
|
|
|
have_include = true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if not have_include then
|
|
|
|
-- Insert "include ld.so.conf.d/*.conf" line at the start of the
|
|
|
|
-- file. We only support one of these post upgrades running at
|
|
|
|
-- a time (temporary file name is fixed).
|
|
|
|
local tmp_fd = io.open (ldsoconf_tmp, "w")
|
|
|
|
if tmp_fd ~= nil then
|
|
|
|
tmp_fd:write ("include ld.so.conf.d/*.conf\n")
|
|
|
|
for line in io.lines (ldsoconf) do
|
|
|
|
tmp_fd:write (line .. "\n")
|
|
|
|
end
|
|
|
|
tmp_fd:close ()
|
|
|
|
local res = os.rename (ldsoconf_tmp, ldsoconf)
|
|
|
|
if res == nil then
|
|
|
|
io.stdout:write ("Error: Unable to update configuration file (rename).\n")
|
|
|
|
end
|
|
|
|
else
|
|
|
|
io.stdout:write ("Error: Unable to update configuration file (open).\n")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- (3) Rebuild ld.so.cache early.
|
|
|
|
-- If the format of the cache changes then we need to rebuild
|
|
|
|
-- the cache early to avoid any problems running binaries with
|
|
|
|
-- the new glibc.
|
|
|
|
|
2022-02-22 18:55:20 +00:00
|
|
|
call_ldconfig()
|
2019-05-17 01:43:50 +00:00
|
|
|
|
|
|
|
-- (4) Update gconv modules cache.
|
|
|
|
-- If the /usr/lib/gconv/gconv-modules.cache exists, then update it
|
|
|
|
-- with the latest set of modules that were just installed.
|
|
|
|
-- We assume that the cache is in _libdir/gconv and called
|
|
|
|
-- "gconv-modules.cache".
|
|
|
|
|
2021-07-30 19:34:25 +00:00
|
|
|
update_gconv_modules_cache()
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2021-07-13 12:13:46 +00:00
|
|
|
-- (5) On upgrades, restart systemd if installed. "systemctl -q" does
|
|
|
|
-- not suppress the error message (which is common in chroots), so
|
2022-02-22 18:55:20 +00:00
|
|
|
-- open-code rpm.execute with standard error suppressed.
|
2021-07-13 13:32:56 +00:00
|
|
|
if tonumber(arg[2]) >= 2
|
|
|
|
and posix.access("%{_prefix}/bin/systemctl", "x")
|
|
|
|
then
|
2021-07-13 12:13:46 +00:00
|
|
|
local pid = posix.fork()
|
|
|
|
if pid == 0 then
|
|
|
|
posix.redirect2null(2)
|
2022-02-22 20:33:20 +00:00
|
|
|
posix.exec("%{_prefix}/bin/systemctl", "daemon-reexec")
|
2021-07-13 12:13:46 +00:00
|
|
|
elseif pid > 0 then
|
|
|
|
posix.wait(pid)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-05 10:20:08 +00:00
|
|
|
%posttrans all-langpacks -e -p <lua>
|
|
|
|
-- The old glibc-all-langpacks postun scriptlet deleted the locale-archive
|
|
|
|
-- file, so we may have to resurrect it on upgrades.
|
|
|
|
local archive_path = "%{_prefix}/lib/locale/locale-archive"
|
|
|
|
local real_path = "%{_prefix}/lib/locale/locale-archive.real"
|
|
|
|
local stat_archive = posix.stat(archive_path)
|
|
|
|
local stat_real = posix.stat(real_path)
|
|
|
|
-- If the hard link was removed, restore it.
|
|
|
|
if stat_archive ~= nil and stat_real ~= nil
|
|
|
|
and (stat_archive.ino ~= stat_real.ino
|
|
|
|
or stat_archive.dev ~= stat_real.dev) then
|
|
|
|
posix.unlink(archive_path)
|
|
|
|
stat_archive = nil
|
|
|
|
end
|
|
|
|
-- If the file is gone, restore it.
|
|
|
|
if stat_archive == nil then
|
|
|
|
posix.link(real_path, archive_path)
|
|
|
|
end
|
|
|
|
-- Remove .rpmsave file potentially created due to config file change.
|
|
|
|
local save_path = archive_path .. ".rpmsave"
|
|
|
|
if posix.access(save_path) then
|
|
|
|
posix.unlink(save_path)
|
|
|
|
end
|
|
|
|
|
2021-07-30 19:34:25 +00:00
|
|
|
%post gconv-extra -p <lua>
|
|
|
|
%glibc_post_funcs
|
|
|
|
update_gconv_modules_cache ()
|
|
|
|
|
|
|
|
%postun gconv-extra -p <lua>
|
|
|
|
%glibc_post_funcs
|
|
|
|
update_gconv_modules_cache ()
|
2021-06-14 05:45:03 +00:00
|
|
|
|
2018-07-13 20:10:09 +00:00
|
|
|
%files -f glibc.filelist
|
2013-08-15 03:48:25 +00:00
|
|
|
%dir %{_prefix}/%{_lib}/audit
|
2004-09-09 05:40:37 +00:00
|
|
|
%verify(not md5 size mtime) %config(noreplace) /etc/ld.so.conf
|
2010-06-15 08:43:24 +00:00
|
|
|
%verify(not md5 size mtime) %config(noreplace) /etc/rpc
|
2004-09-09 05:46:40 +00:00
|
|
|
%dir /etc/ld.so.conf.d
|
2004-12-07 15:19:04 +00:00
|
|
|
%dir %{_prefix}/libexec/getconf
|
2013-07-26 05:59:43 +00:00
|
|
|
%dir %{_libdir}/gconv
|
2021-07-15 14:58:22 +00:00
|
|
|
%dir %{_libdir}/gconv/gconv-modules.d
|
2007-07-31 18:18:37 +00:00
|
|
|
%dir %attr(0700,root,root) /var/cache/ldconfig
|
|
|
|
%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/cache/ldconfig/aux-cache
|
2004-09-09 05:53:08 +00:00
|
|
|
%attr(0644,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /etc/ld.so.cache
|
2010-10-14 10:30:32 +00:00
|
|
|
%attr(0644,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /etc/gai.conf
|
2015-08-28 19:29:26 +00:00
|
|
|
# If rpm doesn't support %license, then use %doc instead.
|
2014-07-12 15:16:06 +00:00
|
|
|
%{!?_licensedir:%global license %%doc}
|
|
|
|
%license COPYING COPYING.LIB LICENSES
|
2004-09-09 05:40:37 +00:00
|
|
|
|
|
|
|
%files -f common.filelist common
|
2014-01-25 18:52:16 +00:00
|
|
|
%dir %{_prefix}/lib/locale
|
2015-09-17 16:24:49 +00:00
|
|
|
%dir %{_prefix}/lib/locale/C.utf8
|
|
|
|
%{_prefix}/lib/locale/C.utf8/*
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2016-03-01 07:59:24 +00:00
|
|
|
%files all-langpacks
|
2019-06-05 10:20:08 +00:00
|
|
|
%{_prefix}/lib/locale/locale-archive
|
|
|
|
%{_prefix}/lib/locale/locale-archive.real
|
2019-10-25 17:49:25 +00:00
|
|
|
%{_prefix}/share/locale/*/LC_MESSAGES/libc.mo
|
2016-03-01 07:59:24 +00:00
|
|
|
|
2016-02-26 09:06:35 +00:00
|
|
|
%files locale-source
|
|
|
|
%dir %{_prefix}/share/i18n/locales
|
|
|
|
%{_prefix}/share/i18n/locales/*
|
|
|
|
%dir %{_prefix}/share/i18n/charmaps
|
|
|
|
%{_prefix}/share/i18n/charmaps/*
|
|
|
|
|
2004-09-09 05:40:37 +00:00
|
|
|
%files -f devel.filelist devel
|
2021-06-27 13:06:13 +00:00
|
|
|
%if %{glibc_autorequires}
|
|
|
|
%attr(0755,root,root) %{_rpmconfigdir}/glibc.req
|
|
|
|
%{_fileattrsdir}/glibc.attr
|
|
|
|
%endif
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2021-01-23 18:16:05 +00:00
|
|
|
%if %{with docs}
|
|
|
|
%files -f doc.filelist doc
|
|
|
|
%endif
|
|
|
|
|
2009-02-18 20:47:04 +00:00
|
|
|
%files -f static.filelist static
|
|
|
|
|
2020-04-03 15:28:28 +00:00
|
|
|
%if %{need_headers_package}
|
2020-04-03 15:25:50 +00:00
|
|
|
%files -f headers.filelist -n %{headers_package_name}
|
2020-04-03 15:28:28 +00:00
|
|
|
%endif
|
2004-09-09 05:40:37 +00:00
|
|
|
|
|
|
|
%files -f utils.filelist utils
|
|
|
|
|
2021-06-14 05:45:03 +00:00
|
|
|
%files -f gconv.filelist gconv-extra
|
|
|
|
|
2016-07-20 15:09:24 +00:00
|
|
|
%files -f nss_db.filelist -n nss_db
|
2017-10-09 10:24:43 +00:00
|
|
|
/var/db/Makefile
|
2016-07-20 15:09:24 +00:00
|
|
|
%files -f nss_hesiod.filelist -n nss_hesiod
|
|
|
|
%doc hesiod/README.hesiod
|
|
|
|
%files -f nss-devel.filelist nss-devel
|
|
|
|
|
2018-01-11 12:21:53 +00:00
|
|
|
%files -f libnsl.filelist -n libnsl
|
|
|
|
/%{_lib}/libnsl.so.1
|
|
|
|
|
2015-08-28 19:29:26 +00:00
|
|
|
%if %{with benchtests}
|
2015-05-08 06:19:59 +00:00
|
|
|
%files benchtests -f benchtests.filelist
|
|
|
|
%endif
|
|
|
|
|
2018-09-05 07:26:05 +00:00
|
|
|
%files -f compat-libpthread-nonshared.filelist -n compat-libpthread-nonshared
|
2021-02-12 14:25:31 +00:00
|
|
|
|
|
|
|
%changelog
|
2022-07-05 10:17:25 +00:00
|
|
|
* Tue Jul 5 2022 Florian Weimer <fweimer@redhat.com> - 2.35.9000-28
|
|
|
|
- ppc64le: Increase Clang compatibility of float128 redirects (#2100546)
|
|
|
|
|
2022-07-05 09:07:58 +00:00
|
|
|
* Tue Jul 05 2022 Florian Weimer <fweimer@redhat.com> - 2.35.9000-27
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 7519dee356a0ab21c8990e59ed05dd48a4e573a0:
|
|
|
|
- malloc: Simplify checked_request2size interface
|
|
|
|
- stdlib: Simplify buffer management in canonicalize
|
|
|
|
- localedef: Support building for older C standards
|
|
|
|
- de_DE: Convert to UTF-8
|
|
|
|
- locale: localdef input files are now encoded in UTF-8
|
|
|
|
- locale: Introduce translate_unicode_codepoint into linereader.c
|
|
|
|
- locale: Fix signed char bug in lr_getc
|
|
|
|
- locale: Turn ADDC and ADDS into functions in linereader.c
|
|
|
|
- libc-symbols.h: remove unused macros
|
|
|
|
|
2022-07-04 19:08:51 +00:00
|
|
|
* Mon Jul 04 2022 Carlos O'Donell <carlos@redhat.com> - 2.35.9000-26
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 8ee2c043cfb35c48b45c7c5aed4022a8a7352bdc.
|
|
|
|
- Fix hurd namespace issues for internal signal functions
|
|
|
|
- argp: Remove old includes in !_LIBC case
|
|
|
|
- Use GCC 12 branch in build-many-glibcs.py
|
|
|
|
- Refactor internal-signals.h
|
|
|
|
- riscv: Use memcpy to handle unaligned access when fixing R_RISCV_RELATIVE
|
|
|
|
- AArch64: Add asymmetric faulting mode for tag violations in mem.tagging tunable
|
|
|
|
- linux: Fix mq_timereceive check for 32 bit fallback code (BZ 29304)
|
|
|
|
- x86: Add missing IS_IN (libc) check to strncmp-sse4_2.S
|
|
|
|
- x86: Add missing IS_IN (libc) check to strcspn-sse4.c
|
|
|
|
- x86: Add missing IS_IN (libc) check to memmove-ssse3.S
|
|
|
|
- x86-64: Properly indent X86_IFUNC_IMPL_ADD_VN arguments
|
|
|
|
- x86-64: Small improvements to dl-trampoline.S
|
|
|
|
- x86: Move mem{p}{mov|cpy}_{chk_}erms to its own file
|
|
|
|
- x86: Move and slightly improve memset_erms
|
|
|
|
- x86: Add definition for __wmemset_chk AVX2 RTM in ifunc impl list
|
|
|
|
- linux: Remove unnecessary nice.c and signal.c
|
|
|
|
- nptl: Remove unused members from struct pthread
|
|
|
|
- Linux: Forward declaration of struct iovec for process_madvise
|
|
|
|
- x86: Add more feature definitions to isa-level.h
|
|
|
|
|
2022-06-29 20:59:29 +00:00
|
|
|
* Wed Jun 29 2022 DJ Delorie <dj@redhat.com> - 2.35.9000-25
|
|
|
|
- Rebuild for fixed CI test for bz699724
|
|
|
|
|
2022-06-28 21:30:04 +00:00
|
|
|
* Tue Jun 28 2022 DJ Delorie <dj@redhat.com> - 2.35.9000-24
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit a3563f3f369878467dd74aeb360448119a7a4b41.
|
|
|
|
- elf: Fix -DNDEBUG warning in _dl_start_args_adjust
|
|
|
|
- elf: Fix compile error with -Werror and -DNDEBUG
|
|
|
|
- x86-64: Only define used SSE/AVX/AVX512 run-time resolvers
|
|
|
|
- x86: Move CPU_FEATURE{S}_{USABLE|ARCH}_P to isa-level.h
|
|
|
|
- x86: Fix backwards Prefer_No_VZEROUPPER check in ifunc-evex.h
|
|
|
|
- x86: Rename strstr_sse2 to strstr_generic as it uses string/strstr.c
|
|
|
|
- x86: Remove unused file wmemcmp-sse4
|
|
|
|
- x86: Put wcs{n}len-sse4.1 in the sse4.1 text section
|
|
|
|
- x86: Align entry for memrchr to 64-bytes.
|
|
|
|
- Makerules: Remove no-op -Wl,-d when linking libc_pic.os
|
|
|
|
- m68k: optimize RTLD_START
|
|
|
|
- misc: Optimize internal usage of __libc_single_threaded
|
|
|
|
- linux: Add move_mount
|
|
|
|
- linux: Add fsmount
|
|
|
|
- linux: Add fsopen
|
|
|
|
- resolv/tst-resolv-noaaaa: Support building for older C standards
|
|
|
|
- resolv: Implement no-aaaa stub resolver option
|
|
|
|
- support: Change non-address output format of support_format_dns_packet
|
|
|
|
- riscv: Use elf_machine_rela_relative to handle R_RISCV_RELATIVE
|
|
|
|
- x86: Remove faulty sanity tests for RTLD build with no multiarch
|
|
|
|
- stdlib: Fixup mbstowcs NULL __dst handling. [BZ #29279]
|
|
|
|
- x86: Replace all sse instructions with vex equivilent in avx+ files
|
|
|
|
- x86: Add support for compiling {raw|w}memchr with high ISA level
|
|
|
|
- x86: Add defines / utilities for making ISA specific x86 builds
|
|
|
|
- stdlib: Remove attr_write from mbstows if dst is NULL [BZ: 29265]
|
|
|
|
- stdlib: Remove trailing whitespace from Makefile
|
|
|
|
- debug: make __read_chk a cancellation point (bug 29274)
|
|
|
|
- s390: use LC_ALL=C for readelf call
|
|
|
|
- s390: use $READELF
|
|
|
|
|
2022-06-20 15:20:35 +00:00
|
|
|
* Mon Jun 20 2022 Arjun Shankar <arjun@redhat.com> - 2.35.9000-23
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit e5446dfea11e969212939197b606424a718d9b65:
|
|
|
|
- i386: Fix include paths for strspn, strcspn, and strpbrk
|
|
|
|
- elf: Silence GCC 11/12 false positive warning
|
|
|
|
- x86: Rename generic functions with unique postfix for clarity
|
|
|
|
- x86: Add BMI1/BMI2 checks for ISA_V3 check
|
|
|
|
- x86-64: Handle fewer relocation types for RTLD_BOOTSTRAP
|
|
|
|
- aarch64: Handle fewer relocations for RTLD_BOOTSTRAP
|
|
|
|
- riscv: Change the relocations handled for RTLD_BOOTSTRAP
|
|
|
|
- x86: Cleanup bounds checking in large memcpy case
|
|
|
|
- x86: Add bounds `x86_non_temporal_threshold`
|
|
|
|
- Remove remnant reference to ELF_RTYPE_CLASS_EXTERN_PROTECTED_DATA
|
|
|
|
- elf: Remove ELF_RTYPE_CLASS_EXTERN_PROTECTED_DATA
|
|
|
|
- x86: Add sse42 implementation to strcmp's ifunc
|
|
|
|
- x86: Fix misordered logic for setting `rep_movsb_stop_threshold`
|
|
|
|
- elf: Refine direct extern access diagnostics to protected symbol
|
|
|
|
- Avoid -Wstringop-overflow= warning in iconv module.
|
|
|
|
- Add bounds check to __libc_ifunc_impl_list
|
|
|
|
- libio: Avoid RMW of flags2 outside lock (BZ #27842)
|
|
|
|
- x86: Optimize svml_s_tanhf4_core_sse4.S
|
|
|
|
- x86: Optimize svml_s_tanhf8_core_avx2.S
|
|
|
|
- x86: Add data file that can be shared by tanhf-avx2 and tanhf-sse4
|
|
|
|
- x86: Optimize svml_s_tanhf16_core_avx512.S
|
|
|
|
- x86: Improve svml_s_atanhf4_core_sse4.S
|
|
|
|
- x86: Improve svml_s_atanhf8_core_avx2.S
|
|
|
|
- x86: Improve svml_s_atanhf16_core_avx512.S
|
|
|
|
- x86: Align varshift table to 32-bytes
|
|
|
|
- x86: Add copyright to strpbrk-c.c
|
|
|
|
|
2022-06-09 07:46:58 +00:00
|
|
|
* Thu Jun 09 2022 Florian Weimer <fweimer@redhat.com> - 2.35.9000-22
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit ace9e3edbca62d978b1e8f392d8a5d78500272d9:
|
|
|
|
- nss: handle stat failure in check_reload_and_get (BZ #28752)
|
|
|
|
- nss: add assert to DB_LOOKUP_FCT (BZ #28752)
|
|
|
|
- x86: Fix page cross case in rawmemchr-avx2 [BZ #29234]
|
|
|
|
- nptl_db: disable DT_RELR on libthread_db.so
|
|
|
|
- elf: add missing newlines in lateglobal test
|
|
|
|
- nptl: Fix __libc_cleanup_pop_restore asynchronous restore (BZ#29214)
|
|
|
|
- x86: ZERO_UPPER_VEC_REGISTERS_RETURN_XTEST expect no transactions
|
|
|
|
- x86: Shrink code size of memchr-evex.S
|
|
|
|
- x86: Shrink code size of memchr-avx2.S
|
|
|
|
- x86: Optimize memrchr-avx2.S
|
|
|
|
- x86: Optimize memrchr-evex.S
|
|
|
|
- x86: Optimize memrchr-sse2.S
|
|
|
|
- Benchtests: Improve memrchr benchmarks
|
|
|
|
- x86: Add COND_VZEROUPPER that can replace vzeroupper if no `ret`
|
|
|
|
- x86: Create header for VEC classes in x86 strings library
|
|
|
|
- powerpc: Fix VSX register number on __strncpy_power9 [BZ #29197]
|
|
|
|
- AArch64: Sort makefile entries
|
|
|
|
- AArch64: Add SVE memcpy
|
|
|
|
- x86_64: Add strstr function with 512-bit EVEX
|
|
|
|
- scripts/glibcelf.py: Add PT_AARCH64_MEMTAG_MTE constant
|
|
|
|
|
2022-06-06 16:29:45 +00:00
|
|
|
* Mon Jun 06 2022 Carlos O'Donell <carlos@redhat.com> - 2.35.9000-21
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 999835533bc60fbd0b0b65d2412a6742e5a54b9d:
|
|
|
|
- socket: Fix mistyped define statement in socket/sys/socket.h (BZ #29225)
|
|
|
|
- Declare timegm for ISO C2X
|
|
|
|
- Add PT_AARCH64_MEMTAG_MTE from Linux 5.18 to elf.h
|
|
|
|
- grep: egrep -> grep -E, fgrep -> grep -F
|
|
|
|
- string.h: Fix boolean spelling in comments
|
|
|
|
- elf: Add #include <errno.h> for use of E* constants.
|
|
|
|
- elf: Add #include <sys/param.h> for MAX usage.
|
|
|
|
- linux: Add process_mrelease
|
|
|
|
- linux: Add process_madvise
|
|
|
|
- linux: Set tst-pidfd-consts unsupported for kernels headers older than 5.10
|
|
|
|
- testrun.sh: Support passing strace and valgrind arguments
|
|
|
|
- Linux: Adjust struct rseq definition to current kernel version
|
|
|
|
- iconv: Use 64 bit stat for gconv_parseconfdir (BZ# 29213)
|
|
|
|
- catgets: Use 64 bit stat for __open_catalog (BZ# 29211)
|
|
|
|
- inet: Use 64 bit stat for ruserpass (BZ# 29210)
|
|
|
|
- socket: Use 64 bit stat for isfdtype (BZ# 29209)
|
|
|
|
- posix: Use 64 bit stat for fpathconf (_PC_ASYNC_IO) (BZ# 29208)
|
|
|
|
- posix: Use 64 bit stat for posix_fallocate fallback (BZ# 29207)
|
|
|
|
- misc: Use 64 bit stat for getusershell (BZ# 29203)
|
|
|
|
- misc: Use 64 bit stat for daemon (BZ# 29203)
|
|
|
|
- linux: use statx for fstat if neither newfstatat nor fstatat64 is present
|
|
|
|
- Add MADV_DONTNEED_LOCKED from Linux 5.18 to bits/mman-linux.h
|
|
|
|
- Add HWCAP2_MTE3 from Linux 5.18 to AArch64 bits/hwcap.h
|
|
|
|
- i686: Use generic sincosf implementation for SSE2 version
|
|
|
|
- benchtests: Add workload name for sincosf
|
|
|
|
- i686: Use generic sinf implementation for SSE2 version
|
|
|
|
- i686: Use generic cosf implementation for SSE2 version
|
|
|
|
- benchtests: Add workload name for cosf
|
|
|
|
- x86_64: Optimize sincos where sin/cos is optimized (bug 29193)
|
|
|
|
- manual: fix reference to source file
|
|
|
|
- Add SOL_SMC from Linux 5.18 to bits/socket.h
|
|
|
|
- elf: Remove _dl_skip_args
|
|
|
|
- x86_64: Remove _dl_skip_args usage
|
|
|
|
- sparc: Remove _dl_skip_args usage
|
|
|
|
- sh: Remove _dl_skip_args usage
|
|
|
|
- s390: Remove _dl_skip_args usage
|
|
|
|
- riscv: Remove _dl_skip_args usage
|
|
|
|
- nios2: Remove _dl_skip_args usage (BZ# 29187)
|
|
|
|
- mips: Remove _dl_skip_args usage
|
|
|
|
- microblaze: Remove _dl_skip_args usage
|
|
|
|
- m68k: Remove _dl_skip_args usage
|
|
|
|
- ia64: Remove _dl_skip_args usage
|
|
|
|
- i686: Remove _dl_skip_args usage
|
|
|
|
- hppa: Remove _dl_skip_args usage (BZ# 29165)
|
|
|
|
- csky: Remove _dl_skip_args usage
|
|
|
|
- arc: Remove _dl_skip_args usage
|
|
|
|
- arm: Remove _dl_skip_args usage
|
|
|
|
- alpha: Remove _dl_skip_args usage
|
|
|
|
- benchtests: Improve benchtests for strstr, memmem, and memchr
|
|
|
|
- dlsym: Make RTLD_NEXT prefer default version definition [BZ #14932]
|
|
|
|
- x86-64: Ignore r_addend for R_X86_64_GLOB_DAT/R_X86_64_JUMP_SLOT
|
|
|
|
- x86_64: Implement evex512 version of strlen, strnlen, wcslen and wcsnlen
|
|
|
|
- Update kernel version to 5.18 in header constant tests
|
|
|
|
- String: Improve overflow test coverage for strnlen
|
|
|
|
|
2022-05-25 22:15:13 +00:00
|
|
|
* Thu May 26 2022 Arjun Shankar <arjun@redhat.com> - 2.35.9000-20
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 3d9926663cba19f40d26d8a8ab3b2a7cc09ffb13:
|
|
|
|
- Update syscall-names.list for Linux 5.18
|
|
|
|
- Fix deadlock when pthread_atfork handler calls pthread_atfork or dlclose
|
|
|
|
- Use Linux 5.18 in build-many-glibcs.py
|
|
|
|
- stdio-common: Simplify printf_unknown interface in vfprintf-internal.c
|
|
|
|
- stdio-common: Move union printf_arg int <printf.h>
|
|
|
|
- stdio-common: Add printf specifier registry to <printf.h>
|
|
|
|
- elf/dl-reloc.c: Copyright The GNU Toolchain Authors
|
|
|
|
- benchtests: Improve bench-strnlen.c
|
|
|
|
- math: Add math-use-builtins-fabs (BZ#29027)
|
|
|
|
- linux: Add CLONE_NEWTIME from Linux 5.6 to bits/sched.h
|
|
|
|
- Revert "[ARM][BZ #17711] Fix extern protected data handling"
|
|
|
|
- Revert "[AArch64][BZ #17711] Fix extern protected data handling"
|
|
|
|
- elf: Rewrite long RESOLVE_MAP macro to an always_inline static function
|
|
|
|
|
2022-05-23 18:48:40 +00:00
|
|
|
* Mon May 23 2022 DJ Delorie <dj@redhat.com> - 2.35.9000-19
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 748df8126ac69e68e0b94e236ea3c2e11b1176cb.
|
|
|
|
- dlfcn: Move RTLD_DEFAULT/RTLD_NEXT outside __USE_GNU
|
|
|
|
- elf: Optimize _dl_new_hash in dl-new-hash.h
|
|
|
|
- nss: Optimize nss_hash in nss_hash.c
|
|
|
|
- benchtests: Add benchtests for dl_elf_hash, dl_new_hash and nss_hash
|
|
|
|
- nss: Add tests for the nss_hash in nss_hash.h
|
|
|
|
- elf: Add tests for the dl hash funcs (_dl_new_hash and _dl_elf_hash)
|
|
|
|
- elf: Refactor dl_new_hash so it can be tested / benchmarked
|
|
|
|
- locale: Add more cached data to LC_CTYPE
|
|
|
|
- locale: Remove private union from struct __locale_data
|
|
|
|
- locale: Remove cleanup function pointer from struct __localedata
|
|
|
|
- locale: Call _nl_unload_locale from _nl_archive_subfreeres
|
|
|
|
- stdio-common: Add tst-memstream-string for open_memstream overflow
|
|
|
|
- __printf_fphex always uses LC_NUMERIC
|
|
|
|
- vfprintf: Consolidate some multibyte/wide character processing
|
|
|
|
- vfprintf: Move argument processing into vfprintf-process-arg.c
|
|
|
|
- stdio-common: Add tst-vfprintf-width-i18n to cover numeric field width
|
|
|
|
- string.h: fix __fortified_attr_access macro call [BZ #29162]
|
|
|
|
- Enable DT_RELR in glibc shared libraries and PIEs automatically
|
|
|
|
- S390: Enable static PIE
|
|
|
|
- linux: Add tst-pidfd.c
|
|
|
|
- linux: Add P_PIDFD
|
|
|
|
- linux: Add pidfd_send_signal
|
|
|
|
- linux: Add pidfd_getfd
|
|
|
|
- linux: Add pidfd_open
|
|
|
|
- aarch64: Move ld.so _start to separate file and drop _dl_skip_args
|
|
|
|
- linux: Add a getauxval test [BZ #23293]
|
|
|
|
- rtld: Remove DL_ARGV_NOT_RELRO and make _dl_skip_args const
|
|
|
|
- rtld: Use generic argv adjustment in ld.so [BZ #23293]
|
|
|
|
- scripts/glibcelf.py: Add *T_RISCV_* constants
|
|
|
|
- Remove dl-librecon.h header.
|
|
|
|
- elf: Remove ldconfig kernel version check
|
|
|
|
- Remove kernel version check
|
|
|
|
- linux: Use /sys/devices/system/cpu on __get_nprocs_conf (BZ#28991)
|
|
|
|
- csu: Implement and use _dl_early_allocate during static startup
|
|
|
|
- Linux: Introduce __brk_call for invoking the brk system call
|
|
|
|
- sys/cdefs.h: Do not require C++ compilers to define __STDC__
|
|
|
|
- fortify: Ensure that __glibc_fortify condition is a constant [BZ #29141]
|
|
|
|
- Update RISC-V specific ELF definitions
|
|
|
|
|
2022-05-16 13:16:02 +00:00
|
|
|
* Mon May 16 2022 Arjun Shankar <arjun@redhat.com> - 2.35.9000-18
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 9403b71ae97e3f1a91c796ddcbb4e6f044434734:
|
|
|
|
- x86_64: Remove bzero optimization
|
|
|
|
- RISC-V: Use an autoconf template to produce `preconfigure'
|
|
|
|
- MIPS: Use an autoconf template to produce `preconfigure'
|
|
|
|
- m68k: Use an autoconf template to produce `preconfigure'
|
|
|
|
- C-SKY: Use an autoconf template to produce `preconfigure'
|
|
|
|
- Remove configure fno_unit_at_a_time
|
|
|
|
- stdio: Remove the usage of $(fno-unit-at-a-time) for siglist.c
|
|
|
|
- stdio: Remove the usage of $(fno-unit-at-a-time) for errlist.c
|
|
|
|
- Add declare_object_symbol_alias for assembly codes (BZ #28128)
|
|
|
|
- wcrtomb: Make behavior POSIX compliant
|
|
|
|
|
2022-05-10 21:42:01 +00:00
|
|
|
* Tue May 10 2022 Patsy Griffin <patsy@redhat.com> - 2.35.9000-17
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 8162147872491bb5b48e91543b19c49a29ae6b6d.
|
|
|
|
- nptl: Add backoff mechanism to spinlock loop
|
|
|
|
- Linux: Implement a useful version of _startup_fatal
|
|
|
|
- ia64: Always define IA64_USE_NEW_STUB as a flag macro
|
|
|
|
- linux: Fix posix_spawn return code if clone fails (BZ#29109)
|
|
|
|
- benchtests: Add wcrtomb microbenchmark
|
|
|
|
- clock_settime/clock_gettime: Use __nonnull to avoid null pointer
|
|
|
|
- clock_adjtime: Use __nonnull to avoid null pointer
|
|
|
|
- ntp_xxxtimex: Use __nonnull to avoid null pointer
|
|
|
|
- adjtimex/adjtimex64: Use __nonnull to avoid null pointer
|
|
|
|
- hurd spawni: Fix reauthenticating closed fds
|
|
|
|
- Linux: Define MMAP_CALL_INTERNAL
|
|
|
|
- i386: Honor I386_USE_SYSENTER for 6-argument Linux system calls
|
|
|
|
- i386: Remove OPTIMIZE_FOR_GCC_5 from Linux libc-do-syscall.S
|
|
|
|
- manual: Clarify that abbreviations of long options are allowed
|
|
|
|
|
2022-05-03 07:27:11 +00:00
|
|
|
* Tue May 03 2022 Florian Weimer <fweimer@redhat.com> - 2.35.9000-16
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 8e28aa3a51bf0ef3683f2aed4b5b448744897b66:
|
|
|
|
- elf: Remove fallback to the start of DT_STRTAB for dladdr
|
|
|
|
- powerpc32: Remove unused HAVE_PPC_SECURE_PLT
|
|
|
|
- dlfcn: Implement the RTLD_DI_PHDR request type for dlinfo
|
|
|
|
- manual: Document the dlinfo function
|
|
|
|
- Do not use --hash-style=both for building glibc shared objects
|
|
|
|
- benchtests: Better libmvec integration
|
|
|
|
- benchtests: Add UNSUPPORTED benchmark status
|
|
|
|
- linux: Fix fchmodat with AT_SYMLINK_NOFOLLOW for 64 bit time_t (BZ#29097)
|
|
|
|
- Use __ehdr_start rather than _begin in _dl_start_final
|
|
|
|
- sysdeps: Add 'get_fast_jitter' interace in fast-jitter.h
|
|
|
|
- posix/glob.c: update from gnulib
|
|
|
|
- benchtests: Add pthread-mutex-locks bench
|
|
|
|
- linux: Fix missing internal 64 bit time_t stat usage
|
|
|
|
- elf: Fix DFS sorting algorithm for LD_TRACE_LOADED_OBJECTS with missing libraries (BZ #28868)
|
|
|
|
- posix: Remove unused definition on _Fork
|
|
|
|
- NEWS: Mention DT_RELR support
|
|
|
|
- elf: Add more DT_RELR tests
|
|
|
|
- elf: Properly handle zero DT_RELA/DT_REL values
|
|
|
|
- elf: Support DT_RELR relative relocation format [BZ #27924]
|
|
|
|
- Add GLIBC_ABI_DT_RELR for DT_RELR support
|
|
|
|
- elf: Define DT_RELR related macros and types
|
|
|
|
- elf: Replace PI_STATIC_AND_HIDDEN with opposite HIDDEN_VAR_NEEDS_DYNAMIC_RELOC
|
|
|
|
- i386: Regenerate ulps
|
|
|
|
- dlfcn: Do not use rtld_active () to determine ld.so state (bug 29078)
|
|
|
|
- INSTALL: Rephrase -with-default-link documentation
|
|
|
|
|
2022-04-26 03:28:14 +00:00
|
|
|
* Mon Apr 25 2022 Carlos O'Donell <carlos@redhat.com> - 2.35.9000-15
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 1305edd42c44fee6f8660734d2dfa4911ec755d6:
|
|
|
|
- elf: Move post-relocation code of _dl_start into _dl_start_final
|
|
|
|
- misc: Fix rare fortify crash on wchar funcs. [BZ 29030]
|
|
|
|
- elf: Remove unused enum allowmask
|
|
|
|
- scripts/glibcelf.py: Mark as UNSUPPORTED on Python 3.5 and earlier
|
|
|
|
- x86: Optimize {str|wcs}rchr-evex
|
|
|
|
- x86: Optimize {str|wcs}rchr-avx2
|
|
|
|
- x86: Optimize {str|wcs}rchr-sse2
|
|
|
|
- benchtests: Improve bench-strrchr
|
|
|
|
- x86-64: Fix SSE2 memcmp and SSSE3 memmove for x32
|
|
|
|
- Default to --with-default-link=no (bug 25812)
|
|
|
|
- scripts: Add glibcelf.py module
|
|
|
|
- Add locale for syr_SY
|
|
|
|
- elf: Move elf_dynamic_do_Rel RTLD_BOOTSTRAP branches outside
|
|
|
|
- m68k: Handle fewer relocations for RTLD_BOOTSTRAP (#BZ29071)
|
|
|
|
- nptl: Fix pthread_cancel cancelhandling atomic operations
|
|
|
|
- x86: Fix missing __wmemcmp def for disable-multiarch build
|
|
|
|
- elf: Remove __libc_init_secure
|
|
|
|
|
2022-04-19 21:40:07 +00:00
|
|
|
* Tue Apr 19 2022 DJ Delorie <dj@redhat.com> - 2.35.9000-14
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 78fb88827362fbd2cc8aa32892ae5b015106e25c.
|
|
|
|
- mips: Fix mips64n32 64 bit time_t stat support (BZ#29069)
|
|
|
|
- x86: Cleanup page cross code in memcmp-avx2-movbe.S
|
|
|
|
- x86: Remove memcmp-sse4.S
|
|
|
|
- x86: Optimize memcmp SSE2 in memcmp.S
|
|
|
|
- misc: Use 64 bit time_t interfaces on syslog
|
|
|
|
- misc: syslog: Move SYSLOG_NAME to USE_MISC (BZ #16355)
|
|
|
|
- misc: syslog: Use fixed-sized buffer and remove memstream
|
|
|
|
- misc: syslog: Simplify implementation
|
|
|
|
- misc: syslog: Fix indentation and style
|
|
|
|
- misc: Add syslog test
|
|
|
|
- support: Add xmkfifo
|
|
|
|
- stdio: Split __get_errname definition from errlist.c
|
|
|
|
- x86: Reduce code size of mem{move|pcpy|cpy}-ssse3
|
|
|
|
- x86: Remove mem{move|cpy}-ssse3-back
|
|
|
|
- x86: Remove str{p}{n}cpy-ssse3
|
|
|
|
- x86: Remove str{n}cat-ssse3
|
|
|
|
- x86: Remove str{n}{case}cmp-ssse3
|
|
|
|
- x86: Remove {w}memcmp-ssse3
|
|
|
|
- nptl: Handle spurious EINTR when thread cancellation is disabled (BZ#29029)
|
|
|
|
- S390: Add new s390 platform z16.
|
|
|
|
- Replace {u}int_fast{16|32} with {u}int32_t
|
|
|
|
- stdlib: Reflow and sort most variable assignments
|
|
|
|
- elf: Fix memory leak in _dl_find_object_update (bug 29062)
|
|
|
|
- hurd: Define ELIBEXEC
|
|
|
|
- hurd: Fix arbitrary error code
|
|
|
|
- NEWS: Move PLT tracking slowdown to glibc 2.35.
|
|
|
|
- Remove _dl_skip_args_internal declaration
|
|
|
|
- test-container: Fix "unused code" warnings on HURD
|
|
|
|
- Add .clang-format style file
|
|
|
|
- manual: Avoid name collision in libm ULP table [BZ #28956]
|
|
|
|
|
2022-04-12 00:02:11 +00:00
|
|
|
* Tue Apr 12 2022 Arjun Shankar <arjun@redhat.com> - 2.35.9000-13
|
|
|
|
- Add entry for Tarifit language locale for Morocco, and
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 1a85970f41ea1e5abe6da2298a5e8fedcea26b70:
|
|
|
|
- powerpc: Relocate stinfo->main
|
|
|
|
- powerpc64: Set up thread register for _dl_relocate_static_pie
|
|
|
|
- powerpc64: Use medium model toc accesses throughout
|
|
|
|
- linux: Constify rfv variable in dl_vdso_vsym
|
|
|
|
- string: Replace outdated comments in strlen().
|
|
|
|
- S390: Fix elf/tst-audit25[ab]
|
|
|
|
- sparc64: Remove fcopysign{f} implementation
|
|
|
|
- alpha: Remove fcopysign{f} implementation
|
|
|
|
- math: Use builtin for ldbl-96 copysign
|
|
|
|
- ia64: Remove fcopysign{f} implementation
|
|
|
|
- x86: Remove fcopysign{f} implementation
|
|
|
|
- powerpc: Remove fcopysign{f} implementation
|
|
|
|
- Add rif_MA locale [BZ #27781]
|
|
|
|
- tests/string: Drop simple/stupid/builtin tests
|
|
|
|
- test-memcpy: Actually reverse source and destination
|
|
|
|
- benchtests: Only build libmvec benchmarks iff $(build-mathvec) is set
|
|
|
|
|
2022-04-05 15:32:38 +00:00
|
|
|
* Tue Apr 05 2022 Florian Weimer <fweimer@redhat.com> - 2.35.9000-12
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 053fe273434056f551ed8f81daf750db9dab5931:
|
|
|
|
- linux: Fix __closefrom_fallback iterates until max int (BZ#28993)
|
|
|
|
- Remove -z combreloc and HAVE_Z_COMBRELOC
|
|
|
|
- sparc: Remove s_abs implementations
|
|
|
|
- ia64: Remove fabs implementations
|
|
|
|
- x86: Remove fabs{f} implementation
|
|
|
|
- alpha: Remove s_abs implementations
|
|
|
|
- Allow for unpriviledged nested containers
|
|
|
|
- Increase the test timeout of some string tests
|
|
|
|
- realpath: Bring back GNU extension on ENOENT and EACCES [BZ #28996]
|
|
|
|
- stdlib: Fix tst-getrandom memcmp call
|
|
|
|
- stdlib: Fix tst-rand48.c printf types
|
|
|
|
- elf: Remove unused functions from tst-audit25(a,b)
|
|
|
|
- nptl: Use libc-diag.h with tst-thread-setspecific
|
|
|
|
- crypt: Remove unused variable on cert test
|
|
|
|
- elf: Remove unused variables in tests
|
|
|
|
- elf: Fix wrong fscanf usage on tst-pldd
|
|
|
|
- posix: Remove unused variable on tst-_Fork.c
|
|
|
|
- resolv: Initialize loop variable on tst-resolv-trailing
|
|
|
|
- locale: Remove set but unused variable on ld-collate.c
|
|
|
|
- localedate: Fix printf type on tst_mbrtowc
|
|
|
|
- localedata: Remove unused variables in tests
|
|
|
|
- x86: Small improvements for wcslen
|
|
|
|
- x86: Small improvements for wcscpy-ssse3
|
|
|
|
- debug: Improve fdelt_chk error message
|
|
|
|
- Add HWCAP2_AFP, HWCAP2_RPRES from Linux 5.17 to AArch64 bits/hwcap.h
|
|
|
|
- x86: Remove AVX str{n}casecmp
|
|
|
|
- x86: Add EVEX optimized str{n}casecmp
|
|
|
|
- x86: Add AVX2 optimized str{n}casecmp
|
|
|
|
- string: Expand page cross test cases in test-strncmp.c
|
|
|
|
- string: Expand page cross test cases in test-strcmp.c
|
|
|
|
- x86: Optimize str{n}casecmp TOLOWER logic in strcmp-sse42.S
|
|
|
|
- x86: Optimize str{n}casecmp TOLOWER logic in strcmp.S
|
|
|
|
- string: Expand page cross tests in test-strncasecmp.c
|
|
|
|
- string: Expand page cross tests in test-strcasecmp.c
|
|
|
|
- benchtests: Use json-lib in bench-strncasecmp.c
|
|
|
|
- benchtests: Use json-lib in bench-strcasecmp.c
|
|
|
|
- x86: Fix fallback for wcsncmp_avx2 in strcmp-avx2.S [BZ #28896]
|
|
|
|
- x86: Remove strspn-sse2.S and use the generic implementation
|
|
|
|
- x86: Remove strpbrk-sse2.S and use the generic implementation
|
|
|
|
- x86: Remove strcspn-sse2.S and use the generic implementation
|
|
|
|
- x86: Optimize strspn in strspn-c.c
|
|
|
|
- x86: Optimize strcspn and strpbrk in strcspn-c.c
|
|
|
|
- benchtests: Use json-lib in bench-strspn.c
|
|
|
|
- benchtests: Use json-lib in bench-strpbrk.c
|
|
|
|
- x86: Code cleanup in strchr-evex and comment justifying branch
|
|
|
|
- x86: Code cleanup in strchr-avx2 and comment justifying branch
|
|
|
|
- benchtests: Add random benchmark in bench-strchr.c
|
|
|
|
- benchtests: Use json-lib in bench-strchr.c
|
|
|
|
- Update kernel version to 5.17 in tst-mman-consts.py
|
|
|
|
- iconvdata: Fix enum type on UTF-7
|
|
|
|
- nscd: Remove unused variable
|
|
|
|
- support: Fix support_process_state_wait path size calculation
|
|
|
|
- support: Remove unused extract_8 function
|
|
|
|
- locale: Remove ununsed wctype_table_get function
|
|
|
|
- gmon: Remove unused sprofil.c functions
|
|
|
|
- Update syscall lists for Linux 5.17
|
|
|
|
- Fix ununsed fstatat64_time64_statx
|
|
|
|
- malloc: Fix duplicate inline for do_set_mxfast
|
|
|
|
- elf: Remove inline _dl_dprintf
|
|
|
|
- configure.ac: fix bashisms in configure.ac
|
|
|
|
- getaddrinfo: Refactor code for readability
|
|
|
|
- Use Linux 5.17 in build-many-glibcs.py
|
|
|
|
- resolv: Fix unaligned accesses to fields in HEADER struct
|
|
|
|
- gai_init: Avoid jumping from if condition to its else counterpart
|
|
|
|
- gaiconf_init: Refactor some bits for readability
|
|
|
|
- gethosts: Return EAI_MEMORY on allocation failure
|
|
|
|
- gaih_inet: Split result generation into its own function
|
|
|
|
- gaih_inet: split loopback lookup into its own function
|
|
|
|
- gaih_inet: make gethosts into a function
|
|
|
|
- gaih_inet: separate nss lookup loop into its own function
|
|
|
|
- gaih_inet: Split nscd lookup code into its own function.
|
|
|
|
- gaih_inet: Split simple gethostbyname into its own function
|
|
|
|
- gaih_inet: make numeric lookup a separate routine
|
|
|
|
- gaih_inet: Simplify service resolution
|
|
|
|
- getaddrinfo: Fix leak with AI_ALL [BZ #28852]
|
|
|
|
- gaih_inet: Simplify canon name resolution
|
|
|
|
- Simplify allocations and fix merge and continue actions [BZ #28931]
|
|
|
|
- iconv: Add UTF-7-IMAP variant in utf-7.c
|
|
|
|
- iconv: make utf-7.c able to use variants
|
|
|
|
- iconv: Better mapping to RFC for UTF-7
|
|
|
|
- iconv: Always encode "optional direct" UTF-7 characters
|
|
|
|
- stdio-common: Add wide stream coverage to tst-vfprintf-user-type
|
|
|
|
- libio: Flush-only _IO_str_overflow must not return EOF (bug 28949)
|
|
|
|
- libio: Convert tst_swprintf to the test framework
|
|
|
|
- scripts/dso-ordering-test.py: Fix C&P error in * callrefs processing
|
|
|
|
- stdio-common: Generate ja_JP.EUC-JP locale
|
|
|
|
- stdio-common: Re-flow and sort Makefile variables
|
|
|
|
- nss: Sort tests and tests-container and put one test per line
|
|
|
|
- benchtests: Use "=" instead of ":=" [BZ #28970]
|
|
|
|
- hppa: Use END instead of PSEUDO_END in swapcontext.S
|
2022-04-05 15:41:52 +00:00
|
|
|
|
2022-03-15 19:32:25 +00:00
|
|
|
* Tue Mar 15 2022 DJ Delorie <dj@redhat.com> - 2.35.9000-11
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit d05e6dc8d1032e1732542a48e0fb895432008b6e.
|
|
|
|
- hppa: Implement swapcontext in assembler (bug 28960)
|
|
|
|
- associate a deallocator for iconv_open
|
|
|
|
- associate a deallocation for opendir
|
|
|
|
- Add access function attributes to epoll_wait
|
|
|
|
- Add access function attributes to grp and shadow headers
|
|
|
|
- Define ISO 639-3 "tok" [BZ #28950]
|
|
|
|
- nss: Protect against errno changes in function lookup (bug 28953)
|
|
|
|
- nss: Do not mention NSS test modules in <gnu/lib-names.h>
|
|
|
|
- malloc: Exit early on test failure in tst-realloc
|
|
|
|
- Add some missing access function attributes
|
|
|
|
- libio: Ensure output buffer for wchars (bug #28828)
|
|
|
|
- inet: Return EAI_MEMORY when nrl_domainname() fails to allocate memory
|
|
|
|
- inet: Remove strdupa from nrl_domainname()
|
|
|
|
- inet: Fix getnameinfo (NI_NOFQDN) race condition (BZ#28566)
|
|
|
|
- benchtests: make compare_strings.py accept string as attribute value
|
|
|
|
|
2022-03-09 13:41:30 +00:00
|
|
|
* Wed Mar 09 2022 Arjun Shankar <arjun@redhat.com> - 2.35.9000-10
|
|
|
|
- Drop glibc-rh1070416.patch; nscd related, thus no longer relevant.
|
|
|
|
|
2022-03-08 16:21:01 +00:00
|
|
|
* Tue Mar 08 2022 Arjun Shankar <arjun@redhat.com> - 2.35.9000-9
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 6de743a4e31a94e3d022e64a90c9082290a5a573:
|
|
|
|
- x86_64: Fix code formatting of vectorized math functions
|
|
|
|
- pthread: Do not overwrite tests-time64
|
|
|
|
- x86_64: Fix svml_s_acosf16_core_avx512.S code formatting
|
|
|
|
- i386: Remove libc-do-syscall from sysdep-dl-routines [BZ #28936]
|
|
|
|
- linux/i386: remove dead assignment of sysdep-dl-routines
|
|
|
|
|
2022-03-08 14:54:19 +00:00
|
|
|
* Tue Mar 08 2022 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.35.9000-8
|
|
|
|
- Fix version check to accommodate gettext snapshot builds in rawhide.
|
|
|
|
|
2022-03-02 04:56:46 +00:00
|
|
|
* Tue Mar 01 2022 Carlos O'Donell <carlos@redhat.com> - 2.35.9000-7
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 2bbc694df279020a6620096d31c1e05c93966f9b:
|
|
|
|
- nptl: Fix cleanups for stack grows up [BZ# 28899]
|
|
|
|
- manual: SA_ONSTACK is ignored without alternate stack
|
|
|
|
- io: Add fsync call in tst-stat
|
|
|
|
- Linux: Consolidate auxiliary vector parsing (redo)
|
|
|
|
|
2022-02-25 20:11:37 +00:00
|
|
|
* Fri Feb 25 2022 Arjun Shankar <arjun@redhat.com> - 2.35.9000-6
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 1fe00d3eb602a0754873b536dc92fb6226759ee4:
|
|
|
|
- build: Properly generate .d dependency files [BZ #28922]
|
|
|
|
- benchtests: Generate .d dependency files [BZ #28922]
|
|
|
|
- benchtests: Remove duplicated loop in bench-bzero-walk.c
|
|
|
|
- localedata: Do not generate output if warnings were present.
|
|
|
|
- localedef: Update LC_MONETARY handling (Bug 28845)
|
|
|
|
- localedef: Handle symbolic links when generating locale-archive
|
|
|
|
- benchtests: Add small sizes (<= 64) to bench-bzero-walk.c
|
|
|
|
- math: Add more input to atanh accuracy tests
|
|
|
|
- resolv: Fix tst-resolv tests for 2.35 ABIs and later
|
|
|
|
- x86_64: Disable libmvec tests if multiarch not enabled [BZ# 28869]
|
|
|
|
- benchtests: Add benches for memset with 0 value
|
|
|
|
- i686: Remove bzero optimizations
|
|
|
|
- s390: Remove bzero optimizations
|
|
|
|
- powerpc: Remove powerpc64 bzero optimizations
|
|
|
|
- powerpc: Remove powerpc32 bzero optimizations
|
|
|
|
- sparc: Remove bzero optimization
|
|
|
|
- ia64: Remove bzero optimization
|
|
|
|
- alpha: Remove bzero optimization
|
|
|
|
- x86_64: Remove bcopy optimizations
|
|
|
|
- i386: Remove bcopy optimizations
|
|
|
|
- powerpc: Remove bcopy optimizations
|
|
|
|
- ia64: Remove bcopy
|
|
|
|
- hppa: Fix warnings from _dl_lookup_address
|
|
|
|
- hppa: Revise gettext trampoline design
|
|
|
|
|
2022-02-24 04:12:00 +00:00
|
|
|
* Wed Feb 23 2022 Carlos O'Donell <carlos@redhat.com> - 2.35.9000-5
|
|
|
|
- Fix locale-archive generation (#2057697)
|
|
|
|
|
2022-02-22 16:52:06 +00:00
|
|
|
* Tue Feb 22 2022 Carlos O'Donell <carlos@redhat.com> - 2.35.9000-4
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit fdc1ae67fef27eea1445bab4bdfe2f0fb3bc7aa1:
|
|
|
|
- Add SOL_MPTCP, SOL_MCTP from Linux 5.16 to bits/socket.h
|
|
|
|
- elf: Check invalid hole in PT_LOAD segments [BZ #28838]
|
|
|
|
- realpath: Do not copy result on failure (BZ #28815)
|
|
|
|
- x86: Fix TEST_NAME to make it a string in tst-strncmp-rtm.c
|
|
|
|
- x86: Test wcscmp RTM in the wcsncmp overflow case [BZ #28896]
|
|
|
|
- hppa: Fix swapcontext
|
|
|
|
- x86: Fallback {str|wcs}cmp RTM in the ncmp overflow case [BZ #28896]
|
|
|
|
- string: Add a testcase for wcsncmp with SIZE_MAX [BZ #28755]
|
|
|
|
- microblaze: Use the correct select syscall (BZ #28883)
|
|
|
|
- Update kernel version to 5.16 in tst-mman-consts.py
|
|
|
|
- pthread: Use 64 bit time_t stat internally for sem_open (BZ #28880)
|
|
|
|
- x86: Fix bug in strncmp-evex and strncmp-avx2 [BZ #28895]
|
|
|
|
- String: Strength memset tests in test-memset.c
|
|
|
|
- x86-64: Define __memcmpeq in ld.so
|
|
|
|
- htl: Destroy thread-specific data before releasing joins
|
|
|
|
- htl: Fix initializing the key lock
|
|
|
|
- mach: Fix LLL_SHARED value
|
|
|
|
- htl: Make pthread_[gs]etspecific not check for key validity
|
|
|
|
- x86-64: Remove bzero weak alias in SS2 memset
|
|
|
|
- hppa: Fix typo
|
|
|
|
- linux: Use socket-constants-time64.h on tst-socket-timestamp-compat
|
|
|
|
- x86/configure.ac: Define PI_STATIC_AND_HIDDEN/SUPPORT_STATIC_PIE
|
|
|
|
- Fix elf/tst-audit2 on hppa
|
|
|
|
- x86: Use CHECK_FEATURE_PRESENT on PCONFIG
|
|
|
|
- x86: Don't check PTWRITE in tst-cpu-features-cpuinfo.c
|
|
|
|
- x86: Set .text section in memset-vec-unaligned-erms
|
|
|
|
- Linux: Include <dl-auxv.h> in dl-sysdep.c only for SHARED
|
|
|
|
- Revert "Linux: Consolidate auxiliary vector parsing"
|
|
|
|
- String: Ensure 'MIN_PAGE_SIZE' is multiple of 'getpagesize'
|
|
|
|
- Use binutils 2.38 branch in build-many-glibcs.py
|
|
|
|
- elf: Remove LD_USE_LOAD_BIAS
|
|
|
|
- malloc: Remove LD_TRACE_PRELINKING usage from mtrace
|
|
|
|
- elf: Remove prelink support
|
|
|
|
- Linux: Consolidate auxiliary vector parsing
|
|
|
|
- Linux: Assume that NEED_DL_SYSINFO_DSO is always defined
|
|
|
|
- Linux: Remove DL_FIND_ARG_COMPONENTS
|
|
|
|
- Linux: Remove HAVE_AUX_SECURE, HAVE_AUX_XID, HAVE_AUX_PAGESIZE
|
|
|
|
- elf: Merge dl-sysdep.c into the Linux version
|
|
|
|
- hppa: Fix bind-now audit (BZ #28857)
|
|
|
|
|
2022-02-14 23:40:57 +00:00
|
|
|
* Tue Feb 15 2022 Arjun Shankar <arjun@redhat.com> - 2.35.9000-3
|
|
|
|
- Reduce installed size of some langpacks by de-duplicating LC_CTYPE
|
|
|
|
|
2022-02-10 11:00:48 +00:00
|
|
|
* Thu Feb 10 2022 Arjun Shankar <arjun@redhat.com> - 2.35.9000-2
|
|
|
|
- Drop glibc-fedora-localedef.patch and adjust locale installation
|
|
|
|
accordingly so that installed content remains unchanged.
|
|
|
|
|
2022-02-10 10:47:40 +00:00
|
|
|
* Wed Feb 09 2022 Florian Weimer <fweimer@redhat.com> - 2.35.9000-1
|
2022-02-09 12:16:42 +00:00
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 3d9f171bfb5325bd5f427e9fc386453358c6e840:
|
|
|
|
- x86-64: Optimize bzero
|
|
|
|
- benchtests: Add benches for bzero
|
|
|
|
- linux: fix accuracy of get_nprocs and get_nprocs_conf [BZ #28865]
|
|
|
|
- x86: Remove SSSE3 instruction for broadcast in memset.S (SSE2 Only)
|
|
|
|
- benchtests: Sort benches in Makefile
|
|
|
|
- Benchtests: Add length zero benchmark for memset in bench-memset.c
|
|
|
|
- x86: Improve vec generation in memset-vec-unaligned-erms.S
|
|
|
|
- x86-64: Add vector tan/tanf to libmvec microbenchmark
|
|
|
|
- x86-64: Add vector erfc/erfcf to libmvec microbenchmark
|
|
|
|
- x86-64: Add vector asinh/asinhf to libmvec microbenchmark
|
|
|
|
- x86-64: Add vector tanh/tanhf to libmvec microbenchmark
|
|
|
|
- x86-64: Add vector erf/erff to libmvec microbenchmark
|
|
|
|
- x86-64: Add vector acosh/acoshf to libmvec microbenchmark
|
|
|
|
- x86-64: Add vector atanh/atanhf to libmvec microbenchmark
|
|
|
|
- x86-64: Add vector log1p/log1pf to libmvec microbenchmark
|
|
|
|
- x86-64: Add vector log2/log2f to libmvec microbenchmark
|
|
|
|
- x86-64: Add vector log10/log10f to libmvec microbenchmark
|
|
|
|
- x86-64: Add vector atan2/atan2f to libmvec microbenchmark
|
|
|
|
- x86-64: Add vector cbrt/cbrtf to libmvec microbenchmark
|
|
|
|
- x86-64: Add vector sinh/sinhf to libmvec microbenchmark
|
|
|
|
- x86-64: Add vector expm1/expm1f to libmvec microbenchmark
|
|
|
|
- x86-64: Add vector cosh/coshf to libmvec microbenchmark
|
|
|
|
- x86-64: Add vector exp10/exp10f to libmvec microbenchmark
|
|
|
|
- x86-64: Add vector exp2/exp2f to libmvec microbenchmark
|
|
|
|
- x86-64: Add vector hypot/hypotf to libmvec microbenchmark
|
|
|
|
- x86-64: Add vector asin/asinf to libmvec microbenchmark
|
|
|
|
- x86-64: Add vector atan/atanf to libmvec microbenchmark
|
|
|
|
- elf: Replace tst-audit24bmod2.so with tst-audit24bmod2
|
|
|
|
- x86_64/multiarch: Sort sysdep_routines and put one entry per line
|
|
|
|
- string: Sort headers, routines, tests and tests-translation
|
|
|
|
- x86: Improve L to support L(XXX_SYMBOL (YYY, ZZZ))
|
|
|
|
- Benchtests: move 'alloc_bufs' from loop in bench-memset.c
|
|
|
|
- x86-64: Fix strcmp-evex.S
|
|
|
|
- x86-64: Fix strcmp-avx2.S
|
|
|
|
- x86-64: Add vector acos/acosf to libmvec microbenchmark
|
|
|
|
- benchtests: Add more coverage for strcmp and strncmp benchmarks
|
|
|
|
- x86: Optimize strcmp-evex.S
|
|
|
|
- x86: Optimize strcmp-avx2.S
|
|
|
|
- string: Improve coverage in test-strcmp.c and test-strncmp.c
|
|
|
|
- string/test-str*cmp: remove stupid_[strcmp, strncmp, wcscmp, wcsncmp].
|
|
|
|
- Open master branch for glibc 2.36 development
|
|
|
|
|
2022-02-08 14:52:54 +00:00
|
|
|
* Tue Feb 08 2022 Florian Weimer <fweimer@redhat.com> - 2.35-2
|
|
|
|
- Auto-sync with upstream branch release/2.35/master,
|
|
|
|
commit 24962427071fa532c3c48c918e9d64d719cc8a6c:
|
|
|
|
- Add BZ#28860 reference on NEWS
|
|
|
|
- linux: Fix missing __convert_scm_timestamps (BZ #28860)
|
|
|
|
|
2022-02-03 14:53:04 +00:00
|
|
|
* Thu Feb 03 2022 Florian Weimer <fweimer@redhat.com> - 2.35-1
|
|
|
|
- glibc 2.35 upstream release
|
|
|
|
- Auto-sync with upstream branch release/2.35/master,
|
|
|
|
commit a2f1675634b3513c09c38e55e6766e8c05768b1f:
|
|
|
|
- linux: __get_nprocs_sched: do not feed CPU_COUNT_S with garbage [BZ #28850]
|
|
|
|
- posix: Fix tst-spawn6 terminal handling (BZ #28853)
|
|
|
|
- Regenerate configure
|
|
|
|
- Create ChangeLog.old/ChangeLog.24.
|
|
|
|
- Prepare for glibc 2.35 release.
|
|
|
|
- Regenerate configure.
|
|
|
|
- Update install.texi, and regenerate INSTALL.
|
|
|
|
- Update NEWS bug list.
|
|
|
|
- Update NEWS.
|
|
|
|
- Update translations.
|
|
|
|
- Linux: Use ptrdiff_t for __rseq_offset
|
|
|
|
- Fix elf/tst-audit25a with default bind now toolchains
|
|
|
|
- posix: Replace posix_spawnattr_tc{get,set}pgrp_np with posix_spawn_file_actions_addtcsetpgrp_np
|
|
|
|
- or1k: Define PI_STATIC_AND_HIDDEN
|
|
|
|
- SET_RELHOOK: merge i386 and x86_64, and move to sysdeps/mach/hurd/x86
|
|
|
|
- elf: Fix runtime linker auditing on aarch64 (BZ #26643)
|
|
|
|
- elf: Issue la_symbind for bind-now (BZ #23734)
|
|
|
|
- elf: Fix initial-exec TLS access on audit modules (BZ #28096)
|
|
|
|
- elf: Add la_activity during application exit
|
|
|
|
- localedata: Adjust C.UTF-8 to align with C/POSIX.
|
|
|
|
- localedef: Fix handling of empty mon_decimal_point (Bug 28847)
|
|
|
|
- malloc: Fix tst-mallocalign1 macro spacing.
|
|
|
|
|
2022-02-01 13:48:58 +00:00
|
|
|
* Tue Feb 01 2022 Florian Weimer <fweimer@redhat.com> - 2.34.9000-39
|
|
|
|
- Drop glibc-temp-Wno-use-after-free.patch, fixed upstream.
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 3fb18fd80c5900cc82748f3320b30516c57d24da:
|
|
|
|
- elf: Add <dl-r_debug.h>
|
|
|
|
- Mention _FORTIFY_SOURCE=3 for gcc12 in NEWS
|
|
|
|
- malloc: Fix -Wuse-after-free warning in tst-mallocalign1 [BZ #26779]
|
|
|
|
- Update libc.pot for 2.35 release.
|
|
|
|
- tst-socket-timestamp-compat.c: Check __TIMESIZE [BZ #28837]
|
|
|
|
- Add prelink removal plan on NEWS
|
|
|
|
- Linux: Only generate 64 bit timestamps for 64 bit time_t recvmsg/recvmmsg
|
|
|
|
- linux: Fix ancillary 64-bit time timestamp conversion (BZ #28349, BZ#28350)
|
|
|
|
- support: Add support_socket_so_timestamp_time64
|
|
|
|
- Fix elf/loadfail test build dependencies
|
|
|
|
- Fix glibc 2.34 ABI omission (missing GLIBC_2.34 in dynamic loader)
|
|
|
|
- x86: Use CHECK_FEATURE_PRESENT to check HLE [BZ #27398]
|
|
|
|
- Guard tst-valgrind-smoke.out with run-built-tests
|
|
|
|
- hurd: Add posix_spawnattr_tc{get,set}pgrp_np on libc.abilist
|
|
|
|
- Avoid -Wuse-after-free in tests [BZ #26779].
|
|
|
|
- elf: Replace tst-p_alignmod1-editX with a python script
|
|
|
|
- stdlib: Avoid -Wuse-after-free in __add_to_environ [BZ #26779]
|
|
|
|
- io: Fix use-after-free in ftw [BZ #26779]
|
|
|
|
- intl: Avoid -Wuse-after-free [BZ #26779]
|
|
|
|
- elf: Fix use-after-free in ldconfig [BZ #26779]
|
|
|
|
- posix: Add terminal control setting support for posix_spawn
|
|
|
|
|
2022-01-24 21:39:19 +00:00
|
|
|
* Mon Jan 24 2022 DJ Delorie <dj@redhat.com> - 2.34.9000-38
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 5b8e7980c5dabd9aaefeba4f0208baa8cf7653ee.
|
|
|
|
- Linux: Detect user namespace support in io/tst-getcwd-smallbuff
|
|
|
|
- Fix handling of unterminated bracket expressions in fnmatch (bug 28792)
|
|
|
|
- realpath: Avoid overwriting preexisting error (CVE-2021-3998)
|
|
|
|
- elf: Add a test for PT_LOAD segments with invalid p_align [BZ #28688]
|
|
|
|
- elf: Add a test for PT_LOAD segments with p_align == 1 [BZ #28688]
|
|
|
|
- elf: Add a test for PT_LOAD segments with mixed p_align [BZ #28676]
|
|
|
|
- Add and use link-test-modules-rpath-link [BZ #28455]
|
|
|
|
- tst-realpath-toolong: Fix hurd build
|
|
|
|
- getcwd: Set errno to ERANGE for size == 1 (CVE-2021-3999)
|
|
|
|
- Add valgrind smoke test
|
|
|
|
- htl: Fix cleaning the reply port
|
|
|
|
- elf: Properly align all PT_LOAD segments [BZ #28676]
|
|
|
|
- realpath: Set errno to ENAMETOOLONG for result larger than PATH_MAX [BZ #28770]
|
|
|
|
- support: Add helpers to create paths longer than PATH_MAX
|
|
|
|
- nptl: Effectively skip CAS in spinlock loop
|
|
|
|
- mips: Move DT_MIPS into <ldsodefs.h>
|
|
|
|
- x86_64: Document libmvec vector functions accuracy [BZ #28766]
|
|
|
|
- x86: Black list more Intel CPUs for TSX [BZ #27398]
|
|
|
|
- elf: Fix tst-align3
|
|
|
|
- elf: Move _dl_setup_hash to its own file
|
|
|
|
- htl: Fix build error in annexc
|
|
|
|
- elf: Reinstate tst-audit17
|
|
|
|
- x86: use default cache size if it cannot be determined [BZ #28784]
|
|
|
|
- rt/tst-mqueue*: Return UNSUPPORTED when mq_open fails with ENOSYS
|
|
|
|
- Linux: Add epoll_pwait2 (BZ #27359)
|
|
|
|
- Properly handle --disable-default-pie [BZ #28780]
|
|
|
|
- elf: Fix 64 time_t support for installed statically binaries
|
|
|
|
- Revert "elf: Fix 64 time_t support for installed statically binaries"
|
|
|
|
- CVE-2022-23218: Buffer overflow in sunrpc svcunix_create (bug 28768)
|
|
|
|
- sunrpc: Test case for clnt_create "unix" buffer overflow (bug 22542)
|
|
|
|
- CVE-2022-23219: Buffer overflow in sunrpc clnt_create for "unix" (bug 22542)
|
|
|
|
- socket: Add the __sockaddr_un_set function
|
|
|
|
- elf/tst-dl_find_object: Disable subtests for non-contiguous maps (bug 28732)
|
|
|
|
- elf: Set l_contiguous to 1 for the main map in more cases
|
|
|
|
- elf: Introduce rtld_setup_main_map
|
|
|
|
- hurd: Make RPC input array parameters const
|
|
|
|
- hurd: optimize exec cleanup
|
|
|
|
- hurd: Add __rtld_execve
|
|
|
|
- hurd: Fix exec() leak on proc_task2proc failure
|
|
|
|
- htl: Hide __pthread_attr's __schedparam type [BZ #23088]
|
|
|
|
- htl: Clear kernel_thread field before releasing the thread structure
|
|
|
|
- hurd: drop SA_SIGINFO availability xfail
|
|
|
|
- hurd: Fix timer/clock_getres crash on NULL res parameter
|
|
|
|
- hurd: Fix pthread_kill on exiting/ted thread
|
|
|
|
- [hurd] Drop spurious #ifdef SHARED
|
|
|
|
- [hurd] Call _dl_sort_maps_init in _dl_sysdep_start
|
|
|
|
- elf tst-dl_find_object: Fix typo
|
|
|
|
- s390x: Use <gcc-macros.h> in early HWCAP check
|
|
|
|
- x86: Add x86-64-vN check to early startup
|
|
|
|
- powerpc64le: Use <gcc-macros.h> in early HWCAP check
|
|
|
|
- Add --with-rtld-early-cflags configure option
|
|
|
|
- elf: Split dl-printf.c from dl-misc.c
|
|
|
|
- elf/Makefile: Reflow and sort most variable assignments
|
|
|
|
- Generate gcc-macros.h
|
|
|
|
- x86: HAVE_X86_LAHF_SAHF, HAVE_X86_MOVBE and -march=x86-64-vN (bug 28782)
|
|
|
|
- math: Add more inputs to atan2 accuracy tests [BZ #28765]
|
|
|
|
- Disable debuginfod in printer tests [BZ #28757]
|
|
|
|
- Update syscall lists for Linux 5.16
|
|
|
|
- i386: Remove broken CAN_USE_REGISTER_ASM_EBP (bug 28771)
|
|
|
|
- stdlib: Fix formatting of tests list in Makefile
|
|
|
|
- stdlib: Sort tests in Makefile
|
|
|
|
- x86_64: Fix SSE4.2 libmvec atan2 function accuracy [BZ #28765]
|
|
|
|
- debug: Synchronize feature guards in fortified functions [BZ #28746]
|
|
|
|
- debug: Autogenerate _FORTIFY_SOURCE tests
|
|
|
|
- Do not build libresolv module with 64 bit time_t flags
|
|
|
|
- Revert "linux: Fix ancillary 64-bit time timestamp conversion (BZ #28349, BZ #28350)"
|
|
|
|
- Revert "support: Add support_socket_so_timestamp_time64"
|
|
|
|
- timezone: Fix tst-bz28707 Makefile rule
|
|
|
|
- linux: Fix ancillary 64-bit time timestamp conversion (BZ #28349, BZ #28350)
|
|
|
|
- support: Add support_socket_so_timestamp_time64
|
|
|
|
- elf: Fix 64 time_t support for installed statically binaries
|
|
|
|
- Enable _FORTIFY_SOURCE=3 for gcc 12 and above
|
|
|
|
- manual: Drop obsolete @refill
|
|
|
|
- aarch64: Add HWCAP2_ECV from Linux 5.16
|
|
|
|
- Use Linux 5.16 in build-many-glibcs.py
|
|
|
|
- x86: Fix __wcsncmp_evex in strcmp-evex.S [BZ# 28755]
|
|
|
|
- x86: Fix __wcsncmp_avx2 in strcmp-avx2.S [BZ# 28755]
|
|
|
|
- math: Fix float conversion regressions with gcc-12 [BZ #28713]
|
|
|
|
- elf: Simplify software TM implementation in _dl_find_object
|
|
|
|
- Restore ENTRY_POINT definition on hppa, ia64 (bug 28749)
|
|
|
|
- elf: Fix fences in _dl_find_object_update (bug 28745)
|
|
|
|
- ttydefaults.h: Fix CSTATUS to control-t
|
|
|
|
- AArch64: Check for SVE in ifuncs [BZ #28744]
|
|
|
|
- debug: Remove catchsegv and libSegfault (BZ #14913)
|
|
|
|
- Documentation for OpenRISC port
|
|
|
|
- build-many-glibcs.py: add OpenRISC support
|
|
|
|
- or1k: Build Infrastructure
|
|
|
|
- or1k: ABI lists
|
|
|
|
- or1k: Linux ABI
|
|
|
|
- or1k: Linux Syscall Interface
|
|
|
|
- or1k: math soft float support
|
|
|
|
- or1k: Atomics and Locking primitives
|
|
|
|
- or1k: Thread Local Storage support
|
|
|
|
- or1k: startup and dynamic linking code
|
|
|
|
- or1k: ABI Implementation
|
|
|
|
- linux/syscalls: Add or1k_atomic syscall for OpenRISC
|
|
|
|
- elf: Add reloc for OpenRISC
|
|
|
|
- elf: Add a comment after trailing backslashes
|
|
|
|
- elf: Also try DT_RUNPATH for LD_AUDIT dlopen [BZ #28455]
|
|
|
|
- elf: Fix tst-linkall-static link when pthread is not in libc
|
|
|
|
|
2022-01-20 06:12:00 +00:00
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.34.9000-37
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2022-01-04 14:54:08 +00:00
|
|
|
* Tue Jan 04 2022 Florian Weimer <fweimer@redhat.com> - 2.34.9000-36
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 28713c06129f8f64f88c423266e6ff2880216509:
|
|
|
|
- elf: Sort tests and modules-names
|
|
|
|
- hurd: nuke all unknown ports on exec
|
|
|
|
- hurd: Fix auth port leak
|
|
|
|
- Remove stale reference to libanl.a
|
|
|
|
- elf: Add <dl-debug.h>
|
|
|
|
- Properly check linker option in LIBC_LINKER_FEATURE [BZ #28738]
|
|
|
|
- hurd: Implement _S_msg_get_dtable
|
|
|
|
- Update automatically-generated copyright dates
|
|
|
|
- Sync move-if-change from Gnulib, updating copyright
|
|
|
|
- Update copyright dates not handled by scripts/update-copyrights.
|
|
|
|
- Update copyright dates with scripts/update-copyrights
|
|
|
|
- hurd: Use __trivfs_server_name instead of trivfs_server_name
|
|
|
|
- hurd: Bump BRK_START to 0x20000000
|
|
|
|
- hurd: Avoid overzealous shared objects constraints
|
|
|
|
- time: Refactor timesize.h for some ABIs
|
|
|
|
- hurd: Make getrandom a stub inside the random translator
|
|
|
|
- open64: Force O_LARGEFILE on all architectures
|
|
|
|
- x86-64: Add vector tan/tanf implementation to libmvec
|
|
|
|
- x86-64: Add vector erfc/erfcf implementation to libmvec
|
|
|
|
- resolv: Do not install libanl.so symbolic link
|
|
|
|
- resolv: Do not build libanl.so for ABIs starting at 2.35
|
|
|
|
- timezone: test-case for BZ #28707
|
|
|
|
- timezone: handle truncated timezones from tzcode-2021d and later (BZ #28707)
|
|
|
|
- x86-64: Add vector asinh/asinhf implementation to libmvec
|
|
|
|
- x86-64: Add vector tanh/tanhf implementation to libmvec
|
|
|
|
- x86-64: Add vector erf/erff implementation to libmvec
|
|
|
|
- x86-64: Add vector acosh/acoshf implementation to libmvec
|
|
|
|
- x86-64: Add vector atanh/atanhf implementation to libmvec
|
|
|
|
- x86-64: Add vector log1p/log1pf implementation to libmvec
|
|
|
|
- x86-64: Add vector log2/log2f implementation to libmvec
|
|
|
|
- x86-64: Add vector log10/log10f implementation to libmvec
|
|
|
|
- x86-64: Add vector atan2/atan2f implementation to libmvec
|
|
|
|
- x86-64: Add vector cbrt/cbrtf implementation to libmvec
|
|
|
|
- x86-64: Add vector sinh/sinhf implementation to libmvec
|
|
|
|
- x86-64: Add vector expm1/expm1f implementation to libmvec
|
|
|
|
- x86-64: Add vector cosh/coshf implementation to libmvec
|
|
|
|
- x86-64: Add vector exp10/exp10f implementation to libmvec
|
|
|
|
- x86-64: Add vector exp2/exp2f implementation to libmvec
|
|
|
|
- x86-64: Add vector hypot/hypotf implementation to libmvec
|
|
|
|
- x86-64: Add vector asin/asinf implementation to libmvec
|
|
|
|
- x86-64: Add vector atan/atanf implementation to libmvec
|
|
|
|
|
2021-12-29 06:09:11 +00:00
|
|
|
* Wed Dec 29 2021 Florian Weimer <fweimer@redhat.com> - 2.34.9000-35
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 5d28a8962dcb6ec056b81d730e3c6fb57185a210:
|
|
|
|
- elf: Add _dl_find_object function
|
|
|
|
- malloc: Remove memusage.h
|
|
|
|
- malloc: Use hp-timing on libmemusage
|
|
|
|
- Remove atomic-machine.h atomic typedefs
|
|
|
|
- malloc: Remove atomic_* usage
|
|
|
|
- microblaze: Add missing implementation when !__ASSUME_TIME64_SYSCALLS
|
|
|
|
- elf: Do not fail for failed dlmopen on audit modules (BZ #28061)
|
|
|
|
- elf: Issue audit la_objopen for vDSO
|
|
|
|
- elf: Add audit tests for modules with TLSDESC
|
|
|
|
- elf: Avoid unnecessary slowdown from profiling with audit (BZ#15533)
|
|
|
|
- elf: Add _dl_audit_pltexit
|
|
|
|
- elf: Add _dl_audit_pltenter
|
|
|
|
- elf: Add _dl_audit_preinit
|
|
|
|
- elf: Add _dl_audit_symbind_alt and _dl_audit_symbind
|
|
|
|
- elf: Add _dl_audit_objclose
|
|
|
|
- elf: Add _dl_audit_objsearch
|
|
|
|
- elf: Add _dl_audit_activity_map and _dl_audit_activity_nsid
|
|
|
|
- elf: Add _dl_audit_objopen
|
|
|
|
- hurd: Fix static-PIE startup
|
|
|
|
- hurd: let csu initialize tls
|
|
|
|
- hurd: Fix XFAIL-ing mallocfork2 tests
|
|
|
|
- hurd: XFAIL more tests that require setpshared support
|
|
|
|
- malloc: Add missing shared thread library flags
|
|
|
|
- stdio-common: Fix %m sprintf test output for GNU/Hurd
|
|
|
|
- x86: Optimize L(less_vec) case in memcmpeq-evex.S
|
|
|
|
- x86: Optimize L(less_vec) case in memcmp-evex-movbe.S
|
|
|
|
- elf: Remove AArch64 from comment for AT_MINSIGSTKSZ
|
|
|
|
- math: Properly cast X_TLOSS to float [BZ #28713]
|
|
|
|
- Set default __TIMESIZE default to 64
|
|
|
|
- stdio: Implement %#m for vfprintf and related functions
|
|
|
|
- elf: Remove unused NEED_DL_BASE_ADDR and _dl_base_addr
|
|
|
|
- x86-64: Add vector acos/acosf implementation to libmvec
|
|
|
|
- intl/plural.y: Avoid conflicting declarations of yyerror and yylex
|
|
|
|
- elf: Remove excessive p_align check on PT_LOAD segments [BZ #28688]
|
|
|
|
- s_sincosf.h: Change pio4 type to float [BZ #28713]
|
|
|
|
- Linux: Fix 32-bit vDSO for clock_gettime on powerpc32
|
|
|
|
- Regenerate ulps on x86_64 with GCC 12
|
|
|
|
- Add ARPHRD_CAN, ARPHRD_MCTP to net/if_arp.h
|
|
|
|
- Remove ununsed tcb-offset
|
|
|
|
- riscv: align stack before calling _dl_init [BZ #28703]
|
|
|
|
- riscv: align stack in clone [BZ #28702]
|
|
|
|
- elf: Fix tst-cpu-features-cpuinfo for KVM guests on some AMD systems [BZ #28704]
|
|
|
|
- powerpc64[le]: Allocate extra stack frame on syscall.S
|
|
|
|
- Update copyright header in recently merged ab_GE locale
|
|
|
|
- fortify: Fix spurious warning with realpath
|
|
|
|
|
2021-12-28 20:41:25 +00:00
|
|
|
* Tue Dec 28 2021 Florian Weimer <fweimer@redhat.com> - 2.34.9000-34
|
|
|
|
- armhfp, i686: Revert 64-bit time_t/off_t for internal use (#2034715)
|
|
|
|
|
2021-12-17 11:11:27 +00:00
|
|
|
* Fri Dec 17 2021 Florian Weimer <fweimer@redhat.com> - 2.34.9000-33
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit b99b0f93ee8762fe53ff65802deb6f00700b9924:
|
|
|
|
- nss: Use "files dns" as the default for the hosts database (#2033020)
|
|
|
|
- arm: Guard ucontext _rtld_global_ro access by SHARED, not PIC macro
|
|
|
|
- Fix The GNU ToolChain Authors copyright notice
|
|
|
|
- Remove upper limit on tunable MALLOC_MMAP_THRESHOLD
|
|
|
|
- localedata: add new locale ab_GE
|
|
|
|
- Fix __minimal_malloc segfaults in __mmap due to stack-protector
|
|
|
|
- __glibc_unsafe_len: Fix comment
|
|
|
|
- malloc: Enable huge page support on main arena
|
|
|
|
- malloc: Move MORECORE fallback mmap to sysmalloc_mmap_fallback
|
|
|
|
- malloc: Add Huge Page support to arenas
|
|
|
|
- malloc: Add Huge Page support for mmap
|
|
|
|
- malloc: Move mmap logic to its own function
|
|
|
|
- malloc: Add THP/madvise support for sbrk
|
|
|
|
- malloc: Add madvise support for Transparent Huge Pages
|
|
|
|
- powerpc: Use global register variable in <thread_pointer.h>
|
|
|
|
- Use LFS and 64 bit time for installed programs (swbz#15333)
|
|
|
|
|
2021-12-15 12:20:14 +00:00
|
|
|
* Wed Dec 15 2021 Arjun Shankar <arjun@redhat.com> - 2.34.9000-32
|
|
|
|
- Do not use --enable-static-pie configure flag since it is now ignored
|
|
|
|
|
2021-12-15 08:35:03 +00:00
|
|
|
* Wed Dec 15 2021 Florian Weimer <fweimer@redhat.com> - 2.34.9000-31
|
|
|
|
- Drop glibc-fedora-revert-PT_LOAD-segment-align.patch; fix applied upstream
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 4435c29892c43ae9908a42e591747be63102689b:
|
|
|
|
- Support target specific ALIGN for variable alignment test [BZ #28676]
|
|
|
|
- NEWS: Document LD_PREFER_MAP_32BIT_EXEC as x86-64 only
|
|
|
|
- elf: Align argument of __munmap to page size [BZ #28676]
|
|
|
|
|
2021-12-14 14:14:14 +00:00
|
|
|
* Tue Dec 14 2021 Arjun Shankar <arjun@redhat.com> - 2.34.9000-30
|
|
|
|
- Add glibc-fedora-revert-PT_LOAD-segment-align.patch to revert upstream
|
|
|
|
commits 718fdd87b1b9 and fc2334ab32e0.
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 0884724a95b60452ad483dbe086d237d02ba624d:
|
|
|
|
- intl: Emit no lines in bison generated files
|
|
|
|
- hurd: Do not set PIE_UNSUPPORTED
|
|
|
|
- NEWS: Move LD_PREFER_MAP_32BIT_EXEC
|
|
|
|
- mach: Fix spurious inclusion of stack_chk_fail_local in libmachuser.a
|
|
|
|
- Disable DT_RUNPATH on NSS tests [BZ #28455]
|
|
|
|
- sysdeps: Simplify sin Taylor Series calculation
|
|
|
|
- math: Remove the error handling wrapper from hypot and hypotf
|
|
|
|
- math: Use fmin/fmax on hypot
|
|
|
|
- aarch64: Add math-use-builtins-f{max,min}.h
|
|
|
|
- math: Add math-use-builtinds-fmin.h
|
|
|
|
- math: Add math-use-builtinds-fmax.h
|
|
|
|
- math: Remove powerpc e_hypot
|
|
|
|
- i386: Move hypot implementation to C
|
|
|
|
- math: Use an improved algorithm for hypotl (ldbl-128)
|
|
|
|
- math: Use an improved algorithm for hypotl (ldbl-96)
|
|
|
|
- math: Improve hypot performance with FMA
|
|
|
|
- math: Use an improved algorithm for hypot (dbl-64)
|
|
|
|
- math: Simplify hypotf implementation
|
|
|
|
- Cleanup encoding in comments
|
|
|
|
- Replace --enable-static-pie with --disable-default-pie
|
|
|
|
- hurd: Add rules for static PIE build
|
|
|
|
- hurd: Fix gmon-static
|
|
|
|
- x86-64: Remove LD_PREFER_MAP_32BIT_EXEC support [BZ #28656]
|
|
|
|
- elf: Use errcode instead of (unset) errno in rtld_chain_load
|
|
|
|
- Add a testcase to check alignment of PT_LOAD segment [BZ #28676]
|
|
|
|
- elf: Properly align PT_LOAD segments [BZ #28676]
|
|
|
|
- elf: Install a symbolic link to ld.so as /usr/bin/ld.so
|
|
|
|
- nptl: Add one more barrier to nptl/tst-create1
|
|
|
|
- Remove TLS_TCB_ALIGN and TLS_INIT_TCB_ALIGN
|
|
|
|
- nptl: rseq failure after registration on main thread is fatal
|
|
|
|
- nptl: Add public rseq symbols and <sys/rseq.h>
|
|
|
|
- nptl: Add glibc.pthread.rseq tunable to control rseq registration
|
|
|
|
- Linux: Use rseq to accelerate sched_getcpu
|
|
|
|
- nptl: Add rseq registration
|
|
|
|
- nptl: Introduce THREAD_GETMEM_VOLATILE
|
|
|
|
- nptl: Introduce <tcb-access.h> for THREAD_* accessors
|
|
|
|
- nptl: Add <thread_pointer.h> for defining __thread_pointer
|
|
|
|
- String: test-memcpy used unaligned types for buffers [BZ 28572]
|
|
|
|
- localedef: check magic value on archive load [BZ #28650]
|
|
|
|
- x86: Don't set Prefer_No_AVX512 for processors with AVX512 and AVX-VNNI
|
|
|
|
- linux: Add generic ioctl implementation
|
|
|
|
- linux: Add generic syscall implementation
|
|
|
|
- misc, nptl: Remove stray references to __condvar_load_64_relaxed
|
|
|
|
- csu: Always use __executable_start in gmon-start.c
|
|
|
|
- elf: execve statically linked programs instead of crashing [BZ #28648]
|
|
|
|
- Add --with-timeoutfactor=NUM to specify TIMEOUTFACTOR
|
|
|
|
|
2021-12-13 12:41:58 +00:00
|
|
|
* Mon Dec 13 2021 Arjun Shankar <arjun@redhat.com> - 2.34.9000-29
|
|
|
|
- Remove nscd (#1905142)
|
|
|
|
https://fedoraproject.org/wiki/Changes/RemoveNSCD
|
|
|
|
|
2021-11-16 11:38:57 +00:00
|
|
|
* Fri Dec 10 2021 Pavel Březina <pbrezina@redhat.com> - 2.34.9000-28
|
|
|
|
- /etc/nsswitch.conf is now owned by authselect (rhbz#2023741)
|
|
|
|
|
2021-12-09 00:59:40 +00:00
|
|
|
* Thu Dec 09 2021 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.34.9000-27
|
|
|
|
- Set BuildFlagsNonshared only if _annotated_build is set.
|
|
|
|
|
2021-12-04 09:20:21 +00:00
|
|
|
* Sat Dec 04 2021 Florian Weimer <fweimer@redhat.com> - 2.34.9000-26
|
|
|
|
- Drop glibc-rh2026399.patch, not needed anymore due to upstream fix.
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 4df1fa6ddc8925a75f3da644d5da3bb16eb33f02:
|
|
|
|
- x86-64: Use notl in EVEX strcmp (#2026399)
|
|
|
|
- nptl: Increase default TCB alignment to 32
|
|
|
|
- elf: add definition for ELF_NOTE_FDO and NT_FDO_PACKAGING_METADATA note
|
|
|
|
- AArch64: Improve A64FX memcpy
|
|
|
|
- AArch64: Optimize memcmp
|
|
|
|
- powerpc64[le]: Fix CFI and LR save address for asm syscalls [BZ #28532]
|
|
|
|
- linux: Implement pipe in terms of __NR_pipe2
|
|
|
|
- linux: Implement mremap in C
|
|
|
|
- linux: Add prlimit64 C implementation
|
|
|
|
- elf: Include <stdbool.h> in tst-tls20.c
|
|
|
|
- elf: Include <stdint.h> in tst-tls20.c
|
|
|
|
- hurd: Let report-wait use a weak reference to _hurd_itimer_thread
|
|
|
|
|
2021-12-04 03:30:47 +00:00
|
|
|
* Sat Dec 4 2021 Florian Weimer <fweimer@redhat.com> - 2.34.9000-25
|
|
|
|
- x86_64: Disable additional EVEX string functions (#2026399)
|
|
|
|
|
2021-12-03 17:47:40 +00:00
|
|
|
* Fri Dec 3 2021 Florian Weimer <fweimer@redhat.com> - 2.34.9000-24
|
|
|
|
- x86_64: Disable EVEX *cmp* string functions (#2026399)
|
|
|
|
|
2021-12-02 15:48:08 +00:00
|
|
|
* Thu Dec 2 2021 Florian Weimer <fweimer@redhat.com> - 2.34.9000-23
|
|
|
|
- Drop glibc-sdt-headers.patch; the official systemtap headers work again.
|
|
|
|
|
2021-11-30 14:43:03 +00:00
|
|
|
* Thu Nov 25 2021 Carlos O'Donell <carlos@redhat.com> - 2.34.9000-22
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 137ed5ac440a4d3cf4178ce97f349b349a9c2c66:
|
|
|
|
- linux: Use /proc/stat fallback for __get_nprocs_conf (BZ #28624)
|
|
|
|
- linux: Add fanotify_mark C implementation
|
|
|
|
- linux: Only build fstatat fallback if required
|
|
|
|
- regex: fix buffer read overrun in search [BZ#28470]
|
|
|
|
- x86-64: Add vector sin/sinf to libmvec microbenchmark
|
|
|
|
- x86-64: Add vector pow/powf to libmvec microbenchmark
|
|
|
|
- x86-64: Add vector log/logf to libmvec microbenchmark
|
|
|
|
- x86-64: Add vector exp/expf to libmvec microbenchmark
|
|
|
|
- x86-64: Add vector cos/cosf to libmvec microbenchmark
|
|
|
|
- io: Refactor close_range and closefrom
|
|
|
|
- nptl: Do not set signal mask on second setjmp return [BZ #28607]
|
|
|
|
- powerpc: Define USE_PPC64_NOTOC iff compiler supports it
|
|
|
|
- setjmp: Replace jmp_buf-macros.h with jmp_buf-macros.sym
|
|
|
|
- Update kernel version to 5.15 in tst-mman-consts.py
|
|
|
|
- socket: Do not use AF_NETLINK in __opensock
|
|
|
|
- elf: Move la_activity (LA_ACT_ADD) after _dl_add_to_namespace_list() (BZ #28062)
|
|
|
|
- Add PF_MCTP, AF_MCTP from Linux 5.15 to bits/socket.h
|
|
|
|
- malloc: Fix malloc debug for 2.35 onwards
|
|
|
|
- elf: Introduce GLRO (dl_libc_freeres), called from __libc_freeres
|
|
|
|
- nptl: Extract <bits/atomic_wide_counter.h> from pthread_cond_common.c
|
|
|
|
|
2021-11-17 12:14:39 +00:00
|
|
|
* Wed Nov 17 2021 Florian Weimer <fweimer@redhat.com> - 2.34.9000-21
|
2021-11-18 10:20:28 +00:00
|
|
|
- Temporary patch glibc-sdt-headers.patch, to fix s390x build failure.
|
|
|
|
- Temporary patch glibc-dso-sort-makefile-fail.patch, to fix x86_64 build.
|
2021-11-17 12:14:39 +00:00
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit a43c0b5483da4c5e3796af309864cb44256c02db:
|
|
|
|
- x86-64: Create microbenchmark infrastructure for libmvec
|
|
|
|
- elf: hidden visibility for __minimal_malloc functions
|
|
|
|
- elf: Use a temporary file to generate Makefile fragments [BZ #28550]
|
|
|
|
- dso-ordering-test.py: Put all sources in one directory [BZ #28550]
|
|
|
|
- elf: Move LAV_CURRENT to link_lavcurrent.h
|
|
|
|
- Move assignment out of the CAS condition
|
|
|
|
- Add a comment for --enable-initfini-array [BZ #27945]
|
|
|
|
- tst-tzset: output reason when creating 4GiB file fails
|
|
|
|
- Add LLL_MUTEX_READ_LOCK [BZ #28537]
|
|
|
|
- Avoid extra load with CAS in __pthread_mutex_clocklock_common [BZ #28537]
|
|
|
|
- Avoid extra load with CAS in __pthread_mutex_lock_full [BZ #28537]
|
|
|
|
- String: Split memcpy tests so that parallel build is faster
|
|
|
|
- x86: Shrink memcmp-sse4.S code size
|
|
|
|
- Support C2X printf %b, %B
|
|
|
|
- Update syscall lists for Linux 5.15
|
|
|
|
- s390: Use long branches across object boundaries (jgh instead of jh)
|
|
|
|
|
2021-11-15 23:31:11 +00:00
|
|
|
* Tue Nov 16 2021 Arjun Shankar <arjun@redhat.com> - 2.34.9000-20
|
|
|
|
- Create /{bin,lib,lib64,sbin} as symbolic links in test-container
|
|
|
|
|
2021-11-10 13:56:26 +00:00
|
|
|
* Wed Nov 10 2021 Arjun Shankar <arjun@redhat.com> - 2.34.9000-19
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 0bd356df1afb0591470499813d4ebae9bcedd6a6:
|
|
|
|
- Remove the unused +mkdep/+make-deps/s-proto.S/s-proto-cancel.S
|
|
|
|
- Fix build a chec failures after b05fae4d8e34
|
|
|
|
- elf: Use the minimal malloc on tunables_strdup
|
|
|
|
|
2021-11-08 21:16:31 +00:00
|
|
|
* Mon Nov 08 2021 Arjun Shankar <arjun@redhat.com> - 2.34.9000-18
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit db6c4935fae6005d46af413b32aa92f4f6059dce:
|
|
|
|
- Fix memmove call in vfprintf-internal.c:group_number
|
|
|
|
- locale: Fix localedata/sort-test undefined behavior
|
|
|
|
- test-memcpy.c: Double TIMEOUT to (8 * 60)
|
|
|
|
- hurd: Remove unused __libc_close_range
|
|
|
|
- hurd: Implement close_range and closefrom
|
|
|
|
- x86: Double size of ERMS rep_movsb_threshold in dl-cacheinfo.h
|
|
|
|
- x86: Optimize memmove-vec-unaligned-erms.S
|
|
|
|
- benchtests: Add partial overlap case in bench-memmove-walk.c
|
|
|
|
- benchtests: Add additional cases to bench-memcpy.c and bench-memmove.c
|
|
|
|
- string: Make tests birdirectional test-memcpy.c
|
|
|
|
- Remove the last trace of generate-md5 [BZ #28554]
|
|
|
|
- Revert "benchtests: Add acosf function to bench-math"
|
|
|
|
- Configure GCC with --enable-initfini-array [BZ #27945]
|
|
|
|
- elf: Earlier missing dynamic segment check in _dl_map_object_from_fd
|
|
|
|
- gconv: Do not emit spurious NUL character in ISO-2022-JP-3 (bug 28524)
|
|
|
|
- [powerpc] Tighten contraints for asm constant parameters
|
|
|
|
|
2021-11-03 15:40:29 +00:00
|
|
|
* Wed Nov 03 2021 Patsy Griffin <patsy@redhat.com> - 2.34.9000-17
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit d3bf2f5927d51258a51ac7fde04f4805f8ee294a.
|
|
|
|
- elf: Do not run DSO sorting if tunables is not enabled
|
|
|
|
- riscv: Build with -mno-relax if linker does not support R_RISCV_ALIGN
|
|
|
|
- x86-64: Replace movzx with movzbl
|
|
|
|
- regex: Unnest nested functions in regcomp.c
|
|
|
|
- Use Linux 5.15 in build-many-glibcs.py
|
|
|
|
- elf: Assume disjointed .rela.dyn and .rela.plt for loader
|
|
|
|
- i386: Explain why __HAVE_64B_ATOMICS has to be 0
|
|
|
|
- benchtests: Add hypotf
|
|
|
|
- benchtests: Make hypot input random
|
|
|
|
- arm: Use have-mtls-dialect-gnu2 to check for ARM TLS descriptors support
|
|
|
|
- arm: Use internal symbol for _dl_argv on _dl_start_user
|
|
|
|
- x86-64: Remove Prefer_AVX2_STRCMP
|
|
|
|
- x86-64: Improve EVEX strcmp with masked load
|
|
|
|
|
2021-10-29 17:37:45 +00:00
|
|
|
* Fri Oct 29 2021 DJ Delorie <dj@redhat.com> - 2.34.9000-16
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 79d0fc65395716c1d95931064c7bf37852203c66.
|
|
|
|
- benchtests: Add acosf function to bench-math
|
|
|
|
- benchtests: Improve bench-memcpy-random
|
|
|
|
- Disable -Waggressive-loop-optimizations warnings in tst-dynarray.c
|
|
|
|
- Fix compiler issue with mmap_internal
|
|
|
|
- Check if linker also support -mtls-dialect=gnu2
|
|
|
|
- Fix LIBC_PROG_BINUTILS for -fuse-ld=lld
|
|
|
|
- elf: Disable ifuncmain{1,5,5pic,5pie} when using LLD
|
|
|
|
- Handle NULL input to malloc_usable_size [BZ #28506]
|
|
|
|
- x86_64: Add memcmpeq.S to fix disable-multi-arch build
|
|
|
|
- login: Add back libutil as an empty library
|
|
|
|
- riscv: Fix incorrect jal with HIDDEN_JUMPTARGET
|
|
|
|
- x86_64: Add evex optimized __memcmpeq in memcmpeq-evex.S
|
|
|
|
- x86_64: Add avx2 optimized __memcmpeq in memcmpeq-avx2.S
|
|
|
|
- x86_64: Add sse2 optimized __memcmpeq in memcmp-sse2.S
|
|
|
|
- x86_64: Add support for __memcmpeq using sse2, avx2, and evex
|
|
|
|
- Benchtests: Add benchtests for __memcmpeq
|
|
|
|
- String: Add __memcmpeq as build target
|
|
|
|
- NEWS: Add item for __memcmpeq
|
|
|
|
- String: Add tests for __memcmpeq
|
|
|
|
- String: Add hidden defs for __memcmpeq() to enable internal usage
|
|
|
|
- String: Add support for __memcmpeq() ABI on all targets
|
|
|
|
- configure: Don't check LD -v --help for LIBC_LINKER_FEATURE
|
|
|
|
- elf: Make global.out depend on reldepmod4.so [BZ #28457]
|
|
|
|
- x86: Replace sse2 instructions with avx in memcmp-evex-movbe.S
|
|
|
|
- bench-math: Sort and put each bench per line
|
|
|
|
- x86_64: Add missing libmvec ABI tests
|
|
|
|
- elf: Fix e6fd79f379 build with --enable-tunables=no
|
|
|
|
- elf: Fix slow DSO sorting behavior in dynamic loader (BZ #17645)
|
|
|
|
- elf: Testing infrastructure for ld.so DSO sorting (BZ #17645)
|
|
|
|
- iconv: Use TIMEOUTFACTOR for iconv test timeout
|
|
|
|
- posix: Remove alloca usage for internal fnmatch implementation
|
|
|
|
- Add alloc_align attribute to memalign et al
|
|
|
|
- linux: Fix a possibly non-constant expression in _Static_assert
|
|
|
|
- x86-64: Add sysdeps/x86_64/fpu/Makeconfig
|
|
|
|
|
2021-10-20 21:35:57 +00:00
|
|
|
* Wed Oct 20 2021 Carlos O'Donell <carlos@redhat.com> - 2.34.9000-15
|
|
|
|
- Remove glibc-ld-readonly-revert.patch.
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit e037274c8ec86ca9d491331984b34f30701b23cf:
|
|
|
|
- stdlib: Fix tst-canon-bz26341 when the glibc build current working
|
|
|
|
directory is itself using symlinks.
|
|
|
|
- powerpc: Remove backtrace implementation
|
|
|
|
- Correct access attribute on memfrob (bug 28475)
|
|
|
|
- debug: Add tests for _FORTIFY_SOURCE=3
|
|
|
|
- Make sure that the fortified function conditionals are constant
|
|
|
|
- Don't add access size hints to fortifiable functions
|
|
|
|
- glibcextract.py: Place un-assemblable @@@ in a comment
|
|
|
|
- nss: Unnest nested function add_key
|
|
|
|
- ld.so: Initialize bootstrap_map.l_ld_readonly [BZ #28340]
|
|
|
|
- timex: Use 64-bit fields on 32-bit TIMESIZE=64 systems (BZ #28469)
|
|
|
|
- manual: Update _TIME_BITS to clarify it's user defined
|
|
|
|
- nptl: Fix tst-cancel7 and tst-cancelx7 pidfile race
|
|
|
|
- elf: Fix elf_get_dynamic_info() for bootstrap
|
|
|
|
- hurd if_index: Explicitly use AF_INET for if index discovery
|
|
|
|
- hurd: Fix intr-msg parameter/stack kludge
|
|
|
|
- x86-64: Add test-vector-abi.h/test-vector-abi-sincos.h
|
|
|
|
- elf: Fix dynamic-link.h usage on rtld.c
|
|
|
|
|
2021-10-14 00:21:46 +00:00
|
|
|
* Thu Oct 14 2021 Arjun Shankar <arjun@redhat.com> - 2.34.9000-14
|
|
|
|
- Adjust glibc-ld-readonly-revert.patch.
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit e59ced238482fd71f3e493717f14f6507346741e:
|
|
|
|
- x86: Optimize memset-vec-unaligned-erms.S
|
|
|
|
- x86: Optimize memcmp-evex-movbe.S for frontend behavior and size
|
|
|
|
- libio: Update tst-wfile-sync to not depend on stdin
|
|
|
|
- elf: Update audit tests to not depend on stdout
|
|
|
|
- elf: Fix elf_get_dynamic_info definition
|
|
|
|
- Add TEST_COMPARE_STRING_WIDE to support/check.h
|
|
|
|
- Fix nios2 localplt failure
|
|
|
|
- elf: Remove Intel MPX support (lazy PLT, ld.so profile, and LD_AUDIT)
|
|
|
|
- resolv: Avoid GCC 12 false positive warning [BZ #28439].
|
|
|
|
- benchtests: Add medium cases and increase iters in bench-memset.c
|
|
|
|
- x86: Modify ENTRY in sysdep.h so that p2align can be specified
|
|
|
|
- resolv: make res_randomid use random_bits()
|
|
|
|
- Linux: implement getloadavg(3) using sysinfo(2)
|
|
|
|
- Remove unreliable parts of rt/tst-cpuclock2
|
|
|
|
- elf: Avoid nested functions in the loader [BZ #27220]
|
|
|
|
- Add run-time check for indirect external access
|
|
|
|
- Initial support for GNU_PROPERTY_1_NEEDED
|
|
|
|
- io: Fix ftw internal realloc buffer (BZ #28126)
|
|
|
|
- Fix subscript error with odd TZif file [BZ #28338]
|
|
|
|
|
2021-10-07 14:02:32 +00:00
|
|
|
* Thu Oct 07 2021 Carlos O'Donell <carlos@redhat.com> - 2.34.9000-13
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit f2e06656d04a9fcb0603802a4f8ce7aa3a1f055e:
|
|
|
|
- S390: Add PCI_MIO and SIE HWCAPs
|
|
|
|
- support: Also return fd when it is 0
|
|
|
|
- ld.so: Don't fill the DT_DEBUG entry in ld.so [BZ #28129]
|
|
|
|
- S390: update libm test ulps
|
|
|
|
- powerpc: update libm test ulps
|
|
|
|
- math: Also xfail the new j0f tests for ibm128-libgcc
|
|
|
|
- y2038: Use a common definition for stat for sparc32
|
|
|
|
- Fix stdlib/tst-setcontext.c for GCC 12 -Warray-compare
|
|
|
|
- aarch64: update libm test ulps
|
|
|
|
- Fixed inaccuracy of j0f (BZ #28185)
|
|
|
|
- Fix stdio-common tests for GCC 12 -Waddress
|
|
|
|
- benchtests: Building benchmarks as static executables
|
|
|
|
- elf: Avoid deadlock between pthread_create and ctors [BZ #28357]
|
|
|
|
- time: Ignore interval nanoseconds on tst-itimer
|
|
|
|
- io: Do not skip timestamps tests for 32-bit time_t
|
|
|
|
- Update to Unicode 14.0.0 [BZ #28390]
|
|
|
|
|
2021-10-01 16:47:58 +00:00
|
|
|
* Fri Oct 01 2021 Florian Weimer <fweimer@redhat.com> - 2.34.9000-12
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit eae81d70574e923ce3c59078b8df857ae192efa6:
|
|
|
|
- nptl: pthread_kill must send signals to a specific thread [BZ #28407]
|
|
|
|
- support: Add check for TID zero in support_wait_for_thread_exit
|
|
|
|
- nptl: Add CLOCK_MONOTONIC support for PI mutexes
|
|
|
|
- support: Add support_mutex_pi_monotonic
|
|
|
|
- nptl: Use FUTEX_LOCK_PI2 when available
|
|
|
|
- Linux: Add FUTEX_LOCK_PI2
|
|
|
|
- Add C2X _PRINTF_NAN_LEN_MAX
|
|
|
|
- Add exp10 macro to <tgmath.h> (bug 26108)
|
|
|
|
- elf: Replace nsid with args.nsid [BZ #27609]
|
|
|
|
- Add missing braces to bsearch inline implementation [BZ #28400]
|
|
|
|
- Update alpha libm-test-ulps
|
|
|
|
- Suppress -Wcast-qual warnings in bsearch
|
|
|
|
- elf: Copy l_addr/l_ld when adding ld.so to a new namespace
|
|
|
|
- powerpc: Fix unrecognized instruction errors with recent binutils
|
|
|
|
|
2021-09-29 18:32:21 +00:00
|
|
|
* Wed Sep 29 2021 Florian Weimer <fweimer@redhat.com> - 2.34.9000-11
|
|
|
|
- Drop glibc-rh1992702-*.patch, applied upstream.
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 9bd9978639c2f75dbea5c25226264b1ac11fdf05:
|
|
|
|
- Do not declare fmax, fmin _FloatN, _FloatNx versions for C2X
|
|
|
|
- Do not define tgmath.h fmaxmag, fminmag macros for C2X (bug 28397)
|
|
|
|
- Add fmaximum, fminimum functions
|
|
|
|
- Linux: Simplify __opensock and fix race condition [BZ #28353]
|
|
|
|
- pthread/tst-cancel28: Fix barrier re-init race condition
|
|
|
|
- powerpc: Delete unneeded ELF_MACHINE_BEFORE_RTLD_RELOC
|
|
|
|
- posix: Remove spawni.c
|
|
|
|
- Disable symbol hack in libc_nonshared.a
|
|
|
|
- linux: Revert the use of sched_getaffinity on get_nproc (BZ #28310)
|
|
|
|
- linux: Simplify get_nprocs
|
|
|
|
- misc: Add __get_nprocs_sched
|
|
|
|
- htl: Fix sigset of main thread
|
|
|
|
- htl: make pthread_sigstate read/write set/oset outside sigstate section
|
|
|
|
- Avoid warning: overriding recipe for .../tst-ro-dynamic-mod.so
|
|
|
|
- benchtests: Improve reliability of memcmp benchmarks
|
|
|
|
- Define __STDC_IEC_60559_BFP__ and __STDC_IEC_60559_COMPLEX__
|
|
|
|
- build-many-glibcs.py: add powerpc64le glibc variant without multiarch
|
|
|
|
- Fix sysdeps/x86/fpu/s_ffma.c for 32-bit FMA processor case
|
|
|
|
- Linux: Avoid closing -1 on failure in __closefrom_fallback
|
|
|
|
- i386: Port elf_machine_{load_address,dynamic} from x86-64
|
|
|
|
- aarch64: Disable A64FX memcpy/memmove BTI unconditionally
|
|
|
|
- xsysconf: Only fail on error results and errno set
|
|
|
|
- powerpc64le: Avoid conflicting types for f64xfmaf128 when IFUNC is not used
|
|
|
|
- Fix ffma use of round-to-odd on x86
|
|
|
|
- vfprintf: Unify argument handling in process_arg
|
|
|
|
- vfprintf: Handle floating-point cases outside of process_arg macro
|
|
|
|
|
2021-09-23 10:36:39 +00:00
|
|
|
* Thu Sep 23 2021 Florian Weimer <fweimer@redhat.com> - 2.34.9000-10
|
|
|
|
- Fix ppc64le build failure by reverting DL_RO_DYN_SECTION removal
|
|
|
|
|
2021-09-23 09:00:44 +00:00
|
|
|
* Thu Sep 23 2021 Florian Weimer <fweimer@redhat.com> - 2.34.9000-9
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 2849e2f53311b66853cb5159b64cba2bddbfb854:
|
|
|
|
- nptl: Avoid setxid deadlock with blocked signals in thread exit [BZ #28361]
|
|
|
|
- Add narrowing fma functions
|
|
|
|
- ld.so: Replace DL_RO_DYN_SECTION with dl_relocate_ld [BZ #28340]
|
|
|
|
- Adjust new narrowing div/mul tests for IBM long double, update powerpc ULPs
|
|
|
|
- Mention today's regex merge in SHARED-FILES
|
|
|
|
- Fix f64xdivf128, f64xmulf128 spurious underflows (bug 28358)
|
|
|
|
- regex: copy back from Gnulib
|
|
|
|
- nptl: Fix type of pthread_mutexattr_getrobust_np,
|
|
|
|
pthread_mutexattr_setrobust_np (bug 28036)
|
|
|
|
- powerpc: Fix unrecognized instruction errors with recent GCC
|
|
|
|
- elf: Include <sysdep.h> in elf/dl-debug-symbols.S
|
|
|
|
- nptl: pthread_kill needs to return ESRCH for old programs (bug 19193)
|
|
|
|
- Extend struct r_debug to support multiple namespaces [BZ #15971]
|
|
|
|
- Use $(pie-default) with conformtest
|
|
|
|
- Run conform/ tests using newly built libc
|
|
|
|
- posix: Fix attribute access mode on getcwd [BZ #27476]
|
|
|
|
- Fix build-many-glibcs.py --strip for installed library renaming
|
|
|
|
- benchtests: Fix validate_benchout.py exceptions
|
|
|
|
- elf: Remove THREAD_GSCOPE_IN_TCB
|
|
|
|
- htl: Reimplement GSCOPE
|
|
|
|
- htl: Move thread table to ld.so
|
|
|
|
- Redirect fma calls to __fma in libm
|
|
|
|
- time: Fix compile error in itimer test affecting hurd
|
|
|
|
|
2021-09-15 10:09:06 +00:00
|
|
|
* Wed Sep 15 2021 Florian Weimer <fweimer@redhat.com> - 2.34.9000-8
|
|
|
|
- Use system CPU count for sysconf(_SC_NPROCESSORS_*) (#1992702)
|
|
|
|
|
2021-09-15 09:22:53 +00:00
|
|
|
* Wed Sep 15 2021 Florian Weimer <fweimer@redhat.com> - 2.34.9000-7
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 2444ce5421c6036a503842d8dd8d93c27aad59ee:
|
|
|
|
- mach lll_lock/unlock: Explicitly request private locking
|
|
|
|
- elf: Replace most uses of THREAD_GSCOPE_IN_TCB
|
|
|
|
- Add MADV_POPULATE_READ and MADV_POPULATE_WRITE from Linux 5.14 to
|
|
|
|
bits/mman-linux.h
|
|
|
|
- Update kernel version to 5.14 in tst-mman-consts.py
|
|
|
|
- configure: Fix check for INSERT in linker script
|
|
|
|
- iconvconfig: Fix behaviour with --prefix [BZ #28199]
|
|
|
|
- nptl: Fix race between pthread_kill and thread exit (bug 12889)
|
|
|
|
- nptl: pthread_kill, pthread_cancel should not fail after exit (bug 19193)
|
|
|
|
- benchtests: Remove redundant assert.h
|
|
|
|
- benchtests: Enable scripts/plot_strings.py to read stdin
|
|
|
|
- Add narrowing square root functions
|
|
|
|
- _Static_assert needs two arguments for compatibility with GCC before 9
|
|
|
|
- testrun.sh: Add support for --tool=rpctrace
|
|
|
|
|
2021-09-10 15:23:26 +00:00
|
|
|
* Thu Sep 09 2021 Patsy Griffin <patsy@redhat.com> - 2.34.9000-6
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 89dc0372a9055e7ef86fe19be6201fa0b16b2f0e.
|
|
|
|
- Update syscall lists for Linux 5.14
|
|
|
|
- Fix failing nss/tst-nss-files-hosts-long with local resolver
|
|
|
|
- MIPS: Setup errno for {f,l,}xstat
|
|
|
|
- Use Linux 5.14 in build-many-glibcs.py
|
|
|
|
- locale: Add missing second argument to _Static_assert in C-collate-seq.c
|
|
|
|
- Update hppa libm-test-ulps
|
|
|
|
- Add generic C.UTF-8 locale (Bug 17318)
|
|
|
|
- Add 'codepoint_collation' support for LC_COLLATE.
|
|
|
|
- AArch64: Update A64FX memset not to degrade at 16KB
|
|
|
|
- Revert "AArch64: Update A64FX memset not to degrade at 16KB"
|
|
|
|
- Remove "Contributed by" lines
|
|
|
|
- Port shared code information from the wiki
|
|
|
|
- AArch64: Update A64FX memset not to degrade at 16KB
|
|
|
|
- posix: remove some iso-8859-encoded characters
|
|
|
|
- configure: Allow LD to be LLD 13.0.0 or above [BZ #26558]
|
|
|
|
- hurd msync: Drop bogus test
|
|
|
|
- hurd: Fix typo in msync
|
|
|
|
|
2021-08-31 09:34:53 +00:00
|
|
|
* Tue Aug 31 2021 Florian Weimer <fweimer@redhat.com> - 2.34.9000-5
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 3c8b9879cab6d41787bc5b14c1748f62fd6d0e5f:
|
|
|
|
- x86-64: Use testl to check __x86_string_control
|
|
|
|
- i686: Don't include multiarch memove in libc.a
|
|
|
|
- support: Add support_wait_for_thread_exit
|
|
|
|
- Allow #pragma GCC in headers in conformtest
|
|
|
|
- nptl: Fix tst-cancel7 and tst-cancelx7 race condition (BZ #14232)
|
|
|
|
- Use support_open_dev_null_range io/tst-closefrom,
|
|
|
|
misc/tst-close_range, and posix/tst-spawn5 (BZ #28260)
|
|
|
|
- support: Add support_open_dev_null_range
|
|
|
|
- llio.texi: Wording fixes in description of closefrom()
|
|
|
|
- Fix error message in memmove test to display correct src pointer
|
|
|
|
|
2021-08-25 13:29:06 +00:00
|
|
|
* Wed Aug 25 2021 Arjun Shankar <arjun@redhat.com> - 2.34.9000-4
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 9926f6e2eeb374cf729d4bb3f092dd4b36a8f861:
|
|
|
|
- elf: Skip tst-auditlogmod-* if the linker doesn't support --depaudit [BZ #28151]
|
|
|
|
- powerpc: Use --no-tls-get-addr-optimize in test only if the linker supports it
|
|
|
|
- x86-64: Remove assembler AVX512DQ check
|
|
|
|
- x86-64: Remove compiler -mavx512f check
|
|
|
|
- Use __executable_start as the lowest address for profiling [BZ #28153]
|
|
|
|
- hurd: Fix errlist error mapping
|
|
|
|
- hurd: Remove old test-err_np.c file
|
|
|
|
- Fix iconv build with GCC mainline
|
|
|
|
- rtld: copy terminating null in tunables_strdup (bug 28256)
|
|
|
|
- mtrace: Fix output with PIE and ASLR [BZ #22716]
|
|
|
|
- x86-64: Optimize load of all bits set into ZMM register [BZ #28252]
|
|
|
|
- Update string/test-memmove.c to cover 16KB copy
|
|
|
|
- elf: Fix missing colon in LD_SHOW_AUXV output [BZ #28253]
|
|
|
|
- x86: fix Autoconf caching of instruction support checks [BZ #27991]
|
|
|
|
- arm: Simplify elf_machine_{load_address,dynamic}
|
|
|
|
- riscv: Drop reliance on _GLOBAL_OFFSET_TABLE_[0]
|
|
|
|
- Remove sysdeps/*/tls-macros.h
|
|
|
|
|
2021-08-24 14:00:06 +00:00
|
|
|
* Tue Aug 24 2021 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.34.9000-3
|
|
|
|
- Disable dependencies and linking for libc_malloc_debug.so (#1985048).
|
|
|
|
|
2021-08-17 20:41:43 +00:00
|
|
|
* Tue Aug 17 2021 DJ Delorie <dj@redhat.com> - 2.34.9000-2
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit b37b75d269883a2c553bb7019a813094eb4e2dd1.
|
|
|
|
- x86_64: Simplify elf_machine_{load_address,dynamic}
|
|
|
|
- elf: Drop elf/tls-macros.h in favor of __thread and tls_model attributes [BZ #28152] [BZ #28205]
|
|
|
|
- hurd: Drop fmh kludge
|
|
|
|
- time: Fix overflow itimer tests on 32-bit systems
|
|
|
|
- mips: increase stack alignment in clone to match the ABI
|
|
|
|
- mips: align stack in clone [BZ #28223]
|
|
|
|
|
|
|
|
|
2021-08-12 13:25:44 +00:00
|
|
|
* Thu Aug 12 2021 Arjun Shankar <arjun@redhat.com> - 2.34.9000-1
|
|
|
|
- Auto-sync with upstream branch master,
|
|
|
|
commit 4cc79c217744743077bf7a0ec5e0a4318f1e6641:
|
|
|
|
- librt: add test (bug 28213)
|
|
|
|
- mtrace: Use a static buffer for printing [BZ #25947]
|
|
|
|
- hurd mmap: Reduce the requested max vmprot
|
|
|
|
- hurd mmap: Factorize MAP_SHARED flag check
|
|
|
|
- aarch64: Make elf_machine_{load_address,dynamic} robust [BZ #28203]
|
|
|
|
- elf: Unconditionally use __ehdr_start
|
|
|
|
- hurd: Add support for AT_NO_AUTOMOUNT
|
|
|
|
- [5/5] AArch64: Improve A64FX memset medium loops
|
|
|
|
- [4/5] AArch64: Improve A64FX memset by removing unroll32
|
|
|
|
- [3/5] AArch64: Improve A64FX memset for remaining bytes
|
|
|
|
- [2/5] AArch64: Improve A64FX memset for large sizes
|
|
|
|
- [1/5] AArch64: Improve A64FX memset for small sizes
|
|
|
|
- Use binutils 2.37 branch in build-many-glibcs.py
|
|
|
|
- Add PTRACE_GET_RSEQ_CONFIGURATION from Linux 5.13 to sys/ptrace.h
|
|
|
|
- librt: fix NULL pointer dereference (bug 28213)
|
|
|
|
- powerpc64: Add checks for Altivec and VSX in ifunc selection
|
|
|
|
- powerpc64: Check cacheline size before using optimised memset routines
|
|
|
|
- powerpc64: Replace some PPC_FEATURE_HAS_VSX with PPC_FEATURE_ARCH_2_06
|
|
|
|
- Linux: Fix fcntl, ioctl, prctl redirects for _TIME_BITS=64 (bug 28182)
|
|
|
|
- Add INADDR_DUMMY from Linux 5.13 to netinet/in.h
|
|
|
|
- tst-mxfast: Don't run with mcheck
|
|
|
|
- rt: Set the correct message queue for tst-mqueue10
|
|
|
|
- Update sparc libm-test-ulps
|
|
|
|
- linux: Add sparck brk implementation
|
|
|
|
- test-dlclose-exit-race: avoid hang on pthread_create error
|
|
|
|
- gethosts: Remove unused argument _type
|
|
|
|
- hurd: Avoid spurious warning
|
|
|
|
- gaiconf_init: Avoid double-free in label and precedence lists
|
|
|
|
- copy_and_spawn_sgid: Avoid double calls to close()
|
|
|
|
- iconv_charmap: Close output file when done
|
|
|
|
- gconv_parseconfdir: Fix memory leak
|
|
|
|
- ldconfig: avoid leak on empty paths in config file
|
|
|
|
- Fix build of nptl/tst-thread_local1.cc with GCC 12
|
|
|
|
- nis: Fix leak on realloc failure in nis_getnames [BZ #28150]
|
|
|
|
- Remove obsolete comments/name from several benchtest input files.
|
|
|
|
- Remove obsolete comments/name from acos-inputs, since slow path was removed.
|
|
|
|
- Open master branch for glibc 2.35 development
|
|
|
|
|
2021-08-02 06:08:11 +00:00
|
|
|
* Mon Aug 2 2021 Florian Weimer <fweimer@redhat.com> - 2.34-1
|
|
|
|
- Switch to glibc 2.34 release tarball:
|
|
|
|
- Update ChangeLog.old/ChangeLog.23.
|
|
|
|
- Prepare for glibc 2.34 release.
|
|
|
|
- po/nl.po: Update Dutch translation.
|
|
|
|
- Update install.texi, and regenerate INSTALL.
|
|
|
|
- Update translations.
|
|
|
|
- Update NEWS.
|
|
|
|
- NEWS: Fix typos, grammar, and missing words
|
|
|
|
- elf: Fix audit regression
|