From: Adrian Bunk Date: Mon, 10 Oct 2022 18:19:05 +0000 (+0100) Subject: HACK: Disable kernel_user_helpers on armel X-Git-Tag: archive/raspbian/1.61.0+dfsg1-2+rpi1^2~34 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=7624799ed121531b30790978f2ecc898e0254510;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 c3eefbc036..167cc09e2a 100644 --- a/vendor/compiler_builtins/src/lib.rs +++ b/vendor/compiler_builtins/src/lib.rs @@ -54,7 +54,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;