Add armhf to the list of architectures where clang rt is unavailable. forky-staging archive/raspbian/1.91.1+dfsg1-1+rpi1 raspbian/1.91.1+dfsg1-1+rpi1
authorPeter Michael Green <plugwash@raspbian.org>
Fri, 23 Jan 2026 09:02:29 +0000 (09:02 +0000)
committerPeter Michael Green <plugwash@raspbian.org>
Fri, 23 Jan 2026 09:02:29 +0000 (09:02 +0000)
debian/changelog
debian/rules

index d6f8e4feabc8b3e6714bbd278e0c860efd0ff77e..c363c88741f399b7b0ad7cb2737e2b9545b77e04 100644 (file)
@@ -10,6 +10,8 @@ rustc (1.91.1+dfsg1-1+rpi1) forky-staging; urgency=medium
   * Use the compiler itself rather than dpkg to detect DEB_BUILD_RUST_TYPE
   [changes introduced in 1.57.0+dfsg1-1+rpi1 by Peter Michael Green]
   * Disable testsuite for arch all builds as well.
+  [changes introduced in 1.91.1+dfsg1-1+rpi1 by Peter Michael Green]
+  * Add armhf to the list of architectures where clang rt is unavailable.
 
  -- Peter Michael Green <plugwash@raspbian.org>  Thu, 22 Jan 2026 06:04:58 +0000
 
index 4dcc11ea4593b9ac115743def140e84071903a23..014da6749a91d16b99065abe17760bc955810e08 100755 (executable)
@@ -54,7 +54,7 @@ ifeq (armhf,$(DEB_TARGET_ARCH))
 CLANG_RT_ARCH = armhf
 endif
 
-ifneq (,$(filter $(DEB_TARGET_ARCH),sparc64 mips64el hurd-i386 hurd-amd64 x32))
+ifneq (,$(filter $(DEB_TARGET_ARCH),armhf sparc64 mips64el hurd-i386 hurd-amd64 x32))
 # sparc64: see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1061125
 # mips64el: has profiler, but buggy atm (32-bit overflow in some counter?)
 # x32: has profiler, but no builtins support upstream, so disabled for now