Cleaning a bit what I commited about llvm, and making dragonegg build.

If passing to gcc4.5 the compile flag: "-fplugin=dragonegg.so" it will use the llvm optimizers and
code generators.

In that previous commit I enabled link time optimization and plugin support in gcc 4.5.0

svn path=/nixpkgs/trunk/; revision=22235
This commit is contained in:
Lluís Batlle i Rossell
2010-06-12 20:54:35 +00:00
parent e6ad625902
commit 1babf6ea14
3 changed files with 29 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
{stdenv, fetchurl, gcc, flex, perl, libtool, groff }:
{stdenv, fetchurl, gcc, flex, perl, libtool, groff}:
stdenv.mkDerivation {
name = "llvm-2.7";
@@ -8,4 +8,11 @@ stdenv.mkDerivation {
};
buildInputs = [ gcc flex perl libtool groff ];
meta = {
homepage = http://llvm.org/;
description = "Collection of modular and reusable compiler and toolchain technologies";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; all;
};
}