diff --git a/debian/changelog b/debian/changelog index fcda86ba..3b4bf1c7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +llvm-toolchain-snapshot (1:19~++20240529093513+2cfea14a57ad-1~exp2) UNRELEASED; urgency=medium + + [ John Paul Adrian Glaubitz ] + * Disable LLVM testsuite on x32 + + -- John Paul Adrian Glaubitz Sat, 01 Jun 2024 23:16:14 +0200 + llvm-toolchain-snapshot (1:19~++20240529093513+2cfea14a57ad-1~exp1) experimental; urgency=medium * experimental New snapshot release diff --git a/debian/rules b/debian/rules index 24be589b..5745a316 100755 --- a/debian/rules +++ b/debian/rules @@ -398,8 +398,8 @@ ifeq (riscv64,$(DEB_HOST_ARCH)) endif endif -# llvm tests timeout, disable it on mipsel -ifeq (mipsel,$(DEB_HOST_ARCH)) +# llvm tests timeout, disable it on mipsel and x32 +ifneq (,$(filter $(DEB_HOST_ARCH), mipsel x32)) RUN_TEST=no endif