2012-02-17 15:32:28 +01:00
|
|
|
{ stdenv, fetchurl, perl, bison, mktemp, linuxHeaders, linuxHeadersCross, kernel ? null }:
|
2005-08-27 22:48:05 +02:00
|
|
|
|
2006-11-25 01:28:15 +01:00
|
|
|
assert stdenv.isLinux;
|
2005-08-27 22:48:05 +02:00
|
|
|
|
2010-04-04 20:10:42 +02:00
|
|
|
let
|
2011-10-25 10:20:03 +02:00
|
|
|
version = "1.5.24";
|
2010-04-04 20:10:42 +02:00
|
|
|
baseMakeFlags = ["V=1" "prefix=$out" "SHLIBDIR=$out/lib"];
|
|
|
|
in
|
2009-01-29 16:44:37 +01:00
|
|
|
|
2005-08-27 22:48:05 +02:00
|
|
|
stdenv.mkDerivation {
|
2012-02-17 15:32:28 +01:00
|
|
|
name = "klibc-${version}${stdenv.lib.optionalString (kernel != null) "-${kernel.version}"}";
|
2009-01-29 16:44:37 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-06-22 17:35:00 +02:00
|
|
|
url = "mirror://kernel/linux/libs/klibc/1.5/klibc-${version}.tar.bz2";
|
2011-10-25 10:20:03 +02:00
|
|
|
sha256 = "18lm32dlj9k2ky9wwk274zmc3jndgrb41b6qm82g3lza6wlw3yki";
|
2009-01-29 16:44:37 +01:00
|
|
|
};
|
2010-09-05 08:00:14 +02:00
|
|
|
|
2010-09-09 19:48:11 +02:00
|
|
|
# Trick to make this build on nix. It expects to have the kernel sources
|
|
|
|
# instead of only the linux kernel headers.
|
|
|
|
# So it cannot run the 'make headers_install' it wants to run.
|
|
|
|
# We don't install the headers, so klibc will not be useful as libc, but
|
|
|
|
# usually in nixpkgs we only use the userspace tools comming with klibc.
|
2011-10-25 10:59:39 +02:00
|
|
|
prePatch = stdenv.lib.optionalString (kernel == null) ''
|
2010-09-09 19:48:11 +02:00
|
|
|
sed -i -e /headers_install/d scripts/Kbuild.install
|
|
|
|
'';
|
2009-01-29 16:44:37 +01:00
|
|
|
|
2010-04-04 20:10:42 +02:00
|
|
|
makeFlags = baseMakeFlags;
|
|
|
|
|
|
|
|
inherit linuxHeaders;
|
|
|
|
|
|
|
|
crossAttrs = {
|
|
|
|
makeFlags = baseMakeFlags ++ [ "CROSS_COMPILE=${stdenv.cross.config}-"
|
|
|
|
"KLIBCARCH=${stdenv.cross.arch}" ];
|
|
|
|
|
|
|
|
patchPhase = ''
|
2010-08-01 23:21:26 +02:00
|
|
|
sed -i 's/-fno-pic -mno-abicalls/& -mabi=32/' usr/klibc/arch/mips/MCONFIG
|
2010-04-04 20:10:42 +02:00
|
|
|
sed -i /KLIBCKERNELSRC/d scripts/Kbuild.install
|
2010-08-01 23:21:26 +02:00
|
|
|
# Wrong check for __mips64 in klibc
|
|
|
|
sed -i s/__mips64__/__mips64/ usr/include/fcntl.h
|
2010-04-04 20:10:42 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
linuxHeaders = linuxHeadersCross;
|
|
|
|
};
|
2009-01-29 16:44:37 +01:00
|
|
|
|
2010-04-04 20:10:42 +02:00
|
|
|
# The AEABI option concerns only arm systems, and does not affect the build for
|
|
|
|
# other systems.
|
2008-11-02 16:53:55 +01:00
|
|
|
preBuild = ''
|
2009-11-08 01:32:12 +01:00
|
|
|
sed -i /CONFIG_AEABI/d defconfig
|
|
|
|
echo "CONFIG_AEABI=y" >> defconfig
|
2008-11-02 16:53:55 +01:00
|
|
|
makeFlags=$(eval "echo $makeFlags")
|
|
|
|
|
2011-10-25 10:59:39 +02:00
|
|
|
'' + (if kernel == null then ''
|
2009-01-29 16:44:37 +01:00
|
|
|
mkdir linux
|
2010-04-04 20:10:42 +02:00
|
|
|
cp -prsd $linuxHeaders/include linux/
|
2008-11-02 16:53:55 +01:00
|
|
|
chmod -R u+w linux/include/
|
2011-10-25 10:59:39 +02:00
|
|
|
'' else ''
|
|
|
|
tar xvf ${kernel.src}
|
|
|
|
mv linux* linux
|
|
|
|
cd linux
|
|
|
|
ln -sv ${kernel}/config .config
|
|
|
|
make prepare
|
|
|
|
cd ..
|
|
|
|
'');
|
2009-01-29 16:44:37 +01:00
|
|
|
|
|
|
|
# Install static binaries as well.
|
|
|
|
postInstall = ''
|
|
|
|
dir=$out/lib/klibc/bin.static
|
|
|
|
mkdir $dir
|
|
|
|
cp $(find $(find . -name static) -type f ! -name "*.g" -a ! -name ".*") $dir/
|
|
|
|
cp usr/dash/sh $dir/
|
|
|
|
'';
|
|
|
|
|
2010-04-04 20:10:42 +02:00
|
|
|
buildNativeInputs = [ perl bison mktemp ];
|
2005-08-27 22:48:05 +02:00
|
|
|
}
|