2013-06-01 23:36:38 +02:00
|
|
|
{ stdenv, fetchurl, perl, groff, cmake, python, libffi }:
|
2008-03-17 11:18:21 +00:00
|
|
|
|
2013-06-21 19:18:52 -04:00
|
|
|
let version = "3.3"; in
|
2011-10-18 16:37:28 +00:00
|
|
|
|
2011-10-19 20:57:18 +00:00
|
|
|
stdenv.mkDerivation {
|
2011-10-18 16:37:28 +00:00
|
|
|
name = "llvm-${version}";
|
|
|
|
|
2008-03-17 11:18:21 +00:00
|
|
|
src = fetchurl {
|
2012-10-07 23:25:11 -04:00
|
|
|
url = "http://llvm.org/releases/${version}/llvm-${version}.src.tar.gz";
|
2013-06-21 19:18:52 -04:00
|
|
|
sha256 = "0y3mfbb5qzcpw3v5qncn69x1hdrrrfirgs82ypi2annhf0g6nxk8";
|
2008-03-17 11:18:21 +00:00
|
|
|
};
|
|
|
|
|
2013-06-21 19:18:52 -04:00
|
|
|
# The default rlimits are too low for shared libraries.
|
|
|
|
patches = [ ./more-memory-for-bugpoint.patch ];
|
2013-05-16 17:16:02 +02:00
|
|
|
|
2013-06-21 19:18:52 -04:00
|
|
|
# libffi was propagated before, but it wasn't even being used, so
|
|
|
|
# unless something needs it just an input is fine.
|
|
|
|
buildInputs = [ perl groff cmake python libffi ]; # ToDo: polly, libc++; enable cxx11?
|
2013-06-01 23:36:38 +02:00
|
|
|
|
|
|
|
# created binaries need to be run before installation... I coudn't find a better way
|
|
|
|
preBuild = ''export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:"`pwd`/lib'';
|
|
|
|
|
2013-06-21 19:18:52 -04:00
|
|
|
cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" "-DBUILD_SHARED_LIBS=ON" "-DLLVM_ENABLE_FFI=ON" ];
|
2010-06-12 21:52:39 +00:00
|
|
|
|
2011-12-03 23:47:59 +00:00
|
|
|
enableParallelBuilding = true;
|
2013-06-21 19:18:52 -04:00
|
|
|
|
|
|
|
doCheck = true;
|
2011-12-03 23:47:59 +00:00
|
|
|
|
2010-06-12 20:54:35 +00:00
|
|
|
meta = {
|
|
|
|
homepage = http://llvm.org/;
|
|
|
|
description = "Collection of modular and reusable compiler and toolchain technologies";
|
2010-06-12 22:30:09 +00:00
|
|
|
license = "BSD";
|
2012-10-07 23:25:11 -04:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric shlevy raskin];
|
2011-12-19 13:00:03 +00:00
|
|
|
platforms = with stdenv.lib.platforms; all;
|
2010-06-12 20:54:35 +00:00
|
|
|
};
|
2008-03-17 11:18:21 +00:00
|
|
|
}
|