Disable wasm support on powerpc and powerpcspe

This commit is contained in:
John Paul Adrian Glaubitz 2023-08-30 11:35:18 +02:00
parent ae1efa595d
commit 77462f3ae3
2 changed files with 11 additions and 0 deletions

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
llvm-toolchain-16 (1:16.0.6-12) UNRELEASED; urgency=medium
[ John Paul Adrian Glaubitz ]
* Disable wasm support on powerpc and powerpcspe
-- John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> Wed, 30 Aug 2023 11:34:13 +0200
llvm-toolchain-16 (1:16.0.6-11) unstable; urgency=medium
* debian/patches/D158066.patch:

4
debian/rules vendored
View File

@ -412,6 +412,10 @@ ifeq (,$(filter-out $(LIBCXX_WASM_DISABLE_DISTRO), $(DISTRO)))
LIBCXX_WASM_ENABLE=no
endif
ifneq (,$(filter $(DEB_HOST_ARCH),powerpc powerpcspe))
LIBCXX_WASM_ENABLE=no
endif
LLD_ENABLE=yes
ifneq (,$(filter $(DEB_HOST_ARCH_OS),linux))