From 28203172de4c3fbe670b09007584906eaeffcf52 Mon Sep 17 00:00:00 2001 From: Sean Cross Date: Mon, 23 Oct 2023 15:32:59 +0800 Subject: [PATCH] panic_unwind: support unwinding on xous Now that `unwind` supports Xous, enable unwinding panics on Xous. Signed-off-by: Sean Cross --- library/panic_unwind/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/library/panic_unwind/src/lib.rs b/library/panic_unwind/src/lib.rs index 9363fde5de2..7a0bae34642 100644 --- a/library/panic_unwind/src/lib.rs +++ b/library/panic_unwind/src/lib.rs @@ -49,6 +49,7 @@ } else if #[cfg(any( all(target_family = "windows", target_env = "gnu"), target_os = "psp", + target_os = "xous", target_os = "solid_asp3", all(target_family = "unix", not(target_os = "espidf")), all(target_vendor = "fortanix", target_env = "sgx"),