Fix the bad declaration on the lldb desactivation

This commit is contained in:
Sylvestre Ledru 2013-12-04 22:54:36 +00:00
parent ef93c2865c
commit 92aa83c48d
2 changed files with 7 additions and 1 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
llvm-toolchain-3.4 (1:3.4~+rc2-3) UNRELEASED; urgency=low
* Fix the bad declaration on the lldb desactivation
-- Sylvestre Ledru <sylvestre@debian.org> Wed, 04 Dec 2013 23:53:49 +0100
llvm-toolchain-3.4 (1:3.4~+rc2-2) unstable; urgency=low llvm-toolchain-3.4 (1:3.4~+rc2-2) unstable; urgency=low
* Add the Ocaml ABI dependency (Closes: #731344) * Add the Ocaml ABI dependency (Closes: #731344)

2
debian/rules vendored
View File

@ -107,7 +107,7 @@ LLDB_ENABLE=yes
LLDB_DISABLE_ARCHS := hurd-i386 mips mipsel ia64 LLDB_DISABLE_ARCHS := hurd-i386 mips mipsel ia64
# hurd has threading issues # hurd has threading issues
# mips* fails with "undefined references to `__atomic_load_8'" # mips* fails with "undefined references to `__atomic_load_8'"
ifneq (,$(findstring $(DEB_HOST_ARCH),$(LLDB_DISABLE_ARCHS))) ifeq (,$(filter-out $(LLDB_DISABLE_ARCHS), $(DEB_HOST_ARCH)))
# Disable LLDB for this arch. # Disable LLDB for this arch.
LLDB_ENABLE=no LLDB_ENABLE=no
endif endif