48 lines
1.3 KiB
Nix
48 lines
1.3 KiB
Nix
|
{ stdenv, fetchurl, noSysDirs
|
||
|
, langC ? true, langCC ? true, langF77 ? false
|
||
|
, profiledCompiler ? false
|
||
|
, staticCompiler ? false
|
||
|
}:
|
||
|
|
||
|
assert langC;
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "gcc-4.2.0";
|
||
|
builder = ./builder.sh;
|
||
|
|
||
|
src =
|
||
|
[(fetchurl {
|
||
|
url = http://ftp.gnu.org/pub/gnu/gcc/gcc-4.2.0/gcc-core-4.2.0.tar.bz2;
|
||
|
sha256 = "0ykhzxhr8857dr97z0j9wyybfz1kjr71xk457cfapfw5fjas4ny1";
|
||
|
})] ++
|
||
|
(if /*langCC*/ true then [(fetchurl {
|
||
|
url = http://ftp.gnu.org/pub/gnu/gcc/gcc-4.2.0/gcc-g++-4.2.0.tar.bz2;
|
||
|
sha256 = "0k5ribrfdp9vmljxrglcgx2j2r7xnycd1rvd8sny2y5cj0l8ps12";
|
||
|
})] else []) ++
|
||
|
(if langF77 then [(fetchurl {
|
||
|
url = http://ftp.gnu.org/pub/gnu/gcc/gcc-4.2.0/gcc-fortran-4.2.0.tar.bz2;
|
||
|
sha256 = "0vw07qv6qpa5cgxc0qxraq6li2ibh8zrp65jrg92v4j63ivvi3hh";
|
||
|
})] else []);
|
||
|
|
||
|
patches =
|
||
|
[./pass-cxxcpp.patch]
|
||
|
++ (if noSysDirs then [./no-sys-dirs.patch] else []);
|
||
|
|
||
|
inherit noSysDirs langC langCC langF77 profiledCompiler staticCompiler;
|
||
|
|
||
|
configureFlags = "
|
||
|
--disable-multilib
|
||
|
--disable-libstdcxx-pch
|
||
|
--disable-libmudflap
|
||
|
--disable-libssp
|
||
|
";
|
||
|
|
||
|
makeFlags = if staticCompiler then "LDFLAGS=-static" else "";
|
||
|
|
||
|
meta = {
|
||
|
homepage = "http://gcc.gnu.org/";
|
||
|
license = "GPL/LGPL";
|
||
|
description = "GNU Compiler Collection, 4.1.x";
|
||
|
};
|
||
|
}
|