summary refs log tree commit diff
path: root/pkgs/development/compilers/llvm/3.5
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2016-11-28 18:55:04 +0100
committerVladimír Čunát <vcunat@gmail.com>2016-11-28 19:02:15 +0100
commitb67ae8b33c38b442a7d0f4bed0e68a8cd85e22bb (patch)
tree2f5fc4270104c64c7ced751b05cb4b1fa87fc989 /pkgs/development/compilers/llvm/3.5
parent7e3331af49002b374063ede0983fc03409d3471f (diff)
downloadnixlib-b67ae8b33c38b442a7d0f4bed0e68a8cd85e22bb.tar
nixlib-b67ae8b33c38b442a7d0f4bed0e68a8cd85e22bb.tar.gz
nixlib-b67ae8b33c38b442a7d0f4bed0e68a8cd85e22bb.tar.bz2
nixlib-b67ae8b33c38b442a7d0f4bed0e68a8cd85e22bb.tar.lz
nixlib-b67ae8b33c38b442a7d0f4bed0e68a8cd85e22bb.tar.xz
nixlib-b67ae8b33c38b442a7d0f4bed0e68a8cd85e22bb.tar.zst
nixlib-b67ae8b33c38b442a7d0f4bed0e68a8cd85e22bb.zip
llvmPackages*.lldb: fixup input by disabling libedit
Fixes #20773.  https://llvm.org/bugs/show_bug.cgi?id=28898
Of course, feel free to find a better solution.

I love this copy&paste :-/
Diffstat (limited to 'pkgs/development/compilers/llvm/3.5')
-rw-r--r--pkgs/development/compilers/llvm/3.5/lldb.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/compilers/llvm/3.5/lldb.nix b/pkgs/development/compilers/llvm/3.5/lldb.nix
index 8e7c8151df13..bbffa1a9a938 100644
--- a/pkgs/development/compilers/llvm/3.5/lldb.nix
+++ b/pkgs/development/compilers/llvm/3.5/lldb.nix
@@ -29,6 +29,7 @@ stdenv.mkDerivation {
     "-DCMAKE_CXX_FLAGS=-std=c++11"
     "-DLLDB_PATH_TO_LLVM_BUILD=${llvm}"
     "-DLLDB_PATH_TO_CLANG_BUILD=${clang}"
+    "-DLLDB_DISABLE_LIBEDIT=1" # https://llvm.org/bugs/show_bug.cgi?id=28898
   ];
 
   enableParallelBuilding = true;