* Don't try to install xray and profile headers on armel and armhf.

This commit is contained in:
Matthias Klose 2024-08-27 12:22:32 +02:00
parent df85a63901
commit b4a5aa6e85
3 changed files with 6 additions and 2 deletions

1
debian/changelog vendored
View File

@ -4,6 +4,7 @@ llvm-toolchain-19 (1:19.1.0~++rc3-1~exp2) UNRELEASED; urgency=medium
* Add some memory tracking, getting some information on memory hogs.
* Don't require g++-multilib on s390x for newer Ubuntu releases.
* Factor-out ocaml architectures.
* Don't try to install xray and profile headers on armel and armhf.
-- Matthias Klose <doko@ubuntu.com> Tue, 27 Aug 2024 11:47:25 +0200

View File

@ -1,7 +1,9 @@
#!/usr/bin/dh-exec
usr/lib/llvm-@LLVM_VERSION@/lib/clang/@LLVM_VERSION@*/include/*.h
usr/lib/llvm-@LLVM_VERSION@/lib/clang/@LLVM_VERSION@*/include/module.modulemap
usr/lib/llvm-@LLVM_VERSION@/lib/clang/@LLVM_VERSION@*/include/xray/
usr/lib/llvm-@LLVM_VERSION@/lib/clang/@LLVM_VERSION@*/include/profile/
[!armel !armhf] usr/lib/llvm-@LLVM_VERSION@/lib/clang/@LLVM_VERSION@*/include/xray/
[!armel !armhf] usr/lib/llvm-@LLVM_VERSION@/lib/clang/@LLVM_VERSION@*/include/profile/
usr/lib/llvm-@LLVM_VERSION@/lib/clang/@LLVM_VERSION@*/include/ppc_wrappers/
usr/lib/llvm-@LLVM_VERSION@/lib/clang/@LLVM_VERSION@*/include/openmp_wrappers/
usr/lib/llvm-@LLVM_VERSION@/lib/clang/@LLVM_VERSION@*/include/cuda_wrappers/

1
debian/rules vendored
View File

@ -678,6 +678,7 @@ stamps/preconfigure:
chmod +x \
debian/clang-tools-$(LLVM_VERSION).install \
debian/libclang-$(LLVM_VERSION)-dev.install \
debian/libclang-common-$(LLVM_VERSION)-dev.install \
debian/libclang-rt-$(LLVM_VERSION)-dev.install \
debian/libpolly-$(LLVM_VERSION)-dev.install \
debian/libomp-$(LLVM_VERSION)-dev.install \