GCJ 4.4: Depend on FastJar, needed during the bootstrap phase.

svn path=/nixpkgs/trunk/; revision=16470
This commit is contained in:
Ludovic Courtès 2009-07-27 10:46:23 +00:00
parent 43f4d29bb8
commit 8feb395f42
2 changed files with 4 additions and 2 deletions

View File

@ -7,12 +7,13 @@
, gmp, mpfr, gettext , gmp, mpfr, gettext
, ppl ? null, cloogppl ? null # used by the Graphite optimization framework , ppl ? null, cloogppl ? null # used by the Graphite optimization framework
, bison ? null, flex ? null , bison ? null, flex ? null
, zlib ? null, boehmgc ? null , fastjar ? null, zlib ? null, boehmgc ? null
, enableMultilib ? false , enableMultilib ? false
, name ? "gcc" , name ? "gcc"
}: }:
assert langTreelang -> bison != null && flex != null; assert langTreelang -> bison != null && flex != null;
assert langJava -> fastjar != null;
with stdenv.lib; with stdenv.lib;
@ -67,6 +68,7 @@ stdenv.mkDerivation ({
++ (optionals langTreelang [bison flex]) ++ (optionals langTreelang [bison flex])
++ (optional (zlib != null) zlib) ++ (optional (zlib != null) zlib)
++ (optional (boehmgc != null) boehmgc) ++ (optional (boehmgc != null) boehmgc)
++ (optional langJava fastjar)
; ;
configureFlags = " configureFlags = "

View File

@ -1743,7 +1743,7 @@ let
langCC = true; langCC = true;
langC = true; langC = true;
profiledCompiler = false; profiledCompiler = false;
inherit zlib boehmgc gettext; inherit fastjar zlib boehmgc gettext;
}); });
#ghc = haskellPackages.ghc; #ghc = haskellPackages.ghc;