diff --git a/debian/changelog b/debian/changelog index 02aff884..8c527910 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,10 +1,13 @@ -llvm-toolchain-16 (1:16.0.6-12) UNRELEASED; urgency=medium +llvm-toolchain-16 (1:16.0.6-12) unstable; 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:34:13 +0200 + [ Sylvestre Ledru ] + * Disable python3-lldb on mips64el to unnreak the build + + -- Sylvestre Ledru Sun, 03 Sep 2023 14:06:19 +0200 llvm-toolchain-16 (1:16.0.6-11) unstable; urgency=medium diff --git a/debian/rules b/debian/rules index 2e9fc51a..57988a3d 100755 --- a/debian/rules +++ b/debian/rules @@ -1180,7 +1180,7 @@ endif # Disable the python binding for buster. not sure why it regressed # regressed de4364f1ecaa..0745b0c0354a - if test "$(DISTRO)" = "buster" -o "$(DISTRO)" = "bionic"; 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; \