From 8e78cd0fb321fe7cdb6aaac24ab5a92628bc76b3 Mon Sep 17 00:00:00 2001 From: Armijn Hemel Date: Mon, 16 Apr 2007 21:35:42 +0000 Subject: [PATCH] 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 --- pkgs/top-level/all-packages.nix | 115 -------------------------------- 1 file changed, 115 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ff3f8bdd6ff2..891240997dc3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -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; };