Disable wasm support on powerpc and powerpcspe

This commit is contained in:
John Paul Adrian Glaubitz 2023-08-30 11:49:41 +02:00
parent 24222f0013
commit a87dd6d343
2 changed files with 11 additions and 0 deletions

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
llvm-toolchain-snapshot (1:18~++20230818040015+c931f2e6fd0c-1~exp2) 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:49:01 +0200
llvm-toolchain-snapshot (1:18~++20230818040015+c931f2e6fd0c-1~exp1) experimental; urgency=medium
* snapshot is now 18

4
debian/rules vendored
View File

@ -409,6 +409,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))