glibc: Drop hurd support
This hasn't been maintained since 2012. Also, renamed glibc's kernelHeaders argument to linuxHeaders.
This commit is contained in:
parent
f98a5946b7
commit
1ab14aad7a
@ -22,22 +22,11 @@ postInstall() {
|
|||||||
|
|
||||||
test -f $out/etc/ld.so.cache && rm $out/etc/ld.so.cache
|
test -f $out/etc/ld.so.cache && rm $out/etc/ld.so.cache
|
||||||
|
|
||||||
# FIXME: Use `test -n $linuxHeaders' when `kernelHeaders' has been
|
if test -n "$linuxHeaders"; then
|
||||||
# renamed.
|
|
||||||
if test -z "$hurdHeaders"; then
|
|
||||||
# Include the Linux kernel headers in Glibc, except the `scsi'
|
# Include the Linux kernel headers in Glibc, except the `scsi'
|
||||||
# subdirectory, which Glibc provides itself.
|
# subdirectory, which Glibc provides itself.
|
||||||
(cd $out/include && \
|
(cd $out/include && \
|
||||||
ln -sv $(ls -d $kernelHeaders/include/* | grep -v 'scsi$') .)
|
ln -sv $(ls -d $linuxHeaders/include/* | grep -v 'scsi$') .)
|
||||||
fi
|
|
||||||
|
|
||||||
if test -f "$out/lib/libhurduser.so"; then
|
|
||||||
# libc.so, libhurduser.so, and libmachuser.so depend on each
|
|
||||||
# other, so add them to libc.so (a RUNPATH on libc.so.0.3
|
|
||||||
# would be ignored by the cross-linker.)
|
|
||||||
echo "adding \`libhurduser.so' and \`libmachuser.so' to the \`libc.so' linker script..."
|
|
||||||
sed -i "$out/lib/libc.so" \
|
|
||||||
-e"s|\(libc\.so\.[^ ]\+\>\)|\1 $out/lib/libhurduser.so $out/lib/libmachuser.so|g"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Fix for NIXOS-54 (ldd not working on x86_64). Make a symlink
|
# Fix for NIXOS-54 (ldd not working on x86_64). Make a symlink
|
||||||
|
@ -3,10 +3,8 @@
|
|||||||
|
|
||||||
cross:
|
cross:
|
||||||
|
|
||||||
{ name, fetchurl, fetchgit ? null, stdenv, installLocales ? false
|
{ name, fetchurl, lib, stdenv, installLocales ? false
|
||||||
, gccCross ? null, kernelHeaders ? null
|
, gccCross ? null, linuxHeaders ? null
|
||||||
, machHeaders ? null, hurdHeaders ? null, libpthreadHeaders ? null
|
|
||||||
, mig ? null
|
|
||||||
, profilingLibraries ? false, meta
|
, profilingLibraries ? false, meta
|
||||||
, withGd ? false, gd ? null, libpng ? null
|
, withGd ? false, gd ? null, libpng ? null
|
||||||
, preConfigure ? "", ... }@args:
|
, preConfigure ? "", ... }@args:
|
||||||
@ -18,12 +16,9 @@ let
|
|||||||
in
|
in
|
||||||
|
|
||||||
assert cross != null -> gccCross != null;
|
assert cross != null -> gccCross != null;
|
||||||
assert mig != null -> machHeaders != null;
|
|
||||||
assert machHeaders != null -> hurdHeaders != null;
|
|
||||||
assert hurdHeaders != null -> libpthreadHeaders != null;
|
|
||||||
|
|
||||||
stdenv.mkDerivation ({
|
stdenv.mkDerivation ({
|
||||||
inherit kernelHeaders installLocales;
|
inherit linuxHeaders installLocales;
|
||||||
|
|
||||||
# The host/target system.
|
# The host/target system.
|
||||||
crossConfig = if cross != null then cross.config else null;
|
crossConfig = if cross != null then cross.config else null;
|
||||||
@ -32,9 +27,7 @@ stdenv.mkDerivation ({
|
|||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
/* Don't try to apply these patches to the Hurd's snapshot, which is
|
patches =
|
||||||
older. */
|
|
||||||
patches = stdenv.lib.optionals (hurdHeaders == null)
|
|
||||||
[ /* Have rpcgen(1) look for cpp(1) in $PATH. */
|
[ /* Have rpcgen(1) look for cpp(1) in $PATH. */
|
||||||
./rpcgen-path.patch
|
./rpcgen-path.patch
|
||||||
|
|
||||||
@ -96,36 +89,35 @@ stdenv.mkDerivation ({
|
|||||||
"--sysconfdir=/etc"
|
"--sysconfdir=/etc"
|
||||||
"--localedir=/var/run/current-system/sw/lib/locale"
|
"--localedir=/var/run/current-system/sw/lib/locale"
|
||||||
"libc_cv_ssp=no"
|
"libc_cv_ssp=no"
|
||||||
(if kernelHeaders != null
|
(if linuxHeaders != null
|
||||||
then "--with-headers=${kernelHeaders}/include"
|
then "--with-headers=${linuxHeaders}/include"
|
||||||
else "--without-headers")
|
else "--without-headers")
|
||||||
(if profilingLibraries
|
(if profilingLibraries
|
||||||
then "--enable-profile"
|
then "--enable-profile"
|
||||||
else "--disable-profile")
|
else "--disable-profile")
|
||||||
] ++ stdenv.lib.optionals (cross == null && kernelHeaders != null) [
|
] ++ lib.optionals (cross == null && linuxHeaders != null) [
|
||||||
"--enable-kernel=2.6.32"
|
"--enable-kernel=2.6.32"
|
||||||
] ++ stdenv.lib.optionals (cross != null) [
|
] ++ lib.optionals (cross != null) [
|
||||||
(if cross.withTLS then "--with-tls" else "--without-tls")
|
(if cross.withTLS then "--with-tls" else "--without-tls")
|
||||||
(if cross.float == "soft" then "--without-fp" else "--with-fp")
|
(if cross.float == "soft" then "--without-fp" else "--with-fp")
|
||||||
] ++ stdenv.lib.optionals (cross != null
|
] ++ lib.optionals (cross != null
|
||||||
&& cross.platform ? kernelMajor
|
&& cross.platform ? kernelMajor
|
||||||
&& cross.platform.kernelMajor == "2.6") [
|
&& cross.platform.kernelMajor == "2.6") [
|
||||||
"--enable-kernel=2.6.0"
|
"--enable-kernel=2.6.0"
|
||||||
"--with-__thread"
|
"--with-__thread"
|
||||||
] ++ stdenv.lib.optionals (cross == null && stdenv.isArm) [
|
] ++ lib.optionals (cross == null && stdenv.isArm) [
|
||||||
"--host=arm-linux-gnueabi"
|
"--host=arm-linux-gnueabi"
|
||||||
"--build=arm-linux-gnueabi"
|
"--build=arm-linux-gnueabi"
|
||||||
|
|
||||||
# To avoid linking with -lgcc_s (dynamic link)
|
# To avoid linking with -lgcc_s (dynamic link)
|
||||||
# so the glibc does not depend on its compiler store path
|
# so the glibc does not depend on its compiler store path
|
||||||
"libc_cv_as_needed=no"
|
"libc_cv_as_needed=no"
|
||||||
] ++ stdenv.lib.optional withGd "--with-gd";
|
] ++ lib.optional withGd "--with-gd";
|
||||||
|
|
||||||
installFlags = [ "sysconfdir=$(out)/etc" ];
|
installFlags = [ "sysconfdir=$(out)/etc" ];
|
||||||
|
|
||||||
buildInputs = stdenv.lib.optionals (cross != null) [ gccCross ]
|
buildInputs = lib.optionals (cross != null) [ gccCross ]
|
||||||
++ stdenv.lib.optional (mig != null) mig
|
++ lib.optionals withGd [ gd libpng ];
|
||||||
++ stdenv.lib.optionals withGd [ gd libpng ];
|
|
||||||
|
|
||||||
# Needed to install share/zoneinfo/zone.tab. Set to impure /bin/sh to
|
# 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
|
# prevent a retained dependency on the bootstrap tools in the stdenv-linux
|
||||||
@ -137,29 +129,19 @@ stdenv.mkDerivation ({
|
|||||||
# I.e. when gcc is compiled with --with-arch=i686, then the
|
# I.e. when gcc is compiled with --with-arch=i686, then the
|
||||||
# preprocessor symbol `__i686' will be defined to `1'. This causes
|
# preprocessor symbol `__i686' will be defined to `1'. This causes
|
||||||
# the symbol __i686.get_pc_thunk.dx to be mangled.
|
# the symbol __i686.get_pc_thunk.dx to be mangled.
|
||||||
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString (stdenv.system == "i686-linux") "-U__i686"
|
NIX_CFLAGS_COMPILE = lib.optionalString (stdenv.system == "i686-linux") "-U__i686"
|
||||||
+ " -Wno-error=strict-prototypes";
|
+ " -Wno-error=strict-prototypes";
|
||||||
}
|
}
|
||||||
|
|
||||||
# Remove the `gccCross' attribute so that the *native* glibc store path
|
# Remove the `gccCross' attribute so that the *native* glibc store path
|
||||||
# doesn't depend on whether `gccCross' is null or not.
|
# doesn't depend on whether `gccCross' is null or not.
|
||||||
// (removeAttrs args [ "gccCross" "fetchurl" "fetchgit" "withGd" "gd" "libpng" ]) //
|
// (removeAttrs args [ "lib" "gccCross" "fetchurl" "withGd" "gd" "libpng" ]) //
|
||||||
|
|
||||||
{
|
{
|
||||||
name = name + "-${version}" +
|
name = name + "-${version}" +
|
||||||
stdenv.lib.optionalString (cross != null) "-${cross.config}";
|
lib.optionalString (cross != null) "-${cross.config}";
|
||||||
|
|
||||||
src =
|
src = fetchurl {
|
||||||
if hurdHeaders != null
|
|
||||||
then fetchgit {
|
|
||||||
# Shamefully the "official" glibc won't build on GNU, so use the one
|
|
||||||
# maintained by the Hurd folks, `tschwinge/Roger_Whittaker' branch.
|
|
||||||
# See <http://www.gnu.org/software/hurd/source_repositories/glibc.html>.
|
|
||||||
url = "git://git.sv.gnu.org/hurd/glibc.git";
|
|
||||||
sha256 = "cecec9dd5a2bafc875c56b058b6d7628a22b250b53747513dec304f31ffdb82d";
|
|
||||||
rev = "d3cdecf18e6550b0984a42b43ed48c5fb26501e1";
|
|
||||||
}
|
|
||||||
else fetchurl {
|
|
||||||
url = "mirror://gnu/glibc/glibc-${version}.tar.gz";
|
url = "mirror://gnu/glibc/glibc-${version}.tar.gz";
|
||||||
sha256 = "1rcby0cqgswgqaxyqz0yqc4zizb1kvpi5vlfqp7dh3sa132109m6";
|
sha256 = "1rcby0cqgswgqaxyqz0yqc4zizb1kvpi5vlfqp7dh3sa132109m6";
|
||||||
};
|
};
|
||||||
@ -178,17 +160,18 @@ stdenv.mkDerivation ({
|
|||||||
|
|
||||||
configureScript="`pwd`/../$sourceRoot/configure"
|
configureScript="`pwd`/../$sourceRoot/configure"
|
||||||
|
|
||||||
${stdenv.lib.optionalString (stdenv.cc.libc != null)
|
${lib.optionalString (stdenv.cc.libc != null)
|
||||||
''makeFlags="$makeFlags BUILD_LDFLAGS=-Wl,-rpath,${stdenv.cc.libc}/lib"''
|
''makeFlags="$makeFlags BUILD_LDFLAGS=-Wl,-rpath,${stdenv.cc.libc}/lib"''
|
||||||
}
|
}
|
||||||
|
|
||||||
${preConfigure}
|
${preConfigure}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
preBuild = lib.optionalString withGd "unset NIX_DONT_SET_RPATH";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://www.gnu.org/software/libc/;
|
homepage = http://www.gnu.org/software/libc/;
|
||||||
description = "The GNU C Library"
|
description = "The GNU C Library";
|
||||||
+ stdenv.lib.optionalString (hurdHeaders != null) ", for GNU/Hurd";
|
|
||||||
|
|
||||||
longDescription =
|
longDescription =
|
||||||
'' Any Unix-like operating system needs a C library: the library which
|
'' Any Unix-like operating system needs a C library: the library which
|
||||||
@ -199,24 +182,9 @@ stdenv.mkDerivation ({
|
|||||||
most systems with the Linux kernel.
|
most systems with the Linux kernel.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
license = stdenv.lib.licenses.lgpl2Plus;
|
license = lib.licenses.lgpl2Plus;
|
||||||
|
|
||||||
maintainers = [ ];
|
maintainers = [ lib.maintainers.eelco ];
|
||||||
#platforms = stdenv.lib.platforms.linux;
|
#platforms = lib.platforms.linux;
|
||||||
} // meta;
|
} // meta;
|
||||||
}
|
|
||||||
|
|
||||||
// stdenv.lib.optionalAttrs withGd {
|
|
||||||
preBuild = "unset NIX_DONT_SET_RPATH";
|
|
||||||
}
|
|
||||||
|
|
||||||
// stdenv.lib.optionalAttrs (hurdHeaders != null) {
|
|
||||||
# Work around the fact that the configure snippet that looks for
|
|
||||||
# <hurd/version.h> does not honor `--with-headers=$sysheaders' and that
|
|
||||||
# glibc expects Mach, Hurd, and pthread headers to be in the same place.
|
|
||||||
CPATH = "${hurdHeaders}/include:${machHeaders}/include:${libpthreadHeaders}/include";
|
|
||||||
|
|
||||||
# Install NSS stuff in the right place.
|
|
||||||
# XXX: This will be needed for all new glibcs and isn't Hurd-specific.
|
|
||||||
makeFlags = ''vardbdir="$out/var/db"'';
|
|
||||||
})
|
})
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
{ stdenv, fetchurl, fetchgit ? null, kernelHeaders
|
{ lib, stdenv, fetchurl, linuxHeaders
|
||||||
, machHeaders ? null, hurdHeaders ? null, libpthreadHeaders ? null
|
|
||||||
, mig ? null
|
|
||||||
, installLocales ? true
|
, installLocales ? true
|
||||||
, profilingLibraries ? false
|
, profilingLibraries ? false
|
||||||
, gccCross ? null
|
, gccCross ? null
|
||||||
@ -16,11 +14,10 @@ let
|
|||||||
in
|
in
|
||||||
build cross ({
|
build cross ({
|
||||||
name = "glibc"
|
name = "glibc"
|
||||||
+ stdenv.lib.optionalString (hurdHeaders != null) "-hurd"
|
+ lib.optionalString debugSymbols "-debug"
|
||||||
+ stdenv.lib.optionalString debugSymbols "-debug"
|
+ lib.optionalString withGd "-gd";
|
||||||
+ stdenv.lib.optionalString withGd "-gd";
|
|
||||||
|
|
||||||
inherit fetchurl fetchgit stdenv kernelHeaders installLocales
|
inherit lib stdenv fetchurl linuxHeaders installLocales
|
||||||
profilingLibraries gccCross withGd gd libpng;
|
profilingLibraries gccCross withGd gd libpng;
|
||||||
|
|
||||||
builder = ./builder.sh;
|
builder = ./builder.sh;
|
||||||
@ -58,23 +55,6 @@ in
|
|||||||
|
|
||||||
//
|
//
|
||||||
|
|
||||||
(if hurdHeaders != null
|
|
||||||
then rec {
|
|
||||||
inherit machHeaders hurdHeaders libpthreadHeaders mig fetchgit;
|
|
||||||
|
|
||||||
propagatedBuildInputs = [ machHeaders hurdHeaders libpthreadHeaders ];
|
|
||||||
|
|
||||||
passthru = {
|
|
||||||
# When building GCC itself `propagatedBuildInputs' above is not
|
|
||||||
# honored, so we pass it here so that the GCC builder can do the right
|
|
||||||
# thing.
|
|
||||||
inherit propagatedBuildInputs;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
else { })
|
|
||||||
|
|
||||||
//
|
|
||||||
|
|
||||||
(if cross != null
|
(if cross != null
|
||||||
then {
|
then {
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, texinfo, perl }:
|
{ lib, stdenv, fetchurl, texinfo, perl }:
|
||||||
|
|
||||||
let build = import ./common.nix; in
|
let build = import ./common.nix; in
|
||||||
|
|
||||||
@ -6,7 +6,7 @@ let build = import ./common.nix; in
|
|||||||
build null {
|
build null {
|
||||||
name = "glibc-info";
|
name = "glibc-info";
|
||||||
|
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv lib;
|
||||||
|
|
||||||
configureFlags = [ "--enable-add-ons" ];
|
configureFlags = [ "--enable-add-ons" ];
|
||||||
|
|
||||||
|
@ -6,14 +6,14 @@
|
|||||||
http://sourceware.org/cgi-bin/cvsweb.cgi/libc/localedata/SUPPORTED?cvsroot=glibc
|
http://sourceware.org/cgi-bin/cvsweb.cgi/libc/localedata/SUPPORTED?cvsroot=glibc
|
||||||
*/
|
*/
|
||||||
|
|
||||||
{ stdenv, fetchurl, writeText, allLocales ? true, locales ? ["en_US.UTF-8/UTF-8"] }:
|
{ lib, stdenv, fetchurl, writeText, allLocales ? true, locales ? ["en_US.UTF-8/UTF-8"] }:
|
||||||
|
|
||||||
let build = import ./common.nix; in
|
let build = import ./common.nix; in
|
||||||
|
|
||||||
build null {
|
build null {
|
||||||
name = "glibc-locales";
|
name = "glibc-locales";
|
||||||
|
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv lib;
|
||||||
installLocales = true;
|
installLocales = true;
|
||||||
|
|
||||||
builder = ./locales-builder.sh;
|
builder = ./locales-builder.sh;
|
||||||
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
|||||||
-i Makefile
|
-i Makefile
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildInputs = [ stdenv.cc.libc.kernelHeaders libtool gettext ];
|
buildInputs = [ stdenv.cc.libc.linuxHeaders libtool gettext ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Tools to display or change the CPU governor settings";
|
description = "Tools to display or change the CPU governor settings";
|
||||||
|
@ -11,7 +11,7 @@ stdenv.mkDerivation {
|
|||||||
builder = ./builder.sh;
|
builder = ./builder.sh;
|
||||||
|
|
||||||
inherit glibc;
|
inherit glibc;
|
||||||
kernelHeaders = glibc.kernelHeaders;
|
kernelHeaders = glibc.linuxHeaders;
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
|
||||||
|
@ -8,7 +8,9 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1pkkid657zgjymwxv3fm32cxnq9llfz29rl15vp6mn42vnzbj1di";
|
sha256 = "1pkkid657zgjymwxv3fm32cxnq9llfz29rl15vp6mn42vnzbj1di";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig glib ] ++ stdenv.lib.optional (stdenv ? glibc) stdenv.glibc.kernelHeaders;
|
buildInputs =
|
||||||
|
[ pkgconfig glib ]
|
||||||
|
++ stdenv.lib.optional (stdenv ? glibc) stdenv.glibc.linuxHeaders;
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
mkdir -p "$out/share/doc/${name}"
|
mkdir -p "$out/share/doc/${name}"
|
||||||
|
@ -6707,22 +6707,18 @@ let
|
|||||||
glfw3 = callPackage ../development/libraries/glfw/3.x.nix { };
|
glfw3 = callPackage ../development/libraries/glfw/3.x.nix { };
|
||||||
|
|
||||||
glibc = callPackage ../development/libraries/glibc {
|
glibc = callPackage ../development/libraries/glibc {
|
||||||
kernelHeaders = linuxHeaders;
|
|
||||||
installLocales = config.glibc.locales or false;
|
installLocales = config.glibc.locales or false;
|
||||||
machHeaders = null;
|
|
||||||
hurdHeaders = null;
|
|
||||||
gccCross = null;
|
gccCross = null;
|
||||||
};
|
};
|
||||||
|
|
||||||
glibc_memusage = callPackage ../development/libraries/glibc {
|
glibc_memusage = callPackage ../development/libraries/glibc {
|
||||||
kernelHeaders = linuxHeaders;
|
|
||||||
installLocales = false;
|
installLocales = false;
|
||||||
withGd = true;
|
withGd = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
glibcCross = forceNativeDrv (glibc.override {
|
glibcCross = forceNativeDrv (glibc.override {
|
||||||
gccCross = gccCrossStageStatic;
|
gccCross = gccCrossStageStatic;
|
||||||
kernelHeaders = linuxHeadersCross;
|
linuxHeaders = linuxHeadersCross;
|
||||||
});
|
});
|
||||||
|
|
||||||
# We can choose:
|
# We can choose:
|
||||||
|
Loading…
Reference in New Issue
Block a user