diff options
| author | Marko Mijalkovic <marko.mijalkovic97@gmail.com> | 2020-08-08 02:14:40 -0400 |
|---|---|---|
| committer | Marko Mijalkovic <marko.mijalkovic97@gmail.com> | 2020-08-08 02:14:40 -0400 |
| commit | 27fca58993dc129f920928b9ba16ccc689810663 (patch) | |
| tree | a04319f924a63d73d3d0635d01a3d279afd53f1b | |
| parent | 4d4342347b71313258a46e506ee0a258f365185c (diff) | |
Add back unwinding support for Sony PSP
| -rw-r--r-- | library/panic_unwind/src/lib.rs | 2 | ||||
| -rw-r--r-- | library/unwind/src/lib.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/library/panic_unwind/src/lib.rs b/library/panic_unwind/src/lib.rs index 72eab0763d8..7d14893c4cc 100644 --- a/library/panic_unwind/src/lib.rs +++ b/library/panic_unwind/src/lib.rs @@ -50,6 +50,7 @@ cfg_if::cfg_if! { } else if #[cfg(any( all(target_family = "windows", target_env = "gnu"), target_os = "cloudabi", + target_os = "psp", target_family = "unix", all(target_vendor = "fortanix", target_env = "sgx"), ))] { @@ -65,7 +66,6 @@ cfg_if::cfg_if! { // - os=uefi // - nvptx64-nvidia-cuda // - avr-unknown-unknown - // - mipsel-sony-psp #[path = "dummy.rs"] mod real_imp; } diff --git a/library/unwind/src/lib.rs b/library/unwind/src/lib.rs index c4d10ab177b..20a2ca98405 100644 --- a/library/unwind/src/lib.rs +++ b/library/unwind/src/lib.rs @@ -19,6 +19,7 @@ cfg_if::cfg_if! { } else if #[cfg(any( unix, windows, + target_os = "psp", target_os = "cloudabi", all(target_vendor = "fortanix", target_env = "sgx"), ))] { @@ -32,7 +33,6 @@ cfg_if::cfg_if! { // - os=uefi // - os=cuda // - nvptx64-nvidia-cuda - // - mipsel-sony-psp // - Any new targets not listed above. } } |
