2009-07-03 20:54:28 +02:00
|
|
|
{ stdenv, fetchurl, noSysDirs
|
|
|
|
, langC ? true, langCC ? true, langFortran ? false, langTreelang ? false
|
|
|
|
, langJava ? false
|
|
|
|
, profiledCompiler ? false
|
|
|
|
, staticCompiler ? false
|
|
|
|
, texinfo ? null
|
2009-07-27 17:40:01 +02:00
|
|
|
, gmp, mpfr, gettext, which
|
2009-07-18 23:37:23 +02:00
|
|
|
, ppl ? null, cloogppl ? null # used by the Graphite optimization framework
|
2009-07-03 20:54:28 +02:00
|
|
|
, bison ? null, flex ? null
|
2009-07-27 12:46:23 +02:00
|
|
|
, fastjar ? null, zlib ? null, boehmgc ? null
|
2009-07-27 17:40:01 +02:00
|
|
|
, zip ? null, unzip ? null
|
2009-07-03 20:54:28 +02:00
|
|
|
, enableMultilib ? false
|
|
|
|
, name ? "gcc"
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert langTreelang -> bison != null && flex != null;
|
2009-07-27 17:40:01 +02:00
|
|
|
assert langJava -> fastjar != null && zip != null && unzip != null;
|
2009-07-03 20:54:28 +02:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
2009-07-24 15:34:57 +02:00
|
|
|
let version = "4.4.1";
|
2009-07-20 17:34:10 +02:00
|
|
|
javaEcj = fetchurl {
|
|
|
|
# The `$(top_srcdir)/ecj.jar' file is automatically picked up at
|
|
|
|
# `configure' time.
|
|
|
|
|
|
|
|
# XXX: Eventually we might want to take it from upstream.
|
|
|
|
url = "ftp://sourceware.org/pub/java/ecj-4.3.jar";
|
|
|
|
sha256 = "0jz7hvc0s6iydmhgh5h2m15yza7p2rlss2vkif30vm9y77m97qcx";
|
|
|
|
};
|
|
|
|
|
|
|
|
in
|
2009-07-03 20:54:28 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation ({
|
|
|
|
name = "${name}-${version}";
|
2009-07-27 15:50:19 +02:00
|
|
|
|
2009-07-03 20:54:28 +02:00
|
|
|
builder = ./builder.sh;
|
|
|
|
|
|
|
|
src =
|
|
|
|
optional /*langC*/ true (fetchurl {
|
|
|
|
url = "mirror://gcc/releases/gcc-${version}/gcc-core-${version}.tar.bz2";
|
2009-07-24 15:34:57 +02:00
|
|
|
sha256 = "0jgwa98i964jhnjg6acvvhz0wb51v00kk3gal8qbps8j09g2mgag";
|
2009-07-03 20:54:28 +02:00
|
|
|
}) ++
|
|
|
|
|
|
|
|
|
|
|
|
optional langCC (fetchurl {
|
|
|
|
url = "mirror://gcc/releases/gcc-${version}/gcc-g++-${version}.tar.bz2";
|
2009-07-24 15:34:57 +02:00
|
|
|
sha256 = "1pfgfgpvkq0i4023n4v1cghzmcq8c15xn4n967n29vmdrrwk8754";
|
2009-07-03 20:54:28 +02:00
|
|
|
}) ++
|
|
|
|
|
|
|
|
optional langFortran (fetchurl {
|
|
|
|
url = "mirror://gcc/releases/gcc-${version}/gcc-fortran-${version}.tar.bz2";
|
2009-07-24 15:34:57 +02:00
|
|
|
sha256 = "1406r8ndl7pjyas5naw8ygqpfrl72ypyn71llfzf953j736kmi50";
|
2009-07-03 20:54:28 +02:00
|
|
|
}) ++
|
|
|
|
|
|
|
|
optional langJava (fetchurl {
|
|
|
|
url = "mirror://gcc/releases/gcc-${version}/gcc-java-${version}.tar.bz2";
|
2009-07-24 15:34:57 +02:00
|
|
|
sha256 = "07lgph5zxskqqkzbq67wma2067dqr5my110l8rgzspqjq5rhgdil";
|
2009-07-03 20:54:28 +02:00
|
|
|
});
|
2009-07-17 19:20:07 +02:00
|
|
|
|
2009-07-03 20:54:28 +02:00
|
|
|
patches =
|
|
|
|
[./pass-cxxcpp.patch]
|
2009-07-24 23:56:58 +02:00
|
|
|
++ optional noSysDirs ./no-sys-dirs.patch;
|
2009-07-17 18:14:28 +02:00
|
|
|
|
2009-07-27 15:50:19 +02:00
|
|
|
inherit noSysDirs profiledCompiler staticCompiler langJava;
|
2009-07-03 20:54:28 +02:00
|
|
|
|
2009-07-27 17:40:01 +02:00
|
|
|
buildInputs = [ texinfo gmp mpfr gettext which ]
|
2009-07-18 23:37:23 +02:00
|
|
|
++ (optional (ppl != null) ppl)
|
|
|
|
++ (optional (cloogppl != null) cloogppl)
|
2009-07-03 20:54:28 +02:00
|
|
|
++ (optionals langTreelang [bison flex])
|
|
|
|
++ (optional (zlib != null) zlib)
|
|
|
|
++ (optional (boehmgc != null) boehmgc)
|
2009-07-27 17:40:01 +02:00
|
|
|
++ (optionals langJava [fastjar zip unzip])
|
2009-07-03 20:54:28 +02:00
|
|
|
;
|
|
|
|
|
|
|
|
configureFlags = "
|
|
|
|
${if enableMultilib then "" else "--disable-multilib"}
|
2009-07-18 23:37:23 +02:00
|
|
|
${if ppl != null then "--with-ppl=${ppl}" else ""}
|
|
|
|
${if cloogppl != null then "--with-cloog=${cloogppl}" else ""}
|
2009-07-20 17:34:10 +02:00
|
|
|
${if langJava then "--with-ecj-jar=${javaEcj}" else ""}
|
2009-07-03 20:54:28 +02:00
|
|
|
--disable-libstdcxx-pch
|
2009-07-17 18:14:28 +02:00
|
|
|
--without-included-gettext
|
2009-07-03 20:54:28 +02:00
|
|
|
--with-system-zlib
|
|
|
|
--enable-languages=${
|
|
|
|
concatStrings (intersperse ","
|
|
|
|
( optional langC "c"
|
|
|
|
++ optional langCC "c++"
|
|
|
|
++ optional langFortran "fortran"
|
|
|
|
++ optional langJava "java"
|
|
|
|
++ optional langTreelang "treelang"
|
|
|
|
)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
${if stdenv.isi686 then "--with-arch=i686" else ""}
|
|
|
|
";
|
|
|
|
|
2009-07-27 15:50:19 +02:00
|
|
|
inherit gmp mpfr zlib boehmgc;
|
2009-07-03 20:54:28 +02:00
|
|
|
|
|
|
|
passthru = { inherit langC langCC langFortran langTreelang enableMultilib; };
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://gcc.gnu.org/";
|
|
|
|
license = "GPL/LGPL";
|
2009-07-17 18:14:28 +02:00
|
|
|
description = "GNU Compiler Collection, version ${version}";
|
|
|
|
|
|
|
|
maintainers = [
|
|
|
|
# Add your name here!
|
|
|
|
stdenv.lib.maintainers.ludo
|
|
|
|
];
|
2009-07-03 20:54:28 +02:00
|
|
|
};
|
2009-07-27 15:50:19 +02:00
|
|
|
})
|