2012-09-18 20:38:43 +04:00
|
|
|
/* Build configuration used to build glibc, Info files, and locale
|
2017-11-06 18:47:30 +03: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 20:38:43 +04:00
|
|
|
|
2017-09-21 03:27:43 +03:00
|
|
|
{ stdenv, lib
|
2017-05-18 13:55:08 +03:00
|
|
|
, buildPackages
|
2019-09-16 21:00:15 +03:00
|
|
|
, fetchurl, fetchpatch
|
2017-09-21 03:27:43 +03:00
|
|
|
, linuxHeaders ? null
|
|
|
|
, gd ? null, libpng ? null
|
2018-02-19 00:52:44 +03:00
|
|
|
, bison
|
2017-05-18 13:55:08 +03:00
|
|
|
}:
|
|
|
|
|
|
|
|
{ name
|
|
|
|
, withLinuxHeaders ? false
|
|
|
|
, profilingLibraries ? false
|
|
|
|
, withGd ? false
|
|
|
|
, meta
|
2017-04-26 06:55:03 +03:00
|
|
|
, ...
|
|
|
|
} @ args:
|
2012-09-18 20:38:43 +04:00
|
|
|
|
|
|
|
let
|
2018-02-19 00:52:44 +03:00
|
|
|
version = "2.27";
|
|
|
|
patchSuffix = "";
|
|
|
|
sha256 = "0wpwq7gsm7sd6ysidv0z575ckqdg13cr2njyfgrbgh4f65adwwji";
|
2012-09-18 20:38:43 +04:00
|
|
|
in
|
|
|
|
|
2017-05-18 13:55:08 +03:00
|
|
|
assert withLinuxHeaders -> linuxHeaders != null;
|
|
|
|
assert withGd -> gd != null && libpng != null;
|
2012-09-18 20:38:43 +04:00
|
|
|
|
|
|
|
stdenv.mkDerivation ({
|
2019-01-23 00:14:05 +03:00
|
|
|
inherit version;
|
2017-05-18 13:55:08 +03:00
|
|
|
linuxHeaders = if withLinuxHeaders then linuxHeaders else null;
|
2012-09-18 20:38:43 +04:00
|
|
|
|
|
|
|
inherit (stdenv) is64bit;
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-02-18 23:11:15 +03:00
|
|
|
patches =
|
2017-09-02 17:49:43 +03:00
|
|
|
[
|
|
|
|
/* Have rpcgen(1) look for cpp(1) in $PATH. */
|
2013-04-03 13:27:12 +04:00
|
|
|
./rpcgen-path.patch
|
2012-09-18 20:38:43 +04:00
|
|
|
|
|
|
|
/* Allow NixOS and Nix to handle the locale-archive. */
|
|
|
|
./nix-locale-archive.patch
|
|
|
|
|
2013-03-30 01:04:25 +04:00
|
|
|
/* Don't use /etc/ld.so.cache, for non-NixOS systems. */
|
2012-09-18 20:38:43 +04:00
|
|
|
./dont-use-system-ld-so-cache.patch
|
|
|
|
|
2014-02-19 04:44:33 +04:00
|
|
|
/* Don't use /etc/ld.so.preload, but /etc/ld-nix.so.preload. */
|
|
|
|
./dont-use-system-ld-so-preload.patch
|
|
|
|
|
2013-06-04 00:16:05 +04: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 16:57:48 +03:00
|
|
|
|
|
|
|
/* Allow running with RHEL 6 -like kernels. The patch adds an exception
|
|
|
|
for glibc to accept 2.6.32 and to tag the ELFs as 2.6.32-compatible
|
|
|
|
(otherwise the loader would refuse libc).
|
|
|
|
Note that glibc will fully work only on their heavily patched kernels
|
|
|
|
and we lose early mismatch detection on 2.6.32.
|
|
|
|
|
|
|
|
On major glibc updates we should check that the patched kernel supports
|
2018-01-14 22:39:49 +03:00
|
|
|
all the required features. ATM it's verified up to glibc-2.26-131.
|
2017-12-20 16:57:48 +03:00
|
|
|
# HOWTO: check glibc sources for changes in kernel requirements
|
|
|
|
git log -p glibc-2.25.. sysdeps/unix/sysv/linux/x86_64/kernel-features.h sysdeps/unix/sysv/linux/kernel-features.h
|
|
|
|
# get kernel sources (update the URL)
|
|
|
|
mkdir tmp && cd tmp
|
|
|
|
curl http://vault.centos.org/6.9/os/Source/SPackages/kernel-2.6.32-696.el6.src.rpm | rpm2cpio - | cpio -idmv
|
|
|
|
tar xf linux-*.bz2
|
|
|
|
# check syscall presence, for example
|
|
|
|
less linux-*?/arch/x86/kernel/syscall_table_32.S
|
|
|
|
*/
|
|
|
|
./allow-kernel-2.6.32.patch
|
2019-01-23 01:08:44 +03:00
|
|
|
/* Provide utf-8 locales by default, so we can use it in stdenv without depending on our large locale-archive. */
|
|
|
|
(fetchurl {
|
|
|
|
url = "https://salsa.debian.org/glibc-team/glibc/raw/49767c9f7de4828220b691b29de0baf60d8a54ec/debian/patches/localedata/locale-C.diff";
|
|
|
|
sha256 = "0irj60hs2i91ilwg5w7sqrxb695c93xg0ik7yhhq9irprd7fidn4";
|
|
|
|
})
|
2019-10-03 01:01:52 +03:00
|
|
|
|
|
|
|
# https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=5460617d1567657621107d895ee2dd83bc1f88f2
|
|
|
|
./CVE-2018-11236.patch
|
|
|
|
# https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=f51c8367685dc888a02f7304c729ed5277904aff
|
|
|
|
./CVE-2018-11237.patch
|
2017-07-06 05:06:10 +03:00
|
|
|
]
|
2018-03-11 18:53:31 +03:00
|
|
|
++ lib.optional stdenv.isx86_64 ./fix-x64-abi.patch
|
2019-02-17 20:40:50 +03:00
|
|
|
++ lib.optional stdenv.hostPlatform.isMusl ./fix-rpc-types-musl-conflicts.patch
|
2019-09-16 21:00:15 +03:00
|
|
|
++ lib.optional stdenv.buildPlatform.isDarwin ./darwin-cross-build.patch
|
|
|
|
|
|
|
|
# Remove after upgrading to glibc 2.28+
|
|
|
|
++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) (fetchpatch {
|
|
|
|
url = "https://sourceware.org/git/?p=glibc.git;a=patch;h=780684eb04298977bc411ebca1eadeeba4877833";
|
|
|
|
name = "correct-pwent-parsing-issue-and-resulting-build.patch";
|
|
|
|
sha256 = "08fja894vzaj8phwfhsfik6jj2pbji7kypy3q8pgxvsd508zdv1q";
|
|
|
|
excludes = [ "ChangeLog" ];
|
|
|
|
});
|
2012-09-18 20:38:43 +04:00
|
|
|
|
2014-09-13 16:06:27 +04:00
|
|
|
postPatch =
|
|
|
|
''
|
2018-02-19 00:52:44 +03:00
|
|
|
# Needed for glibc to build with the gnumake 3.82
|
|
|
|
# http://comments.gmane.org/gmane.linux.lfs.support/31227
|
2014-09-13 16:06:27 +04:00
|
|
|
sed -i 's/ot \$/ot:\n\ttouch $@\n$/' manual/Makefile
|
2018-02-19 00:52:44 +03: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 16:06:27 +04:00
|
|
|
echo "LDFLAGS-nscd += -static-libgcc" >> nscd/Makefile
|
|
|
|
'';
|
2012-09-18 20:38:43 +04:00
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
[ "-C"
|
|
|
|
"--enable-add-ons"
|
2017-11-17 09:37:25 +03:00
|
|
|
"--enable-obsolete-nsl"
|
2012-09-18 20:38:43 +04:00
|
|
|
"--enable-obsolete-rpc"
|
|
|
|
"--sysconfdir=/etc"
|
2016-09-12 03:28:26 +03:00
|
|
|
"--enable-stackguard-randomization"
|
2018-09-11 10:14:35 +03:00
|
|
|
(lib.withFeatureAs withLinuxHeaders "headers" "${linuxHeaders}/include")
|
|
|
|
(lib.enableFeature profilingLibraries "profile")
|
2017-08-26 12:35:11 +03:00
|
|
|
] ++ lib.optionals withLinuxHeaders [
|
|
|
|
"--enable-kernel=3.2.0" # can't get below with glibc >= 2.26
|
2018-08-20 21:43:41 +03:00
|
|
|
] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
2018-09-11 10:14:35 +03:00
|
|
|
(lib.flip lib.withFeature "fp"
|
|
|
|
(stdenv.hostPlatform.platform.gcc.float or (stdenv.hostPlatform.parsed.abi.float or "hard") == "soft"))
|
2012-09-18 20:38:43 +04:00
|
|
|
"--with-__thread"
|
2018-08-20 21:43:41 +03:00
|
|
|
] ++ lib.optionals (stdenv.hostPlatform == stdenv.buildPlatform && stdenv.hostPlatform.isAarch32) [
|
2012-09-18 20:38:43 +04:00
|
|
|
"--host=arm-linux-gnueabi"
|
|
|
|
"--build=arm-linux-gnueabi"
|
2012-12-28 20:53:18 +04:00
|
|
|
|
2012-09-18 20:38:43 +04: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"
|
2016-02-18 23:11:15 +03:00
|
|
|
] ++ lib.optional withGd "--with-gd";
|
2012-09-18 20:38:43 +04:00
|
|
|
|
|
|
|
installFlags = [ "sysconfdir=$(out)/etc" ];
|
|
|
|
|
2016-01-24 05:28:59 +03:00
|
|
|
outputs = [ "out" "bin" "dev" "static" ];
|
2014-08-25 17:30:46 +04:00
|
|
|
|
2017-06-26 06:10:03 +03:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2018-02-19 00:52:44 +03:00
|
|
|
nativeBuildInputs = [ bison ];
|
2018-01-27 01:40:40 +03:00
|
|
|
buildInputs = [ linuxHeaders ] ++ lib.optionals withGd [ gd libpng ];
|
2012-09-18 20:38:43 +04:00
|
|
|
|
|
|
|
# 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";
|
2018-09-12 00:08:40 +03:00
|
|
|
|
|
|
|
passthru = { inherit version; };
|
2012-09-18 20:38:43 +04:00
|
|
|
}
|
|
|
|
|
2017-05-18 13:55:08 +03:00
|
|
|
// (removeAttrs args [ "withLinuxHeaders" "withGd" ]) //
|
2012-09-18 20:38:43 +04:00
|
|
|
|
|
|
|
{
|
2018-01-27 04:47:55 +03:00
|
|
|
name = name + "-${version}${patchSuffix}";
|
2016-02-18 23:11:15 +03:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-02-20 23:16:41 +03:00
|
|
|
url = "mirror://gnu/glibc/glibc-${version}.tar.xz";
|
2016-02-21 12:30:09 +03:00
|
|
|
inherit sha256;
|
2016-02-18 23:11:15 +03:00
|
|
|
};
|
2012-09-18 20:38:43 +04: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 23:11:15 +03:00
|
|
|
${lib.optionalString (stdenv.cc.libc != null)
|
2014-12-17 21:11:30 +03:00
|
|
|
''makeFlags="$makeFlags BUILD_LDFLAGS=-Wl,-rpath,${stdenv.cc.libc}/lib"''
|
2013-03-11 03:47:59 +04:00
|
|
|
}
|
2012-09-18 20:38:43 +04:00
|
|
|
|
2017-05-18 13:55:08 +03:00
|
|
|
|
2018-08-20 21:43:41 +03:00
|
|
|
'' + lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
|
2017-05-18 13:55:08 +03: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
|
2012-09-18 20:38:43 +04:00
|
|
|
'';
|
|
|
|
|
2016-02-18 23:11:15 +03:00
|
|
|
preBuild = lib.optionalString withGd "unset NIX_DONT_SET_RPATH";
|
|
|
|
|
2018-04-25 06:20:18 +03:00
|
|
|
doCheck = false; # fails
|
|
|
|
|
2012-09-18 20:38:43 +04:00
|
|
|
meta = {
|
2018-12-01 21:22:13 +03:00
|
|
|
homepage = https://www.gnu.org/software/libc/;
|
2016-02-18 23:11:15 +03:00
|
|
|
description = "The GNU C Library";
|
2012-09-18 20:38:43 +04: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.
|
|
|
|
'';
|
|
|
|
|
2016-02-18 23:11:15 +03:00
|
|
|
license = lib.licenses.lgpl2Plus;
|
2012-09-18 20:38:43 +04:00
|
|
|
|
2016-02-18 23:11:15 +03:00
|
|
|
maintainers = [ lib.maintainers.eelco ];
|
2016-08-28 17:57:17 +03:00
|
|
|
platforms = lib.platforms.linux;
|
2012-09-18 20:38:43 +04:00
|
|
|
} // meta;
|
2017-05-18 13:55:08 +03:00
|
|
|
}
|
|
|
|
|
2018-08-20 21:43:41 +03:00
|
|
|
// lib.optionalAttrs (stdenv.hostPlatform != stdenv.buildPlatform) {
|
2017-05-18 13:55:08 +03:00
|
|
|
preInstall = null; # clobber the native hook
|
|
|
|
|
|
|
|
# To avoid a dependency on the build system 'bash'.
|
|
|
|
preFixup = ''
|
2017-12-16 05:30:37 +03:00
|
|
|
rm -f $bin/bin/{ldd,tzselect,catchsegv,xtrace}
|
2017-05-18 13:55:08 +03:00
|
|
|
'';
|
2012-09-18 20:38:43 +04:00
|
|
|
})
|