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

View file

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