From bc3e9c32a82c4f9adcea97ae54538fd7a4565f77 Mon Sep 17 00:00:00 2001 From: Nikolay Arhipov Date: Fri, 21 Apr 2023 10:48:45 +0300 Subject: [PATCH] armv7 PSVita OS support --- src/backtrace/libunwind.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/backtrace/libunwind.rs b/src/backtrace/libunwind.rs index ef77edda5..c319fe45a 100644 --- a/src/backtrace/libunwind.rs +++ b/src/backtrace/libunwind.rs @@ -158,7 +158,8 @@ mod uw { not(all(target_os = "android", target_arch = "arm")), not(all(target_os = "freebsd", target_arch = "arm")), not(all(target_os = "linux", target_arch = "arm")), - not(all(target_os = "horizon", target_arch = "arm")) + not(all(target_os = "horizon", target_arch = "arm")), + not(all(target_os = "vita", target_arch = "arm")), ))] { extern "C" { pub fn _Unwind_GetIP(ctx: *mut _Unwind_Context) -> libc::uintptr_t;