mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
GCJ 4.4: Depend on FastJar, needed during the bootstrap phase.
svn path=/nixpkgs/trunk/; revision=16470
This commit is contained in:
parent
43f4d29bb8
commit
8feb395f42
@ -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 = "
|
||||
|
@ -1743,7 +1743,7 @@ let
|
||||
langCC = true;
|
||||
langC = true;
|
||||
profiledCompiler = false;
|
||||
inherit zlib boehmgc gettext;
|
||||
inherit fastjar zlib boehmgc gettext;
|
||||
});
|
||||
|
||||
#ghc = haskellPackages.ghc;
|
||||
|
Loading…
Reference in New Issue
Block a user