mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Add GCC 4.6.0 cross compiler
svn path=/nixpkgs/trunk/; revision=26640
This commit is contained in:
parent
9511b89ec1
commit
7b6139b85e
1 changed files with 13 additions and 0 deletions
|
@ -1677,6 +1677,19 @@ let
|
|||
cross = assert crossSystem != null; crossSystem;
|
||||
});
|
||||
|
||||
gcc46_realCross = lib.addMetaAttrs { platforms = []; }
|
||||
(makeOverridable (import ../development/compilers/gcc-4.6) {
|
||||
inherit fetchurl stdenv texinfo gmp mpfr mpc libelf zlib
|
||||
cloog gettext which noSysDirs;
|
||||
ppl = callPackage ../development/libraries/ppl/0.11.nix { };
|
||||
binutilsCross = binutilsCross;
|
||||
libcCross = libcCross;
|
||||
profiledCompiler = false;
|
||||
enableMultilib = false;
|
||||
crossStageStatic = false;
|
||||
cross = assert crossSystem != null; crossSystem;
|
||||
});
|
||||
|
||||
gcc_realCross = gcc45_realCross;
|
||||
|
||||
gccCrossStageStatic = let
|
||||
|
|
Loading…
Reference in a new issue