Disable lldb for ppc64el. Thanks to Dimitri John Ledkov (Closes: #756380)

This commit is contained in:
Sylvestre Ledru 2014-07-29 11:41:17 +00:00
parent 754a492398
commit c87d3f3f6e
2 changed files with 8 additions and 2 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
llvm-toolchain-3.5 (1:3.5~+rc1-3) UNRELEASED; urgency=medium
* Disable lldb for ppc64el. Thanks to Dimitri John Ledkov (Closes: #756380)
-- Sylvestre Ledru <sylvestre@debian.org> Tue, 29 Jul 2014 13:40:20 +0200
llvm-toolchain-3.5 (1:3.5~+rc1-2) unstable; urgency=medium
* Sync with 3.4 svn to retrieve some changes:

4
debian/rules vendored
View File

@ -60,7 +60,7 @@ else
control_vars = '-Vdep:devlibs=libstdc++6-$(GCC_VERSION)-dev'
endif
BINUTILS_GOLD_ARCHS := amd64 armhf i386 powerpc powerpcspe ppc64 sparc sparc64 x32
BINUTILS_GOLD_ARCHS := amd64 armhf i386 powerpc powerpcspe ppc64 ppc64el sparc sparc64 x32
ifeq ($(shell dpkg --compare-versions $(shell dpkg-query -W -f '$${Version}' binutils) ge 2.23.1-1~exp3 ; echo $$?),0)
ifneq (,$(findstring $(DEB_HOST_ARCH),$(BINUTILS_GOLD_ARCHS)))
# -fused-ld=gold enables the gold linker (but is not supported by all archs / distro)
@ -116,7 +116,7 @@ endif
LLDB_ENABLE=yes
LLDB_DISABLE_ARCHS := arm64 hurd-i386 mips mipsel ia64
LLDB_DISABLE_ARCHS := arm64 hurd-i386 mips mipsel ia64 ppc64el
# hurd has threading issues
# mips* fails with "undefined references to `__atomic_load_8'"
ifeq (,$(filter-out $(LLDB_DISABLE_ARCHS), $(DEB_HOST_ARCH)))