From: Adrian Bunk Date: Wed, 7 Dec 2022 16:29:00 +0000 (+0000) Subject: HACK: Disable kernel_user_helpers on armel X-Git-Tag: archive/raspbian/1.63.0+dfsg1-1+rpi1^2~33 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=af9dbf0947870030179c01501efbde0348d7e8cd;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 009923d27e..6dcf8aec1f 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;