Disable libedit usage in lldb because of garbage (Closes: #846616, #850111)

This commit is contained in:
Sylvestre Ledru 2017-01-07 11:21:17 +00:00
parent b0c28d110c
commit bbdfe1239f
2 changed files with 4 additions and 0 deletions

1
debian/changelog vendored
View File

@ -1,5 +1,6 @@
llvm-toolchain-snapshot (1:4.0~svn291233-1~exp1) experimental; urgency=medium
* Disable libedit usage in lldb because of garbage (Closes: #846616, #850111)
* Build lld
- d/p/lld-arg-cmake-issue.diff fixes upstream bug #27685
* Run clang extra test suite

3
debian/rules vendored
View File

@ -134,6 +134,9 @@ LLDB_DISABLE_ARCHS := hurd-i386 ia64 ppc64el powerpc s390x sparc64 mips64el ppc6
ifeq (,$(filter-out $(LLDB_DISABLE_ARCHS), $(DEB_HOST_ARCH)))
# Disable LLDB for this arch.
LLDB_ENABLE=no
else
# See https://llvm.org/bugs/show_bug.cgi?id=28898
CMAKE_EXTRA += -DLLDB_DISABLE_LIBEDIT=ON
endif
LLD_ENABLE=yes