2006-07-15 00:34:24 +02:00
|
|
|
{ stdenv, fetchurl, noSysDirs
|
|
|
|
, langC ? true, langCC ? true, langF77 ? false
|
|
|
|
, profiledCompiler ? false
|
2009-02-02 13:44:20 +01:00
|
|
|
, gmp ? null, mpfr ? null, bison ? null, flex ? null
|
2006-07-15 00:34:24 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert langC;
|
2006-10-12 12:53:16 +02:00
|
|
|
assert stdenv.isDarwin;
|
2009-02-02 13:44:20 +01:00
|
|
|
assert langF77 -> gmp != null;
|
2006-07-15 00:34:24 +02:00
|
|
|
|
2009-02-02 13:44:20 +01:00
|
|
|
stdenv.mkDerivation ({
|
2009-07-23 21:13:34 +02:00
|
|
|
name = "gcc-4.2.1-apple-5574";
|
2006-07-15 00:34:24 +02:00
|
|
|
builder = ./builder.sh;
|
2009-07-23 21:13:34 +02:00
|
|
|
src =
|
|
|
|
stdenv.lib.optional /*langC*/ true (fetchurl {
|
|
|
|
url = http://www.opensource.apple.com/tarballs/gcc_42/gcc_42-5574.tar.gz ;
|
|
|
|
sha256 = "0b76ef3cded7822e3c0ec430f9811b6bb84895055b683acd2df7f7253d745a50";
|
|
|
|
}) ++
|
|
|
|
stdenv.lib.optional langCC (fetchurl {
|
|
|
|
url = http://www.opensource.apple.com/tarballs/libstdcxx/libstdcxx-16.tar.gz ;
|
|
|
|
sha256 = "a7d8041e50e110f5a503e188a05cb217f0c99c51f248a0a1387cc07a0b6f167f";
|
|
|
|
}) ;
|
|
|
|
|
|
|
|
sourceRoot = "gcc_42-5574/";
|
2006-07-15 00:34:24 +02:00
|
|
|
patches =
|
2009-07-23 21:13:34 +02:00
|
|
|
[./pass-cxxcpp.patch ./debug_list.patch]
|
2006-07-15 00:34:24 +02:00
|
|
|
++ (if noSysDirs then [./no-sys-dirs.patch] else []);
|
|
|
|
inherit noSysDirs langC langCC langF77 profiledCompiler;
|
2009-02-02 13:44:20 +01:00
|
|
|
} // (if langF77 then {buildInputs = [gmp mpfr bison flex];} else {}))
|