uclibc: Fix eval
This commit is contained in:
parent
f063a860d6
commit
d65fe65616
@ -1,8 +1,8 @@
|
||||
{stdenv, fetchzip, linuxHeaders, libiconvReal, cross ? null, gccCross ? null,
|
||||
extraConfig ? ""}:
|
||||
|
||||
assert stdenv.isLinux;
|
||||
assert cross != null -> gccCross != null;
|
||||
{ stdenv, buildPackages
|
||||
, fetchzip, linuxHeaders, libiconvReal
|
||||
, buildPlatform, hostPlatform
|
||||
, extraConfig ? ""
|
||||
}:
|
||||
|
||||
let
|
||||
configParser = ''
|
||||
@ -28,9 +28,6 @@ let
|
||||
}
|
||||
'';
|
||||
|
||||
archMakeFlag = if cross != null then "ARCH=${cross.arch}" else "";
|
||||
crossMakeFlag = if cross != null then "CROSS=${cross.config}-" else "";
|
||||
|
||||
# UCLIBC_SUSV4_LEGACY defines 'tmpnam', needed for gcc libstdc++ builds.
|
||||
nixConfig = ''
|
||||
RUNTIME_PREFIX "/"
|
||||
@ -43,7 +40,7 @@ let
|
||||
UCLIBC_SUSV4_LEGACY y
|
||||
UCLIBC_HAS_THREADS_NATIVE y
|
||||
KERNEL_HEADERS "${linuxHeaders}/include"
|
||||
'' + stdenv.lib.optionalString (stdenv.isAarch32 && cross == null) ''
|
||||
'' + stdenv.lib.optionalString (stdenv.isAarch32 && buildPlatform != hostPlatform) ''
|
||||
CONFIG_ARM_EABI y
|
||||
ARCH_WANTS_BIG_ENDIAN n
|
||||
ARCH_BIG_ENDIAN n
|
||||
@ -58,7 +55,7 @@ let
|
||||
in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = name + stdenv.lib.optionalString (cross != null) ("-" + cross.config);
|
||||
inherit name;
|
||||
|
||||
src = fetchzip {
|
||||
name = name + "-source";
|
||||
@ -68,13 +65,12 @@ stdenv.mkDerivation {
|
||||
|
||||
# 'ftw' needed to build acl, a coreutils dependency
|
||||
configurePhase = ''
|
||||
make defconfig ${archMakeFlag}
|
||||
make defconfig
|
||||
${configParser}
|
||||
cat << EOF | parseconfig
|
||||
${nixConfig}
|
||||
${extraConfig}
|
||||
${if cross != null then stdenv.lib.attrByPath [ "uclibc" "extraConfig" ] "" cross else ""}
|
||||
$extraCrossConfig
|
||||
${hostPlatform.platform.uclibc.extraConfig or ""}
|
||||
EOF
|
||||
( set +o pipefail; yes "" | make oldconfig )
|
||||
'';
|
||||
@ -82,11 +78,16 @@ stdenv.mkDerivation {
|
||||
hardeningDisable = [ "stackprotector" ];
|
||||
|
||||
# Cross stripping hurts.
|
||||
dontStrip = cross != null;
|
||||
dontStrip = stdenv.hostPlatform != stdenv.buildPlatform;
|
||||
|
||||
makeFlags = [ crossMakeFlag "VERBOSE=1" ];
|
||||
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
||||
|
||||
buildInputs = stdenv.lib.optional (gccCross != null) gccCross;
|
||||
makeFlags = [
|
||||
"ARCH=${hostPlatform.parsed.cpu.name}"
|
||||
"VERBOSE=1"
|
||||
] ++ stdenv.lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
|
||||
"CROSS=${stdenv.cc.targetPrefix}"
|
||||
];
|
||||
|
||||
# `make libpthread/nptl/sysdeps/unix/sysv/linux/lowlevelrwlock.h`:
|
||||
# error: bits/sysnum.h: No such file or directory
|
||||
@ -94,7 +95,7 @@ stdenv.mkDerivation {
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out
|
||||
make PREFIX=$out VERBOSE=1 install ${crossMakeFlag}
|
||||
make PREFIX=$out VERBOSE=1 install
|
||||
(cd $out/include && ln -s $(ls -d ${linuxHeaders}/include/* | grep -v "scsi$") .)
|
||||
# libpthread.so may not exist, so I do || true
|
||||
sed -i s@/lib/@$out/lib/@g $out/lib/libc.so $out/lib/libpthread.so || true
|
||||
@ -110,6 +111,7 @@ stdenv.mkDerivation {
|
||||
description = "A small implementation of the C library";
|
||||
maintainers = with maintainers; [ rasendubi ];
|
||||
license = licenses.lgpl2;
|
||||
platforms = subtractLists ["aarch64-linux"] platforms.linux;
|
||||
platforms = platforms.linux;
|
||||
broken = hostPlatform.isAarch64;
|
||||
};
|
||||
}
|
||||
|
@ -8903,7 +8903,7 @@ with pkgs;
|
||||
# hack fixes the hack, *sigh*.
|
||||
/**/ if name == "glibc" then targetPackages.glibcCross or glibcCross
|
||||
else if name == "bionic" then targetPackages.bionic
|
||||
else if name == "uclibc" then uclibcCross
|
||||
else if name == "uclibc" then targetPackages.uclibcCross
|
||||
else if name == "musl" then targetPackages.muslCross or muslCross
|
||||
else if name == "msvcrt" then targetPackages.windows.mingw_w64 or windows.mingw_w64
|
||||
else if name == "libSystem" then darwin.xcode
|
||||
@ -13819,10 +13819,9 @@ with pkgs;
|
||||
|
||||
uclibc = callPackage ../os-specific/linux/uclibc { };
|
||||
|
||||
uclibcCross = lowPrio (callPackage ../os-specific/linux/uclibc {
|
||||
gccCross = gccCrossStageStatic;
|
||||
cross = assert targetPlatform != buildPlatform; targetPlatform;
|
||||
});
|
||||
uclibcCross = callPackage ../os-specific/linux/uclibc {
|
||||
stdenv = crossLibcStdenv;
|
||||
};
|
||||
|
||||
udev = systemd;
|
||||
libudev = udev;
|
||||
|
Loading…
Reference in New Issue
Block a user