From 50df25a859164f81fdd9f9b8a8ecddd2e039dd78 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sun, 3 Sep 2023 14:06:24 +0200 Subject: [PATCH] Disable python3-lldb on mips64el to unnreak the build --- debian/changelog | 8 ++++++-- debian/rules | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 17e81635..64ca808f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,10 +1,14 @@ -llvm-toolchain-17 (1:17.0.0~+rc3-1~exp2) UNRELEASED; urgency=medium +llvm-toolchain-17 (1:17.0.0~+rc4-1~exp1) experimental; urgency=medium [ John Paul Adrian Glaubitz ] * Disable wasm support on powerpc and powerpcspe * Remove powerpc from BINUTILS_GOLD_ARCHS again - -- John Paul Adrian Glaubitz Wed, 30 Aug 2023 11:44:06 +0200 + [ Sylvestre Ledru ] + * new upstream release + * Disable python3-lldb on mips64el to unnreak the build + + -- Sylvestre Ledru Tue, 05 Sep 2023 14:42:18 +0200 llvm-toolchain-17 (1:17.0.0~+rc3-1~exp1) experimental; urgency=medium diff --git a/debian/rules b/debian/rules index c8d2ef21..b4d75d7a 100755 --- a/debian/rules +++ b/debian/rules @@ -1208,7 +1208,7 @@ endif # Disable the python binding for buster. not sure why it regressed # regressed de4364f1ecaa..0745b0c0354a - if test "$(DISTRO)" = "buster"; then \ + if test "$(DISTRO)" = "buster" -o "$(DISTRO)" = "bionic" -o "$(DEB_HOST_ARCH)" = "mips64el" then \ mkdir -p $(DEB_INST)/usr/lib/llvm-$(LLVM_VERSION)/share/gdb/python/ompd/; \ touch $(DEB_INST)/usr/lib/llvm-$(LLVM_VERSION)/share/gdb/python/ompd/empty; \ echo "" > debian/python3-lldb-$(LLVM_VERSION).install; \