diff -Nru pcl-1.12.1+dfsg/debian/changelog pcl-1.12.1+dfsg/debian/changelog --- pcl-1.12.1+dfsg/debian/changelog 2021-12-29 09:52:53.000000000 +0000 +++ pcl-1.12.1+dfsg/debian/changelog 2022-02-03 18:00:06.000000000 +0000 @@ -1,3 +1,9 @@ +pcl (1.12.1+dfsg-3+rpi1) bookworm-staging; urgency=medium + + * Build with clang 11 to avoid armv7 contamination. + + -- Peter Michael Green Thu, 03 Feb 2022 18:00:06 +0000 + pcl (1.12.1+dfsg-3) unstable; urgency=medium * Add missing dependency (Closes: #1002786) diff -Nru pcl-1.12.1+dfsg/debian/control pcl-1.12.1+dfsg/debian/control --- pcl-1.12.1+dfsg/debian/control 2021-12-29 09:49:36.000000000 +0000 +++ pcl-1.12.1+dfsg/debian/control 2022-02-03 17:59:46.000000000 +0000 @@ -6,7 +6,7 @@ Priority: optional Build-Depends: debhelper-compat (= 13), cmake, - clang [mipsel armel armhf], + clang-11 [mipsel armel armhf], python3-sphinx, libboost-system-dev, libboost-filesystem-dev, diff -Nru pcl-1.12.1+dfsg/debian/rules pcl-1.12.1+dfsg/debian/rules --- pcl-1.12.1+dfsg/debian/rules 2021-11-04 08:37:01.000000000 +0000 +++ pcl-1.12.1+dfsg/debian/rules 2022-02-03 17:59:57.000000000 +0000 @@ -8,8 +8,8 @@ ifneq (,$(filter $(DEB_BUILD_ARCH),mipsel armhf armel)) PARALLEL=--max-parallel=2 - export CC=/usr/bin/clang - export CXX=/usr/bin/clang++ + export CC=/usr/bin/clang-11 + export CXX=/usr/bin/clang++-11 else PARALLEL= endif