Add back unwinding support for Sony PSP

This commit is contained in:
Marko Mijalkovic 2020-08-08 02:14:40 -04:00
parent 4d4342347b
commit 27fca58993
2 changed files with 2 additions and 2 deletions

View File

@ -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;
}

View File

@ -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.
}
}