mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
remove cross compilation stuff. This has moved to a different branch and is not ready for real use right now
svn path=/nixpkgs/trunk/; revision=8586
This commit is contained in:
parent
2261f6d265
commit
8e78cd0fb3
@ -653,60 +653,6 @@ rec {
|
||||
profiledCompiler = true;
|
||||
});
|
||||
|
||||
gcc40arm = import ../build-support/gcc-cross-wrapper {
|
||||
nativeTools = false;
|
||||
nativeLibc = false;
|
||||
cross = "arm-linux";
|
||||
gcc = import ../development/compilers/gcc-4.0-cross {
|
||||
inherit fetchurl stdenv noSysDirs;
|
||||
langF77 = false;
|
||||
langCC = false;
|
||||
binutilsCross = binutilsArm;
|
||||
kernelHeadersCross = kernelHeadersArm;
|
||||
cross = "arm-linux";
|
||||
};
|
||||
inherit (stdenv.gcc) libc;
|
||||
binutils = binutilsArm;
|
||||
inherit stdenv;
|
||||
};
|
||||
|
||||
gcc40mips = import ../build-support/gcc-cross-wrapper {
|
||||
nativeTools = false;
|
||||
nativeLibc = false;
|
||||
cross = "mips-linux";
|
||||
gcc = gcc40mipsboot;
|
||||
#inherit (stdenv.gcc) libc;
|
||||
libc = uclibcMips;
|
||||
binutils = binutilsMips;
|
||||
inherit stdenv;
|
||||
};
|
||||
|
||||
gcc40mipsboot = import ../development/compilers/gcc-4.0-cross {
|
||||
inherit fetchurl stdenv noSysDirs;
|
||||
langF77 = false;
|
||||
langCC = false;
|
||||
binutilsCross = binutilsMips;
|
||||
kernelHeadersCross = kernelHeadersMips;
|
||||
cross = "mips-linux";
|
||||
};
|
||||
|
||||
gcc40sparc = import ../build-support/gcc-cross-wrapper {
|
||||
nativeTools = false;
|
||||
nativeLibc = false;
|
||||
cross = "sparc-linux";
|
||||
gcc = import ../development/compilers/gcc-4.0-cross {
|
||||
inherit fetchurl stdenv noSysDirs;
|
||||
langF77 = false;
|
||||
langCC = false;
|
||||
binutilsCross = binutilsSparc;
|
||||
kernelHeadersCross = kernelHeadersSparc;
|
||||
cross = "sparc-linux";
|
||||
};
|
||||
inherit (stdenv.gcc) libc;
|
||||
binutils = binutilsSparc;
|
||||
inherit stdenv;
|
||||
};
|
||||
|
||||
gcc41 = wrapGCC (import ../development/compilers/gcc-4.1 {
|
||||
inherit fetchurl stdenv noSysDirs;
|
||||
profiledCompiler = false;
|
||||
@ -1022,21 +968,6 @@ rec {
|
||||
inherit fetchurl stdenv noSysDirs;
|
||||
});
|
||||
|
||||
binutilsArm = import ../development/tools/misc/binutils-cross {
|
||||
inherit fetchurl stdenv noSysDirs;
|
||||
cross = "arm-linux";
|
||||
};
|
||||
|
||||
binutilsMips = import ../development/tools/misc/binutils-cross {
|
||||
inherit fetchurl stdenv noSysDirs;
|
||||
cross = "mips-linux";
|
||||
};
|
||||
|
||||
binutilsSparc = import ../development/tools/misc/binutils-cross {
|
||||
inherit fetchurl stdenv noSysDirs;
|
||||
cross = "sparc-linux";
|
||||
};
|
||||
|
||||
bison = bison1875;
|
||||
|
||||
bison1875 = import ../development/tools/parsing/bison/bison-1.875.nix {
|
||||
@ -2183,14 +2114,6 @@ rec {
|
||||
inherit fetchurl stdenv zlib;
|
||||
};
|
||||
|
||||
#uclibcSparc = import ../development/uclibc {
|
||||
# inherit fetchurl stdenv mktemp;
|
||||
# kernelHeadersCross = kernelHeadersSparc;
|
||||
# binutilsCross = binutilsSparc;
|
||||
# gccCross = gcc40sparc;
|
||||
# cross = "sparc-linux";
|
||||
#};
|
||||
|
||||
devicemapper = import ../os-specific/linux/device-mapper {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
@ -2201,13 +2124,6 @@ rec {
|
||||
stdenv = if stdenv.system == "powerpc-linux" then overrideGCC stdenv gcc34 else stdenv;
|
||||
};
|
||||
|
||||
#dietlibcArm = import ../os-specific/linux/dietlibc-cross {
|
||||
# inherit fetchurl stdenv;
|
||||
# gccCross = gcc40arm;
|
||||
# binutilsCross = binutilsArm;
|
||||
# arch = "arm";
|
||||
#};
|
||||
|
||||
e2fsprogs = import ../os-specific/linux/e2fsprogs {
|
||||
inherit fetchurl stdenv gettext;
|
||||
};
|
||||
@ -2268,21 +2184,6 @@ rec {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
kernelHeadersArm = import ../os-specific/linux/kernel-headers-cross {
|
||||
inherit fetchurl stdenv;
|
||||
cross = "arm-linux";
|
||||
};
|
||||
|
||||
kernelHeadersMips = import ../os-specific/linux/kernel-headers-cross {
|
||||
inherit fetchurl stdenv;
|
||||
cross = "mips-linux";
|
||||
};
|
||||
|
||||
kernelHeadersSparc = import ../os-specific/linux/kernel-headers-cross {
|
||||
inherit fetchurl stdenv;
|
||||
cross = "sparc-linux";
|
||||
};
|
||||
|
||||
kernelscripts = import ../os-specific/linux/kernelscripts {
|
||||
inherit stdenv module_init_tools kernel;
|
||||
modules = [];
|
||||
@ -2445,22 +2346,6 @@ rec {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
uclibcArm = import ../development/uclibc {
|
||||
inherit fetchurl stdenv mktemp;
|
||||
kernelHeadersCross = kernelHeadersArm;
|
||||
binutilsCross = binutilsArm;
|
||||
gccCross = gcc40arm;
|
||||
cross = "arm-linux";
|
||||
};
|
||||
|
||||
uclibcMips = import ../development/uclibc {
|
||||
inherit fetchurl stdenv mktemp;
|
||||
kernelHeadersCross = kernelHeadersMips;
|
||||
binutilsCross = binutilsMips;
|
||||
gccCross = gcc40mipsboot;
|
||||
cross = "mips-linux";
|
||||
};
|
||||
|
||||
udev = import ../os-specific/linux/udev {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user