Disable OpenMP on unsupported architecture x32

This commit is contained in:
John Paul Adrian Glaubitz 2018-09-13 09:42:58 +02:00
parent 063132c87a
commit 7dbedcd117
2 changed files with 7 additions and 3 deletions

8
debian/changelog vendored
View File

@ -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 <glaubitz@physik.fu-berlin.de> Thu, 13 Sep 2018 09:41:19 +0200
llvm-toolchain-7 (1:7~+rc3-2) unstable; urgency=medium

2
debian/rules vendored
View File

@ -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