2009-11-22 17:03:56 +01:00
|
|
|
/* Build configuration used to build glibc, Info files, and locale
|
|
|
|
information. */
|
|
|
|
|
2010-02-01 10:32:40 +01:00
|
|
|
cross :
|
|
|
|
|
|
|
|
{ name, fetchurl, stdenv, installLocales ? false
|
2009-12-01 22:33:11 +01:00
|
|
|
, gccCross ? null, kernelHeaders ? null
|
2010-05-13 01:54:20 +02:00
|
|
|
, machHeaders ? null, hurdHeaders ? null, mig ? null, fetchgit ? null
|
2010-02-01 10:32:40 +01:00
|
|
|
, profilingLibraries ? false, meta
|
|
|
|
, preConfigure ? "", ... }@args :
|
|
|
|
|
2010-05-13 01:54:20 +02:00
|
|
|
let
|
2010-06-15 17:01:15 +02:00
|
|
|
# For GNU/Hurd, see below.
|
|
|
|
date = "20100512";
|
|
|
|
rev = "df4c3faf0ccc848b5a8086c222bdb42679a9798f";
|
2010-05-19 23:28:03 +02:00
|
|
|
version = if hurdHeaders != null then date else "2.11.1";
|
2010-05-13 01:54:20 +02:00
|
|
|
in
|
2009-11-22 17:03:56 +01:00
|
|
|
|
|
|
|
assert (cross != null) -> (gccCross != null);
|
|
|
|
|
2010-05-13 01:54:20 +02:00
|
|
|
assert (mig != null) -> (machHeaders != null);
|
|
|
|
assert (machHeaders != null) -> (hurdHeaders != null);
|
|
|
|
assert (hurdHeaders != null) -> (fetchgit != null);
|
|
|
|
|
2009-11-22 17:03:56 +01:00
|
|
|
stdenv.mkDerivation ({
|
|
|
|
inherit kernelHeaders installLocales;
|
|
|
|
|
|
|
|
# The host/target system.
|
|
|
|
crossConfig = if (cross != null) then cross.config else null;
|
|
|
|
|
|
|
|
inherit (stdenv) is64bit;
|
|
|
|
|
Enable parallel building of gcc, glibc, gmp, mpfr, ncurses, coreutils, perl, python, git, and qt4.
If a build expressions has set "enableParallelBuilding = true", then the
generic builder may utilize more than one CPU core to build that particular
expression. This feature works out of the box for GNU Make. Expressions that
use other build drivers like Boost.Jam or SCons have to specify appropriate
flags such as "-j${NIX_BUILD_CORES}" themselves.
svn path=/nixpkgs/trunk/; revision=23042
2010-08-08 20:51:42 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2010-05-13 01:54:20 +02:00
|
|
|
patches =
|
|
|
|
stdenv.lib.optional (fetchgit == null)
|
2009-11-22 17:03:56 +01:00
|
|
|
/* Fix for NIXPKGS-79: when doing host name lookups, when
|
|
|
|
nsswitch.conf contains a line like
|
|
|
|
|
|
|
|
hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4
|
|
|
|
|
|
|
|
don't return an error when mdns4_minimal can't be found. This
|
|
|
|
is a bug in Glibc: when a service can't be found, NSS should
|
|
|
|
continue to the next service unless "UNAVAIL=return" is set.
|
|
|
|
("NOTFOUND=return" refers to the service returning a NOTFOUND
|
|
|
|
error, not the service itself not being found.) The reason is
|
|
|
|
that the "status" variable (while initialised to UNAVAIL) is
|
|
|
|
outside of the loop that iterates over the services, the
|
|
|
|
"files" service sets status to NOTFOUND. So when the call to
|
|
|
|
find "mdns4_minimal" fails, "status" will still be NOTFOUND,
|
|
|
|
and it will return instead of continuing to "dns". Thus, the
|
|
|
|
line
|
|
|
|
|
|
|
|
hosts: mdns4_minimal [NOTFOUND=return] dns mdns4
|
|
|
|
|
|
|
|
does work because "status" will contain UNAVAIL after the
|
|
|
|
failure to find mdns4_minimal. */
|
|
|
|
./nss-skip-unavail.patch
|
|
|
|
|
2010-05-13 01:54:20 +02:00
|
|
|
++ [
|
2010-11-18 11:49:55 +01:00
|
|
|
/* Make it possible to override the locale-archive in NixOS. */
|
|
|
|
./locale-override.patch
|
2009-11-22 17:03:56 +01:00
|
|
|
|
2010-11-18 11:49:55 +01:00
|
|
|
/* Have rpcgen(1) look for cpp(1) in $PATH. */
|
|
|
|
./rpcgen-path.patch
|
2009-11-22 17:03:56 +01:00
|
|
|
|
2010-11-18 11:49:55 +01:00
|
|
|
/* Make sure `nscd' et al. are linked against `libssp'. */
|
|
|
|
./stack-protector-link.patch
|
2009-12-17 23:09:28 +01:00
|
|
|
|
2010-11-18 11:49:55 +01:00
|
|
|
/* Fix for CVE-2010-3856. */
|
|
|
|
./audit-suid.patch
|
2010-10-07 23:59:31 +02:00
|
|
|
|
2010-11-18 11:49:55 +01:00
|
|
|
/* Fix for CVE-2010-3856. */
|
|
|
|
./ignore-origin.patch
|
|
|
|
]
|
|
|
|
|
|
|
|
++ stdenv.lib.optional (fetchgit == null)
|
|
|
|
/* MOD_NANO definition, for ntp (taken from glibc upstream) */
|
|
|
|
./mod_nano.patch;
|
2009-11-22 17:03:56 +01:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"-C"
|
|
|
|
"--enable-add-ons"
|
|
|
|
(if kernelHeaders != null
|
|
|
|
then "--with-headers=${kernelHeaders}/include"
|
|
|
|
else "--without-headers")
|
|
|
|
(if profilingLibraries
|
|
|
|
then "--enable-profile"
|
|
|
|
else "--disable-profile")
|
|
|
|
] ++ stdenv.lib.optionals (cross != null) [
|
2010-02-27 01:52:48 +01:00
|
|
|
(if cross.withTLS then "--with-tls" else "--without-tls")
|
2010-02-27 21:02:21 +01:00
|
|
|
(if cross.float == "soft" then "--without-fp" else "--with-fp")
|
2009-11-22 17:03:56 +01:00
|
|
|
"--enable-kernel=2.6.0"
|
|
|
|
"--with-__thread"
|
2010-01-18 11:50:32 +01:00
|
|
|
] ++ stdenv.lib.optionals (stdenv.system == "armv5tel-linux") [
|
2009-11-22 17:03:56 +01:00
|
|
|
"--host=arm-linux-gnueabi"
|
|
|
|
"--build=arm-linux-gnueabi"
|
|
|
|
"--without-fp"
|
2010-01-18 11:50:32 +01:00
|
|
|
];
|
2009-11-22 17:03:56 +01:00
|
|
|
|
2010-05-12 17:46:51 +02:00
|
|
|
buildInputs = stdenv.lib.optionals (cross != null) [ gccCross ]
|
|
|
|
++ stdenv.lib.optional (mig != null) mig;
|
2009-11-22 17:03:56 +01: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";
|
|
|
|
|
2010-02-01 10:32:40 +01:00
|
|
|
# Workaround for this bug:
|
|
|
|
# http://sourceware.org/bugzilla/show_bug.cgi?id=411
|
|
|
|
# I.e. when gcc is compiled with --with-arch=i686, then the
|
|
|
|
# preprocessor symbol `__i686' will be defined to `1'. This causes
|
|
|
|
# the symbol __i686.get_pc_thunk.dx to be mangled.
|
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString (stdenv.system == "i686-linux") "-U__i686";
|
|
|
|
}
|
2009-11-22 17:03:56 +01:00
|
|
|
|
2010-05-19 23:26:48 +02:00
|
|
|
# FIXME: This is way too broad and causes the *native* glibc to have a
|
|
|
|
# different store path dependending on whether `cross' is null or not.
|
2010-02-01 10:32:40 +01:00
|
|
|
// args //
|
2009-11-22 17:03:56 +01:00
|
|
|
|
|
|
|
{
|
2010-02-01 10:32:40 +01:00
|
|
|
name = name + "-${version}" +
|
2009-11-22 23:48:43 +01:00
|
|
|
stdenv.lib.optionalString (cross != null) "-${cross.config}";
|
2009-11-22 17:03:56 +01:00
|
|
|
|
2010-05-13 01:54:20 +02:00
|
|
|
src =
|
|
|
|
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 = "f3590a54a9d897d121f91113949edbaaf3e30cdeacbb8d0a44de7b6564f6643e";
|
|
|
|
inherit rev;
|
|
|
|
}
|
|
|
|
else fetchurl {
|
|
|
|
url = "mirror://gnu/glibc/glibc-${version}.tar.bz2";
|
|
|
|
sha256 = "18azb6518ryqhkfmddr25p0h1s2msrmx7dblij58sjlnzh61vq34";
|
|
|
|
};
|
2009-11-22 17:03:56 +01:00
|
|
|
|
2009-12-01 22:33:11 +01:00
|
|
|
srcPorts = fetchurl {
|
2010-02-01 10:32:40 +01:00
|
|
|
url = "mirror://gnu/glibc/glibc-ports-2.11.tar.bz2";
|
2009-12-01 22:33:11 +01:00
|
|
|
sha256 = "12b53f5k4gcr8rr1kg2ycf2701rygqsyf9r8gz4j3l9flaqi5liq";
|
|
|
|
};
|
|
|
|
|
2009-11-22 17:03:56 +01:00
|
|
|
# `fetchurl' is a function and thus should not be passed to the
|
|
|
|
# `derivation' primitive.
|
|
|
|
fetchurl = null;
|
|
|
|
|
|
|
|
# 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
|
2009-12-01 22:33:11 +01:00
|
|
|
|
|
|
|
tar xvjf "$srcPorts"
|
|
|
|
|
2009-11-22 17:03:56 +01:00
|
|
|
mkdir ../build
|
|
|
|
cd ../build
|
|
|
|
|
|
|
|
configureScript="../$sourceRoot/configure"
|
|
|
|
|
2010-02-01 10:32:40 +01:00
|
|
|
${preConfigure}
|
2009-11-22 17:03:56 +01:00
|
|
|
'';
|
|
|
|
|
2010-02-01 10:32:40 +01:00
|
|
|
meta = {
|
|
|
|
homepage = http://www.gnu.org/software/libc/;
|
|
|
|
description = "The GNU C Library";
|
2009-11-22 17:03:56 +01:00
|
|
|
|
2010-02-01 10:32:40 +01: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...
|
2009-11-22 17:03:56 +01:00
|
|
|
|
2010-02-01 10:32:40 +01:00
|
|
|
The GNU C library is used as the C library in the GNU system and
|
|
|
|
most systems with the Linux kernel.
|
|
|
|
'';
|
2009-11-22 17:03:56 +01:00
|
|
|
|
2010-02-01 10:32:40 +01:00
|
|
|
license = "LGPLv2+";
|
2009-11-22 17:03:56 +01:00
|
|
|
|
2010-02-01 10:32:40 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
} // meta;
|
2010-05-12 17:46:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
|
2010-05-13 01:54:20 +02:00
|
|
|
(if hurdHeaders != null
|
2010-05-12 17:46:51 +02:00
|
|
|
then {
|
|
|
|
# Work around the fact that the configure snippet that looks for
|
|
|
|
# <hurd/version.h> does not honor `--with-headers=$sysheaders' and that
|
|
|
|
# glibc expects both Mach and Hurd headers to be in the same place.
|
|
|
|
CPATH = "${hurdHeaders}/include:${machHeaders}/include";
|
2010-05-13 01:54:20 +02:00
|
|
|
|
|
|
|
# `fetchgit' is a function and thus should not be passed to the
|
|
|
|
# `derivation' primitive.
|
|
|
|
fetchgit = null;
|
2010-05-12 17:46:51 +02:00
|
|
|
}
|
|
|
|
else { }))
|