mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 06:31:20 +00:00
add kernel headers for linux ARM, uclibc
svn path=/nixpkgs/trunk/; revision=4319
This commit is contained in:
parent
4130324eac
commit
b3d1a16db9
@ -472,6 +472,18 @@ rec {
|
||||
inherit stdenv;
|
||||
};
|
||||
|
||||
gcc40arm = (import ../build-support/gcc-cross-wrapper) {
|
||||
nativeTools = false;
|
||||
nativeGlibc = false;
|
||||
cross = "arm-linux";
|
||||
gcc = (import ../development/compilers/gcc-4.0-arm) {
|
||||
inherit fetchurl stdenv noSysDirs binutilsArm kernelHeadersArm;
|
||||
langF77 = false;
|
||||
langCC = false;
|
||||
};
|
||||
inherit (stdenv.gcc) binutils glibc;
|
||||
inherit stdenv;
|
||||
};
|
||||
gcc40 = (import ../build-support/gcc-wrapper) {
|
||||
nativeTools = false;
|
||||
nativeGlibc = false;
|
||||
@ -1342,6 +1354,10 @@ rec {
|
||||
|
||||
### OS-SPECIFIC
|
||||
|
||||
uclibc = (import ../development/uclibc) {
|
||||
inherit fetchurl stdenv gcc40arm kernelHeadersArm binutilsArm;
|
||||
};
|
||||
|
||||
dietlibc = (import ../os-specific/linux/dietlibc) {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
@ -1363,6 +1379,10 @@ rec {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
kernelHeadersArm = (import ../os-specific/linux/kernel-headers-arm) {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
kernel = (import ../os-specific/linux/kernel) {
|
||||
inherit fetchurl stdenv perl;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user