From d26534fb8081031548509d67863a1e2defe92ca7 Mon Sep 17 00:00:00 2001 From: Ryan Zoeller Date: Fri, 2 Dec 2022 19:43:25 -0600 Subject: Enable ucontext module on aarch64-unknown-linux-gnu --- src/lib.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/lib.rs b/src/lib.rs index 6b821257..6349d37e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -144,7 +144,12 @@ feature! { // provides bindings for them. #[cfg(all( target_os = "linux", - any(target_arch = "s390x", target_arch = "x86", target_arch = "x86_64") + any( + target_arch = "aarch64", + target_arch = "s390x", + target_arch = "x86", + target_arch = "x86_64" + ) ))] feature! { #![feature = "ucontext"] -- cgit v1.2.3