From 7dbedcd1177c5388b751cb46fed6421d4a4f9844 Mon Sep 17 00:00:00 2001 From: John Paul Adrian Glaubitz Date: Thu, 13 Sep 2018 09:42:58 +0200 Subject: [PATCH] Disable OpenMP on unsupported architecture x32 --- debian/changelog | 8 ++++++-- debian/rules | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 8a19ee1c..ef7e5fd2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,12 @@ -llvm-toolchain-7 (1:7~+rc3-3) unstable; urgency=medium +llvm-toolchain-7 (1:7~+rc3-3) UNRELEASED; urgency=medium + [ John Paul Adrian Glaubitz ] + * Disable OpenMP on unsupported architecture x32 + + [ Sylvestre Ledru ] * Build llvm using -DLLVM_USE_PERF=yes (Closes: #908707) - -- + -- John Paul Adrian Glaubitz Thu, 13 Sep 2018 09:41:19 +0200 llvm-toolchain-7 (1:7~+rc3-2) unstable; urgency=medium diff --git a/debian/rules b/debian/rules index f2423608..3147f053 100755 --- a/debian/rules +++ b/debian/rules @@ -113,7 +113,7 @@ endif # Enable openmp (or not) OPENMP_ENABLE=yes -ifneq (,$(filter $(DEB_HOST_ARCH), armel mips mipsel powerpc powerpcspe riscv64 sparc64 s390x)) +ifneq (,$(filter $(DEB_HOST_ARCH), armel mips mipsel powerpc powerpcspe riscv64 sparc64 s390x x32)) OPENMP_ENABLE=no endif