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 /library/panic_unwind/src | |
| parent | 4d4342347b71313258a46e506ee0a258f365185c (diff) | |
| download | rust-27fca58993dc129f920928b9ba16ccc689810663.tar.gz rust-27fca58993dc129f920928b9ba16ccc689810663.zip | |
Add back unwinding support for Sony PSP
Diffstat (limited to 'library/panic_unwind/src')
| -rw-r--r-- | library/panic_unwind/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 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; } |
