nixpkgs/pkgs/development/compilers/llvm/5/lldb.nix

58 lines
1.5 KiB
Nix
Raw Normal View History

2017-09-16 00:38:38 +00:00
{ stdenv
, fetch
, cmake
, zlib
, ncurses
, swig
, which
, libedit
, libxml2
, llvm
, clang-unwrapped
2020-01-12 20:22:29 +00:00
, python3
2017-09-16 00:38:38 +00:00
, version
, darwin
}:
stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "lldb";
inherit version;
2017-09-16 00:38:38 +00:00
2018-05-04 15:54:06 +00:00
src = fetch "lldb" "05j2a63yzln43852nng8a7y47spzlyr1cvdmgmbxgd29c8r0bfkq";
2017-09-16 00:38:38 +00:00
postPatch = ''
# Fix up various paths that assume llvm and clang are installed in the same place
sed -i 's,".*ClangConfig.cmake","${clang-unwrapped}/lib/cmake/clang/ClangConfig.cmake",' \
cmake/modules/LLDBStandalone.cmake
sed -i 's,".*tools/clang/include","${clang-unwrapped}/include",' \
cmake/modules/LLDBStandalone.cmake
sed -i 's,"$.LLVM_LIBRARY_DIR.",${llvm}/lib ${clang-unwrapped}/lib,' \
cmake/modules/LLDBStandalone.cmake
'';
2020-01-12 20:22:29 +00:00
nativeBuildInputs = [ cmake python3 which swig ];
2017-09-16 00:38:38 +00:00
buildInputs = [ ncurses zlib libedit libxml2 llvm ]
2019-06-20 16:44:26 +00:00
++ stdenv.lib.optionals stdenv.isDarwin [ darwin.libobjc darwin.apple_sdk.libs.xpc darwin.apple_sdk.frameworks.Foundation darwin.bootstrap_cmds darwin.apple_sdk.frameworks.Carbon darwin.apple_sdk.frameworks.Cocoa ];
2017-09-16 00:38:38 +00:00
CXXFLAGS = "-fno-rtti";
hardeningDisable = [ "format" ];
cmakeFlags = [
"-DLLDB_CODESIGN_IDENTITY=" # codesigning makes nondeterministic
];
enableParallelBuilding = true;
2018-01-16 21:05:42 +00:00
postInstall = ''
mkdir -p $out/share/man/man1
cp ../docs/lldb.1 $out/share/man/man1/
'';
2017-09-16 00:38:38 +00:00
meta = with stdenv.lib; {
description = "A next-generation high-performance debugger";
homepage = https://llvm.org/;
2017-09-16 00:38:38 +00:00
license = licenses.ncsa;
platforms = platforms.all;
};
}