Trying to fix the mipsel linux-2.4 cross builds with uclibc (it lacked proper uclibc config)

svn path=/nixpkgs/branches/stdenv-updates/; revision=23606
This commit is contained in:
Lluís Batlle i Rossell 2010-09-02 21:34:37 +00:00
parent b9e1bd9cd8
commit 52f4540026

View File

@ -103,6 +103,11 @@ let
kernelTarget = "vmlinux";
};
openssl.system = "linux-generic32";
uclibc.extraConfig = ''
ARCH_BIG_ENDIAN n
ARCH_WANTS_BIG_ENDIAN n
ARCH_WANTS_LITTLE_ENDIAN y
'';
};
in {
crossMipselLinux24 = mapTestOnCross crossSystem basic;