2010-06-12 23:52:39 +02:00
|
|
|
{stdenv, fetchurl, fetchsvn, gcc, flex, perl, libtool, groff
|
|
|
|
, buildClang ? false}:
|
2008-03-17 12:18:21 +01:00
|
|
|
|
2010-06-12 23:52:39 +02:00
|
|
|
stdenv.mkDerivation ({
|
2010-06-12 19:42:33 +02:00
|
|
|
name = "llvm-2.7";
|
2008-03-17 12:18:21 +01:00
|
|
|
src = fetchurl {
|
2010-06-12 19:42:33 +02:00
|
|
|
url = http://llvm.org/releases/2.7/llvm-2.7.tgz;
|
|
|
|
sha256 = "19dwvfyxr851fjfsaxbm56gdj9mlivr37bv6h41hd8q3hpf4nrlr";
|
2008-03-17 12:18:21 +01:00
|
|
|
};
|
|
|
|
|
2010-06-12 19:42:33 +02:00
|
|
|
buildInputs = [ gcc flex perl libtool groff ];
|
2010-06-12 22:54:35 +02:00
|
|
|
|
2010-06-12 23:52:39 +02:00
|
|
|
configureFlags = [ "--enable-optimized" "--enable-shared" ];
|
|
|
|
|
2010-06-12 22:54:35 +02:00
|
|
|
meta = {
|
|
|
|
homepage = http://llvm.org/;
|
|
|
|
description = "Collection of modular and reusable compiler and toolchain technologies";
|
2010-06-13 00:30:09 +02:00
|
|
|
license = "BSD";
|
2010-06-12 22:54:35 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; all;
|
|
|
|
};
|
2008-03-17 12:18:21 +01:00
|
|
|
}
|
2010-06-12 23:52:39 +02:00
|
|
|
//
|
|
|
|
(if buildClang then
|
2010-06-13 00:01:41 +02:00
|
|
|
# I write the assert because 'gcc.libc' will be evaluated although 'triplet' would not
|
|
|
|
# evaluate properly (in the preConfigure below)
|
|
|
|
assert stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux";
|
2010-06-12 23:52:39 +02:00
|
|
|
let
|
|
|
|
triplet = if (stdenv.system == "i686-linux") then "i686-unknown-linux-gnu"
|
|
|
|
else if (stdenv.system == "x86_64-linux") then "x86_64-unknown-linux-gnu"
|
|
|
|
else throw "System not supported";
|
|
|
|
in {
|
2010-06-13 00:14:43 +02:00
|
|
|
name = "clang-2.7";
|
|
|
|
|
2010-06-12 23:52:39 +02:00
|
|
|
srcClang = fetchsvn {
|
|
|
|
url = http://llvm.org/svn/llvm-project/cfe/tags/RELEASE_27;
|
|
|
|
rev = 105900;
|
2010-06-13 00:01:41 +02:00
|
|
|
sha256 = "fe79988950319b62d3bca34848424f20a3f33c8182507df222f2ac93fbacf671";
|
2010-06-12 23:52:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
pushd tools
|
|
|
|
cp -R "$srcClang" clang
|
|
|
|
chmod u+w -R clang
|
|
|
|
popd
|
|
|
|
'';
|
|
|
|
|
|
|
|
patches = [ ./clang-include-paths.patch ];
|
|
|
|
|
|
|
|
# Set up the header file paths
|
|
|
|
preConfigure = ''
|
|
|
|
sed -i -e 's,C_INCLUDE_PATH,"${gcc.libc}/include/",' \
|
|
|
|
-e 's,CPP_HOST,"${triplet}",' \
|
|
|
|
-e 's,CPP_INCLUDE_PATH,"${gcc.gcc}/include/c++/${gcc.gcc.version}",' \
|
|
|
|
tools/clang/lib/Frontend/InitHeaderSearch.cpp
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://clang.llvm.org/;
|
|
|
|
description = "A C language family frontend for LLVM";
|
2010-06-13 00:30:09 +02:00
|
|
|
license = "BSD";
|
2010-06-12 23:52:39 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
else {}
|
|
|
|
))
|