From d27de372f87e320a11bf2ddb3aca0bc3fae8fd61 Mon Sep 17 00:00:00 2001 From: Adrian Bunk Date: Mon, 31 Oct 2022 13:19:34 +0000 Subject: [PATCH] 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 --- vendor/compiler_builtins/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/compiler_builtins/src/lib.rs b/vendor/compiler_builtins/src/lib.rs index 9ca72bc20..05624363f 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; -- 2.30.2