2020-10-20 22:07:51 -07:00
|
|
|
{ lib, stdenv, fetchurl, buildPackages, linuxHeaders, perl }:
|
2005-08-27 13:48:05 -07:00
|
|
|
|
2010-04-04 11:10:42 -07:00
|
|
|
let
|
2014-01-04 17:57:21 -08:00
|
|
|
commonMakeFlags = [
|
|
|
|
"prefix=$(out)"
|
|
|
|
"SHLIBDIR=$(out)/lib"
|
|
|
|
];
|
2010-04-04 11:10:42 -07:00
|
|
|
in
|
2009-01-29 07:44:37 -08:00
|
|
|
|
2016-04-18 08:05:40 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "klibc";
|
2020-08-25 22:44:15 -07:00
|
|
|
version = "2.0.8";
|
2009-01-29 07:44:37 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-01-04 17:57:21 -08:00
|
|
|
url = "mirror://kernel/linux/libs/klibc/2.0/klibc-${version}.tar.xz";
|
2020-08-25 22:44:15 -07:00
|
|
|
sha256 = "0dmlkhnn5q8fc6rkzsisir4chkzmmiq6xkjmvyvf0g7yihwz2j2f";
|
2009-01-29 07:44:37 -08:00
|
|
|
};
|
2010-09-04 23:00:14 -07:00
|
|
|
|
2014-01-04 17:57:21 -08:00
|
|
|
patches = [ ./no-reinstall-kernel-headers.patch ];
|
2010-04-04 11:10:42 -07:00
|
|
|
|
2020-10-20 22:07:51 -07:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2014-01-04 17:57:21 -08:00
|
|
|
nativeBuildInputs = [ perl ];
|
2021-01-17 07:30:57 -08:00
|
|
|
strictDeps = true;
|
2010-04-04 11:10:42 -07:00
|
|
|
|
2016-02-26 09:38:15 -08:00
|
|
|
hardeningDisable = [ "format" "stackprotector" ];
|
2016-02-11 18:58:58 -08:00
|
|
|
|
2014-01-04 17:57:21 -08:00
|
|
|
makeFlags = commonMakeFlags ++ [
|
2018-08-20 11:43:41 -07:00
|
|
|
"KLIBCARCH=${stdenv.hostPlatform.platform.kernelArch}"
|
2016-04-18 08:05:40 -07:00
|
|
|
"KLIBCKERNELSRC=${linuxHeaders}"
|
2017-06-28 13:38:33 -07:00
|
|
|
] # TODO(@Ericson2314): We now can get the ABI from
|
2018-08-20 11:43:41 -07:00
|
|
|
# `stdenv.hostPlatform.parsed.abi`, is this still a good idea?
|
|
|
|
++ stdenv.lib.optional (stdenv.hostPlatform.platform.kernelArch == "arm") "CONFIG_AEABI=y"
|
|
|
|
++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "CROSS_COMPILE=${stdenv.cc.targetPrefix}";
|
2008-11-02 07:53:55 -08:00
|
|
|
|
2009-01-29 07:44:37 -08: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/
|
2014-01-04 17:57:21 -08:00
|
|
|
|
2016-04-18 08:05:40 -07:00
|
|
|
for file in ${linuxHeaders}/include/*; do
|
2014-01-04 17:57:21 -08:00
|
|
|
ln -sv $file $out/lib/klibc/include
|
|
|
|
done
|
2009-01-29 07:44:37 -08:00
|
|
|
'';
|
2016-08-02 09:06:29 -07:00
|
|
|
|
|
|
|
meta = {
|
2020-02-08 05:30:51 -08:00
|
|
|
description = "Minimalistic libc subset for initramfs usage";
|
|
|
|
homepage = "https://kernel.org/pub/linux/libs/klibc/";
|
|
|
|
maintainers = with lib.maintainers; [ fpletz ];
|
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
platforms = lib.platforms.linux;
|
2016-08-02 09:06:29 -07:00
|
|
|
};
|
2005-08-27 13:48:05 -07:00
|
|
|
}
|