From: Adrian Bunk Date: Mon, 31 Oct 2022 13:19:34 +0000 (+0000) Subject: HACK: Disable kernel_user_helpers on armel X-Git-Tag: archive/raspbian/1.62.1+dfsg1-1+rpi1^2~33 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=d27de372f87e320a11bf2ddb3aca0bc3fae8fd61;p=rustc.git HACK: Disable kernel_user_helpers on armel Workaround to fix the build, should be removed when properly fixed in https://github.com/rust-lang/compiler-builtins/issues/420 Gbp-Pq: Name u-hack-armel-no-kernel-user-helpers.patch --- diff --git a/vendor/compiler_builtins/src/lib.rs b/vendor/compiler_builtins/src/lib.rs index 9ca72bc20f..05624363f0 100644 --- a/vendor/compiler_builtins/src/lib.rs +++ b/vendor/compiler_builtins/src/lib.rs @@ -55,7 +55,7 @@ pub mod arm; #[cfg(all( kernel_user_helpers, - any(target_os = "linux", target_os = "android"), + any(target_os = "android"), target_arch = "arm" ))] pub mod arm_linux;