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

58 lines
1.5 KiB
Nix
Raw Normal View History

2018-01-31 14:09:24 +00:00
{ stdenv
, fetch
, cmake
, zlib
, ncurses
, swig
, which
, libedit
, libxml2
, llvm
, clang-unwrapped
2020-01-12 20:22:29 +00:00
, python3
2018-01-31 14:09:24 +00:00
, version
, darwin
}:
stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "lldb";
inherit version;
2018-01-31 14:09:24 +00:00
2018-06-28 20:58:05 +00:00
src = fetch "lldb" "05178zkyh84x32n91md6wm22lkzzrrfwa5cpmgzn0yrg3y2771bb";
2018-01-31 14:09:24 +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 ];
2018-01-31 14:09:24 +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 ];
2018-01-31 14:09:24 +00:00
CXXFLAGS = "-fno-rtti";
hardeningDisable = [ "format" ];
cmakeFlags = [
"-DLLDB_CODESIGN_IDENTITY=" # codesigning makes nondeterministic
];
enableParallelBuilding = true;
postInstall = ''
mkdir -p $out/share/man/man1
cp ../docs/lldb.1 $out/share/man/man1/
'';
meta = with stdenv.lib; {
description = "A next-generation high-performance debugger";
homepage = "https://llvm.org/";
2018-01-31 14:09:24 +00:00
license = licenses.ncsa;
platforms = platforms.all;
};
}