mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
f5fe051c71
vcunat's review: - let's not switch the default versions of llvm* for now - the only changes I see is adding python to clang's buildInputs and using the big so-file as discussed in #12759 (BUILD_SHARED_LIBS -> LLVM_LINK_LLVM_DYLIB) - in future it will be nice to split libLLVM into a separate output
50 lines
995 B
Nix
50 lines
995 B
Nix
{ stdenv
|
|
, fetch
|
|
, cmake
|
|
, zlib
|
|
, ncurses
|
|
, swig
|
|
, which
|
|
, libedit
|
|
, llvm
|
|
, clang-unwrapped
|
|
, python
|
|
, version
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "lldb-${version}";
|
|
|
|
src = fetch "lldb" "008fdbyza13ym3v0xpans4z4azw4y16hcbgrrnc4rx2mxwaw62ws";
|
|
|
|
patchPhase = ''
|
|
sed -i 's|/usr/bin/env||' \
|
|
scripts/Python/finish-swig-Python-LLDB.sh \
|
|
scripts/Python/build-swig-Python.sh
|
|
'';
|
|
|
|
buildInputs = [ cmake python which swig ncurses zlib libedit ];
|
|
|
|
preConfigure = ''
|
|
export CXXFLAGS="-pthread"
|
|
export LDFLAGS="-ldl"
|
|
'';
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_BUILD_TYPE=Release"
|
|
"-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;
|
|
};
|
|
}
|