2012-09-18 16:38:43 +00:00
|
|
|
/* Build configuration used to build glibc, Info files, and locale
|
2017-11-06 15:47:30 +00:00
|
|
|
information.
|
|
|
|
|
|
|
|
Note that this derivation has multiple outputs and does not respect the
|
|
|
|
standard convention of putting the executables into the first output. The
|
|
|
|
first output is `lib` so that the libraries provided by this derivation
|
|
|
|
can be accessed directly, e.g.
|
|
|
|
|
|
|
|
"${pkgs.glibc}/lib/ld-linux-x86_64.so.2"
|
|
|
|
|
|
|
|
The executables are put into `bin` output and need to be referenced via
|
|
|
|
the `bin` attribute of the main package, e.g.
|
|
|
|
|
|
|
|
"${pkgs.glibc.bin}/bin/ldd".
|
|
|
|
|
|
|
|
The executables provided by glibc typically include `ldd`, `locale`, `iconv`
|
|
|
|
but the exact set depends on the library version and the configuration.
|
|
|
|
*/
|
2012-09-18 16:38:43 +00:00
|
|
|
|
2020-06-26 20:44:45 +00:00
|
|
|
# Note: this package is used for bootstrapping fetchurl, and thus
|
|
|
|
# cannot use fetchpatch! All mutable patches (generated by GitHub or
|
|
|
|
# cgit) that are needed here should be included directly in Nixpkgs as
|
|
|
|
# files.
|
|
|
|
|
2017-09-21 00:27:43 +00:00
|
|
|
{ stdenv, lib
|
2017-05-18 10:55:08 +00:00
|
|
|
, buildPackages
|
2020-01-02 22:57:32 +00:00
|
|
|
, fetchurl
|
2017-09-21 00:27:43 +00:00
|
|
|
, linuxHeaders ? null
|
|
|
|
, gd ? null, libpng ? null
|
2019-08-18 18:58:56 +00:00
|
|
|
, libidn2
|
2018-02-18 21:52:44 +00:00
|
|
|
, bison
|
2020-02-14 12:18:37 +00:00
|
|
|
, python3Minimal
|
2017-05-18 10:55:08 +00:00
|
|
|
}:
|
|
|
|
|
2021-05-10 15:12:59 +00:00
|
|
|
{ pname
|
2017-05-18 10:55:08 +00:00
|
|
|
, withLinuxHeaders ? false
|
|
|
|
, profilingLibraries ? false
|
|
|
|
, withGd ? false
|
2024-02-11 14:41:52 +00:00
|
|
|
, enableCET ? false
|
2024-07-11 21:52:23 +00:00
|
|
|
, enableCETRuntimeDefault ? false
|
2021-10-18 06:53:36 +00:00
|
|
|
, extraBuildInputs ? []
|
|
|
|
, extraNativeBuildInputs ? []
|
2017-04-26 03:55:03 +00:00
|
|
|
, ...
|
|
|
|
} @ args:
|
2012-09-18 16:38:43 +00:00
|
|
|
|
|
|
|
let
|
2024-09-15 10:16:24 +00:00
|
|
|
version = "2.40";
|
|
|
|
patchSuffix = "-36";
|
|
|
|
sha256 = "sha256-GaiQF16SY9dI9ieZPeb0sa+c0h4D8IDkv7Oh+sECBaI=";
|
2012-09-18 16:38:43 +00:00
|
|
|
in
|
|
|
|
|
2017-05-18 10:55:08 +00:00
|
|
|
assert withLinuxHeaders -> linuxHeaders != null;
|
|
|
|
assert withGd -> gd != null && libpng != null;
|
2024-07-11 21:52:23 +00:00
|
|
|
assert enableCET == false -> !enableCETRuntimeDefault;
|
2012-09-18 16:38:43 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation ({
|
2021-05-10 15:12:59 +00:00
|
|
|
version = version + patchSuffix;
|
2012-09-18 16:38:43 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-02-18 20:11:15 +00:00
|
|
|
patches =
|
2017-09-02 14:49:43 +00:00
|
|
|
[
|
2021-03-30 19:10:03 +00:00
|
|
|
/* No tarballs for stable upstream branch, only https://sourceware.org/git/glibc.git and using git would complicate bootstrapping.
|
2024-02-09 21:52:40 +00:00
|
|
|
$ git fetch --all -p && git checkout origin/release/2.39/master && git describe
|
2024-09-15 10:16:24 +00:00
|
|
|
glibc-2.40-36-g7073164add
|
|
|
|
$ git show --minimal --reverse glibc-2.40.. ':!ADVISORIES' > 2.40-master.patch
|
2021-03-30 19:10:03 +00:00
|
|
|
|
|
|
|
To compare the archive contents zdiff can be used.
|
2024-09-15 10:16:24 +00:00
|
|
|
$ diff -u 2.40-master.patch ../nixpkgs/pkgs/development/libraries/glibc/2.40-master.patch
|
2024-04-13 17:05:45 +00:00
|
|
|
|
|
|
|
Please note that each commit has changes to the file ADVISORIES excluded since
|
|
|
|
that conflicts with the directory advisories/ making cross-builds from
|
|
|
|
hosts with case-insensitive file-systems impossible.
|
2020-10-17 10:28:07 +00:00
|
|
|
*/
|
2024-09-15 10:16:24 +00:00
|
|
|
./2.40-master.patch
|
2020-10-17 10:28:07 +00:00
|
|
|
|
2012-09-18 16:38:43 +00:00
|
|
|
/* Allow NixOS and Nix to handle the locale-archive. */
|
|
|
|
./nix-locale-archive.patch
|
|
|
|
|
2013-03-29 21:04:25 +00:00
|
|
|
/* Don't use /etc/ld.so.cache, for non-NixOS systems. */
|
2012-09-18 16:38:43 +00:00
|
|
|
./dont-use-system-ld-so-cache.patch
|
|
|
|
|
2014-02-19 00:44:33 +00:00
|
|
|
/* Don't use /etc/ld.so.preload, but /etc/ld-nix.so.preload. */
|
|
|
|
./dont-use-system-ld-so-preload.patch
|
|
|
|
|
2013-06-03 20:16:05 +00:00
|
|
|
/* The command "getconf CS_PATH" returns the default search path
|
|
|
|
"/bin:/usr/bin", which is inappropriate on NixOS machines. This
|
|
|
|
patch extends the search path by "/run/current-system/sw/bin". */
|
|
|
|
./fix_path_attribute_in_getconf.patch
|
2017-12-20 13:57:48 +00:00
|
|
|
|
2019-11-24 17:47:00 +00:00
|
|
|
./fix-x64-abi.patch
|
2021-09-13 02:04:10 +00:00
|
|
|
|
|
|
|
/* https://github.com/NixOS/nixpkgs/pull/137601 */
|
|
|
|
./nix-nss-open-files.patch
|
2021-08-27 17:21:16 +00:00
|
|
|
|
|
|
|
./0001-Revert-Remove-all-usage-of-BASH-or-BASH-in-installed.patch
|
2023-03-29 07:35:52 +00:00
|
|
|
|
2023-08-05 19:40:29 +00:00
|
|
|
/* Patch derived from archlinux,
|
|
|
|
https://gitlab.archlinux.org/archlinux/packaging/packages/glibc/-/blob/e54d98e2d1aae4930ecad9404ef12234922d9dfd/reenable_DT_HASH.patch
|
2023-03-29 07:35:52 +00:00
|
|
|
|
2023-08-05 19:40:29 +00:00
|
|
|
See also https://github.com/ValveSoftware/Proton/issues/6051
|
|
|
|
& https://github.com/NixOS/nixpkgs/pull/188492#issuecomment-1233802991
|
2023-03-29 07:35:52 +00:00
|
|
|
*/
|
|
|
|
./reenable_DT_HASH.patch
|
2019-11-24 17:47:00 +00:00
|
|
|
]
|
2023-10-31 14:43:55 +00:00
|
|
|
/* NVCC does not support ARM intrinsics. Since <math.h> is pulled in by almost
|
|
|
|
every HPC piece of software, without this patch CUDA compilation on ARM
|
|
|
|
is effectively broken. See
|
|
|
|
https://forums.developer.nvidia.com/t/nvcc-fails-to-build-with-arm-neon-instructions-cpp-vs-cu/248355/2.
|
|
|
|
*/
|
|
|
|
++ (
|
|
|
|
let
|
|
|
|
isAarch64 = stdenv.buildPlatform.isAarch64 || stdenv.hostPlatform.isAarch64;
|
|
|
|
isLinux = stdenv.buildPlatform.isLinux || stdenv.hostPlatform.isLinux;
|
|
|
|
in
|
|
|
|
lib.optional (isAarch64 && isLinux) ./0001-aarch64-math-vector.h-add-NVCC-include-guard.patch
|
|
|
|
)
|
2019-02-17 17:40:50 +00:00
|
|
|
++ lib.optional stdenv.hostPlatform.isMusl ./fix-rpc-types-musl-conflicts.patch
|
2024-07-11 21:52:23 +00:00
|
|
|
++ lib.optional stdenv.buildPlatform.isDarwin ./darwin-cross-build.patch
|
|
|
|
++ lib.optional enableCETRuntimeDefault ./2.39-revert-cet-default-disable.patch;
|
2012-09-18 16:38:43 +00:00
|
|
|
|
2014-09-13 12:06:27 +00:00
|
|
|
postPatch =
|
|
|
|
''
|
2018-02-18 21:52:44 +00:00
|
|
|
# Needed for glibc to build with the gnumake 3.82
|
|
|
|
# http://comments.gmane.org/gmane.linux.lfs.support/31227
|
2014-09-13 12:06:27 +00:00
|
|
|
sed -i 's/ot \$/ot:\n\ttouch $@\n$/' manual/Makefile
|
2018-02-18 21:52:44 +00:00
|
|
|
|
|
|
|
# nscd needs libgcc, and we don't want it dynamically linked
|
|
|
|
# because we don't want it to depend on bootstrap-tools libs.
|
2014-09-13 12:06:27 +00:00
|
|
|
echo "LDFLAGS-nscd += -static-libgcc" >> nscd/Makefile
|
2022-01-03 22:19:37 +00:00
|
|
|
|
|
|
|
# Ensure that `__nss_files_fopen` can still be wrapped by `libredirect`.
|
|
|
|
sed -i -e '/libc_hidden_def (__nss_files_fopen)/d' nss/nss_files_fopen.c
|
|
|
|
sed -i -e '/libc_hidden_proto (__nss_files_fopen)/d' include/nss_files.h
|
2020-02-10 14:52:20 +00:00
|
|
|
''
|
|
|
|
# FIXME: find a solution for infinite recursion in cross builds.
|
|
|
|
# For now it's hopefully acceptable that IDN from libc doesn't reliably work.
|
|
|
|
+ lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
|
2019-08-18 18:58:56 +00:00
|
|
|
|
|
|
|
# Ensure that libidn2 is found.
|
|
|
|
patch -p 1 <<EOF
|
|
|
|
--- a/inet/idna.c
|
|
|
|
+++ b/inet/idna.c
|
|
|
|
@@ -25,1 +25,1 @@
|
|
|
|
-#define LIBIDN2_SONAME "libidn2.so.0"
|
|
|
|
+#define LIBIDN2_SONAME "${lib.getLib libidn2}/lib/libidn2.so.0"
|
|
|
|
EOF
|
2014-09-13 12:06:27 +00:00
|
|
|
'';
|
2012-09-18 16:38:43 +00:00
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
[ "-C"
|
|
|
|
"--enable-add-ons"
|
|
|
|
"--sysconfdir=/etc"
|
2022-07-20 22:04:53 +00:00
|
|
|
"--enable-stack-protector=strong"
|
2021-05-22 08:01:09 +00:00
|
|
|
"--enable-bind-now"
|
2018-09-11 07:14:35 +00:00
|
|
|
(lib.withFeatureAs withLinuxHeaders "headers" "${linuxHeaders}/include")
|
|
|
|
(lib.enableFeature profilingLibraries "profile")
|
2023-08-05 19:40:29 +00:00
|
|
|
"--enable-fortify-source"
|
2021-11-21 01:50:41 +00:00
|
|
|
] ++ lib.optionals (stdenv.hostPlatform.isx86 || stdenv.hostPlatform.isAarch64) [
|
2021-07-02 15:08:09 +00:00
|
|
|
# This feature is currently supported on
|
|
|
|
# i386, x86_64 and x32 with binutils 2.29 or later,
|
|
|
|
# and on aarch64 with binutils 2.30 or later.
|
|
|
|
# https://sourceware.org/glibc/wiki/PortStatus
|
|
|
|
"--enable-static-pie"
|
2024-02-11 14:41:52 +00:00
|
|
|
] ++ lib.optionals (enableCET != false) [
|
2022-07-20 22:05:07 +00:00
|
|
|
# Enable Intel Control-flow Enforcement Technology (CET) support
|
2024-02-11 14:41:52 +00:00
|
|
|
"--enable-cet${if builtins.isString enableCET then "=${enableCET}" else ""}"
|
2017-08-26 09:35:11 +00:00
|
|
|
] ++ lib.optionals withLinuxHeaders [
|
2022-11-10 16:19:25 +00:00
|
|
|
"--enable-kernel=3.10.0" # RHEL 7 and derivatives, seems oldest still supported kernel
|
2018-08-20 18:43:41 +00:00
|
|
|
] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
2018-09-11 07:14:35 +00:00
|
|
|
(lib.flip lib.withFeature "fp"
|
2021-01-23 01:33:55 +00:00
|
|
|
(stdenv.hostPlatform.gcc.float or (stdenv.hostPlatform.parsed.abi.float or "hard") == "soft"))
|
2012-09-18 16:38:43 +00:00
|
|
|
"--with-__thread"
|
2018-08-20 18:43:41 +00:00
|
|
|
] ++ lib.optionals (stdenv.hostPlatform == stdenv.buildPlatform && stdenv.hostPlatform.isAarch32) [
|
2012-09-18 16:38:43 +00:00
|
|
|
"--host=arm-linux-gnueabi"
|
|
|
|
"--build=arm-linux-gnueabi"
|
2012-12-28 16:53:18 +00:00
|
|
|
|
2012-09-18 16:38:43 +00:00
|
|
|
# To avoid linking with -lgcc_s (dynamic link)
|
|
|
|
# so the glibc does not depend on its compiler store path
|
|
|
|
"libc_cv_as_needed=no"
|
2022-07-16 20:42:23 +00:00
|
|
|
]
|
2024-02-09 21:52:40 +00:00
|
|
|
++ lib.optional withGd "--with-gd";
|
2012-09-18 16:38:43 +00:00
|
|
|
|
2023-06-16 01:04:46 +00:00
|
|
|
makeFlags = (args.makeFlags or []) ++ [
|
2020-11-24 03:04:14 +00:00
|
|
|
"OBJCOPY=${stdenv.cc.targetPrefix}objcopy"
|
|
|
|
];
|
|
|
|
|
2023-05-22 17:53:52 +00:00
|
|
|
postInstall = (args.postInstall or "") + ''
|
|
|
|
moveToOutput bin/getent $getent
|
|
|
|
'';
|
|
|
|
|
2012-09-18 16:38:43 +00:00
|
|
|
installFlags = [ "sysconfdir=$(out)/etc" ];
|
|
|
|
|
2022-05-29 16:25:54 +00:00
|
|
|
# out as the first output is an exception exclusive to glibc
|
2023-05-22 17:53:52 +00:00
|
|
|
|
|
|
|
# getent is its own output, not kept in bin, since many things
|
|
|
|
# depend on getent but not on the locale generation tools in the bin
|
|
|
|
# output. This saves a couple of megabytes of closure size in many cases.
|
|
|
|
outputs = [ "out" "bin" "dev" "static" "getent" ];
|
2014-08-25 13:30:46 +00:00
|
|
|
|
2022-05-22 03:32:47 +00:00
|
|
|
strictDeps = true;
|
2017-06-26 03:10:03 +00:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2021-10-18 06:53:36 +00:00
|
|
|
nativeBuildInputs = [ bison python3Minimal ] ++ extraNativeBuildInputs;
|
|
|
|
buildInputs = [ linuxHeaders ] ++ lib.optionals withGd [ gd libpng ] ++ extraBuildInputs;
|
2012-09-18 16:38:43 +00:00
|
|
|
|
2022-12-07 04:16:50 +00:00
|
|
|
env = {
|
2023-02-06 20:49:02 +00:00
|
|
|
linuxHeaders = lib.optionalString withLinuxHeaders linuxHeaders;
|
2022-12-07 04:16:50 +00:00
|
|
|
inherit (stdenv.hostPlatform) is64bit;
|
|
|
|
# Needed to install share/zoneinfo/zone.tab. Set to impure /bin/sh to
|
|
|
|
# prevent a retained dependency on the bootstrap tools in the stdenv-linux
|
|
|
|
# bootstrap.
|
|
|
|
BASH_SHELL = "/bin/sh";
|
|
|
|
};
|
2021-05-18 17:09:34 +00:00
|
|
|
|
|
|
|
# Used by libgcc, elf-header, and others to determine ABI
|
2021-10-24 22:53:12 +00:00
|
|
|
passthru = { inherit version; minorRelease = version; };
|
2012-09-18 16:38:43 +00:00
|
|
|
}
|
|
|
|
|
2024-02-11 14:41:52 +00:00
|
|
|
// (removeAttrs args [ "withLinuxHeaders" "withGd" "enableCET" "postInstall" "makeFlags" ]) //
|
2012-09-18 16:38:43 +00:00
|
|
|
|
|
|
|
{
|
2016-02-18 20:11:15 +00:00
|
|
|
src = fetchurl {
|
2017-02-20 20:16:41 +00:00
|
|
|
url = "mirror://gnu/glibc/glibc-${version}.tar.xz";
|
2016-02-21 09:30:09 +00:00
|
|
|
inherit sha256;
|
2016-02-18 20:11:15 +00:00
|
|
|
};
|
2012-09-18 16:38:43 +00:00
|
|
|
|
|
|
|
# Remove absolute paths from `configure' & co.; build out-of-tree.
|
|
|
|
preConfigure = ''
|
|
|
|
export PWD_P=$(type -tP pwd)
|
|
|
|
for i in configure io/ftwtest-sh; do
|
|
|
|
# Can't use substituteInPlace here because replace hasn't been
|
|
|
|
# built yet in the bootstrap.
|
|
|
|
sed -i "$i" -e "s^/bin/pwd^$PWD_P^g"
|
|
|
|
done
|
|
|
|
|
|
|
|
mkdir ../build
|
|
|
|
cd ../build
|
|
|
|
|
|
|
|
configureScript="`pwd`/../$sourceRoot/configure"
|
|
|
|
|
2016-02-18 20:11:15 +00:00
|
|
|
${lib.optionalString (stdenv.cc.libc != null)
|
2020-06-08 21:01:59 +00:00
|
|
|
''makeFlags="$makeFlags BUILD_LDFLAGS=-Wl,-rpath,${stdenv.cc.libc}/lib OBJDUMP=${stdenv.cc.bintools.bintools}/bin/objdump"''
|
2013-03-10 23:47:59 +00:00
|
|
|
}
|
2012-09-18 16:38:43 +00:00
|
|
|
|
2017-05-18 10:55:08 +00:00
|
|
|
|
2018-08-20 18:43:41 +00:00
|
|
|
'' + lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
|
2017-05-18 10:55:08 +00:00
|
|
|
sed -i s/-lgcc_eh//g "../$sourceRoot/Makeconfig"
|
|
|
|
|
|
|
|
cat > config.cache << "EOF"
|
|
|
|
libc_cv_forced_unwind=yes
|
|
|
|
libc_cv_c_cleanup=yes
|
|
|
|
libc_cv_gnu89_inline=yes
|
|
|
|
EOF
|
2021-06-04 12:44:23 +00:00
|
|
|
|
|
|
|
# ./configure has logic like
|
|
|
|
#
|
|
|
|
# AR=`$CC -print-prog-name=ar`
|
|
|
|
#
|
|
|
|
# This searches various directories in the gcc and its wrapper. In nixpkgs,
|
|
|
|
# this returns the bare string "ar", which is build ar. This can result as
|
|
|
|
# a build failure with the following message:
|
|
|
|
#
|
|
|
|
# libc_pic.a: error adding symbols: archive has no index; run ranlib to add one
|
|
|
|
#
|
|
|
|
# (Observed cross compiling from aarch64-linux -> armv7l-linux).
|
|
|
|
#
|
|
|
|
# Nixpkgs passes a correct value for AR and friends, so to use the correct
|
|
|
|
# set of tools, we only need to delete this special handling.
|
|
|
|
sed -i \
|
|
|
|
-e '/^AR=/d' \
|
|
|
|
-e '/^AS=/d' \
|
|
|
|
-e '/^LD=/d' \
|
|
|
|
-e '/^OBJCOPY=/d' \
|
|
|
|
-e '/^OBJDUMP=/d' \
|
|
|
|
$configureScript
|
2012-09-18 16:38:43 +00:00
|
|
|
'';
|
|
|
|
|
2016-02-18 20:11:15 +00:00
|
|
|
preBuild = lib.optionalString withGd "unset NIX_DONT_SET_RPATH";
|
|
|
|
|
2018-04-25 03:20:18 +00:00
|
|
|
doCheck = false; # fails
|
|
|
|
|
2020-08-10 09:25:08 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.gnu.org/software/libc/";
|
2016-02-18 20:11:15 +00:00
|
|
|
description = "GNU C Library";
|
2012-09-18 16:38:43 +00:00
|
|
|
|
2024-10-23 19:52:18 +00:00
|
|
|
longDescription = ''
|
|
|
|
Any Unix-like operating system needs a C library: the library which
|
|
|
|
defines the "system calls" and other basic facilities such as
|
|
|
|
open, malloc, printf, exit...
|
|
|
|
|
|
|
|
The GNU C library is used as the C library in the GNU system and
|
|
|
|
most systems with the Linux kernel.
|
|
|
|
'';
|
2012-09-18 16:38:43 +00:00
|
|
|
|
2020-08-10 09:25:08 +00:00
|
|
|
license = licenses.lgpl2Plus;
|
2012-09-18 16:38:43 +00:00
|
|
|
|
tree-wide: remove eelco as maintainer from things he no longer maintains
While preparing this change, I read the git blame on all of the files I
touched. I saw a working lifetime of building this system which we use
every day and love dearly and keep maintained ourselves. I saw commits
from a 14 year range between 2003 to 2017!! I could not be more thankful
for Eelco's work on building large parts of the foundation of nixpkgs
that all of us rely on now.
However, the end date of that range of the files I looked at the blame
on was 2017. I did not see surviving code from any newer date than that.
Looking at the Git logs, Eelco has been working on other things, and
that's totally fine.
However, it means that our maintenance metadata is out of date on a lot
of packages, and *that*'s the reason I am submitting this change. There
are a lot of packages that don't have anyone with their name on them to
be pinged if they need attention, even if they have had recent activity
(although it is never clear if recent activity was just someone fixing
it because ZHF or because the package actually matters to them).
There are a lot of packages with storied history that maybe don't need
to be in the set anymore at all since they have not been touched in
years; or maybe they are simply finished.
Empty maintainer lists should be a sign that we need to figure out who
maintains it or potentially remove it if it has rotted, and allowing the
maintainer list to be empty if it is already not maintained is part of a
healthy repository ecology.
Either way, I would like to have the maintenance metadata not mislead
anyone into sending Eelco emails about packages he doesn't, in practice,
work on anymore. I have not removed his name from everything; there are
some things that he is the upstream for or has worked on more recently,
for instance, like Nix, which I have left alone.
2024-08-21 08:07:42 +00:00
|
|
|
maintainers = with maintainers; [ ma27 connorbaker ];
|
2020-08-10 09:25:08 +00:00
|
|
|
platforms = platforms.linux;
|
2023-01-12 04:19:04 +00:00
|
|
|
} // (args.meta or {});
|
2012-09-18 16:38:43 +00:00
|
|
|
})
|