2004-09-18 19:23:18 +02:00
|
|
|
{ stdenv, fetchurl, noSysDirs
|
2004-06-29 10:25:55 +02:00
|
|
|
, langC ? true, langCC ? true, langF77 ? false
|
2004-07-01 14:17:53 +02:00
|
|
|
, profiledCompiler ? false
|
2004-06-29 10:25:55 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert langC;
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2005-06-17 12:30:13 +02:00
|
|
|
name = "gcc-3.4.4";
|
2004-06-29 10:25:55 +02:00
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2005-06-17 12:30:13 +02:00
|
|
|
url = http://ftp.gnu.org/gnu/gcc/gcc-3.4.4/gcc-3.4.4.tar.bz2;
|
|
|
|
md5 = "b594ff4ea4fbef4ba9220887de713dfe";
|
2004-06-29 10:25:55 +02:00
|
|
|
};
|
|
|
|
# !!! apply only if noSysDirs is set
|
|
|
|
patches = [./no-sys-dirs.patch];
|
2004-07-01 14:17:53 +02:00
|
|
|
inherit noSysDirs langC langCC langF77 profiledCompiler;
|
2004-06-29 10:25:55 +02:00
|
|
|
}
|