2015-09-12 08:38:32 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetch
|
|
|
|
, cmake
|
|
|
|
, zlib
|
|
|
|
, ncurses
|
|
|
|
, swig
|
|
|
|
, which
|
|
|
|
, libedit
|
|
|
|
, llvm
|
|
|
|
, clang-unwrapped
|
2016-10-18 21:53:45 +01:00
|
|
|
, python2
|
2015-09-12 08:38:32 +01:00
|
|
|
, version
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "lldb-${version}";
|
|
|
|
|
2016-01-07 05:16:47 +00:00
|
|
|
src = fetch "lldb" "008fdbyza13ym3v0xpans4z4azw4y16hcbgrrnc4rx2mxwaw62ws";
|
2015-09-12 08:38:32 +01:00
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
sed -i 's|/usr/bin/env||' \
|
|
|
|
scripts/Python/finish-swig-Python-LLDB.sh \
|
|
|
|
scripts/Python/build-swig-Python.sh
|
|
|
|
'';
|
|
|
|
|
2016-10-18 21:53:45 +01:00
|
|
|
buildInputs = [ cmake python2 which swig ncurses zlib libedit ];
|
2015-09-12 08:38:32 +01:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
export CXXFLAGS="-pthread"
|
|
|
|
export LDFLAGS="-ldl"
|
|
|
|
'';
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DLLDB_PATH_TO_LLVM_BUILD=${llvm}"
|
|
|
|
"-DLLDB_PATH_TO_CLANG_BUILD=${clang-unwrapped}"
|
|
|
|
"-DPYTHON_VERSION_MAJOR=2"
|
|
|
|
"-DPYTHON_VERSION_MINOR=7"
|
|
|
|
];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A next-generation high-performance debugger";
|
|
|
|
homepage = http://llvm.org/;
|
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
}
|